From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 00:04:03 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1BCC37B401; Sun, 4 May 2003 00:04:02 -0700 (PDT) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FBAA43FBD; Sun, 4 May 2003 00:04:01 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id RAA16217; Sun, 4 May 2003 17:03:57 +1000 Date: Sun, 4 May 2003 17:03:56 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Ruslan Ermilov In-Reply-To: <20030503175034.GB97244@sunbay.com> Message-ID: <20030504164851.F2372@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: simon@comsys.ntu-kpi.kiev.ua cc: freebsd-bugs@freebsd.org cc: Darren Reed Subject: Re: misc/44148: installworld in 4.7-STABLE does not installIPFilter related header files X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 May 2003 07:04:03 -0000 On Sat, 3 May 2003, Ruslan Ermilov wrote: > On Sat, May 03, 2003 at 08:37:35AM +1000, Bruce Evans wrote: > > On Sat, 26 Apr 2003, Ruslan Ermilov wrote: > > > Here's an implementation (without ipfilter). Please review. > > > > I tested it lightly. It seems OK except for having lots of style bugs. > > > No surprise. ;) > > > % +compat: > > % +.for i in ${LDIRS} ${LSUBDIRS} machine crypto > > % + if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \ > > % + rm -f ${DESTDIR}${INCLUDEDIR}/$i; \ > > % fi > > > > New style bug: indent of only 4 in a shell script (it's only a continued > > line at the level of the Makefile). > > > Moot, as this is not a shell script, but rather a string > argument passed to a shell via -c. Strictly speaking, > it should be formatted like follows: > > compat: > .for i in ${LDIRS} ${LSUBDIRS} machine crypto > if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \ > rm -f ${DESTDIR}${INCLUDEDIR}/$i; \ > fi > > But that would look uglier, so I take your advice. ;) Nah. It needs to be read as a shell script, so it should follow the normal indentation rules for a shell script. 8-char indents seem to be normal for shell scripts too. There are some large examples in bsd.links.mk and bsd.man.mk. > > % .endfor > > % mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/../etc/mtree/BSD.include.dist \ > > % -p ${DESTDIR}/usr/include > ... > > Maybe the compat stuff can be cleaned up a bit. mtree could be run more > > globally as in all other Makefiles excrpt for the problem of removing the > > symlinks to directories. > > > Not sure I understand what you mean. This is only to deal with > the old directory-level symlinks; when we are sure we won't run > this on such an old system, we can safely remove it. (The above is part of the compat stuff). Yes, it may be necessary for now. I just want to plan to remove it, or maybe go the other way and push down installing of includes from ../Makefile.inc1 to here. > > % +copies: > > % +.for i in ${LDIRS} ${LSUBDIRS} crypto machine machine/pc > > % +.if exists(${DESTDIR}${INCLUDEDIR}/$i) > > % + cd ${DESTDIR}${INCLUDEDIR}/$i; \ > > % + for h in *.h; do \ > > % + if [ -L $$h ]; then \ > > % + rm -f $$h; \ > > % + fi; \ > > % + done > > > > More too-small indentations. > > > This case is more complicated. I'm not sure how to format it > properly (I always wondered how to do it, BTW). I now have > used the "make it look like a normal shell script" rule of > thumb, this now at least looks sane. We should also consider indenting nested make statements. Then the command should probably be indented more than the usual 1 tab. > Bruce, if you reply and get my ~/.vacation.msg back this > would mean that I won't have a chance to commit it until > I'm back, which 90% means it won't be committed up until > code freeze in 5.x is over. I'd like to avoid it, so if > you get my vacation message back, please take a moment > and commit it for me, making any necessary style fixes. OK. I haven;t got it yet :-). Bruce From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 06:26:38 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A5BA37B401 for ; Sun, 4 May 2003 06:26:38 -0700 (PDT) Received: from tulip.epweb.co.za (tulip.epweb.co.za [196.14.166.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 336F443F93 for ; Sun, 4 May 2003 06:26:34 -0700 (PDT) (envelope-from ultraviolet@tulip.epweb.co.za) Received: from tulip.epweb.co.za (localhost.epweb.co.za [127.0.0.1]) by tulip.epweb.co.za (8.12.7/8.12.9) with ESMTP id h44DR0oF007310 for ; Sun, 4 May 2003 15:27:00 +0200 (SAST) (envelope-from ultraviolet@tulip.epweb.co.za) Received: (from ultraviolet@localhost) by tulip.epweb.co.za (8.12.7/8.12.9/Submit) id h44DQtSD007309 for freebsd-bugs@freebsd.org; Sun, 4 May 2003 15:26:55 +0200 (SAST) Date: Sun, 4 May 2003 15:26:55 +0200 From: William Fletcher To: freebsd-bugs@freebsd.org Message-ID: <20030504132655.GA7261@tulip.epweb.co.za> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tKW2IUtsqtDRztdT" Content-Disposition: inline User-Agent: Mutt/1.4i Subject: Panic: clist reservation botch. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: ultraviolet@epweb.co.za List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 May 2003 13:26:38 -0000 --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, I keep getting kernel panics, when transfering alot of data or playing mp3s. Panic: clist reservation botch?=20 How would I be able to provide people with the right information to=20 fix this? It could be a hardware problem, but, I do buildworlds=20 on this machine just fine without things falling over.=20 Any suggestions? --=20 William Fletcher=20 Epweb's clown.=20 http://www.vision.za.net/irc/ || IRC addict ultraviolet on irc.epweb.co.za= =20 Uber FreeBSD! http://www.FreeBSD.org/ --tKW2IUtsqtDRztdT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+tRUfju3fq0dMPxsRAl2lAJ9S06Ps8lQmYnt0VAs5p1yhehiniwCfWbzP mwbaN5/JTP8k3x1AC40l7Y8= =s+bW -----END PGP SIGNATURE----- --tKW2IUtsqtDRztdT-- From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 08:20:12 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6A6437B401 for ; Sun, 4 May 2003 08:20:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBFB643F3F for ; Sun, 4 May 2003 08:20:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h44FKBUp068650 for ; Sun, 4 May 2003 08:20:11 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h44FKBFs068649; Sun, 4 May 2003 08:20:11 -0700 (PDT) Resent-Date: Sun, 4 May 2003 08:20:11 -0700 (PDT) Resent-Message-Id: <200305041520.h44FKBFs068649@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, vd@datamax.bg Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B94537B401 for ; Sun, 4 May 2003 08:17:12 -0700 (PDT) Received: from gw-bj2.datamax.bg (datamax.wl.bitex.com [195.34.115.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id B493443FBD for ; Sun, 4 May 2003 08:17:11 -0700 (PDT) (envelope-from vd@datamax.bg) Received: from sinanica.lg2a.datamax (sinanica.lg2a.datamax [192.168.10.1]) by gw-bj2.datamax.bg (Postfix) with QMQP id B1E0387C7 for ; Sun, 4 May 2003 18:17:09 +0300 (EEST) Received: (nullmailer pid 40908 invoked by uid 1001); Sun, 04 May 2003 15:17:22 -0000 Message-Id: <1052061442.037828.40907.nullmailer@sinanica.lg2a.datamax> Date: Sun, 04 May 2003 18:17:22 +0300 From: Vasil@sinanica.lg2a.datamax, Dimov@sinanica.lg2a.datamax To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/51750: ipfw2.c typos X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: vd@datamax.bg List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 May 2003 15:20:13 -0000 >Number: 51750 >Category: bin >Synopsis: ipfw2.c typos >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun May 04 08:20:11 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Vasil Dimov >Release: FreeBSD 5.0-CURRENT i386 >Organization: DataMax >Environment: System: FreeBSD sinanica.lg2a.datamax 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Wed Apr 30 17:25:36 EEST 2003 root@sinanica.lg2a.datamax:/usr/src/sys/i386/compile/SINANICA i386 >Description: When outputting errors, in some cases ipfw tries to print av instead of *av, which causes 4 (sizeof(char *)) "random" bytes to be printed. Does not crash, because av ends with '\0'. After this fix, "WARNS?=0" in the Makefile is no longer needed. >How-To-Repeat: ipfw add 100 allow ip from any to any proto foo ipfw add allow proto boo >Fix: cd /usr/src/sbin/ipfw cat /tmp/ipfw2.c.patch |patch make && make install >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 08:20:54 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 752ED37B401 for ; Sun, 4 May 2003 08:20:54 -0700 (PDT) Received: from gw-bj2.datamax.bg (datamax.wl.bitex.com [195.34.115.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F18843F93 for ; Sun, 4 May 2003 08:20:53 -0700 (PDT) (envelope-from vd@datamax.bg) Received: from sinanica.lg2a.datamax (sinanica.lg2a.datamax [192.168.10.1]) by gw-bj2.datamax.bg (Postfix) with QMQP id A376987C7 for ; Sun, 4 May 2003 18:20:51 +0300 (EEST) Received: (nullmailer pid 40922 invoked by uid 1001); Sun, 04 May 2003 15:21:04 -0000 Date: Sun, 4 May 2003 18:21:04 +0300 From: Vasil Dimov To: freebsd-bugs@freebsd.org Message-ID: <20030504152104.GA40911@sinanica.lg2a.datamax> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Kj7319i9nmIyA2yE" Content-Disposition: inline X-OS: FreeBSD 5.0-CURRENT User-Agent: Mutt/1.5.4i Subject: ipfw2.c typos patch X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: vd@datamax.bg List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 May 2003 15:20:54 -0000 --Kj7319i9nmIyA2yE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sorry, I forgot to attach ipfw2.c.patch to the bug report. --Kj7319i9nmIyA2yE Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ipfw2.c.patch" --- ipfw2.c.orig Sat Mar 15 03:12:59 2003 +++ ipfw2.c Sun May 4 18:12:44 2003 @@ -2782,7 +2782,7 @@ cmd = next_cmd(cmd); } } else if (first_cmd != cmd) { - errx(EX_DATAERR, "invalid protocol ``%s''", av); + errx(EX_DATAERR, "invalid protocol ``%s''", *av); } else goto read_options; OR_BLOCK(get_proto); @@ -3115,7 +3115,7 @@ proto = cmd->arg1; ac--; av++; } else - errx(EX_DATAERR, "invalid protocol ``%s''", av); + errx(EX_DATAERR, "invalid protocol ``%s''", *av); break; case TOK_SRCIP: @@ -3162,7 +3162,7 @@ case TOK_MACTYPE: NEED1("missing mac type"); if (!add_mactype(cmd, ac, *av)) - errx(EX_DATAERR, "invalid mac type %s", av); + errx(EX_DATAERR, "invalid mac type %s", *av); ac--; av++; break; --Kj7319i9nmIyA2yE-- From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 14:59:08 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8167D37B401 for ; Sun, 4 May 2003 14:59:08 -0700 (PDT) Received: from thalia.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14B2A43F93 for ; Sun, 4 May 2003 14:59:06 -0700 (PDT) (envelope-from keramida@freebsd.org) Received: from gothmog.gr (patr530-a009.otenet.gr [212.205.215.9]) by thalia.otenet.gr (8.12.9/8.12.9) with ESMTP id h44LwwmX012651 for ; Mon, 5 May 2003 00:58:59 +0300 (EEST) Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.12.9/8.12.9) with ESMTP id h44Lww0Z075668 for ; Mon, 5 May 2003 00:58:58 +0300 (EEST) (envelope-from keramida@freebsd.org) Received: (from giorgos@localhost) by gothmog.gr (8.12.9/8.12.9/Submit) id h44GgKZC002879; Sun, 4 May 2003 19:42:21 +0300 (EEST) (envelope-from keramida@freebsd.org) Date: Sun, 4 May 2003 19:42:20 +0300 From: Giorgos Keramidas To: Vasil Dimov Message-ID: <20030504164220.GC2545@gothmog.gr> References: <20030504152104.GA40911@sinanica.lg2a.datamax> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030504152104.GA40911@sinanica.lg2a.datamax> cc: freebsd-bugs@freebsd.org Subject: Re: ipfw2.c typos patch X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 May 2003 21:59:08 -0000 On 2003-05-04 18:21, Vasil Dimov wrote: > Sorry, I forgot to attach ipfw2.c.patch to the bug report. You can do it later, by posting a bug followup to the address bug-followup@freebsd.org and a subject like: Subject: Re: bin/51750: ipfw2.c typos Make sure that any posts you send to bug-followup@ have a subject line with a format like: Subject: Re: category/number: xxxxxxxxxxxxxxxx where `category' is the problem report category and `number' the problem report number. Regards, Giorgos. From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 15:10:02 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3FB637B401 for ; Sun, 4 May 2003 15:10:01 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1027843FD7 for ; Sun, 4 May 2003 15:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h44MA0Up052117 for ; Sun, 4 May 2003 15:10:00 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h44MA0Da052116; Sun, 4 May 2003 15:10:00 -0700 (PDT) Resent-Date: Sun, 4 May 2003 15:10:00 -0700 (PDT) Resent-Message-Id: <200305042210.h44MA0Da052116@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dominic Mitchell Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA53637B401 for ; Sun, 4 May 2003 15:01:04 -0700 (PDT) Received: from happygiraffe.net (happygiraffe.net [81.6.215.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45C5943FAF for ; Sun, 4 May 2003 15:01:04 -0700 (PDT) (envelope-from dom@happygiraffe.net) Received: by happygiraffe.net (Postfix, from userid 1001) id 54BB95C2E; Sun, 4 May 2003 23:01:02 +0100 (BST) Message-Id: <20030504220102.54BB95C2E@happygiraffe.net> Date: Sun, 4 May 2003 23:01:02 +0100 (BST) From: Dominic Mitchell To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/51767: /etc/rc.d/virecover in wrong order X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dominic Mitchell List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 May 2003 22:10:02 -0000 >Number: 51767 >Category: bin >Synopsis: /etc/rc.d/virecover in wrong order >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 May 04 15:10:00 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Dominic Mitchell >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD ppe.happygiraffe.net 5.0-CURRENT FreeBSD 5.0-CURRENT #5: Sun May 4 13:54:29 BST 2003 root@ppe.happygiraffe.net:/usr/obj/usr/src/sys/PPE i386 >Description: I've been running with rcNG for a while, but I've only just noticed this problem. When I rebooted last, I got this message: Recovering vi editor sessions:/usr/libexec/ld-elf.so.1: Shared object "libsasl2.so.2" not found . After a little bit of nosing around, I realised that it's because I have postfix installed as my MTA, linked against the SASL library. The thing that came immediately after that error on my boot sequence was: ELF ldconfig path: /usr/lib /usr/lib/compat /usr/X11R6/lib /usr/local/lib a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout /usr/X11R6/lib/aout The virecover script was trying to send mail, but failing because postfix couldn't find its libraries yet. >How-To-Repeat: * Set up an alternative MTA to the one in the base system. Ensure that it is dynamically linked against something in /usr/local/lib (sasl or ldap should do). * Start editing a file using /usr/bin/vi. * Kill the vi process from another terminal. * Reboot the system. * Watch the errors... >Fix: I guess that the virecover script needs to have ldconfig listed as a depdendency. I'm not sure whether any other scripts might need this as well... >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 18:18:59 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EFDD37B401; Sun, 4 May 2003 18:18:59 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFF2D43F93; Sun, 4 May 2003 18:18:58 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from freefall.freebsd.org (mtm@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h451IwUp068793; Sun, 4 May 2003 18:18:58 -0700 (PDT) (envelope-from mtm@freefall.freebsd.org) Received: (from mtm@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h451Iw39068789; Sun, 4 May 2003 18:18:58 -0700 (PDT) Date: Sun, 4 May 2003 18:18:58 -0700 (PDT) From: Mike Makonnen Message-Id: <200305050118.h451Iw39068789@freefall.freebsd.org> To: dom@happygiraffe.net, mtm@FreeBSD.org, freebsd-bugs@FreeBSD.org, mtm@FreeBSD.org Subject: Re: bin/51767: /etc/rc.d/virecover in wrong order X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 01:18:59 -0000 Synopsis: /etc/rc.d/virecover in wrong order State-Changed-From-To: open->feedback State-Changed-By: mtm State-Changed-When: Sun May 4 18:15:33 PDT 2003 State-Changed-Why: This should already be fixed in rc.d/ldconfig 1.5. Do you have it? If the problem persists can you send me the output of # rcorder -k FreeBSD -s nostart /etc/rc.d/* Responsible-Changed-From-To: freebsd-bugs->mtm Responsible-Changed-By: mtm Responsible-Changed-When: Sun May 4 18:15:33 PDT 2003 Responsible-Changed-Why: This should already be fixed in rc.d/ldconfig 1.5. Do you have it? If the problem persists can you send me the output of # rcorder -k FreeBSD -s nostart /etc/rc.d/* http://www.freebsd.org/cgi/query-pr.cgi?pr=51767 From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 22:00:35 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCF5437B404 for ; Sun, 4 May 2003 22:00:35 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 566BF43FB1 for ; Sun, 4 May 2003 22:00:35 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h4550ZUp086263 for ; Sun, 4 May 2003 22:00:35 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h4550ZKd086262; Sun, 4 May 2003 22:00:35 -0700 (PDT) Date: Sun, 4 May 2003 22:00:35 -0700 (PDT) Message-Id: <200305050500.h4550ZKd086262@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Murray Stokely Subject: Re: conf/44050: CVSUPIT package when installed from /stand/sysinstall appears to hang X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Murray Stokely List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 05:00:36 -0000 The following reply was made to PR conf/44050; it has been noted by GNATS. From: Murray Stokely To: bug-followup@FreeBSD.org Cc: Subject: Re: conf/44050: CVSUPIT package when installed from /stand/sysinstall appears to hang Date: Sun, 4 May 2003 21:58:55 -0700 This bug has existed for at least 5 years, and it is still unresolved. It highlights serious weaknesses in our installation tool. I think as a workaround a special version of cvsupit should be included on the installation media that does not prompt for user input. This is really a ports/packages issue, since the alternative (writing a new installer / making a major paradigm change in sysinstall), is so much more time consuming. I'm not sure if jkh is still actively maintaining cvsupit. Someone should really provide a patch to that port and post it in this PR trail. - Murray From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 22:22:45 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E07EE37B401; Sun, 4 May 2003 22:22:45 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 811A443FBD; Sun, 4 May 2003 22:22:45 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h455MjUp090543; Sun, 4 May 2003 22:22:45 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h455MjiY090539; Sun, 4 May 2003 22:22:45 -0700 (PDT) Date: Sun, 4 May 2003 22:22:45 -0700 (PDT) From: Murray Stokely Message-Id: <200305050522.h455MjiY090539@freefall.freebsd.org> To: dyeske@yahoo.com, murray@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/46485: MFC of NOCDROM release target X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 05:22:46 -0000 Synopsis: MFC of NOCDROM release target State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Sun May 4 22:22:10 PDT 2003 State-Changed-Why: Hey David, good to see you are still working on release stuff. I've just MFCed this. Thanks for all of the submissions! http://www.freebsd.org/cgi/query-pr.cgi?pr=46485 From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 22:29:38 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19FFC37B401; Sun, 4 May 2003 22:29:38 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8EA243F93; Sun, 4 May 2003 22:29:37 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h455TbUp090651; Sun, 4 May 2003 22:29:37 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h455Tb4S090647; Sun, 4 May 2003 22:29:37 -0700 (PDT) Date: Sun, 4 May 2003 22:29:37 -0700 (PDT) From: Murray Stokely Message-Id: <200305050529.h455Tb4S090647@freefall.freebsd.org> To: joost@bps.jodocus.org, murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: misc/47191: 'make iso.1' in /usr/src/release: iso's are not bootable X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 05:29:38 -0000 Synopsis: 'make iso.1' in /usr/src/release: iso's are not bootable State-Changed-From-To: open->patched State-Changed-By: murray State-Changed-When: Sun May 4 22:29:16 PDT 2003 State-Changed-Why: I have committed this change to -CURRENT. Thanks for the submission. I will MFC this in a week. Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Sun May 4 22:29:16 PDT 2003 Responsible-Changed-Why: I have committed this change to -CURRENT. Thanks for the submission. I will MFC this in a week. http://www.freebsd.org/cgi/query-pr.cgi?pr=47191 From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 22:52:37 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63DE237B401; Sun, 4 May 2003 22:52:37 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F30BA43F75; Sun, 4 May 2003 22:52:36 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h455qaUp091657; Sun, 4 May 2003 22:52:36 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h455qasL091653; Sun, 4 May 2003 22:52:36 -0700 (PDT) Date: Sun, 4 May 2003 22:52:36 -0700 (PDT) From: Murray Stokely Message-Id: <200305050552.h455qasL091653@freefall.freebsd.org> To: Gareth.McCaughan@pobox.com, murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: misc/47342: /usr/share/dict/* lacks some amni.* words X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 05:52:37 -0000 Synopsis: /usr/share/dict/* lacks some amni.* words State-Changed-From-To: open->patched State-Changed-By: murray State-Changed-When: Sun May 4 22:52:11 PDT 2003 State-Changed-Why: I have added these words to -CURRENT and will MFC the change in a week. Thanks for your submission. Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Sun May 4 22:52:11 PDT 2003 Responsible-Changed-Why: I have added these words to -CURRENT and will MFC the change in a week. Thanks for your submission. http://www.freebsd.org/cgi/query-pr.cgi?pr=47342 From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 23:07:40 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4761637B401; Sun, 4 May 2003 23:07:40 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7EC543FBD; Sun, 4 May 2003 23:07:39 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h4567dUp095344; Sun, 4 May 2003 23:07:39 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h4567dx4095340; Sun, 4 May 2003 23:07:39 -0700 (PDT) Date: Sun, 4 May 2003 23:07:39 -0700 (PDT) From: Murray Stokely Message-Id: <200305050607.h4567dx4095340@freefall.freebsd.org> To: eirikn@bluezone.no, murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: conf/47556: Norwegian dvorak keymap X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 06:07:40 -0000 Synopsis: Norwegian dvorak keymap State-Changed-From-To: open->patched State-Changed-By: murray State-Changed-When: Sun May 4 23:07:08 PDT 2003 State-Changed-Why: The keymap has been added to -CURRENT. I will MFC this change to -STABLE in a week. Thanks for your submission! Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Sun May 4 23:07:08 PDT 2003 Responsible-Changed-Why: The keymap has been added to -CURRENT. I will MFC this change to -STABLE in a week. Thanks for your submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=47556 From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 23:16:37 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3791F37B401; Sun, 4 May 2003 23:16:37 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAF3243F3F; Sun, 4 May 2003 23:16:36 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h456GaUp095870; Sun, 4 May 2003 23:16:36 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h456GaAJ095866; Sun, 4 May 2003 23:16:36 -0700 (PDT) Date: Sun, 4 May 2003 23:16:36 -0700 (PDT) From: Murray Stokely Message-Id: <200305050616.h456GaAJ095866@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: misc/48141: Device ID for Acer Communications & Multimedia Inc. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 06:16:37 -0000 Synopsis: Device ID for Acer Communications & Multimedia Inc. Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Sun May 4 23:16:28 PDT 2003 Responsible-Changed-Why: I will look into this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=48141 From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 23:27:40 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 331E437B401; Sun, 4 May 2003 23:27:40 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C53EF43FA3; Sun, 4 May 2003 23:27:39 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h456RdUp096374; Sun, 4 May 2003 23:27:39 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h456RdP6096370; Sun, 4 May 2003 23:27:39 -0700 (PDT) Date: Sun, 4 May 2003 23:27:39 -0700 (PDT) From: Murray Stokely Message-Id: <200305050627.h456RdP6096370@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: kern/49053: PATCH: ID for USB device: SanDisk Compact Flash reader SDDR-75 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 06:27:40 -0000 Synopsis: PATCH: ID for USB device: SanDisk Compact Flash reader SDDR-75 Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Sun May 4 23:27:14 PDT 2003 Responsible-Changed-Why: I will commit some of these USB device IDs tonight. http://www.freebsd.org/cgi/query-pr.cgi?pr=49053 From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 23:30:26 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C80D37B401; Sun, 4 May 2003 23:30:26 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B23A743FAF; Sun, 4 May 2003 23:30:25 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h456UPUp096634; Sun, 4 May 2003 23:30:25 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h456UPC7096630; Sun, 4 May 2003 23:30:25 -0700 (PDT) Date: Sun, 4 May 2003 23:30:25 -0700 (PDT) From: Murray Stokely Message-Id: <200305050630.h456UPC7096630@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: kern/50144: New entry for usbdevs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 06:30:26 -0000 Synopsis: New entry for usbdevs Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Sun May 4 23:29:57 PDT 2003 Responsible-Changed-Why: I'm going to make a batched usbdevs commit tonight. http://www.freebsd.org/cgi/query-pr.cgi?pr=50144 From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 23:47:48 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBE9C37B401; Sun, 4 May 2003 23:47:48 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A47743F3F; Sun, 4 May 2003 23:47:48 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h456lmUp097230; Sun, 4 May 2003 23:47:48 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h456lgss097226; Sun, 4 May 2003 23:47:42 -0700 (PDT) Date: Sun, 4 May 2003 23:47:42 -0700 (PDT) From: Murray Stokely Message-Id: <200305050647.h456lgss097226@freefall.freebsd.org> To: jacques@ataris.co.za, murray@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/50603: Use of uninitialized value in printf at /usr/bin/sockstat line 141. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 06:47:49 -0000 Synopsis: Use of uninitialized value in printf at /usr/bin/sockstat line 141. State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Sun May 4 23:44:34 PDT 2003 State-Changed-Why: I have committed this change to -STABLE. Thanks for your submission and your patience. http://www.freebsd.org/cgi/query-pr.cgi?pr=50603 From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 23:53:41 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 706D437B401; Sun, 4 May 2003 23:53:41 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F93343F75; Sun, 4 May 2003 23:53:41 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h456reUp097599; Sun, 4 May 2003 23:53:40 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h456reCC097595; Sun, 4 May 2003 23:53:40 -0700 (PDT) Date: Sun, 4 May 2003 23:53:40 -0700 (PDT) From: Murray Stokely Message-Id: <200305050653.h456reCC097595@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: conf/50732: [PATCH] A french dvorak-like layout for Syscons X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 06:53:41 -0000 Synopsis: [PATCH] A french dvorak-like layout for Syscons Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Sun May 4 23:53:30 PDT 2003 Responsible-Changed-Why: I will look at this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=50732 From owner-freebsd-bugs@FreeBSD.ORG Sun May 4 23:58:18 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B77DA37B401; Sun, 4 May 2003 23:58:18 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5705D43F85; Sun, 4 May 2003 23:58:18 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h456wIUp097729; Sun, 4 May 2003 23:58:18 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h456wIlQ097725; Sun, 4 May 2003 23:58:18 -0700 (PDT) Date: Sun, 4 May 2003 23:58:18 -0700 (PDT) From: Murray Stokely Message-Id: <200305050658.h456wIlQ097725@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: bin/51265: new USB device registration: JRC AirH" PHONE X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 06:58:19 -0000 Synopsis: new USB device registration: JRC AirH" PHONE Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Sun May 4 23:58:06 PDT 2003 Responsible-Changed-Why: I'll take a look at this tonight. http://www.freebsd.org/cgi/query-pr.cgi?pr=51265 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 00:00:29 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDD4D37B401 for ; Mon, 5 May 2003 00:00:29 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30D7A43F93 for ; Mon, 5 May 2003 00:00:29 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h4570TUp097792 for ; Mon, 5 May 2003 00:00:29 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h4570T1r097791; Mon, 5 May 2003 00:00:29 -0700 (PDT) Date: Mon, 5 May 2003 00:00:29 -0700 (PDT) Message-Id: <200305050700.h4570T1r097791@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Murray Stokely Subject: Re: kern/51137: config(8) should check if a scheduler is selected X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Murray Stokely List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 07:00:30 -0000 The following reply was made to PR kern/51137; it has been noted by GNATS. From: Murray Stokely To: David Magda Cc: FreeBSD-gnats-submit@freebsd.org, arch@freebsd.org, jeff@freebsd.org Subject: Re: kern/51137: config(8) should check if a scheduler is selected Date: Sun, 4 May 2003 23:57:20 -0700 On Fri, Apr 18, 2003 at 04:47:43PM -0400, David Magda wrote: > Make config(8) check to see that a scheduler is there. I have also been bitten by this and I agree that it would be a nice change. Any chance you can submit a patch? - Murray From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 01:00:37 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45BC337B401 for ; Mon, 5 May 2003 01:00:37 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E332B43FB1 for ; Mon, 5 May 2003 01:00:36 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h4580aUp004004 for ; Mon, 5 May 2003 01:00:36 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h4580a3M004003; Mon, 5 May 2003 01:00:36 -0700 (PDT) Date: Mon, 5 May 2003 01:00:36 -0700 (PDT) Message-Id: <200305050800.h4580a3M004003@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Vasil Dimov Subject: Re: bin/51750: ipfw2.c typos X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Vasil Dimov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 08:00:37 -0000 The following reply was made to PR bin/51750; it has been noted by GNATS. From: Vasil Dimov To: bug-followup@freebsd.org Cc: Subject: Re: bin/51750: ipfw2.c typos Date: Mon, 5 May 2003 10:55:36 +0300 --SLDf9lqlvOQaIe6s Content-Type: text/plain; charset=us-ascii Content-Disposition: inline --SLDf9lqlvOQaIe6s Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ipfw2.c.patch" --- ipfw2.c.orig Sat Mar 15 03:12:59 2003 +++ ipfw2.c Sun May 4 18:12:44 2003 @@ -2782,7 +2782,7 @@ cmd = next_cmd(cmd); } } else if (first_cmd != cmd) { - errx(EX_DATAERR, "invalid protocol ``%s''", av); + errx(EX_DATAERR, "invalid protocol ``%s''", *av); } else goto read_options; OR_BLOCK(get_proto); @@ -3115,7 +3115,7 @@ proto = cmd->arg1; ac--; av++; } else - errx(EX_DATAERR, "invalid protocol ``%s''", av); + errx(EX_DATAERR, "invalid protocol ``%s''", *av); break; case TOK_SRCIP: @@ -3162,7 +3162,7 @@ case TOK_MACTYPE: NEED1("missing mac type"); if (!add_mactype(cmd, ac, *av)) - errx(EX_DATAERR, "invalid mac type %s", av); + errx(EX_DATAERR, "invalid mac type %s", *av); ac--; av++; break; --SLDf9lqlvOQaIe6s-- From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 01:10:14 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C671D37B401 for ; Mon, 5 May 2003 01:10:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFF2E43FAF for ; Mon, 5 May 2003 01:10:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h458ACUp007689 for ; Mon, 5 May 2003 01:10:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h458AC3h007688; Mon, 5 May 2003 01:10:12 -0700 (PDT) Resent-Date: Mon, 5 May 2003 01:10:12 -0700 (PDT) Resent-Message-Id: <200305050810.h458AC3h007688@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Georg Graf Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4C6237B401 for ; Mon, 5 May 2003 01:03:01 -0700 (PDT) Received: from schurli.wu-wien.ac.at (schurli.wu-wien.ac.at [137.208.16.32]) by mx1.FreeBSD.org (Postfix) with SMTP id BA2FC43F93 for ; Mon, 5 May 2003 01:03:00 -0700 (PDT) (envelope-from graf@schurli.wu-wien.ac.at) Received: (qmail 43944 invoked by uid 1000); 5 May 2003 08:02:59 -0000 Message-Id: <20030505080259.43943.qmail@schurli.wu-wien.ac.at> Date: 5 May 2003 08:02:59 -0000 From: Georg Graf To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: graf@schurli.wu-wien.ac.at Subject: kern/51779: lockup of wi0 in hostap mode X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Georg Graf List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 08:10:15 -0000 >Number: 51779 >Category: kern >Synopsis: lockup of wi0 in hostap mode >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 May 05 01:10:12 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Georg Graf >Release: FreeBSD 4.8-RELEASE i386 >Organization: >Environment: FreeBSD jake.graf.priv.at 4.8-RELEASE FreeBSD 4.8-RELEASE #0: Sun May 4 03:10:03 CEST 2003 root@jake.graf.priv.at:/usr/obj/usr/src/sys/JAKE i386 May 5 01:25:05 jake /kernel: FreeBSD 4.8-RELEASE #0: Sun May 4 03:10:03 CEST 2003 May 5 01:25:05 jake /kernel: root@jake.graf.priv.at:/usr/obj/usr/src/sys/JAKE May 5 01:25:05 jake /kernel: Timecounter "i8254" frequency 1193182 Hz May 5 01:25:05 jake /kernel: CPU: Pentium Pro (199.43-MHz 686-class CPU) May 5 01:25:05 jake /kernel: Origin = "GenuineIntel" Id = 0x619 Stepping = 9 May 5 01:25:05 jake /kernel: Features=0xf9ff May 5 01:25:05 jake /kernel: real memory = 99614720 (97280K bytes) May 5 01:25:05 jake /kernel: avail memory = 89513984 (87416K bytes) [...] May 5 01:25:05 jake /kernel: wi0: mem 0xff8ff000-0xff8fffff irq 5 at device 0.0 on pci1 May 5 01:25:05 jake /kernel: wi0: 802.11 address: 00:05:3c:07:2b:03 May 5 01:25:05 jake /kernel: wi0: using RF:PRISM2.5 MAC:ISL3874A(Mini-PCI) May 5 01:25:05 jake /kernel: wi0: Intersil Firmware: Primary 1.00.07, Station 1.03.06 [...] [root@jake root]# grep wi /etc/rc.conf ifconfig_wi0="192.168.1.1 netmask 0xffffff00 ssid jaci stationname jakw.graf.priv.at authmode open -powersave wepmode off media DS/11Mbps mediaopt hostap" >Description: The Card is an Intel Pro 2011B Wireless Adapter and seems to work properly in low-load situations. On higher loads, the card locks up and I see messages as below. Only a reboot helps. May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc2d/0; last status 800b May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc04/0; last status 800b May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc02/0; last status 800b May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc03/0; last status 800b May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc0e/0; last status 800b May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc2a/0; last status 800b May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc01/0; last status 800b May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc85/0; last status 800b May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc28/0; last status 800b May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc23/0; last status 800b May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc24/0; last status 800b May 5 09:40:00 jake /kernel: wi0: timeout in wi_seek to fc80/0; last status 800b May 5 09:40:00 jake /kernel: wi0: wi_cmd: busy bit won't clear. May 5 09:40:00 jake /kernel: wi0: wi_cmd: busy bit won't clear. May 5 09:40:00 jake /kernel: wi0: failed to allocate 1594 bytes on NIC May 5 09:40:00 jake /kernel: wi0: tx buffer allocation failed May 5 09:40:00 jake /kernel: wi0: wi_cmd: busy bit won't clear. May 5 09:40:00 jake /kernel: wi0: failed to allocate 1594 bytes on NIC May 5 09:40:00 jake /kernel: wi0: mgmt. buffer allocation failed May 5 09:40:00 jake /kernel: wi0: wi_cmd: busy bit won't clear. >How-To-Repeat: e.g. do an installworld over nfs or do an ftp in both ways. >Fix: unknown >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 01:37:13 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D01937B404; Mon, 5 May 2003 01:37:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF95D43F75; Mon, 5 May 2003 01:37:12 -0700 (PDT) (envelope-from dougb@FreeBSD.org) Received: from freefall.freebsd.org (dougb@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h458bCUp014444; Mon, 5 May 2003 01:37:12 -0700 (PDT) (envelope-from dougb@freefall.freebsd.org) Received: (from dougb@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h458bCUg014440; Mon, 5 May 2003 01:37:12 -0700 (PDT) Date: Mon, 5 May 2003 01:37:12 -0700 (PDT) From: Doug Barton Message-Id: <200305050837.h458bCUg014440@freefall.freebsd.org> To: graf@schurli.wu-wien.ac.at, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/51779: lockup of wi0 in hostap mode X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 08:37:13 -0000 Synopsis: lockup of wi0 in hostap mode State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Mon May 5 01:33:39 PDT 2003 State-Changed-Why: Your problem is here: wi0: Intersil Firmware: Primary 1.00.07, Station 1.03.06 You'll never get hostap mode to work reliably without updating your firmware to at least station version 1.4.9. There is a lot of discussion about this in the freebsd-mobile mail archives, and in wi(4). http://www.freebsd.org/cgi/query-pr.cgi?pr=51779 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 02:01:06 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CF4E37B401; Mon, 5 May 2003 02:01:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D4AA43F3F; Mon, 5 May 2003 02:01:05 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45915Up021180; Mon, 5 May 2003 02:01:05 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45914Fi021176; Mon, 5 May 2003 02:01:04 -0700 (PDT) Date: Mon, 5 May 2003 02:01:04 -0700 (PDT) From: Murray Stokely Message-Id: <200305050901.h45914Fi021176@freefall.freebsd.org> To: mitya@cavia.pp.ru, murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: bin/51571: Add dragon screensaver to sysinstall menu X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 09:01:07 -0000 Synopsis: Add dragon screensaver to sysinstall menu State-Changed-From-To: open->patched State-Changed-By: murray State-Changed-When: Mon May 5 02:00:35 PDT 2003 State-Changed-Why: I've applied this patch to -CURRENT. Thanks for the submission. I will MFC this change next week. Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Mon May 5 02:00:35 PDT 2003 Responsible-Changed-Why: My MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=51571 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 02:27:04 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FD5637B401; Mon, 5 May 2003 02:27:04 -0700 (PDT) Received: from happygiraffe.net (happygiraffe.net [81.6.215.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F76043F85; Mon, 5 May 2003 02:27:03 -0700 (PDT) (envelope-from dom@happygiraffe.net) Received: by happygiraffe.net (Postfix, from userid 1001) id C58515C26; Mon, 5 May 2003 10:27:01 +0100 (BST) Date: Mon, 5 May 2003 10:27:01 +0100 To: Mike Makonnen Message-ID: <20030505092701.GA18058@ppe.happygiraffe.net> References: <200305050118.h451Iw39068789@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200305050118.h451Iw39068789@freefall.freebsd.org> User-Agent: Mutt/1.4.1i From: dom@happygiraffe.net (Dominic Mitchell) cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/51767: /etc/rc.d/virecover in wrong order X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 09:27:04 -0000 On Sun, May 04, 2003 at 06:18:58PM -0700, Mike Makonnen wrote: > Synopsis: /etc/rc.d/virecover in wrong order > > State-Changed-From-To: open->feedback > State-Changed-By: mtm > State-Changed-When: Sun May 4 18:15:33 PDT 2003 > State-Changed-Why: > This should already be fixed in rc.d/ldconfig 1.5. Do you have it? > If the problem persists can you send me the output of > # rcorder -k FreeBSD -s nostart /etc/rc.d/* I do have it, I'm afraid: /etc/rc.d/ldconfig: $NetBSD: ldconfig,v 1.5 2002/03/22 04:33:58 thorpej Exp $ $FreeBSD: src/etc/rc.d/ldconfig,v 1.5 2003/04/30 07:12:09 mtm Exp $ Here's the startup order. I've removed a bunch of errors that came out at the top; I assume that you know about them already... 1 /etc/rc.d/initdiskless 2 /etc/rc.d/rcconf.sh 3 /etc/rc.d/initrandom 4 /etc/rc.d/dumpon 5 /etc/rc.d/vinum 6 /etc/rc.d/ccd 7 /etc/rc.d/swap1 8 /etc/rc.d/fsck 9 /etc/rc.d/root 10 /etc/rc.d/mountcritlocal 11 /etc/rc.d/diskless 12 /etc/rc.d/addswap 13 /etc/rc.d/sysctl 14 /etc/rc.d/ttys 15 /etc/rc.d/hostname 16 /etc/rc.d/ipmon 17 /etc/rc.d/random 18 /etc/rc.d/adjkerntz 19 /etc/rc.d/atm1 20 /etc/rc.d/cleanvar 21 /etc/rc.d/ipfilter 22 /etc/rc.d/ipnat 23 /etc/rc.d/ipfs 24 /etc/rc.d/kldxref 25 /etc/rc.d/sppp 26 /etc/rc.d/serial 27 /etc/rc.d/pccard 28 /etc/rc.d/netif 29 /etc/rc.d/dhclient 30 /etc/rc.d/isdnd 31 /etc/rc.d/ppp-user 32 /etc/rc.d/ipfw 33 /etc/rc.d/atm2.sh 34 /etc/rc.d/network2 35 /etc/rc.d/ip6fw 36 /etc/rc.d/network_ipv6 37 /etc/rc.d/mroute6d 38 /etc/rc.d/route6d 39 /etc/rc.d/mrouted 40 /etc/rc.d/routed 41 /etc/rc.d/NETWORKING 42 /etc/rc.d/devd 43 /etc/rc.d/mountcritremote 44 /etc/rc.d/lomac 45 /etc/rc.d/syslogd 46 /etc/rc.d/savecore 47 /etc/rc.d/SERVERS 48 /etc/rc.d/named 49 /etc/rc.d/ntpdate 50 /etc/rc.d/rpcbind 51 /etc/rc.d/nisdomain 52 /etc/rc.d/ypxfrd 53 /etc/rc.d/ypserv 54 /etc/rc.d/ypupdated 55 /etc/rc.d/ypbind 56 /etc/rc.d/ypset 57 /etc/rc.d/yppasswdd 58 /etc/rc.d/virecover 59 /etc/rc.d/accounting 60 /etc/rc.d/nfsclient 61 /etc/rc.d/amd 62 /etc/rc.d/atm3.sh 63 /etc/rc.d/cleartmp 64 /etc/rc.d/dmesg 65 /etc/rc.d/ipsec 66 /etc/rc.d/ipxrouted 67 /etc/rc.d/kerberos 68 /etc/rc.d/kadmind 69 /etc/rc.d/keyserv 70 /etc/rc.d/ldconfig 71 /etc/rc.d/quota 72 /etc/rc.d/nfsserver 73 /etc/rc.d/mountd 74 /etc/rc.d/nfsd 75 /etc/rc.d/nfslocking 76 /etc/rc.d/pppoed 77 /etc/rc.d/pwcheck 78 /etc/rc.d/securelevel 79 /etc/rc.d/DAEMON 80 /etc/rc.d/usbd 81 /etc/rc.d/timed 82 /etc/rc.d/apm 83 /etc/rc.d/apmd 84 /etc/rc.d/bootparams 85 /etc/rc.d/local 86 /etc/rc.d/lpd 87 /etc/rc.d/motd 88 /etc/rc.d/ntpd 89 /etc/rc.d/rarpd 90 /etc/rc.d/rtadvd 91 /etc/rc.d/rwho 92 /etc/rc.d/LOGIN 93 /etc/rc.d/syscons 94 /etc/rc.d/sshd 95 /etc/rc.d/sendmail 96 /etc/rc.d/pcvt 97 /etc/rc.d/othermta 98 /etc/rc.d/archdep 99 /etc/rc.d/abi 100 /etc/rc.d/localdaemons 101 /etc/rc.d/network3 102 /etc/rc.d/msgs 103 /etc/rc.d/moused 104 /etc/rc.d/jail 105 /etc/rc.d/inetd 106 /etc/rc.d/devfs 107 /etc/rc.d/devdb 108 /etc/rc.d/cron 109 /etc/rc.d/bgfsck -Dom From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 02:50:56 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F8D437B401; Mon, 5 May 2003 02:50:56 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFD0B43F85; Mon, 5 May 2003 02:50:55 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h459otUp036468; Mon, 5 May 2003 02:50:55 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h459otQZ036464; Mon, 5 May 2003 02:50:55 -0700 (PDT) Date: Mon, 5 May 2003 02:50:55 -0700 (PDT) From: Søren Schmidt Message-Id: <200305050950.h459otQZ036464@freefall.freebsd.org> To: pawmal@unia.3lo.lublin.pl, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/44006: Filesystem corruption with ata(4) software-raid on HPT370. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 09:50:56 -0000 Synopsis: Filesystem corruption with ata(4) software-raid on HPT370. State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 02:48:15 PDT 2003 State-Changed-Why: You cannot just dd one disk to another and then create a RAID ontop of that. You need to create the RAID *before* you create (disklabel newfs) your filesystems. What you encounter is problems because you fool the system into using a mirror where the two parts are almost but not entirely identical. http://www.freebsd.org/cgi/query-pr.cgi?pr=44006 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 02:52:48 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4BF837B401; Mon, 5 May 2003 02:52:48 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64A0743F85; Mon, 5 May 2003 02:52:48 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h459qmUp037030; Mon, 5 May 2003 02:52:48 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h459qmgP037026; Mon, 5 May 2003 02:52:48 -0700 (PDT) Date: Mon, 5 May 2003 02:52:48 -0700 (PDT) From: Søren Schmidt Message-Id: <200305050952.h459qmgP037026@freefall.freebsd.org> To: jklinck@banner-direct.com, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/38775: Kernel panic with ATA raid X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 09:52:49 -0000 Synopsis: Kernel panic with ATA raid State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 02:51:17 PDT 2003 State-Changed-Why: Actually asounds like bad HW, anyhow try to upgrade to at least 4.8. http://www.freebsd.org/cgi/query-pr.cgi?pr=38775 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 02:54:14 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53F8237B401; Mon, 5 May 2003 02:54:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9AA843F85; Mon, 5 May 2003 02:54:13 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h459sDUp037395; Mon, 5 May 2003 02:54:13 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h459sDK8037391; Mon, 5 May 2003 02:54:13 -0700 (PDT) Date: Mon, 5 May 2003 02:54:13 -0700 (PDT) From: Søren Schmidt Message-Id: <200305050954.h459sDK8037391@freefall.freebsd.org> To: enderle@mdn.de, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/46549: 5.0-RC2 crashes while ripping ATA audio cds X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 09:54:14 -0000 Synopsis: 5.0-RC2 crashes while ripping ATA audio cds State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 02:53:03 PDT 2003 State-Changed-Why: Just tried this on whats to become 5.1 with no problems. http://www.freebsd.org/cgi/query-pr.cgi?pr=46549 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 02:55:59 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA4A837B401; Mon, 5 May 2003 02:55:59 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57D5B43FB1; Mon, 5 May 2003 02:55:59 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h459txUp037465; Mon, 5 May 2003 02:55:59 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h459txW1037461; Mon, 5 May 2003 02:55:59 -0700 (PDT) Date: Mon, 5 May 2003 02:55:59 -0700 (PDT) From: Søren Schmidt Message-Id: <200305050955.h459txW1037461@freefall.freebsd.org> To: rsc@merit.edu, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/37144: panic: biodone: Zero vnode ref count ... shortly after boot from ata-disk.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 09:56:00 -0000 Synopsis: panic: biodone: Zero vnode ref count ... shortly after boot from ata-disk.c State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 02:54:43 PDT 2003 State-Changed-Why: Timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=37144 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 02:57:06 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22BF937B401; Mon, 5 May 2003 02:57:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B74FC43FB1; Mon, 5 May 2003 02:57:05 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h459v5Up037513; Mon, 5 May 2003 02:57:05 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h459v5in037509; Mon, 5 May 2003 02:57:05 -0700 (PDT) Date: Mon, 5 May 2003 02:57:05 -0700 (PDT) From: Søren Schmidt Message-Id: <200305050957.h459v5in037509@freefall.freebsd.org> To: stolz@i2.informatik.rwth-aachen.de, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/51410: SiS 5591 ATA133 controller not supported X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 09:57:06 -0000 Synopsis: SiS 5591 ATA133 controller not supported State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 02:56:41 PDT 2003 State-Changed-Why: This is fixed in 5.1 http://www.freebsd.org/cgi/query-pr.cgi?pr=51410 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 02:59:13 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 995D837B401; Mon, 5 May 2003 02:59:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35F9843FAF; Mon, 5 May 2003 02:59:13 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h459xDUp037581; Mon, 5 May 2003 02:59:13 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h459xCfx037577; Mon, 5 May 2003 02:59:12 -0700 (PDT) Date: Mon, 5 May 2003 02:59:12 -0700 (PDT) From: Søren Schmidt Message-Id: <200305050959.h459xCfx037577@freefall.freebsd.org> To: chris.smith@dsl.pipex.com, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/43762: cd9660 process hangs on mounting ATA CDROM on Compaq Professional Workstation 5000 (SMP ppro 200) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 09:59:13 -0000 Synopsis: cd9660 process hangs on mounting ATA CDROM on Compaq Professional Workstation 5000 (SMP ppro 200) State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 02:57:38 PDT 2003 State-Changed-Why: If this isn't fixed in 4.8/5.1 get back to me. http://www.freebsd.org/cgi/query-pr.cgi?pr=43762 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 03:02:29 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C240E37B404; Mon, 5 May 2003 03:02:27 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5788543F3F; Mon, 5 May 2003 03:02:24 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45A2OUp037978; Mon, 5 May 2003 03:02:24 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45A2Oxn037974; Mon, 5 May 2003 03:02:24 -0700 (PDT) Date: Mon, 5 May 2003 03:02:24 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051002.h45A2Oxn037974@freefall.freebsd.org> To: pekdon@gmx.net, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36056: atapicd driver won't boot with cdr-cdroms when not specifying pio mode X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 10:02:30 -0000 Synopsis: atapicd driver won't boot with cdr-cdroms when not specifying pio mode State-Changed-From-To: feedback->closed State-Changed-By: sos State-Changed-When: Mon May 5 03:01:31 PDT 2003 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=36056 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 03:03:43 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5A0337B401; Mon, 5 May 2003 03:03:43 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62F2143F85; Mon, 5 May 2003 03:03:43 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45A3hUp038028; Mon, 5 May 2003 03:03:43 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45A3fbl038024; Mon, 5 May 2003 03:03:41 -0700 (PDT) Date: Mon, 5 May 2003 03:03:41 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051003.h45A3fbl038024@freefall.freebsd.org> To: at.com@utopianet.net, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/37243: dvd rom - ata0-slave: identify retries exceeded X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 10:03:44 -0000 Synopsis: dvd rom - ata0-slave: identify retries exceeded State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 03:02:41 PDT 2003 State-Changed-Why: I belive this has been fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=37243 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 03:06:04 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24AD137B401; Mon, 5 May 2003 03:06:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4A0943F75; Mon, 5 May 2003 03:06:03 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45A63Up041430; Mon, 5 May 2003 03:06:03 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45A63Gt041426; Mon, 5 May 2003 03:06:03 -0700 (PDT) Date: Mon, 5 May 2003 03:06:03 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051006.h45A63Gt041426@freefall.freebsd.org> To: dene@slush.ca, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/30526: inserting a Sony Ninja-ATA pcmcia style cdrom drive freezes machine X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 10:06:05 -0000 Synopsis: inserting a Sony Ninja-ATA pcmcia style cdrom drive freezes machine State-Changed-From-To: feedback->closed State-Changed-By: sos State-Changed-When: Mon May 5 03:05:34 PDT 2003 State-Changed-Why: feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=30526 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 03:11:30 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F29C737B401; Mon, 5 May 2003 03:11:29 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9013843F93; Mon, 5 May 2003 03:11:29 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45ABTUp041817; Mon, 5 May 2003 03:11:29 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45ABTbk041813; Mon, 5 May 2003 03:11:29 -0700 (PDT) Date: Mon, 5 May 2003 03:11:29 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051011.h45ABTbk041813@freefall.freebsd.org> To: martin@cybernetics.com, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35392: atapi tape driver does not maintain device state flags across a close X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 10:11:30 -0000 Synopsis: atapi tape driver does not maintain device state flags across a close State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 03:08:10 PDT 2003 State-Changed-Why: Fixed in 5.1 http://www.freebsd.org/cgi/query-pr.cgi?pr=35392 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 03:13:54 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E78CB37B401; Mon, 5 May 2003 03:13:54 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8647343F93; Mon, 5 May 2003 03:13:54 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45ADsUp041941; Mon, 5 May 2003 03:13:54 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45ADsqE041937; Mon, 5 May 2003 03:13:54 -0700 (PDT) Date: Mon, 5 May 2003 03:13:54 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051013.h45ADsqE041937@freefall.freebsd.org> To: dlacroix@poit.suddendeceleration.com, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36274: 75GXP drive ATA tagging failure makes df bus error? X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 10:13:55 -0000 Synopsis: 75GXP drive ATA tagging failure makes df bus error? State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 03:12:40 PDT 2003 State-Changed-Why: I think this was fixed around 4.7 time, if not please get back to me. http://www.freebsd.org/cgi/query-pr.cgi?pr=36274 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 03:17:16 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1148437B401; Mon, 5 May 2003 03:17:16 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A248843F3F; Mon, 5 May 2003 03:17:15 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45AHFUp042237; Mon, 5 May 2003 03:17:15 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45AHFI7042232; Mon, 5 May 2003 03:17:15 -0700 (PDT) Date: Mon, 5 May 2003 03:17:15 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051017.h45AHFI7042232@freefall.freebsd.org> To: dave_barker@bigpond.com, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/39650: Digital audio extraction on an atapi CD does not use DMA even when atamode is DMA X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 10:17:16 -0000 Synopsis: Digital audio extraction on an atapi CD does not use DMA even when atamode is DMA State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 03:15:28 PDT 2003 State-Changed-Why: fixed in -current (5.1) http://www.freebsd.org/cgi/query-pr.cgi?pr=39650 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 03:19:16 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1ECDD37B401; Mon, 5 May 2003 03:19:16 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE73643FDD; Mon, 5 May 2003 03:19:15 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45AJFUp042361; Mon, 5 May 2003 03:19:15 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45AJFmK042357; Mon, 5 May 2003 03:19:15 -0700 (PDT) Date: Mon, 5 May 2003 03:19:15 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051019.h45AJFmK042357@freefall.freebsd.org> To: jmyrick@tiger1.tiger.org, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/40297: Seagate STT8000A (ast0) atapi tape drive not working under 4.6 - worked under 4.5 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 10:19:16 -0000 Synopsis: Seagate STT8000A (ast0) atapi tape drive not working under 4.6 - worked under 4.5 State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 03:18:58 PDT 2003 State-Changed-Why: Fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=40297 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 03:21:29 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FE4937B401; Mon, 5 May 2003 03:21:29 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4E2443F93; Mon, 5 May 2003 03:21:28 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45ALSUp042592; Mon, 5 May 2003 03:21:28 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45ALRf9042588; Mon, 5 May 2003 03:21:27 -0700 (PDT) Date: Mon, 5 May 2003 03:21:27 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051021.h45ALRf9042588@freefall.freebsd.org> To: fernando@schapachnik.com.ar, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/44508: 4.7R boot delay on ata X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 10:21:29 -0000 Synopsis: 4.7R boot delay on ata State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 03:19:51 PDT 2003 State-Changed-Why: There was a few changes in this area, but its not possible to avoid all dealys here (the spec calls for a 30s wait for slow devices). http://www.freebsd.org/cgi/query-pr.cgi?pr=44508 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 03:28:47 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D14AC37B41A; Mon, 5 May 2003 03:28:42 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72BF843FAF; Mon, 5 May 2003 03:28:42 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45ASgUp042860; Mon, 5 May 2003 03:28:42 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45ASgnS042856; Mon, 5 May 2003 03:28:42 -0700 (PDT) Date: Mon, 5 May 2003 03:28:42 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051028.h45ASgnS042856@freefall.freebsd.org> To: cswiger@mac.com, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/51302: atacontrol 0 2 error? X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 10:28:48 -0000 Synopsis: atacontrol 0 2 error? State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 03:22:08 PDT 2003 State-Changed-Why: Fixed in -current http://www.freebsd.org/cgi/query-pr.cgi?pr=51302 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 04:50:17 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63B7237B401 for ; Mon, 5 May 2003 04:50:17 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECC4343F3F for ; Mon, 5 May 2003 04:50:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45BoGUp053576 for ; Mon, 5 May 2003 04:50:16 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45BoGls053575; Mon, 5 May 2003 04:50:16 -0700 (PDT) Date: Mon, 5 May 2003 04:50:16 -0700 (PDT) Message-Id: <200305051150.h45BoGls053575@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: David Magda Subject: Re: kern/51137: config(8) should check if a scheduler is selected X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Magda List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 11:50:17 -0000 The following reply was made to PR kern/51137; it has been noted by GNATS. From: David Magda To: Murray Stokely Cc: FreeBSD-gnats-submit@freebsd.org, arch@freebsd.org, jeff@freebsd.org Subject: Re: kern/51137: config(8) should check if a scheduler is selected Date: Mon, 5 May 2003 07:48:01 -0400 On Sun, May 04, 2003 at 11:57:20PM -0700, Murray Stokely wrote: > I have also been bitten by this and I agree that it would be a nice > change. Any chance you can submit a patch? You really don't want me to code -- trust me on this. :> From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 04:54:47 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEDED37B401; Mon, 5 May 2003 04:54:47 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70D4D43F75; Mon, 5 May 2003 04:54:47 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45BslUp053897; Mon, 5 May 2003 04:54:47 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45Bskt1053893; Mon, 5 May 2003 04:54:46 -0700 (PDT) Date: Mon, 5 May 2003 04:54:46 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051154.h45Bskt1053893@freefall.freebsd.org> To: inextenza@caramail.com, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/33970: random freeze on IDE Raid 0 (Highpoint HPT370) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 11:54:48 -0000 Synopsis: random freeze on IDE Raid 0 (Highpoint HPT370) State-Changed-From-To: feedback->closed State-Changed-By: sos State-Changed-When: Mon May 5 04:54:15 PDT 2003 State-Changed-Why: Feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=33970 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 04:57:09 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C7B837B401; Mon, 5 May 2003 04:57:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCF9E43F3F; Mon, 5 May 2003 04:57:08 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45Bv8Up054018; Mon, 5 May 2003 04:57:08 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45Bv8as054014; Mon, 5 May 2003 04:57:08 -0700 (PDT) Date: Mon, 5 May 2003 04:57:08 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051157.h45Bv8as054014@freefall.freebsd.org> To: jago@telefragged.com, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/37420: Copying large files from an IDE CD-ROM to a harddrive causes a system lock-up. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 11:57:09 -0000 Synopsis: Copying large files from an IDE CD-ROM to a harddrive causes a system lock-up. State-Changed-From-To: feedback->closed State-Changed-By: sos State-Changed-When: Mon May 5 04:56:54 PDT 2003 State-Changed-Why: Feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=37420 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:17:19 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF5A537B401; Mon, 5 May 2003 05:17:19 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C60843F75; Mon, 5 May 2003 05:17:19 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CHJUp058183; Mon, 5 May 2003 05:17:19 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45CHGdX058178; Mon, 5 May 2003 05:17:16 -0700 (PDT) Date: Mon, 5 May 2003 05:17:16 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051217.h45CHGdX058178@freefall.freebsd.org> To: js@appelnet.net, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/50228: FreeBSD 4.7 sysinstall will crash Promise FastTrak Ulta/133 RAID card's SuperSwap devices X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:17:20 -0000 Synopsis: FreeBSD 4.7 sysinstall will crash Promise FastTrak Ulta/133 RAID card's SuperSwap devices State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:16:56 PDT 2003 State-Changed-Why: This has been fixed in 4.8 forward. http://www.freebsd.org/cgi/query-pr.cgi?pr=50228 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:20:51 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86A3D37B401; Mon, 5 May 2003 05:20:51 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 269D143F75; Mon, 5 May 2003 05:20:51 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CKpUp058518; Mon, 5 May 2003 05:20:51 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45CKoPG058514; Mon, 5 May 2003 05:20:50 -0700 (PDT) Date: Mon, 5 May 2003 05:20:50 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051220.h45CKoPG058514@freefall.freebsd.org> To: pete-freebsd-pr@toscano.org, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/48165: Problem accessing /dev/ar2 with disklabel X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:20:51 -0000 Synopsis: Problem accessing /dev/ar2 with disklabel State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:19:37 PDT 2003 State-Changed-Why: There was alot of ATA RAID fixed done for 4.8 so you should update and see if that doesn't fix your problems. If the problem still persist, get back to me and at the very least provide a full dmesg and the output of pciconf -l http://www.freebsd.org/cgi/query-pr.cgi?pr=48165 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:26:30 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF84C37B401; Mon, 5 May 2003 05:26:30 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FFCB43F3F; Mon, 5 May 2003 05:26:30 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CQUUp060160; Mon, 5 May 2003 05:26:30 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45CQUKQ060156; Mon, 5 May 2003 05:26:30 -0700 (PDT) Date: Mon, 5 May 2003 05:26:30 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051226.h45CQUKQ060156@freefall.freebsd.org> To: richard@illuin.org, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/50220: afd0: READ_BIG command timeout - resetting X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:26:31 -0000 Synopsis: afd0: READ_BIG command timeout - resetting State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:24:57 PDT 2003 State-Changed-Why: Sounds like HW trouble to me. You should try -current and see if that handles the situation better. http://www.freebsd.org/cgi/query-pr.cgi?pr=50220 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:29:19 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA64837B401; Mon, 5 May 2003 05:29:19 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F97E43FBF; Mon, 5 May 2003 05:29:19 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CTIUp061192; Mon, 5 May 2003 05:29:18 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45CTIsZ061183; Mon, 5 May 2003 05:29:18 -0700 (PDT) Date: Mon, 5 May 2003 05:29:18 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051229.h45CTIsZ061183@freefall.freebsd.org> To: rossettigab@tiscalinet.ch, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/48802: FreeBSD 5.0 #0 killed 2 HDs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:29:20 -0000 Synopsis: FreeBSD 5.0 #0 killed 2 HDs State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:28:31 PDT 2003 State-Changed-Why: There is no way the install could ahve "killed" your disks, however you dont explain what "killed" means so... http://www.freebsd.org/cgi/query-pr.cgi?pr=48802 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:32:21 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E5E937B407; Mon, 5 May 2003 05:32:21 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3C5243FA3; Mon, 5 May 2003 05:32:20 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CWKUp062496; Mon, 5 May 2003 05:32:20 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45CWHkC062472; Mon, 5 May 2003 05:32:17 -0700 (PDT) Date: Mon, 5 May 2003 05:32:17 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051232.h45CWHkC062472@freefall.freebsd.org> To: kaz@kobe1995.net, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/30525: Please import CD-RW support into 4.4R X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:32:21 -0000 Synopsis: Please import CD-RW support into 4.4R State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:31:54 PDT 2003 State-Changed-Why: I belive this is all working now under 4.8 http://www.freebsd.org/cgi/query-pr.cgi?pr=30525 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:35:24 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE61437B401; Mon, 5 May 2003 05:35:24 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EC7B43FA3; Mon, 5 May 2003 05:35:24 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CZOUp063624; Mon, 5 May 2003 05:35:24 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45CZLrf063605; Mon, 5 May 2003 05:35:21 -0700 (PDT) Date: Mon, 5 May 2003 05:35:21 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051235.h45CZLrf063605@freefall.freebsd.org> To: gregp@noc.tht.net, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/50229: FreeBSD detects laptop drive geometries incorrectly X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:35:25 -0000 Synopsis: FreeBSD detects laptop drive geometries incorrectly State-Changed-From-To: open->feedback State-Changed-By: sos State-Changed-When: Mon May 5 05:34:44 PDT 2003 State-Changed-Why: You should try this with -current and get back with results. http://www.freebsd.org/cgi/query-pr.cgi?pr=50229 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:39:19 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A864C37B407; Mon, 5 May 2003 05:39:19 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A01043FAF; Mon, 5 May 2003 05:39:19 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CdJUp065042; Mon, 5 May 2003 05:39:19 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45Ccqb9064900; Mon, 5 May 2003 05:38:52 -0700 (PDT) Date: Mon, 5 May 2003 05:38:52 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051238.h45Ccqb9064900@freefall.freebsd.org> To: brj@vzletka.net, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/40320: Raid crashed X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:39:20 -0000 Synopsis: Raid crashed State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:38:04 PDT 2003 State-Changed-Why: The ATA RAID code was updated quite heavily on 4.7, you hsould upgrade and you problem should go away. http://www.freebsd.org/cgi/query-pr.cgi?pr=40320 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:40:43 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3DA837B401; Mon, 5 May 2003 05:40:43 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72D8E43F75; Mon, 5 May 2003 05:40:43 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CehUp065464; Mon, 5 May 2003 05:40:43 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45Cegkl065460; Mon, 5 May 2003 05:40:42 -0700 (PDT) Date: Mon, 5 May 2003 05:40:42 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051240.h45Cegkl065460@freefall.freebsd.org> To: n-shigemura@ensure-tech.co.jp, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36970: kernel cannot root device, ar0s1a on boot X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:40:44 -0000 Synopsis: kernel cannot root device, ar0s1a on boot State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:40:08 PDT 2003 State-Changed-Why: The ATA RAID system was significantly updated in 4.7, so please upgrade. http://www.freebsd.org/cgi/query-pr.cgi?pr=36970 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:44:36 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D6C837B401; Mon, 5 May 2003 05:44:36 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D04D43F85; Mon, 5 May 2003 05:44:36 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CiaUp065569; Mon, 5 May 2003 05:44:36 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45CialG065565; Mon, 5 May 2003 05:44:36 -0700 (PDT) Date: Mon, 5 May 2003 05:44:36 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051244.h45CialG065565@freefall.freebsd.org> To: pete-freebsdbugs@toscano.org, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/38091: <4.6-prerelease "loses" PM drive> X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:44:37 -0000 Synopsis: <4.6-prerelease "loses" PM drive> State-Changed-From-To: feedback->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:44:22 PDT 2003 State-Changed-Why: feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=38091 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:45:54 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7595C37B405; Mon, 5 May 2003 05:45:54 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1E2D43FAF; Mon, 5 May 2003 05:45:53 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CjrUp065698; Mon, 5 May 2003 05:45:53 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45Cjr2k065694; Mon, 5 May 2003 05:45:53 -0700 (PDT) Date: Mon, 5 May 2003 05:45:53 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051245.h45Cjr2k065694@freefall.freebsd.org> To: mikel@svpal.org, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/44581: ar RAID driver crashes using older DISKS X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:45:54 -0000 Synopsis: ar RAID driver crashes using older DISKS State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:45:39 PDT 2003 State-Changed-Why: Fixed in -current (5.1) http://www.freebsd.org/cgi/query-pr.cgi?pr=44581 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:47:19 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B001E37B401; Mon, 5 May 2003 05:47:18 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF4CF43F75; Mon, 5 May 2003 05:47:17 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45ClHUp065756; Mon, 5 May 2003 05:47:17 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45ClHEa065752; Mon, 5 May 2003 05:47:17 -0700 (PDT) Date: Mon, 5 May 2003 05:47:17 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051247.h45ClHEa065752@freefall.freebsd.org> To: niklasjs@ifi.uio.no, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/45818: Cannot repartition drives: operation not permitted X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:47:19 -0000 Synopsis: Cannot repartition drives: operation not permitted State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:46:39 PDT 2003 State-Changed-Why: You cannot change the disk layout while having it open and attached by the system (footshooting not allowed). http://www.freebsd.org/cgi/query-pr.cgi?pr=45818 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:50:25 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDBDD37B401; Mon, 5 May 2003 05:50:25 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C5FB43F3F; Mon, 5 May 2003 05:50:25 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CoPUp066688; Mon, 5 May 2003 05:50:25 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45CoPfM066684; Mon, 5 May 2003 05:50:25 -0700 (PDT) Date: Mon, 5 May 2003 05:50:25 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051250.h45CoPfM066684@freefall.freebsd.org> To: paul.leduc@appliedheuristics.com, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/42813: /kernel: ad0: UDMA ICRC READ ERROR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:50:26 -0000 Synopsis: /kernel: ad0: UDMA ICRC READ ERROR State-Changed-From-To: feedback->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:49:25 PDT 2003 State-Changed-Why: Please try -current (5.1) as the chipset support has been changed significantly there. http://www.freebsd.org/cgi/query-pr.cgi?pr=42813 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:58:05 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 530C637B401; Mon, 5 May 2003 05:58:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E856543F93; Mon, 5 May 2003 05:58:04 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45Cw4Up072248; Mon, 5 May 2003 05:58:04 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45Cw49V072244; Mon, 5 May 2003 05:58:04 -0700 (PDT) Date: Mon, 5 May 2003 05:58:04 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051258.h45Cw49V072244@freefall.freebsd.org> To: blovett@bsdguru.com, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/41183: Booting with degraded RAID1 as system disk fails X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:58:05 -0000 Synopsis: Booting with degraded RAID1 as system disk fails State-Changed-From-To: feedback->closed State-Changed-By: sos State-Changed-When: Mon May 5 05:57:47 PDT 2003 State-Changed-Why: This was fixed in 4.7. http://www.freebsd.org/cgi/query-pr.cgi?pr=41183 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 05:59:37 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38AA437B405; Mon, 5 May 2003 05:59:35 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCFED43FBD; Mon, 5 May 2003 05:59:34 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45CxYUp077307; Mon, 5 May 2003 05:59:34 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45CxYWo077303; Mon, 5 May 2003 05:59:34 -0700 (PDT) Date: Mon, 5 May 2003 05:59:34 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051259.h45CxYWo077303@freefall.freebsd.org> To: sos@FreeBSD.org, freebsd-bugs@FreeBSD.org, thomas@FreeBSD.org Subject: Re: kern/48715: atacontrol detach panics system when ATAPICAM is used. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 12:59:37 -0000 Synopsis: atacontrol detach panics system when ATAPICAM is used. Responsible-Changed-From-To: freebsd-bugs->thomas Responsible-Changed-By: sos Responsible-Changed-When: Mon May 5 05:58:37 PDT 2003 Responsible-Changed-Why: Transfer ownership http://www.freebsd.org/cgi/query-pr.cgi?pr=48715 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 06:03:37 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EC2337B401; Mon, 5 May 2003 06:03:37 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E0DE43F75; Mon, 5 May 2003 06:03:37 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from freefall.freebsd.org (sos@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45D3bUp077743; Mon, 5 May 2003 06:03:37 -0700 (PDT) (envelope-from sos@freefall.freebsd.org) Received: (from sos@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45D3bBr077739; Mon, 5 May 2003 06:03:37 -0700 (PDT) Date: Mon, 5 May 2003 06:03:37 -0700 (PDT) From: Søren Schmidt Message-Id: <200305051303.h45D3bBr077739@freefall.freebsd.org> To: sos@FreeBSD.org, freebsd-bugs@FreeBSD.org, thomas@FreeBSD.org Subject: Re: i386/51421: CD-burning problems with Plextor PX-W1210A drive X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 13:03:37 -0000 Synopsis: CD-burning problems with Plextor PX-W1210A drive Responsible-Changed-From-To: freebsd-bugs->thomas Responsible-Changed-By: sos Responsible-Changed-When: Mon May 5 06:02:28 PDT 2003 Responsible-Changed-Why: I know that there are problems with some new drives and DAO mode, it is on my TODO list. For the ATAPICAM problem I transfer this to thomas. http://www.freebsd.org/cgi/query-pr.cgi?pr=51421 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 06:12:05 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33B0637B401; Mon, 5 May 2003 06:12:05 -0700 (PDT) Received: from mail.uni-bielefeld.de (mail2.uni-bielefeld.de [129.70.4.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEB0443FA3; Mon, 5 May 2003 06:12:03 -0700 (PDT) (envelope-from lars.koeller@uni-bielefeld.de) Received: from rayadm.hrz.uni-bielefeld.de (rayadm.hrz.uni-bielefeld.de [129.70.202.15]) by mail.uni-bielefeld.de (Sun Internet Mail Server sims.4.0.2000.10.12.16.25.p8) with ESMTP id <0HEF00E8F0MWQM@mail.uni-bielefeld.de>; Mon, 5 May 2003 15:11:21 +0200 (MET DST) Received: from rayadm.hrz.uni-bielefeld.de (lkoeller@localhost) h45DBJq26003; Mon, 05 May 2003 15:11:20 +0200 (MEST) Date: Mon, 05 May 2003 15:11:19 +0200 From: Lars =?iso-8859-1?Q?K=F6ller?= X-Face: eCcoCV}FjV*O{6>[1$XP/e%]TJhEw2MF33dFh)^HM7Gfd=[/(4+0a$~ MIME-version: 1.0 X-Mailer: exmh version 2.6.1 02/18/2003 with nmh-1.0.4 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: quoted-printable cc: freebsd-bugs@freebsd.org cc: lkoeller@freebsd.org cc: lars+freebsd@koellers.net Subject: Please, Urgent: Need ideas/help to solve PR bin/51586 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 13:12:06 -0000 -------- Dear experts, i've discussed the reported problem with our experts here at the = computing center, and we don't have a clue for the problem reported in = PR 51586. Please can someone have a look at it and perhaps help me with some = fresh ideas? We need to go in production with this virus scanner farm! I've checked it with an simple script again, and get the same problem = with ony one rsh connect per second. The rsh timeout is set to 40sec, = and an netstat on the machines lokes like: machine1 (rsh client): Active Internet connections (including servers) Proto Recv-Q Send-Q Local Address Foreign Address (state= ) tcp4 0 0 odie.636 vscan4.shell FIN_WA= IT_2 tcp4 0 0 odie.638 vscan4.shell TIME_W= AIT tcp4 0 0 odie.640 vscan4.shell TIME_W= AIT tcp4 0 0 odie.642 vscan4.shell TIME_W= AIT tcp4 0 0 odie.644 vscan4.shell TIME_W= AIT tcp4 0 0 odie.646 vscan4.shell TIME_W= AIT tcp4 0 0 odie.648 vscan4.shell TIME_W= AIT tcp4 0 0 odie.650 vscan4.shell TIME_W= AIT tcp4 0 0 odie.652 vscan4.shell TIME_W= AIT tcp4 0 0 odie.654 vscan4.shell TIME_W= AIT tcp4 0 0 odie.656 vscan4.shell TIME_W= AIT tcp4 0 0 odie.658 vscan4.shell TIME_W= AIT tcp4 0 0 odie.660 vscan4.shell TIME_W= AIT tcp4 0 0 odie.662 vscan4.shell TIME_W= AIT tcp4 0 0 odie.6100 odie.1277 ESTABL= ISHED tcp4 0 0 odie.1277 odie.6100 ESTABL= ISHED tcp4 196 0 odie.6100 odie.1276 ESTABL= ISHED tcp4 0 0 odie.1276 odie.6100 ESTABL= ISHED tcp4 0 0 *.6100 *.* LISTEN= tcp4 0 0 odie.ssh rayadm.34459 ESTABL= ISHED tcp4 0 0 *.submission *.* LISTEN= tcp4 0 0 *.smtp *.* LISTEN= tcp4 0 0 *.ssh *.* LISTEN= tcp4 0 0 *.printer *.* LISTEN= tcp4 0 0 *.shell *.* LISTEN= tcp4 0 0 *.1022 *.* LISTEN= tcp4 0 0 *.nfsd *.* LISTEN= tcp4 0 0 *.1023 *.* LISTEN= tcp4 0 0 *.sunrpc *.* LISTEN= udp4 0 0 localhost.ntp *.* = udp4 0 0 odie.ntp *.* = udp4 0 0 *.ntp *.* = udp4 0 0 *.1011 *.* = udp4 0 0 *.nfsd *.* = udp4 0 0 *.1023 *.* = udp4 0 0 *.sunrpc *.* = udp4 0 0 *.syslog *.* = The rsh-server (machine2) stated: rshd[37900]: connect second port 635: Operation timed out Active Internet connections (including servers) Proto Recv-Q Send-Q Local Address Foreign Address (state= ) tcp4 0 48 vscan4.ssh odie.1279 ESTABL= ISHED tcp4 0 0 vscan4.623 odie.635 SYN_SE= NT tcp4 0 0 vscan4.shell odie.636 CLOSE_= WAIT tcp4 0 0 vscan4.6100 vscan4.4628 ESTABL= ISHED tcp4 0 0 vscan4.4628 vscan4.6100 ESTABL= ISHED tcp4 0 0 vscan4.6100 vscan4.4627 ESTABL= ISHED tcp4 0 0 vscan4.4627 vscan4.6100 ESTABL= ISHED tcp4 0 0 *.6100 *.* LISTEN= tcp4 0 0 vscan4.ssh rayadm.34465 ESTABL= ISHED tcp4 0 0 *.submission *.* LISTEN= tcp4 0 0 *.smtp *.* LISTEN= tcp4 0 0 *.shell *.* LISTEN= tcp4 0 0 *.ssh *.* LISTEN= tcp4 0 0 *.printer *.* LISTEN= udp4 0 0 localhost.ntp *.* = udp4 0 0 vscan4.ntp *.* = udp4 0 0 *.ntp *.* = udp4 0 0 *.syslog *.* = udp4 0 0 vscan4.1019 odie.nfsd = Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr e359ba00 stream 0 0 0 e359bb40 0 0 e359bb40 stream 0 0 0 e359ba00 0 0 e1e6e5a0 stream 0 0 0 e35778c0 0 0 e35778c0 stream 0 0 0 e1e6e5a0 0 0 e1e6eaa0 stream 0 0 0 e1e6e8c0 0 0 e1e6e8c0 stream 0 0 0 e1e6eaa0 0 0 e1e6e960 stream 0 0 0 e1e6ea00 0 0 e1e6ea00 stream 0 0 0 e1e6e960 0 0 e3577280 stream 0 0 e2f33000 0 0 0 /var/ru= n/sophie e1e6edc0 stream 0 0 e1e82f00 0 0 0 /var/ru= n/printer e1e6ebe0 dgram 0 0 0 e1e4ff00 0 e1e6ec80 e1e6ec80 dgram 0 0 0 e1e4ff00 0 e1e6ed20 e1e6ed20 dgram 0 0 0 e1e4ff00 0 e1e6ee60 e1e6ee60 dgram 0 0 0 e1e4ff00 0 e1e6ef00 e1e6ef00 dgram 0 0 0 e1e4ff00 0 0 e1e4ff00 dgram 0 0 e1e49ec0 0 e1e6ebe0 0 /var/ru= n/log All the details are like described in the PR. Thnaks and best regards Lars -- = E-Mail: Lars.Koeller@Uni-Bielefeld.DE \ Lars K=F6ller lkoeller@FreeBSD.org \ CC University of PGP: http://www.uk.pgp.net/pgpnet/wwwkeys.html \ Bielefeld, Germany = Key-ID: A430D499 \ Tel: +49 521 106 4964 ----------- FreeBSD, what else? ---- http://www.freebsd.org -------------= From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 08:30:14 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1739F37B401 for ; Mon, 5 May 2003 08:30:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F28843F75 for ; Mon, 5 May 2003 08:30:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45FUCUp066342 for ; Mon, 5 May 2003 08:30:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45FUCq7066341; Mon, 5 May 2003 08:30:12 -0700 (PDT) Resent-Date: Mon, 5 May 2003 08:30:12 -0700 (PDT) Resent-Message-Id: <200305051530.h45FUCq7066341@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ryuichiro Imura Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B3F237B401 for ; Mon, 5 May 2003 08:25:37 -0700 (PDT) Received: from mail.ryu16.org (YahooBB219005044040.bbtec.net [219.5.44.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF37E43F75 for ; Mon, 5 May 2003 08:25:35 -0700 (PDT) (envelope-from imura@ryu16.org) Received: from redeye.xt.ryu16.org (localhost [IPv6:::1]) by mail.ryu16.org (8.12.6/8.12.5) with ESMTP id h45FOotW094521 for ; Tue, 6 May 2003 00:24:50 +0900 (JST) (envelope-from imura@redeye.xt.ryu16.org) Received: (from imura@localhost) by redeye.xt.ryu16.org (8.12.6/8.12.6/Submit) id h45FOoPk094520; Tue, 6 May 2003 00:24:50 +0900 (JST) Message-Id: <200305051524.h45FOoPk094520@redeye.xt.ryu16.org> Date: Tue, 6 May 2003 00:24:50 +0900 (JST) From: Ryuichiro Imura To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/51798: sys/fs/ntfs/ntfs_subr.c ntfs_uastricmp() bug? X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ryuichiro Imura List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 15:30:14 -0000 >Number: 51798 >Category: kern >Synopsis: sys/fs/ntfs/ntfs_subr.c ntfs_uastricmp() bug? >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon May 05 08:30:12 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Ryuichiro Imura >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD redeye.xt.ryu16.org 4.7-STABLE FreeBSD 4.7-STABLE #5: Mon Jan 13 22:18:39 JST 2003 root@vrs:/usr/obj/usr/src/sys/U1 i386 >Description: ntfs_uastricmp() in src/sys/ntfs/ntfs_subr.c is curious. I think it should compare unicode and ascii string case insens, but it compares ascii string which converted from unicode string and unicode string which converted from ascii string. ntfs_uastrcmp() (difference from ntfs_uastricmp() is just case sens or insens) looks fine. Above paragraph may not hit you, so please look at the code. If I'm wrong, just close this PR. >How-To-Repeat: >Fix: Index: ntfs_subr.c =================================================================== RCS file: /home/ncvs/src/sys/fs/ntfs/ntfs_subr.c,v retrieving revision 1.29 diff -u -r1.29 ntfs_subr.c --- ntfs_subr.c 4 Mar 2003 00:04:42 -0000 1.29 +++ ntfs_subr.c 5 May 2003 15:09:46 -0000 @@ -674,7 +674,7 @@ */ for (i = 0; i < ustrlen && i < astrlen; i++) { res = ((int) NTFS_TOUPPER(NTFS_82U(NTFS_U28(ustr[i])))) - - ((int)NTFS_TOUPPER(NTFS_82U(astr[i]))); + ((int)NTFS_TOUPPER(astr[i])); if (res) return res; } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 08:36:51 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78E3737B401; Mon, 5 May 2003 08:36:51 -0700 (PDT) Received: from mail.ryu16.org (YahooBB219005044040.bbtec.net [219.5.44.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4577543F3F; Mon, 5 May 2003 08:36:50 -0700 (PDT) (envelope-from imura@ryu16.org) Received: from redeye.xt.ryu16.org (localhost [IPv6:::1]) by mail.ryu16.org (8.12.6/8.12.5) with ESMTP id h45Fa6tW094843; Tue, 6 May 2003 00:36:06 +0900 (JST) (envelope-from imura@redeye.xt.ryu16.org) Received: (from imura@localhost) by redeye.xt.ryu16.org (8.12.6/8.12.6/Submit) id h45Fa6DD094842; Tue, 6 May 2003 00:36:06 +0900 (JST) Date: Tue, 6 May 2003 00:36:06 +0900 From: "R. Imura" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Message-ID: <20030506003606.A1486@ryu16.org> References: <200305051524.h45FOoPk094520@redeye.xt.ryu16.org> <200305051530.h45FUC8F066329@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Mutt/1.2.5i-jp2 In-Reply-To: <200305051530.h45FUC8F066329@freefall.freebsd.org>; 08:30:12AM -0700 Subject: Re: kern/51798: sys/fs/ntfs/ntfs_subr.c ntfs_uastricmp() bug? X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 15:36:51 -0000 Sorry, I was wrong. I got drunk... :) - R. Imura From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 08:40:05 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F9E737B401 for ; Mon, 5 May 2003 08:40:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB59643FBD for ; Mon, 5 May 2003 08:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45Fe4Up066642 for ; Mon, 5 May 2003 08:40:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45Fe4V9066641; Mon, 5 May 2003 08:40:04 -0700 (PDT) Date: Mon, 5 May 2003 08:40:04 -0700 (PDT) Message-Id: <200305051540.h45Fe4V9066641@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "R. Imura" Subject: Re: kern/51798: sys/fs/ntfs/ntfs_subr.c ntfs_uastricmp() bug? X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "R. Imura" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 15:40:05 -0000 The following reply was made to PR kern/51798; it has been noted by GNATS. From: "R. Imura" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/51798: sys/fs/ntfs/ntfs_subr.c ntfs_uastricmp() bug? Date: Tue, 6 May 2003 00:36:06 +0900 Sorry, I was wrong. I got drunk... :) - R. Imura From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 11:00:27 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 642E137B405 for ; Mon, 5 May 2003 11:00:27 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEB0143FA3 for ; Mon, 5 May 2003 11:00:26 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45I0QUp079230 for ; Mon, 5 May 2003 11:00:26 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45I0Qqt079224 for freebsd-bugs@freebsd.org; Mon, 5 May 2003 11:00:26 -0700 (PDT) Date: Mon, 5 May 2003 11:00:26 -0700 (PDT) Message-Id: <200305051800.h45I0Qqt079224@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 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 18:00:27 -0000 Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/04/09] pending/50751gnats-admin Re: ports/50728: Update: update of multim o [2003/04/30] pending/51648gnats-admin Re: mod_perl2 port can't make package on o [2003/05/01] pending/51661gnats-admin Re: make www/rt3 be compatible with www/p o [2003/05/01] pending/51679gnats-admin Re: wrong dependency on the linux-quake3a o [2003/05/01] pending/51682gnats-admin Embarrassing Photo On Ebay - FUNNY!!! o [2003/05/02] pending/51695gnats-admin FUNNY! o [2003/05/03] pending/51728gnats-admin WEIRD PHOTO - Too Much Plastic Surgery o [2003/05/03] pending/51738gnats-admin lang/gcc28 - 'bounds checking' patch is m o [2003/05/04] pending/51744gnats-admin FUNNIEST TOMBSTONE EVER! o [2003/05/04] pending/51755gnats-admin FUNNY PHOTO - What A Stud! o [2003/05/04] pending/51774gnats-admin Confirmation o [2003/05/04] pending/51778gnats-admin FUNNY - My Wife The Garden Gnome! o [2003/05/05] pending/51809gnats-admin FUNNY - Where Babies Come From! 13 problems total. Non-critical problems From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 11:00:59 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49ABE37B404 for ; Mon, 5 May 2003 11:00:59 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1344243F75 for ; Mon, 5 May 2003 11:00:35 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45I0YUp079322 for ; Mon, 5 May 2003 11:00:35 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45I0Qu8079236 for freebsd-bugs@freebsd.org; Mon, 5 May 2003 11:00:26 -0700 (PDT) Date: Mon, 5 May 2003 11:00:26 -0700 (PDT) Message-Id: <200305051800.h45I0Qu8079236@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 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 18:01:00 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1998/05/13] kern/6630 phk [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 s [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch f [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde p [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG f [2000/01/17] misc/16157 green "fire" screensave kills network performan o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy o [2000/05/09] misc/18466 jwd install via nfs or ftp media silently tru o [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig f [2000/05/29] kern/18874 peter 32bit NFS servers export wrong negative v o [2000/06/13] kern/19247 uthread_sigaction.c does not do anything o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/30] i386/20308 yokota vidcontrol VESA_800x600 causes a kernel p f [2000/07/31] kern/20310 groudier Symbios 53c875j drivers don't work o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/08] i386/20495 yokota 4.1-STABLE and 4.1-RELEASE: keyboard does o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A f [2000/09/04] misc/21025 msmith BTX loader 1.00 gets 1Gb of memory from B f [2000/09/04] i386/21042 mdodd Keyboard driver problems with PS/2 Model o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond o [2000/09/14] kern/21272 wpaul USB interrupts seem to be turned off f [2000/11/01] kern/22494 silby Fatal trap 12: page fault while in kernel f [2000/11/03] bin/22595 brian telnetd tricked into using arbitrary peer f [2000/11/18] kern/22953 keu driver throws 'usb error on rx: IOERR o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] misc/23103 fenner lacks many ISO C99 features (NAN f [2000/11/27] i386/23145 brian pppoe-test-program panics the server f [2000/11/29] kern/23173 read hangs in linux emulation a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA s [2001/01/30] kern/24740 cy filesystem corruption CFP1080 CAM SCSI ca o [2001/03/09] kern/25632 n_hibma USB modem (umodem) may destroy the cfreel o [2001/03/20] kern/25950 obrien Bad drives on asr look zero-length and pa o [2001/03/24] kern/26048 obrien 4.3-RC: SMP and asr driver don't work to o [2001/04/13] kern/26549 IPsec policies for more than one pair of f [2001/04/25] kern/26840 process doing mmap() over nfs hangs in vm f [2001/05/03] kern/27059 groudier (symbios) SCSI subsystem hangs under heav a [2001/05/10] kern/27250 bp unionfs filesystem panics in large number f [2001/05/11] kern/27275 kernel bug ? f [2001/06/27] kern/28465 Enabling softupdates on a clean but activ f [2001/06/27] kern/28466 When soft updates is enabled, cpl is not f [2001/07/04] kern/28703 Kernel reboot during tape backup of nfs m o [2001/07/14] kern/28966 pirzyk math libraries in linux emulation do not o [2001/07/15] ports/28995 max deMime produces blank line in header part o [2001/07/24] misc/29200 dcs Syntax errors in /boot/device.hints cause o [2001/08/18] kern/29844 standards [PATCH] setpgrp does not behave as manual o [2001/08/18] kern/29847 n_hibma USB usbd_probe_and_attach() is broken and o [2001/09/04] ports/30331 portmgr Conflict between bsd.port.mk MAKEFILE var f [2001/09/09] i386/30458 Workstation sometimes hangs when connecte a [2001/09/24] i386/30802 gibbs repeat of i386/22760. Adaptec SCSI contro o [2001/09/27] bin/30869 dump does not dump all files of a filesys f [2001/09/29] kern/30921 ACER mechanic ps/2 keyboard don´t work an o [2001/09/30] ports/30935 taoka pips sc880 - needs to have syvr4 support o [2001/10/04] kern/31042 murray Device name conflict o [2001/10/14] misc/31266 cjc System can be crashed with "ls -al /flopp o [2001/10/15] bin/31304 joe fix crunchgen to work with more contrib-k o [2001/10/17] conf/31327 Fixes and improvements for rc.diskless* s a [2001/10/31] i386/31671 doc 4.4 installer hangs at " Mounting root fr f [2001/11/02] kern/31710 silby kernel reboots; looks like an unintended o [2001/11/16] bin/32040 brian 4.4-Release "set mtu" in ppp is broken wi f [2001/11/23] i386/32237 4.4-RELEASE keyboard doesnt work after bo f [2001/11/30] kern/32418 silby kernel table full o [2001/12/11] kern/32713 usb mouse detaches from hub and doesnt re f [2001/12/14] i386/32830 FreeBSD 4.4 install fails on Thinkpad 750 f [2001/12/14] kern/32831 sos HP Colorado IDE tape drive get wedged eas a [2001/12/22] i386/33089 murray GENERIC bloat causes 'make world' to brea p [2001/12/27] gnu/33262 mp gdb does not handle pending signals corre o [2002/01/07] bin/33670 dwmalone default inetd install allows for unlimite o [2002/01/16] kern/33951 pthread_cancel is ignored f [2002/01/17] misc/33997 Reboot Fails on Server f [2002/01/17] i386/34018 response to request from ipv6 client does o [2002/01/18] bin/34028 brian userland ppp o [2002/01/19] kern/34067 n_hibma Reproducable crash on usb ugen o [2002/01/19] kern/34071 pcn-driver is sort-of-broken in 4.5RC2 (a f [2002/01/21] i386/34144 installation,mounting root from ufs:/dev/ o [2002/01/25] bin/34274 green 4.5-RC Interoperability issue: sshd o [2002/01/30] kern/34470 bde Modem gets sio1 interrupt-level buffer o f [2002/02/07] kern/34711 frequent system stall under moderate scsi o [2002/02/18] i386/35096 Network card dies copying files > 200MB w f [2002/02/26] kern/35354 4.4/4.5 FreeBSD causes hard lock after 20 o [2002/03/01] kern/35466 xe driver can not read CIS tuples o [2002/03/06] i386/35615 sound ES1978 Maestro 2E sound card locks up mac o [2002/03/09] i386/35726 Won't let me use ifconfig on the interfac o [2002/03/15] i386/35950 ACPI missing prevents install from floppi o [2002/03/19] kern/36095 cd9660_vfsops.c: cd9660_vget_internal() k o [2002/03/26] i386/36342 rl/dc(smc) + ppppoe = major bug ! o [2002/03/27] ports/36404 security-officerAcrobat Reader seems to link against zlib o [2002/03/29] kern/36504 crash/panic vm_object_allocate under file o [2002/03/30] kern/36549 sym driver fails on Tekram DC-390U in 486 o [2002/04/07] i386/36850 Page Fault using ppp with USB Modem p [2002/04/10] ports/36964 keramida cvsupit from www.freebsd.org is out of da o [2002/04/12] kern/37015 Kernel panic in tty_subr.c while using pp o [2002/04/14] kern/37056 usb mouse with bios legacy support on han o [2002/04/14] kern/37064 System hangs when removing wire of NIC D- o [2002/04/19] kern/37257 SMP 4.5 freezes o [2002/05/12] i386/38016 i386_get_ldt range checking bug o [2002/05/12] i386/38021 i386_set_ldt can be cheated o [2002/05/13] bin/38058 brian ppp alters IP header length field 40 -> 4 o [2002/05/14] kern/38070 4.6-PRERELEASE panics on resume on Fujits s [2002/05/15] kern/38107 Panic on nullfs a [2002/05/23] i386/38459 mbr Intel SB82558B NIC won't initialize prope o [2002/05/23] i386/38484 probe freeze o [2002/05/24] conf/38518 combination of pr-27087 and pr-36911 (2) a [2002/05/26] gnu/38594 Fortan program don't link post gcc-3.1 f [2002/05/28] misc/38672 dougb ifconfig+alias o [2002/05/28] bin/38676 change request for pw command o [2002/05/29] i386/38698 Kernel panics when filesystem with snapsh o [2002/05/30] misc/38748 FreeBSD 4.5 Keyboard problem cannot insta f [2002/06/02] kern/38840 when i pass data over my dialup connectio o [2002/06/03] kern/38848 kernel panic when removing memory stick f o [2002/06/03] misc/38867 Boot "Read error" with offboard Promise u o [2002/06/03] kern/38872 nfs code ignores possibility of MGET(M_WA o [2002/06/04] kern/38909 kernel panic in lockmgr...with invalid pi o [2002/06/06] i386/38944 problems with ed-driver and dlink dfe-650 o [2002/06/07] ports/39008 dwhite py-kqueue wrapper broken with python 2.2 o [2002/06/08] kern/39043 Corrupted files on a FAT32 partition o [2002/06/11] ports/39152 dima acroread4 dumps core with linux7 o [2002/06/13] i386/39234 SMP 4.6-RC freezes during boot (Fujitsu-S o [2002/06/15] misc/39341 ppp + USB modem problem o [2002/06/19] kern/39524 smbfs with nge NIC causes kernel panic o [2002/06/19] kern/39553 FreeBSD-4.6 halt on SMP machine o [2002/06/20] i386/39586 "BTX halted" hile attempting 4.6 install o [2002/06/29] kern/40003 Panic on boot w/4.6 and 4.6-stable from 6 f [2002/07/01] i386/40099 Jul 1 19:39:17 server /kernel: pid 77933 o [2002/07/05] bin/40215 wpaul NIS host search not terminate f [2002/07/12] kern/40481 Kernel fault on detecting Mylex eXtreme R f [2002/07/13] misc/40542 FreeBSD 4.6 Fatal Traps o [2002/07/14] i386/40564 SMP kernel panic on Intel SE7500CW2 o [2002/07/14] misc/40575 Kern.flp boot floppy error o [2002/07/18] kern/40723 Disabling multicast on vlan interface cau f [2002/07/22] kern/40893 www.vivirasturias.com/dmesg f [2002/07/24] i386/40965 Random root access to non-root users from o [2002/07/27] i386/41052 Fresh install on a Compaq ARMADA E500 say o [2002/07/31] i386/41212 Corrupted CRC received at random times wh o [2002/08/05] bin/41350 vnconfig: apparent off-by-one bug o [2002/08/07] kern/41402 kernal panics f [2002/08/07] kern/41417 luigi 3Com xl0 drivers generate a kernel panic o [2002/08/07] misc/41425 adding new cpu types to bsd.cpu.mk o [2002/08/08] i386/41437 sysinstall 4.6 RELEASE - hang f [2002/08/09] kern/41494 static routes set with interface address o [2002/08/10] ports/41513 tobez lang/perl5.8 - "make test" destroys perl o [2002/08/13] i386/41636 Kernel panic on Intel SE7500CW2 - SMP ker o [2002/08/13] bin/41647 ifconfig doesn't accept lladdr along with o [2002/08/14] i386/41663 support of promise fasttrack 100 tx2 unde o [2002/08/16] misc/41717 Memory Leak in FreeBSD o [2002/08/16] i386/41723 Copying files to filesystem causes "integ a [2002/08/18] kern/41765 rwatson UDP socket remains connected after error o [2002/08/19] misc/41792 lseek after ftruncate fails o [2002/08/21] i386/41860 sysinstall rel. 4.5 and 4.6 hangs o [2002/08/22] java/41913 java JniHandler and ChannelUn Errors o [2002/08/26] kern/42030 panic when zebra works on detaching tun i o [2002/08/26] i386/42046 System crashes with f [2002/08/28] i386/42124 dual xeon problem on SE7500CW2 o [2002/08/29] i386/42173 Sony VAIO FXA 53 (or FXA 679 in Mexico) w o [2002/08/30] kern/42198 Kernel panics or system hangs up with big o [2002/08/30] misc/42221 Signal 11 core dumped when fetchin index o [2002/08/30] kern/42235 system panics with "worklist_remove: item o [2002/08/31] kern/42277 mckusick Several kernel panics per day with panics f [2002/09/04] i386/42406 Compatibility of USB equipments o [2002/09/04] kern/42434 another softupdates based kernel panic: h f [2002/09/07] i386/42538 4.7 BROKEN (SED FUNCTION) o [2002/09/08] kern/42563 ATA Tagged Queuing wedges -STABLE p [2002/09/09] kern/42580 kernel crash when starting ISC 3.2 X11 bi o [2002/09/09] kern/42597 kernel panic, xl and bpf related p [2002/09/14] bin/42772 usr.bin/make: patch to stop a fork bomb o [2002/09/14] bin/42789 cp -p may report wrong exit status o [2002/09/15] kern/42796 NCR/SYM 53C825 driver detects scsi cdrom o [2002/09/18] ports/42921 nakai archivers/rpm/work/rpm-3.0.6/lib/rpmlead. o [2002/09/18] kern/42937 panic when ARP cache uses up all mbufs o [2002/09/24] i386/43351 X-Server crashes on i810 o [2002/09/26] kern/43396 silby repeatable kernel panic in if_xl.c:xl_new o [2002/09/26] i386/43412 Why my freebsd 4.6.2 auto reboot every on o [2002/09/27] bin/43434 New option to 'dmesg' which allow to disp f [2002/09/28] i386/43461 Durring Install of 4.6 on ASR-2005S/48MB o [2002/09/29] kern/43480 panic: CPU class not configured, Athlon M o [2002/09/29] i386/43491 microuptime () went backwards o [2002/10/02] misc/43576 imp Problem with wi driver and Lucent Orinoco o [2002/10/02] kern/43614 Installation Hangs at "md1: Malloc disk" o [2002/10/03] kern/43625 Wi(4) driver hangs after long data transf o [2002/10/05] kern/43713 during install, mounting root from ufs:/d o [2002/10/06] kern/43738 Memory corruption in -stable with agp mod o [2002/10/06] misc/43751 FreeBSD4.6R panic during installation o [2002/10/11] misc/43954 nfs-blocked process can't return or be in o [2002/10/12] i386/43978 Kernel Panics in 4.7-STABLE with 486 CPUs o [2002/10/14] kern/44054 kernel panic o [2002/10/17] kern/44198 Toshiba PDR-M25 camera/umass o [2002/10/21] kern/44336 NFSv3 client broken - security problem wi o [2002/10/25] misc/44471 4.6 install writes MBR even when specifie o [2002/10/28] kern/44569 Kernel crash o [2002/10/30] kern/44744 VN devices can hang system FreeBSD v4.5 o [2002/11/01] bin/44808 opiepasswd makes bad seed for existing us o [2002/11/04] ports/44868 fanf sysutils/cfengine2: cfservd dies fails if o [2002/11/04] kern/44884 pcic is broken in current o [2002/11/05] kern/44950 SMP kernel crash in vm_page_free: freeing o [2002/11/07] kern/45032 Panic right after boot with FreeBSD-STABL o [2002/11/09] kern/45170 kernel panics when trying to write to ufs o [2002/11/17] i386/45383 Failed installation FreeBSD 4.7-RELEASE a o [2002/11/20] kern/45535 nfs client panic o [2002/11/21] kern/45568 gibbs ahc(A19160) pci parity error o [2002/11/22] kern/45588 netscape 4.79 crashes system o [2002/11/24] kern/45698 emoore Freebsd 5.0 DP2 can not find Integrated H o [2002/11/28] bin/45824 phk malloc() overflow bug o [2002/12/02] kern/45910 emoore unable to use amr device o [2002/12/08] i386/46113 busspace bug o [2002/12/12] bin/46207 OpenSSL in base system should be updated o [2002/12/19] kern/46376 ACPI module fails to load in a IBM e-seri o [2002/12/20] kern/46392 kernel, vinum, umount, changing user mode o [2002/12/21] i386/46455 trouble with VIA EPIA 5000 system- WRITE o [2002/12/23] kern/46490 silby xl driver generates lots of interrupts wi o [2002/12/23] i386/46506 Crash Before Initialization of Printer? o o [2002/12/26] kern/46537 amr(4) hangs system on -CURRENT or make p o [2003/01/02] kern/46696 ep0 hard lockup during -CURRENT install o [2003/01/08] kern/46865 kernel panic on SuperMicro 6012-8P box o [2003/01/08] bin/46866 NIS-based getpwent() falsely returns NULL f [2003/01/14] bin/47044 gshapiro Sendmail "Can't assign requested addresse o [2003/01/17] kern/47167 5.0 RC 3 (and 2) has 1 second uptime on T o [2003/01/21] i386/47295 kernel panic during FreeBSD 5.0 installat o [2003/01/22] bin/47384 qa sysinstall ignores intended destination d o [2003/01/24] i386/47428 Installing 4.7 on pst0 device fails o [2003/01/24] i386/47429 5.0-REL will not install on pst device o [2003/01/24] java/47447 java linux-sun-jdk1.4.1: java command can't fi f [2003/01/25] i386/47474 ftp11.freebsd.org is missing doc for 5.0- o [2003/01/26] kern/47529 natd/ipfw lose TCP packets for firewalled o [2003/01/27] bin/47538 tar buggy on memory disk partitions o [2003/01/27] kern/47544 iir does not detect direct access drives o [2003/02/03] kern/47874 NFS server crashes when given mount daemo o [2003/02/05] i386/47989 5.0-RELEASE install CD kernel panic o [2003/02/06] kern/48028 panicstr: union: missing upper layer in w o [2003/02/06] kern/48029 Fatal trap 12: page fault while in kernel o [2003/02/07] kern/48039 Fatal trap 12: page fault while in kernel o [2003/02/08] kern/48092 Fatal trap 12: page fault while in kernel o [2003/02/08] kern/48100 Fatal panic in vm_map_lookup_entry ... o [2003/02/09] i386/48123 major problem with freeBSD filesystem and o [2003/02/10] java/48164 glewis ports/java/jdk13: won't compile o [2003/02/10] kern/48166 panic: pmap_new_proc: u_map allocation fa o [2003/02/14] i386/48274 FreeBSD 4.7-RELEASE doesn't work on Toshi o [2003/02/16] bin/48341 Sysinstall deletes mbr although it should o [2003/02/17] kern/48369 ext2fs no-go in FreeBSD 5 (regression ove o [2003/02/17] kern/48379 the keyboard is dead after X11R6 started o [2003/02/18] ports/48449 chuckr octave-2.1.30 needs readline-4.2 in stabl o [2003/02/24] kern/48650 Onboard fxp not functioning on Intel i815 o [2003/02/25] kern/48667 FreeBSD hangs o [2003/02/25] ports/48669 ports-bugs [patch] upgrade port/www/mod_webapp-apach o [2003/02/25] ports/48678 chuckr lang/moscow_ml port broken on 5.0 o [2003/02/25] kern/48691 kernel panics on ASUS A7N266-VM Motherboa o [2003/03/01] kern/48808 uhid(4)-related repeatable kernel panic i o [2003/03/02] kern/48849 Maxtor XT5000 causes panic in boot o [2003/03/09] kern/49059 mbr 3Com OfficeConnect 10/100 not detected o [2003/03/10] kern/49079 panic: bwrite: buffer is not busy o [2003/03/11] kern/49110 UHCI driver panic while booting if any US o [2003/03/13] i386/49978 installation problem on Acer Altos G300 o [2003/03/17] ports/50082 lioux net/dctc-gui-qt (0.0.3) does not build on o [2003/03/20] kern/50148 Incorrect applied default ACLs o [2003/03/23] kern/50216 kernel panic on 5.0-current when use ipfw f [2003/03/23] kern/50229 FreeBSD detects laptop drive geometries i o [2003/03/28] kern/50393 union_lookup returning . (0xba8ade90) not o [2003/04/07] kern/50691 EOT detection in sa driver prevents mutli o [2003/04/08] ports/50736 wjv ports/mail/mailman /var/cron/tabs/mailman o [2003/04/09] kern/50747 3Com 3CSOHO100B-TX (OfficeConnect 10/100) a [2003/04/10] ports/50798 ports-bugs audio/faad does not build o [2003/04/10] ports/50802 sheldonh Multi-fixes for news/straw. o [2003/04/11] kern/50833 panicstr: ffs_valloc: dup alloc a [2003/04/11] ports/50838 ports-bugs lang/pike72 is maked Broken but there is o [2003/04/14] ports/50938 ports-bugs Maintainer Update: lang/pike72 to 7.2.294 o [2003/04/14] ports/50954 anholt XFree86 4.0 core dump ati rage mobility o [2003/04/15] ports/50999 ports-bugs SSL with (mail/)dovecot simply doesn't wo o [2003/04/15] kern/51001 panic: ufs_dirbad: bad dir o [2003/04/15] kern/51015 kernel panic while using dirhash at ~3000 o [2003/04/15] kern/51016 kernel panic: ufsdirhash_lookup: bad offs o [2003/04/16] ports/51080 ports-bugs Fixes for Kerberos support in Postgresql o [2003/04/18] i386/51129 ACPI problem, booting from install cd fai o [2003/04/21] i386/51210 gcc compiler bug with floating point o [2003/04/24] i386/51338 random system hangs; system hangs because a [2003/04/26] ports/51441 ports-bugs graphic/pornview won't compile o [2003/04/27] ports/51481 nakai icewm-1.2.7 port fails on libintl.h o [2003/04/28] kern/51485 "Fatal trap 12" from bridge code with ipf o [2003/04/28] bin/51535 uthreads bug: new opened files may get st o [2003/04/29] kern/51555 Kernel panic in ifconfig when setting IP o [2003/04/29] kern/51584 panicstr: ffs_valloc: dup alloc o [2003/04/29] kern/51585 o [2003/04/30] bin/51628 ypmatch doesn't match keys in legacy NIS o [2003/05/03] kern/51742 ffs_vfree: freeing free inode o [2003/05/03] kern/51743 ffs_valloc: dup alloc o [2003/05/04] ports/51771 ports-bugs sysutils/bubblemon overflow 284 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable a [1997/04/01] bin/3170 sheldonh vi freaks and dump core if user doesn't e o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f f [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/12] kern/4284 paul le0 goes OACTIVE after some time s [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/16] kern/4782 Under certain conditions, several krsh's o [1998/01/27] kern/5587 des session id gets dropped o [1998/02/28] kern/5877 kbyanc sb_cc counts control data as well as data a [1998/04/07] kern/6238 cg Sound-driver patch for MAD16 (OPTi 928,92 a [1998/05/06] bin/6536 peter pppd doesn't restore drainwait for tty s [1998/06/23] bin/7033 gad Same process notified multiple times o [1998/06/24] i386/7057 mdodd 3Com 3C509 locks up, or has >1000ms rtt u o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio f [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/11/10] bin/8646 peter Implement rlogind -a option f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1998/12/21] kern/9163 adrian [patch] squid does not join a multicast g s [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/13] kern/9478 assar support for running a script from kldload s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/15] kern/10107 interlock situation with exec_map and a p o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible o [1999/03/02] bin/10353 jon ypserv gets segmentation violation o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/16] bin/10633 fenner [patch] tcpslice timezone problem and upd a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec a [1999/04/08] misc/11024 mtm getpwnam(3) uses incorrect #define to lim o [1999/05/03] kern/11462 imp CS network interface driver (for CS89XX b o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 imp CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # o [1999/05/13] kern/11697 tegge Disk failure hangs system o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/05/28] kern/11922 deischen missing reentrant interfaces for getpwnam o [1999/07/07] kern/12551 ASIC output is shifted following a short o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme s [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/27] kern/13997 rwatson RLIMIT_NPROC works unadequately for jails s [1999/10/04] i386/14135 doc lpt1 nolonger exists after 3.2-RELEASE o [1999/10/12] kern/14285 NFS client appears to lose data o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/26] kern/14549 mdodd 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro a [1999/11/04] kern/14712 iedowse root has access to NFS mounted directorie s [1999/11/12] kern/14848 murray Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol s [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/17] kern/15542 de suddenly stops working o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P o [1999/12/26] kern/15707 bad trap in mprotect o [2000/01/01] kern/15825 Softupdates gets behind, runs the system o [2000/01/02] i386/15845 imp Driver for RealTek 8029 f [2000/01/03] bin/15877 tobez Perl 5.00503 interpreter crashes with a s o [2000/01/12] kern/16090 mdodd No buffer space available a [2000/01/22] kern/16299 tmm nfs.ko can be unloaded when nfsd is runni f [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/23] conf/16948 qa Sysinstall/disklabel: bad partition table o [2000/02/25] misc/16991 jhb booting install disk and USB s [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 mbr 100/10baseT card resets under load s [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg f [2000/03/21] kern/17542 greid random static with GUS PnP o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/27] i386/17626 green sshd cores when I scp to it o [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa f [2000/04/10] kern/17905 4.0-SNAP keep on crashing every 3 days o [2000/04/11] i386/17926 yokota psm device problems with apm resume o [2000/04/12] kern/17961 n_hibma Fatal Trap 12. Page fault while in kernel o [2000/04/14] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/17] misc/18065 mdodd FREEBSD 4.0 crashes on boot Compaq Prolia s [2000/04/23] bin/18181 Getty can fail to observe :de: specificat f [2000/04/23] i386/18185 gibbs Adaptec 3950U2 errors during boot/probe o [2000/04/24] kern/18200 mdodd 3com 3c509b recognized twice during boot f [2000/04/25] kern/18209 green rlimits are never checked in exec() if ex f [2000/04/28] kern/18285 the system froze when use scon -s 50 o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota tags o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran o [2000/07/27] kern/20234 green panic(): lockmgr: pid 259, not exclusive o [2000/07/29] conf/20282 qa sysinstall does not recover some /etc fil f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons p [2000/08/02] bin/20373 Setting breakpoints in shared objects bro o [2000/08/08] ports/20490 tg Termios timeout parameters, VMIN, VTIME, f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u o [2000/08/10] misc/20521 mjacob /etc/rmt several problems o [2000/08/10] kern/20523 bde Support for PCI multiport cards for sio d o [2000/08/13] kern/20572 marcel cannot safely remove COMPAT_43 from the k o [2000/08/14] kern/20609 panic: vm_fault: fault on nofault entry, o [2000/08/15] bin/20633 fdisk doesn't handle LBA correctly f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete f [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/26] misc/20861 libc_r does not honor socket timeouts o [2000/08/28] gnu/20912 mp gdb does not recognise old executables. f [2000/08/30] bin/20952 markm ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w o [2000/09/11] kern/21209 groudier scsi ncr driver installs instead of scsi o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault o [2000/09/14] gnu/21276 libI77 is unable to handle files >2Gbytes a [2000/09/15] kern/21304 mbr dc0 watchdog timeouts on NetGear FA310TX a [2000/09/18] bin/21375 mbr [PATCH] dhclient runs away on interface r s [2000/09/18] misc/21384 greid pcm driver has static in recorded audio o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites p [2000/09/20] gnu/21433 g++ optimiser produces bad code on right o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/21] kern/21463 emulation Linux compatability mode should not allow f [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde o [2000/10/02] docs/21708 jlemon kqueue/kevent man pages isn't specific ab o [2000/10/02] ports/21714 sobomax audio problem with nil o [2000/10/05] kern/21771 murray Fix for sppp and Cronyx drivers update a [2000/10/06] kern/21808 [patches] msdosfs incorrectly handles vno o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/19] kern/22142 cjc securelevel does not affect mount f [2000/10/24] misc/22284 Change (SunOS) NIS passwd error o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor o [2000/11/05] bin/22614 billf pam_ssh dumps core f [2000/11/05] kern/22624 Interrupt conflict btw. vga and Ethernet f [2000/11/06] gnu/22635 Why don't you use truncate(2) in libI77 o [2000/11/13] kern/22826 emulation Memory limits have no effect in linux com o [2000/11/14] bin/22846 Routed does not reflect preference of Int o [2000/11/15] kern/22862 ncr probe fails with CACHE TEST FAILED: ? o [2000/11/18] kern/22943 emulation Problem with linux emulation o [2000/11/18] i386/22944 isa_dmainit fails on machines with 512MB a [2000/11/18] kern/22947 jon IBM 10/100 EtherJet Cardbus (Xircom X3201 o [2000/11/25] bin/23098 ambrisko If installing on a serial console, enable o [2000/12/04] bin/23269 green OpenSSH TIS Authentication support has br o [2000/12/07] bin/23352 [SECURITY] buffer overflow in opieftpd o [2000/12/08] kern/23400 rwatson IPsec transport mode precludes filtering o [2000/12/12] kern/23515 get error in messages system log "Dec 11 o [2000/12/13] kern/23535 imp 4.x kernels seem to no longer support Ada o [2000/12/14] misc/23561 emulation Linux compatibility mode does not support o [2000/12/26] bin/23866 dwmalone patch for pointing out current date o [2001/01/02] kern/24032 markm rndcontrol and pccardd use of interupt ha o [2001/01/03] kern/24059 n_hibma USB support broken in SMP kernel o [2001/01/04] kern/24070 n_hibma uhci USB driver disables port on reatachi o [2001/01/04] kern/24074 mdodd Properties of token-ring protocol must be f [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/06] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN o [2001/01/12] bin/24271 dumpon should check its argument more o [2001/01/16] misc/24391 cannot kill amd after interface disappear o [2001/01/19] bin/24461 pirzyk Being able to increase the YP timeout wit o [2001/01/19] bin/24472 libc_r does not honor SO_SNDTIMEO/SO_RCVT s [2001/01/23] misc/24590 standards timezone function not compatible witn Sin o [2001/01/25] kern/24629 ng_socket failes to declare connected dat o [2001/01/25] bin/24632 libc_r delicate deviation from libc in ha o [2001/01/25] misc/24641 pthread_rwlock_rdlock can deadlock o [2001/01/28] bin/24691 map-mbone segfaults at getsockname o [2001/02/09] kern/24982 iedowse stack gap usage o [2001/02/10] i386/24997 /boot/loader cannot handle extended dos p o [2001/02/11] ports/25007 max telnetx problem on 4.x o [2001/02/12] kern/25038 murray dhcp client could not set hostname on boo o [2001/02/13] kern/25067 adrian able to mount a pathname > 80 char. but u f [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ o [2001/02/19] kern/25213 peter Bus abstraction interface doesn't allow p o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't f [2001/02/21] kern/25261 gibbs ahc0 no active SCB errors when booting of o [2001/02/21] ports/25272 rse Using eperl as cgi/nph binary executor ca s [2001/02/23] bin/25337 rwatson dmesg -a should be restricted o [2001/02/28] bin/25461 qa sysinstall's fdisk and disklabel don't wo o [2001/03/03] kern/25511 ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/05] bin/25542 standards /bin/sh: null char in quoted string o [2001/03/07] misc/25585 sed.test 8.16 puts bugged sed into infini o [2001/03/07] bin/25586 green Password expiration doesn't work after up o [2001/03/13] kern/25781 Statclocks cannot be disables on ServerWo o [2001/03/15] bin/25826 nfsd -t -h adr1 -h adr2 doesn't work o [2001/03/16] misc/25851 qa Security hole in anonymous FTP setup scri o [2001/03/17] bin/25886 cgetset(3) doesn't get cleared when switc o [2001/03/19] bin/25929 Can't use MAKEDEV in fixit mount o [2001/03/22] kern/25986 silby Socket would hang at LAST_ACK forever. o [2001/03/22] misc/26002 n_hibma Poor read/write performance on uhci USB c o [2001/03/22] kern/26013 Linksys (rev 3) USB 100TX NIC causes infi o [2001/03/23] ports/26036 dima acroread4 produces invalid postscript in o [2001/03/26] bin/26093 markm pam_unix rejects authenticating accounts o [2001/03/27] kern/26142 Unlink fails on NFS mounted filesystem o [2001/03/28] kern/26171 emulation not work Linux-emulator, but hi is work i o [2001/03/31] i386/26261 silo overflow problem in sio driver o [2001/04/02] bin/26307 libc_r aborts when using the KDE media pl o [2001/04/03] kern/26309 PPPoE client panics in kernel - fxp probl o [2001/04/03] misc/26320 alfred mountd breaks IRIX automounter a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/08] kern/26430 cg -CURRENT panics on cat /dev/dsp or cat /d o [2001/04/10] misc/26486 setnetgrent hangs when netgroup contains o [2001/04/12] kern/26506 phk sendto() syscall returns EINVAL in jail e o [2001/04/14] kern/26567 Mouse driver will not properly restart if o [2001/04/14] kern/26568 Mouse driver will die if you move mouse a f [2001/04/19] kern/26704 AHA-2940[UW] gives MPARERR on cold boot ( o [2001/04/23] ports/26797 assar arla-0.34.6 causes kernel panic/page faul o [2001/04/25] bin/26842 dd dump with h flag takes a very long time a [2001/04/25] bin/26869 sheldonh vi(1) crashes in viewing a file with long o [2001/04/27] misc/26897 qa 4.3R sysinstall fails to create swap part o [2001/04/30] bin/26996 green sshd fails when / mounted read-only o [2001/05/04] bin/27086 green OpenSSH does not set X11 forwarding f [2001/05/09] kern/27242 SIGHUP propagation failure to processes o f [2001/05/10] i386/27247 Panic on install - "page fault syncing di a [2001/05/10] kern/27262 process won't be terminated after CPUTIME o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter o [2001/05/21] misc/27498 grog vinum crashed after 'vinum dumpconfig' o [2001/05/21] kern/27522 des linprocfs:/proc/stat does not handle SMP o [2001/05/22] kern/27543 des /proc/cpuinfo does not handle SMP hosts o [2001/05/23] docs/27605 doc Cross-document references () o [2001/05/27] kern/27694 cg Panic in csa(4) f [2001/05/29] i386/27729 qa the ls120 device "afd" does not show up u a [2001/06/05] misc/27893 sos can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] misc/27896 Error in /etc/exports invalidates entire o [2001/06/09] bin/27988 [PATCH] let pam_ssh.so explicitly start s o [2001/06/09] kern/27995 src/sys/pci if_pcn.c revision 1.21 resp. o [2001/06/12] misc/28095 [PATCH] pax may descend into directories o [2001/06/12] ports/28102 assar Recent changes to 4.3-STABLE break arla-0 o [2001/06/14] ports/28155 portmgr DESTDIR is used incorrectly in bsd.port.m o [2001/06/15] kern/28173 Problem with Touchpad on Inspiron 5000e o [2001/06/16] bin/28221 eric dialog(1) segfaults (due to the bug in li o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/17] bin/28224 ftpd doesn't honor invalid shelll in logi o [2001/06/20] bin/28311 markm ftpd and sshd do not honor expired pw ent o [2001/06/24] ports/28398 ports-bugs ja-dvips cannot find tex.pro o [2001/06/25] kern/28417 arplookup uses potentially unprotected st o [2001/06/26] bin/28424 mtree fails to report directory hierarchy f [2001/06/27] misc/28442 hot rebuild on Compaq Intergrated Smart A o [2001/06/28] ports/28491 kiri www/w3-4 port: mismatch between pkg-plist o [2001/06/29] misc/28508 problems with backup to Tandberg SLR40 st o [2001/07/04] kern/28692 cg ICH sound driver hangs kernel o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C o [2001/07/07] i386/28802 3com Performance Pro modem conflicts with o [2001/07/09] kern/28840 gibbs Possible interrupt masking trouble in sys o [2001/07/09] bin/28852 cracauer behavior of /bin/sh with -e option looks o [2001/07/09] kern/28856 imp 3COM PCI FaxModem with shared IRQ causes o [2001/07/11] ports/28889 lioux qpopper-4.0.3 error: Insufficient room to o [2001/07/12] i386/28928 wpaul dual starfire nic doesn't seem to work (a o [2001/07/16] bin/29026 traceroute -s option allows any IP addres o [2001/07/17] bin/29049 green multi-user with star o [2001/09/15] misc/30590 /etc/hosts.equiv and ~/.rhosts interactio o [2001/09/15] kern/30592 roam [PATCH] panic: static sysctl oid too high o [2001/09/17] kern/30630 fenner Failure to check for existence of interfa o [2001/09/21] kern/30712 fatal kernel trap during ufs_rename o [2001/09/24] kern/30798 contigfree() doesn't o [2001/09/25] kern/30820 sound PCM sound fails o [2001/09/25] ports/30823 ports-bugs New port: KinterbasDB, Python module to a o [2001/09/26] bin/30837 Sysinstall doesn't set the schg flag on t o [2001/09/30] ports/30947 ports-bugs mail/mahogany fails to build, conflicts w o [2001/09/30] kern/30948 ls'ing mounted brand new floppy locks up o [2001/09/30] kern/30952 silby kernel panics with 3C905[BC] cards / xl d o [2001/10/01] kern/30958 QUOTA with 0 bytes in quota.user hangs up f [2001/10/01] bin/30966 fenner TCPdump repeating on Radius accounting pa o [2001/10/01] kern/30971 peter NFS client modification time resolution i f [2001/10/02] i386/30991 pcm in PNP-OS mode vs. non-PNP-OS mode po o [2001/10/02] bin/30993 xxgdb cannot open source file o [2001/10/04] bin/31045 routed dumps core o [2001/10/04] kern/31047 Linux programs do not dump core in linux f [2001/10/06] kern/31085 kernel panic on tftp only pxeboot f [2001/10/07] kern/31102 lge + Pentium III data transmission probl o [2001/10/10] ports/31191 ports-bugs netsaint - plugins sometimes not found o [2001/10/11] ports/31216 znerd New port: devel/plist-builder o [2001/10/18] misc/31363 qa sysinstall "partition editor" silently co o [2001/10/21] kern/31398 cg newpcm does not play back the tail of sou f [2001/10/24] i386/31481 FreeBSD does Not find disk drives with Co f [2001/10/25] kern/31492 Panic in sysctl_remove_oid. o [2001/10/25] ports/31494 ache mod_perl fixes for apache13 port o [2001/10/26] ports/31511 obrien g++30 produces binaries which SIGBUS when o [2001/10/30] conf/31631 "MAC address" can't be acquired properly. o [2001/10/31] kern/31659 n_hibma USB controller driver will die after some o [2001/10/31] bin/31661 pthread_kill signal handler doesn't get s f [2001/10/31] bin/31678 A bug in handling an error reading a CD-R f [2001/11/01] bin/31692 2872-or-less-byte ftp binary transfer fro o [2001/11/03] kern/31746 failed connect(2) seems to cause problems f [2001/11/05] kern/31768 darrenr Use of fastroute in IPFilter reboots the o [2001/11/05] i386/31771 brian PPP compares CHAP81 response case sensiti o [2001/11/05] kern/31790 problem with NFS and jail() o [2001/11/07] ports/31819 jmz ports/ispell install doesn't work o [2001/11/07] bin/31835 mbr dhclient doesn't close FD's before spawni a [2001/11/07] bin/31837 jhb sysinstall change mountpoint f [2001/11/07] i386/31845 Toshiba Satellite 2105CDS won't boot Free o [2001/11/09] ports/31893 des gnats-3.113.1 conflicts with /usr/bin/sen o [2001/11/12] kern/31940 nge gigabit adapter link reset and slow t o [2001/11/14] kern/31979 Setup and boot locks Compaq Armada E500 l f [2001/11/17] java/32063 znerd patch for /usr/ports/java/linux-jdk about o [2001/11/17] bin/32072 setuid w/o immutable flag o [2001/11/18] kern/32098 semctl() does not propagate permissions o [2001/11/19] kern/32118 mbr 21143 with dc driver will not select 10ba o [2001/11/19] ports/32121 anholt xf86cfg 4.1.0 writes bad "Chipset" value o [2001/11/20] kern/32124 imp Cannot set 128 bit wep key on prism2 (wi0 o [2001/11/22] bin/32205 brian PPP login fails in LCP negotiation on opt o [2001/11/23] kern/32226 time of day clock runs fast (approx twice o [2001/11/23] ports/32234 tobez Perl ports not $LOCALBASE clean f [2001/11/24] bin/32261 dump creates a dump file much larger than o [2001/11/26] bin/32295 pthread dont dequeue signals o [2001/11/27] kern/32338 Network to disk write performance low und o [2001/11/28] kern/32353 if kern.maxproc > 512 sybase ASE 11.9.2( o [2001/11/28] gnu/32365 obrien gcc optimiser bug with -O -march=i686 o [2001/11/29] bin/32374 vi -r doesn't work, file contained unexpe o [2001/12/06] kern/32556 sound system crashes when unloading sound modul o [2001/12/08] bin/32619 des libfetch does not use RFC 1738's definito o [2001/12/10] kern/32668 peter NFS directory removal problems manifested f [2001/12/10] bin/32686 wosch locate command dumps a core file with bro o [2001/12/11] ports/32700 assar inode changes for large o [2001/12/11] kern/32716 system hangs when running vid (usb webcam o [2001/12/11] bin/32717 brian ppp(8) change mss to wrong size p [2001/12/12] bin/32759 jmallett [PATCH] make(1) System V include behaviou s [2001/12/12] misc/32760 Please MFC /usr/include/malloc.h to -STAB f [2001/12/12] bin/32791 ru FreeBSD's man(1) utility vulnerable to ol o [2001/12/13] kern/32797 Problem with IPX and netgraph(4) o [2001/12/13] kern/32809 yet another panic while syncing disks aft f [2001/12/21] kern/33074 joe USB printer support does not detect print o [2001/12/21] ports/33080 ume grkrellmvolume interferes with the abilit o [2001/12/22] kern/33085 jlemon Samba's NMBD cannot find alias interface o [2001/12/24] kern/33138 pnp problem in 4.3, 4.4, 4.5 o [2001/12/24] bin/33155 green [PATCH] sshd can leave hanging processes o [2001/12/26] kern/33201 net/net_osdep.c:if_name is broken f [2001/12/26] misc/33213 ume rarpd fails to init IPv6 enabled interfac o [2001/12/30] kern/33344 memory leak in device resource config loa o [2001/12/30] kern/33346 jhb Kernel panic with SMP kernel o [2001/12/30] misc/33370 Post configuration issue o [2002/01/02] kern/33464 soft update inconsistencies after system o [2002/01/03] bin/33515 amd incorrectly handles multi-homed nfs s o [2002/01/04] kern/33532 sound Playing audio on some soundcards with pcm o [2002/01/04] kern/33535 invalid kernel diagnostic while writing d f [2002/01/04] gnu/33551 cvs chokes on OpenBSD repositories f [2002/01/07] kern/33653 DSL PPPoE connection error on 4.5-PRERELE o [2002/01/07] misc/33672 sheldonh telnetd and mount_mfs signal handlers cal p [2002/01/09] misc/33723 select(2) implementation in threaded (-lc o [2002/01/09] kern/33738 argv == NULL is not handled correctly by o [2002/01/13] kern/33833 Correct kernel config for 4.4-RELEASE is o [2002/01/13] kern/33839 joe usb0: host controller halted (involving A o [2002/01/15] ports/33927 ports-bugs ja-dvipdfm port requires texmf/dvips/base o [2002/01/15] ports/33929 doc Section 15.15 of the FreeBSD Porter's Han o [2002/01/16] kern/33940 quotactl allows compromise gid-quotas o [2002/01/16] kern/33974 sound Can not record anything with emu10k1 on 4 o [2002/01/17] i386/33986 sound SMP and audio causes hard lockups (random o [2002/01/17] kern/34017 The siginfo_t passed to the signal handli o [2002/01/18] kern/34020 programs fail that poll(2) on fifos o [2002/01/18] bin/34030 miibus.ko can be loaded into the kernel w f [2002/01/19] misc/34073 3com 3c980c runs "bursty" / freezes-unfre f [2002/01/20] i386/34092 reboot hangs the system (IBM PC Server 31 o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors o [2002/01/23] kern/34205 joe detect USB memory device, But can not use f [2002/01/24] kern/34228 Dual processor machine hangs at reboot o [2002/01/24] gnu/34246 joe CVS doesn't rebuild CVSROOT/options o [2002/01/25] i386/34267 semenu FreeBSD hangs and reboots when overloaded o [2002/01/25] bin/34269 tcpdump -v incorectly identifies packets o [2002/01/25] misc/34270 man -k could be used to execute any comma f [2002/01/26] kern/34306 gibbs 4.5-RC panics on boot with half-supported o [2002/02/01] i386/34536 accept() blocks other threads o [2002/02/01] kern/34544 Kernel crash on fclose() of /dev/kbd1 whe o [2002/02/02] misc/34568 turning printer on and off hangs the comp o [2002/02/03] kern/34582 wpaul Support for D-Link DFE-690TXD Cardbus PC o [2002/02/04] kern/34619 TCP - FINs with different sequence number p [2002/02/06] bin/34682 fenner scanf/sscanf doesn't understand %lld o [2002/02/08] ports/34730 lioux new port qmail-scanner - a virus-scanning o [2002/02/09] kern/34765 darrenr Unloading the ipl.ko module will panic th o [2002/02/10] kern/34801 darrenr TCP window size bug (afflicting IP Filter o [2002/02/10] bin/34811 sh: "jobs" is not pipeable f [2002/02/11] misc/34842 VmWare port + NIS causes "broadcast storm f [2002/02/13] i386/34902 FTP session causes server reboot o [2002/02/17] kern/35061 After printing to HP Deskjet 656c USB pri o [2002/02/18] kern/35081 zebra routing problem - kernel bug??? o [2002/02/19] misc/35116 keyinfo reports root's keyinfo o [2002/02/20] kern/35136 luigi VLAN & bridging & MTU o [2002/02/21] ports/35179 kris elm-2.5.5_1: bounce command doesn't work o [2002/02/22] bin/35214 obrien dump program hangs while exiting o [2002/02/23] ports/35237 edwin empty manpage installed by trafcount port f [2002/02/23] kern/35248 panic: ffs_valloc: dup alloc f [2002/02/23] misc/35267 after cvsup src-all for 4.5, /stand/sysin o [2002/02/25] bin/35307 standard include files are not standard c o [2002/02/25] bin/35309 umount -f does not work for ufs floppy o [2002/02/25] misc/35310 SSHing with expired password does not bri o [2002/02/25] java/35320 java linux-jdk-1.4 JVM fails when running Tomc o [2002/02/25] bin/35329 Linking against libc_r.* provokes nasty l o [2002/02/26] misc/35350 Can't boot on ASUS TXP4 o [2002/02/26] kern/35351 emu10k1: no posibility to record sound. K o [2002/02/26] ports/35353 green cfs strips eighth bit of file name on "ou o [2002/02/27] kern/35396 poll(2) doesn't set POLLERR for failed co o [2002/02/28] kern/35399 poll(2) botches revents on dropped socket o [2002/02/28] kern/35429 select(2)/poll(2)/kevent(2) can't/don't n o [2002/02/28] kern/35442 Problem transmitting runts in if_sis driv o [2002/03/01] alpha/35455 alpha Unable to compile ISA NIC devices into ke f [2002/03/01] kern/35461 trap 12 when booting with Maxtor 160G dis o [2002/03/03] misc/35506 innetgr() doesn't match wildcard fields i o [2002/03/03] kern/35511 sis(4) multicast filtering doesn't pass s o [2002/03/07] bin/35622 sigaltstack is missing in libc_r o [2002/03/07] kern/35631 SKIP and IPSEC together cause kernel pani o [2002/03/07] kern/35645 Layer 2 switching using default router of o [2002/03/07] misc/35662 send-pr and/or web pr query system screws o [2002/03/08] kern/35669 NFSROOT breaks without a gateway s [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for f [2002/03/08] kern/35691 mbr Realtek NIC driver does not work with Rea o [2002/03/09] kern/35703 /proc/curproc/file returns unknown o [2002/03/10] i386/35742 USB 2.0 attached device cannot be fdisk'd o [2002/03/10] kern/35756 USB reattach of Sony DSC-S75 fails, USB s o [2002/03/11] misc/35774 [SECURITY] Suboptimal auditing possibilit o [2002/03/12] bin/35842 rm -f nonexistent file successful but rm o [2002/03/13] bin/35843 maxim [PATCH] MD5 auth implemented in routed is o [2002/03/13] gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o [2002/03/13] conf/35880 rc files could be a bit more jail friendl p [2002/03/15] bin/35921 jon Wrong path reduction of dot-dot paths in o [2002/03/15] bin/35925 fixit floppy cannot be mounted on USB dri a [2002/03/16] kern/35985 re swap double mount o [2002/03/16] kern/35986 Wrong bpf-header preceading packet when u f [2002/03/16] kern/35989 720KB floppies unusable o [2002/03/17] i386/36003 Cyclades Cyclom YeP causes panics on Free p [2002/03/17] kern/36038 bp sendfile(2) on smbfs fails, exposes kerne o [2002/03/19] misc/36086 trhodes Kerberos Problem/Handbook wrong/Followup o [2002/03/20] kern/36147 bogus irq 7 message being issued f [2002/03/21] kern/36160 Kernel halts while trying to detect CD-C6 o [2002/03/21] bin/36167 _THREAD_SAFE & _REENTRANT used inconsiste o [2002/03/21] docs/36168 doc -pthread/_THREAD_SAFE docs missing in gcc o [2002/03/22] kern/36219 poll() behaves erratic on BPF file descri o [2002/03/22] kern/36220 panic: sched_sync: fsync failded vp 0xcf4 o [2002/03/26] kern/36329 reference of unexistent object o [2002/03/28] kern/36415 roger the bktr driver incorrectly handles the s a [2002/03/28] i386/36451 roger (sys/dev/bktr) Japan IF frequency is inco o [2002/03/29] kern/36482 Multiport starfire card (sf/ukphy) doesn' o [2002/03/29] conf/36508 installation floppy bug (See description) o [2002/03/29] i386/36517 sis driver can't map ports/memory for Net o [2002/03/29] kern/36522 stat outside procs in procfs succeeds fro o [2002/03/31] kern/36566 System reboot with dead smb mount and umo f [2002/04/01] kern/36610 acd0: MODE_SENSE_BIG command timeout - re o [2002/04/01] i386/36647 There is no suitable driver for SURECOM E f [2002/04/03] kern/36708 panic: ufs_dirbad: bad dir during pkg_inf o [2002/04/03] ports/36711 ports-bugs Configure Bug: cyrus-sasl-1.5.27_2 / krb f [2002/04/03] i386/36718 install boot before sysinstall halts ata1 o [2002/04/04] i386/36761 Symbol problems dependant on boot method, o [2002/04/05] kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo f [2002/04/05] kern/36790 kernel panic in biodone() on boot p [2002/04/05] ports/36804 pat portupgrade of apache13+modssl causes cer f [2002/04/07] ports/36843 ports-bugs auth_ldap port fix o [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d o [2002/04/07] kern/36858 The USB flash drive "Apacer HandyDrive" c o [2002/04/07] bin/36867 games/fortune: add FORTUNE_PATH env var, o [2002/04/08] ports/36879 mbr emulators/vmware2 freezes and reboots sys o [2002/04/08] conf/36911 installation floppies miss autoload file o [2002/04/09] bin/36926 send-pr destroys PR if emacs interrupt ch o [2002/04/09] i386/36943 reboot hangs on Tyan Thunder K7 with SMP o [2002/04/09] kern/36953 des linux emulation does not work well on SMP o [2002/04/11] i386/36991 Installing gnome from packages over the n o [2002/04/11] misc/36999 2 Default Routes Created o [2002/04/11] ports/37006 dirk cdrecord does not work with Teac USB CDRW o [2002/04/13] kern/37035 trhodes [PATCH] msdosfs_readdir() freezes after f o [2002/04/14] kern/37057 Problem with rlimits on filesystem mounte o [2002/04/15] kern/37109 Kernel refuses to assign unused IP to tun f [2002/04/16] ports/37142 dirk [Patch] devel/pth (use libtool and load s o [2002/04/16] bin/37159 ru more then one natd use running use the sa p [2002/04/16] kern/37171 tjr smbfs non-functional in -STABLE o [2002/04/17] ports/37180 dirk [New Port] php-dev (apache 1.3 / 2.0 modu o [2002/04/18] i386/37240 EtherExpress16 not probed at boot o [2002/04/19] kern/37261 luigi kernel is not linking without "device eth o [2002/04/19] ports/37262 ports-bugs gphoto2 fails to find supported USB digit o [2002/04/19] kern/37270 jeff nullfs broken by locking changes in -curr o [2002/04/21] kern/37326 roger smbus/bktr crash when omitting "device ii o [2002/04/22] bin/37343 portmap TCP binds strangeness o [2002/04/22] ports/37361 ports-bugs installing gcc30 port breaks devel/gettex o [2002/04/23] alpha/37382 alpha de0 (tulip) DEC-21140A card stays in OACT o [2002/04/23] alpha/37385 alpha xl0 network card (509B) fails on heavy tr o [2002/04/23] misc/37399 rsh does not work from Win 2k to freeBSD o [2002/04/24] kern/37436 accept dead loop when out of file descrip o [2002/04/24] kern/37441 ISA PNP parse problem o [2002/04/24] kern/37443 incorrect move pointer in environment str o [2002/04/25] bin/37468 ports-bugs mpeg_play compiled on current/DP1 does no o [2002/04/26] i386/37482 Weird behaviour under relatively slow loa o [2002/04/27] kern/37502 NFS client ignores mtime.tv_usec for open o [2002/04/28] i386/37523 lock for bios16 call and vm86call o [2002/04/28] ports/37537 edwin trafcount causes reboot at 3AM every nigh p [2002/04/29] kern/37573 maxim kernel crashes when changing dummynet pip o [2002/04/29] misc/37585 System hangs on install at probing device o [2002/04/30] misc/37586 newfs failing in 5.0-DP1 initial install o [2002/04/30] kern/37589 Kernel panics upon resume from zzz on my o [2002/05/01] kern/37635 USB ufm driver using major 200, although a [2002/05/01] kern/37656 robert Linux emulator 'Invalid Argument' error i o [2002/05/03] ports/37708 ache mod_proxy broken in apache 1.3.24 o [2002/05/03] misc/37710 murray LAN interface in wrong state after attemp o [2002/05/04] i386/37734 sys/i386/boot/dosboot needs to be replace f [2002/05/05] misc/37775 netsmb/smb_subr.c needs opt_global.h in S o [2002/05/08] misc/37863 Configuration of X corrupts screen, and i o [2002/05/09] kern/37889 kernel panic when writing to a FAT32 part o [2002/05/12] ports/37995 trevor lilypond port will not build due to bison o [2002/05/12] kern/37998 panic: vinvalbuf: dirty bufs o [2002/05/12] kern/38011 Fatal Trap 12 using Xircom CE2 in IBM 760 a [2002/05/12] ports/38018 znerd ports/www/jakarta-tomcat4: make passing o a [2002/05/12] ports/38020 znerd ports/www/jakarta-tomcat4: stop tomcat vi o [2002/05/13] kern/38024 kernel panic with devices 'sio' removed f o [2002/05/14] kern/38095 bp vlan not supported with fxp o [2002/05/16] i386/38151 Installation of 5.0DP1 panics very early f [2002/05/16] kern/38166 gad ipv6_gateway_enable="YES" breaks lpd o [2002/05/17] kern/38210 SIOCGIFCONF truncates interface list. o [2002/05/17] ports/38212 knu XFree86-4 and portupgrade get dependencie o [2002/05/18] misc/38241 mount_cd9660 doesn't mount/read multisess f [2002/05/21] misc/38373 ipfw-graph reboots compaq 5500r o [2002/05/21] ports/38375 dirk The port lang./php4 can't be used as CGI o [2002/05/22] kern/38438 System crashes when starting XFree4 o [2002/05/23] misc/38460 ports-bugs core dumps with ghostscript o [2002/05/24] kern/38495 soreceive fails to maintain invariant on s [2002/05/24] kern/38527 /dev/random does not obey O_NONBLOCK flag o [2002/05/25] kern/38549 the procces compiled whith pthread stoppe o [2002/05/25] kern/38554 changing interface ipaddress doesn't seem o [2002/05/25] kern/38562 bridge_cfg=*dc0* ; kldload if_dc => panic o [2002/05/26] misc/38582 qa sysinstall sets newfs flag after changing o [2002/05/27] ports/38602 ports-bugs x11-wm/tvtwm is confused about PREFIX o [2002/05/27] bin/38609 qa Sysinstall should know the size of the va o [2002/05/27] kern/38632 Loss of connection with wi cards o [2002/05/30] i386/38731 Freebsd doesn't support ( pdc20276 / Raid o [2002/05/30] kern/38736 kernel panic during memory stick removal o [2002/05/30] kern/38752 rn_walktree_from not halting at the right o [2002/05/31] kern/38763 GENERIC kernel doesn't boot o [2002/05/31] bin/38765 peter CVS Daemon Vulnerability in 1.11.1p1 a [2002/05/31] bin/38778 mbr dhclient infinite loop on ro /etc/resolv. o [2002/06/01] kern/38794 sound ESS Solo driver truncates output o [2002/06/01] kern/38795 kldunload of snd_ess, snd_sb16, snd_sb8 p f [2002/06/01] ports/38801 ports-bugs sasl_apop_patch.gz breaks LOGIN mech (SMT f [2002/06/02] misc/38835 qa sysinstall always installs crypto o [2002/06/04] kern/38883 'kldload bktr' stuck in state swwrt, exer o [2002/06/04] kern/38894 Dell PowerEdge 4600 PCI Bus scan problems o [2002/06/04] kern/38906 calcru: negative time of o [2002/06/05] bin/38918 edquota breaks silently when quota-marked o [2002/06/07] kern/38983 Kernel fails to access disk o [2002/06/08] ports/39054 portmgr [PATCH] Support USE_OPENSSL=yes in bsd.po f [2002/06/10] misc/39104 The disc in your drive looks more like an o [2002/06/11] ports/39148 cy screen consumes 100% when run o [2002/06/11] ports/39149 ume ports/mail/cyrus-imapd: cyradm causes per o [2002/06/11] ports/39151 dima acroread4 install fails o [2002/06/11] kern/39185 core dump binary in single user mode o [2002/06/12] kern/39199 CASIO QV-4000 not recognized by /sys/dev/ o [2002/06/13] kern/39233 NonConforming IPsec implementation from F o [2002/06/13] kern/39235 not writing correct data to TI1420 PCCARD o [2002/06/13] kern/39252 Syscons doesn't support 8-bit control cha o [2002/06/13] kern/39260 pcm0 locks on boot, Compaq Presario 1920 o [2002/06/15] kern/39329 '..' at mountpoint is subject to the perm o [2002/06/15] kern/39331 dwmalone namei cache unreliable for __getcwd() o [2002/06/16] kern/39388 groudier ncr/sym drivers fail with 53c810 and more p [2002/06/16] kern/39396 cjc firewall security loophole o [2002/06/17] kern/39447 4.5R &4.6R Kernels fail to boot w/ AHA294 o [2002/06/18] ports/39479 cy Binary version of screen-3.9.11_1 in port o [2002/06/19] i386/39507 FreeBSD can't boot: BTX halted problem o [2002/06/19] i386/39536 FreeBSD default bootloader does not load o [2002/06/20] i386/39604 Install failure on HP Pavilion 310n - Una o [2002/06/21] ports/39623 dirk [New Ports] Development versions of PHP, o [2002/06/21] i386/39633 Errors reported in schistory.c in syscons s [2002/06/22] ports/39660 portmgr add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DI o [2002/06/23] ports/39760 jedgar ports/math/rcalc is too old and contains o [2002/06/24] conf/39763 Can't get a correct MAC address for MELCO o [2002/06/24] ports/39788 mharo building proftpd in ports ignores WITH_MY o [2002/06/24] i386/39802 iBCS2 emulation fork process core dumps o [2002/06/24] kern/39805 4.6R install panics with umass0 device co o [2002/06/25] bin/39849 /sbin/restore fails to overwrite files wi o [2002/06/25] ports/39859 nbm ports/www/publicfile confused file name i f [2002/06/26] conf/39887 matusita /stand/sysinstall doesn't set sendmail_en o [2002/06/26] bin/39896 netmask 0xffffff00 no longer works in /et o [2002/06/26] bin/39906 johan cleaning sbin/newfs code from warnings o [2002/06/27] bin/39918 Userland PPP - CHAP and PAP are swaped o [2002/06/27] bin/39922 [PATCH?] Threaded applications executed w o [2002/06/27] kern/39928 wi0 timeouts and hangs the system while s o [2002/06/27] kern/39937 ipstealth issue o [2002/06/27] bin/39940 /usr/sbin/periodic sends thousands of ema o [2002/06/29] misc/40001 grog vinum showing -2 drives after removing se o [2002/06/30] kern/40044 SMP kernel fails to boot on DELL 610 o [2002/07/01] i386/40073 Xircom Realport Ether doesn't work in Tos o [2002/07/02] kern/40122 Device pcm stopps booting Kernel 4.6 o [2002/07/02] misc/40126 dougb bind8 port puts nslookup in the wrong pla o [2002/07/02] i386/40132 Enabling the joystick interface on es137x o [2002/07/03] kern/40139 darrenr ipfilter issue o [2002/07/03] ports/40167 bp mars_nwe does not report disk full errors o [2002/07/04] kern/40176 panic: lockmgr: locking against myself -- o [2002/07/04] kern/40193 PCI devices can not be used with an nVidi o [2002/07/04] misc/40206 Can not assign alias to any POINTOPOINT i o [2002/07/05] ports/40216 anholt [xmh] xmh is unstable o [2002/07/05] ports/40218 anholt [xmh] mail list does not refresh automati o [2002/07/05] bin/40219 [apm] apm breaks removable media o [2002/07/05] ports/40223 anholt [xmh] Deleted mail does not appears in sc o [2002/07/05] bin/40227 CVS client doesn't upload new files creat o [2002/07/06] misc/40260 sysinstall hangs up detecting devices (No o [2002/07/06] bin/40261 sshd allows PasswordAuthentication even t f [2002/07/06] i386/40274 "fxp: device timeout" errors during heavy o [2002/07/06] bin/40278 mktime returns -1 for certain dates/timez o [2002/07/07] bin/40282 /bin/kill has bad error checking for comm o [2002/07/09] kern/40394 if_tap driver hard coded permission check f [2002/07/10] ports/40428 kde KDE3 trashes Xresources data o [2002/07/11] bin/40466 pax may not handle correctly some tar arc o [2002/07/11] bin/40471 des chpass(1) -a option broken in CURRENT o [2002/07/14] kern/40558 UDP6 sockets do not receive responses of o [2002/07/14] kern/40561 jlemon TTCP does not work with IPv6 o [2002/07/14] kern/40574 NeoMagic soundcard detection on Gateway S o [2002/07/15] ports/40610 jmz Latex build "cannot find Hyphenation patt a [2002/07/16] bin/40654 jhb patch: sysinstall: infinite loop a [2002/07/16] bin/40655 jhb patch: sysinstall assigns partition a to o [2002/07/16] bin/40656 qa patch: sysinstall: scripted deletion of s o [2002/07/16] ports/40672 sobomax wsoundserver defaults to using esound and o [2002/07/19] kern/40766 NEWCARD freeses system while card inserti o [2002/07/19] kern/40787 page fault while in kernel mode o [2002/07/19] kern/40792 signals lead to data loss on device ugen o [2002/07/22] ports/40886 ache pkpkg_delete apache-1.3.26_3 does not w o [2002/07/22] kern/40895 wierd kernel / device driver bug o [2002/07/22] kern/40903 Busy_count is < 0 message keeps counting o [2002/07/23] misc/40941 robert syslogd "!prog" fails for progs with non- o [2002/07/23] i386/40945 FreeBSD can not support IBM ServeRAID4Lx o [2002/07/25] i386/40972 Stallion Multiport Serial Driver . o [2002/07/26] kern/41007 overfull traffic on third and fourth adap o [2002/07/26] i386/41020 Installation was successful only after I f [2002/07/27] conf/41054 Sendmail assumptions in startup scripts m o [2002/07/29] kern/41125 adrian squid-2.4.STABLE7 loop on poll() - SMP ke o [2002/07/29] ports/41128 greid recv_addr init wrong and 512 byte udp pac o [2002/07/29] i386/41138 silby vr0 locks up on one hub, OK on another o [2002/07/31] kern/41216 Get "NFS append race" error o [2002/08/01] misc/41242 periodic scripts make unwarrented assumpt o [2002/08/03] bin/41297 mp {t,}csh backquote/braces expansion bug f [2002/08/04] bin/41327 jon skey decrementing but not authorizing wit o [2002/08/04] misc/41331 Pthread library open sets O_NONBLOCK flag f [2002/08/06] kern/41374 panic: Removing other than first element o [2002/08/07] bin/41410 /bin/sh bug on expanding $? in here-docum o [2002/08/07] bin/41435 mbr dhclient writes lease file that it can't f [2002/08/10] kern/41525 SiS 630 Modem and Soundcard on FreeBSD 4. o [2002/08/11] misc/41557 periodic daily -> 500.ipfwdenied -> syste o [2002/08/11] i386/41569 silo overflow o [2002/08/13] kern/41632 luigi bridging when one interface has no carrie o [2002/08/14] bin/41671 gcc produces bad debug info o [2002/08/16] kern/41720 if_nge_load=YES make system not bootable o [2002/08/16] kern/41740 grog vinum issues: page fault while rebuilding f [2002/08/16] i386/41741 Cron calling periodic spawns hundreds of o [2002/08/18] i386/41757 qa sysinstall 4.6.x unstable o [2002/08/18] ports/41767 obrien make clean causes infinite loop o [2002/08/19] i386/41776 mrouted doesn't route multicast packets o [2002/08/19] bin/41777 /etc/periodic/daily/100.clean-disks remov o [2002/08/20] docs/41824 murray LANG is not documented in setlocale(3) o [2002/08/21] kern/41850 sysinstall fails to create root filesyste f [2002/08/21] docs/41865 trhodes [PATCH] XFree86 section should document - o [2002/08/22] kern/41881 julian ng_device was not MFCed for 2 months o [2002/08/22] bin/41908 make: $? not always set o [2002/08/23] i386/41930 declaration clash for ffs() and ${CXX} o [2002/08/23] conf/41935 PPPoE problem with 3com device - 3c12 s [2002/08/23] ports/41945 alane bsd.port.mk: does not run ACLOCAL o [2002/08/24] ports/41966 edwin audio/play: sblive, can cause "Device bu o [2002/08/24] ports/41970 edwin trafcount causes fatal trap 12 o [2002/08/24] i386/41979 top(1) reports zero CPU utilization o [2002/08/25] bin/42004 quota and rpc.statd are still IPv4 only, o [2002/08/26] misc/42029 add rdist flags to /etc/periodic/daily/32 o [2002/08/27] misc/42062 2 computers with the same network interfa o [2002/08/27] kern/42089 ntp_gettime returns time in wrong scale o [2002/08/27] bin/42093 ypbind hangs on NIC with the lowest scope o [2002/08/28] misc/42115 luigi PicoBSD: fix build script for 4.6-STABLE o [2002/08/28] ports/42118 petef mail/isoqlog fails to compile due to auto o [2002/08/28] kern/42120 arp(8) fails due to ioctl SIOCGIFNETMASK o [2002/08/29] ports/42161 kris isakmpd build without policy and keynote o [2002/08/29] misc/42172 ftp and fetch client needs an active comm o [2002/08/30] ports/42186 demon devel/autoconf and devel/p5-File-Tools ar o [2002/08/30] kern/42216 simultaneous multiple server network fail o [2002/09/02] bin/42318 ipfw NATD redirect limitations o [2002/09/02] kern/42352 Impossible to set RCV timeout on a socket p [2002/09/02] bin/42356 uudecode -o doesn't work if piped o [2002/09/03] bin/42397 dlclose for a module loaded with RTLD_GLO o [2002/09/04] bin/42407 ppp(8) IPV6CP fails o [2002/09/05] kern/42457 Hack to allow Linux Matlab to exit o [2002/09/05] i386/42463 4.6 and 4.6.2 fail to boot on Sony CD-ROM o [2002/09/06] bin/42484 ps: uprocp documented but not implemented o [2002/09/06] i386/42495 Drive Timeout - New Dell GX260 o [2002/09/07] ports/42516 openoffice OpenOffice.org generate wrong WM_LOCALE_N o [2002/09/07] i386/42539 Fatal Trap 12 resulting from Conner Perip o [2002/09/08] ports/42556 nakai archivers/rpm linked statically o [2002/09/08] kern/42564 record bug with emu10k1 driver o [2002/09/08] kern/42578 Using PCI serial cards (puc) in SMP machi o [2002/09/09] ports/42612 ports-bugs gphoto2 2.1 core dumps on DC290 o [2002/09/09] kern/42617 rename(2) IEEE Std 1003.1-2001 Violation o [2002/09/09] kern/42621 Dell Inspiron 5000e hangs when using Orin o [2002/09/10] misc/42623 luigi net.inet.ip.fw.autoinc_step not present a o [2002/09/10] kern/42629 panic in nfs_get o [2002/09/10] kern/42638 CS4326/4327 (MSS) buggy output playing 11 o [2002/09/10] ports/42643 fanf new mainstream version from sysutils/cfen f [2002/09/10] ports/42647 ports-bugs port pybliographger does not configure o [2002/09/11] kern/42652 error deleting r/o (by windows) files on o [2002/09/11] bin/42658 recompile /usr/src/libexec/telnetd and lo o [2002/09/12] ports/42713 wjv biology/emboss : problems building EMBASS a [2002/09/12] kern/42714 mbr dc ethernet driver is broken o [2002/09/13] gnu/42726 cvs -R pserver & val-tags: story continue o [2002/09/13] kern/42727 [PATCH] Wrong MTU in need-frag ICMP using o [2002/09/13] ports/42729 obrien bash manpage has /bin/bash as location fo o [2002/09/13] misc/42748 USB on hardware list does not work o [2002/09/13] i386/42750 Fdisk makes no difference between FAT32, o [2002/09/13] docs/42762 doc ppp.8 has no description of $env and ~use o [2002/09/14] misc/42767 User PPP fails if processor usage is cons a [2002/09/14] ports/42777 openoffice OpenOffice install fails o [2002/09/14] ports/42783 steve open-motif port doesn't compile o [2002/09/14] i386/42784 pcmcia 16bit network card removal locks a o [2002/09/14] i386/42794 Asks for "ew Password" then unexpectably o [2002/09/15] misc/42801 FreeBSD freezes when opening cuaa0 with a o [2002/09/15] kern/42805 System lockup o [2002/09/15] i386/42806 VLANs do not work with fxp + catalyst as o [2002/09/16] kern/42847 panic: backgroundwritedone: lost buffer o [2002/09/16] misc/42849 MBR is scribbled on by by freebsd o [2002/09/19] ports/42964 billf /usr/ports/net/mtr: I don't want mtr-gtk o [2002/09/20] kern/42983 wi0 sporadically freezes the system for 1 o [2002/09/20] ports/43036 alane python-doc packages aren't found by pydoc o [2002/09/20] kern/43151 Panic 20 seconds after resume o [2002/09/21] kern/43175 uvisor.c table error f [2002/09/21] bin/43209 download of bin.cp is only 239717 and not o [2002/09/21] i386/43222 setrootbyname panic in 4.6 o [2002/09/21] bin/43223 pirzyk getnetby{name|addr} broken for DNS lookup o [2002/09/23] bin/43299 march=pentium4 miscompiles msun/src/e_pow o [2002/09/23] ports/43301 steve mwm confused by mouse events following up o [2002/09/23] kern/43314 kernel panic "clist reservation botch" o [2002/09/24] bin/43337 fetch: -s fails if -4 or possibly other o o [2002/09/25] kern/43352 luigi ipfw aborts processing file/pipe when del o [2002/09/25] i386/43366 Cannot format media in USB floppy devices o [2002/09/26] ports/43408 ports-bugs graphics/mpeg2play does not install docum o [2002/09/28] ports/43454 www Packages hard to find, often missing o [2002/09/28] kern/43462 copying files from olympus C-4040 digital o [2002/09/29] kern/43475 grog Starting Vinum again while active corrupt o [2002/09/29] bin/43501 getpwnam, getpwuid fail when linking agai o [2002/09/30] bin/43505 ssh session "crash" if you are typing sec p [2002/10/01] alpha/43567 alpha strtod() core dumps o [2002/10/02] bin/43592 mktime rejects dates at the start of dayl o [2002/10/02] kern/43599 Balloc did not check mallocated pointer i a [2002/10/02] kern/43605 luigi enabling polling in the kernel causes pag o [2002/10/03] bin/43635 filesystem damage not detected by fsck o [2002/10/04] alpha/43653 alpha rl(8) driver causes unaligned access trap o [2002/10/04] misc/43674 Able to bypass expired password o [2002/10/05] ports/43714 dirk problem with installing php4-4.2.3 o [2002/10/07] docs/43776 doc /etc/sshd_config settings overridden by P o [2002/10/07] ports/43796 ports-bugs x11-toolkits/xview does not build on 5.0 o [2002/10/07] kern/43808 usb kernel panics o [2002/10/08] i386/43814 release 4.6 & 4.6.2 does not see the hard o [2002/10/08] standards/43837wollman PKST (pakistan daylight time) changed fro o [2002/10/08] ports/43843 dirk php4 4.2.3 does not make all install suce o [2002/10/08] ports/43847 ports-bugs new ports: babytrans,gsfv,mmail,tetradraw o [2002/10/08] ports/43849 dirk mod_php4 problem o [2002/10/09] conf/43851 Colorado backup unit o [2002/10/09] i386/43852 4.7-RC "device timeout" problem a [2002/10/09] kern/43885 ken USB CDROM does not work with vmware 2.x o [2002/10/10] kern/43887 abnormal CPU useage when use pthread_mute o [2002/10/11] java/43924 glewis writing from JAVA to a pipe sometimes han o [2002/10/11] bin/43930 ldconfig calls bcopy with wrong size o [2002/10/11] kern/43953 Backport of BMC5703 drivers o [2002/10/12] misc/43976 Binary upgrade to 4.7R fails if package ' o [2002/10/12] kern/43984 rp driver does not support multiple PCI c o [2002/10/12] bin/43993 /usr/sbin/usbd does not handle an usb eve o [2002/10/13] kern/44011 [PATCH] PT_CONTINUE, PT_KILL and PT_DETAC o [2002/10/13] kern/44030 VNode/Swap troubles f [2002/10/14] kern/44063 sos ATA Tags (TQ) problems on 4.7-STABLE o [2002/10/14] kern/44064 Linux IPC emulation fails for recent prog o [2002/10/15] kern/44087 fatal kernel trap when ifconfig a inet6 i o [2002/10/15] ports/44101 trevor Netscape 7 port fetches unspecified compo o [2002/10/15] kern/44126 lnc network hungup at large traffics on V o [2002/10/15] kern/44128 Machines hangs during boot, if ACPI is en o [2002/10/16] kern/44130 Enabled apm hangs up FreeBSD kernel on i8 o [2002/10/16] alpha/44147 alpha kdebase 3.0.4 will not build s [2002/10/16] misc/44148 installworld in 4.7-STABLE does not insta o [2002/10/17] ports/44169 ports-bugs linux_base-7.1_1 port has bogus protectio o [2002/10/17] i386/44178 kldload of snd_emu10k1 locks system o [2002/10/17] misc/44185 Problem adding route with -interface opti o [2002/10/17] ports/44192 edwin joe o [2002/10/18] kern/44202 -stable rp driver does not work with mult o [2002/10/18] bin/44256 gshapiro /etc/mail/Makefile doesn't build submit.c o [2002/10/19] conf/44263 Intel AnyPoint II Wireless Card Unrecogni p [2002/10/19] misc/44268 ache [PATCH] FreeBSD is missing lt_LT.ISO8859- o [2002/10/19] ports/44274 dirk www/mod_php4 and lang/php4 doesn't build o [2002/10/19] ports/44295 ports-bugs New port: MLton, an optimizing Standard M p [2002/10/20] bin/44320 maxim jail(1) change for set{uid|gid} o [2002/10/21] kern/44355 After deletion of an IPv6 alias, the rout o [2002/10/23] kern/44417 luigi ipfw layer2 rules are not checked for eth o [2002/10/24] ports/44440 sobomax www/viewml won't compile if qt3 installed o [2002/10/25] ports/44457 edwin [NEW PORT] devel/mingw32-binutils: new ve o [2002/10/25] ports/44458 edwin [NEW PORT] devel/mingw32-bin-msvcrt: new o [2002/10/25] ports/44459 edwin [NEW PORT] devel/mingw32-gcc: new version o [2002/10/26] i386/44497 NIC Lags? s [2002/10/26] bin/44504 mp tcsh-6.12.00's "source" command ignore co o [2002/10/26] kern/44512 pcm driver generates static half the time o [2002/10/26] kern/44514 X11 mouse pointer disappears upon suspend o [2002/10/27] bin/44518 ftpd does not show OPIE OTP challenge o [2002/10/27] bin/44519 ftpd.conf(5) contains references to ftpd( o [2002/10/27] kern/44542 Locking issues with pcm o [2002/10/27] kern/44543 Duplicate lock of type 'inp' when startin o [2002/10/27] kern/44544 Can't kldunload snd_emu10k1.ko o [2002/10/28] gnu/44564 peter [PATCH] Aborted cvs session causes an end o [2002/10/28] bin/44567 ipfstat does not show IPv6 accounting inf o [2002/10/28] bin/44570 ftp behind VPN server fails host name loo o [2002/10/28] misc/44578 getnetgrent fails to read NIS netgroup ma o [2002/10/29] kern/44585 bug in lockmgr o [2002/10/30] i386/44745 Program written in C++ can hang system (s o [2002/10/30] bin/44750 usr.bin/make: parens in compound conditio o [2002/10/30] ports/44759 ports-bugs ghostscript-gnu-7.05_3 produces incorrect f [2002/10/31] ports/44799 dirk mysql323-server (3.23.53) fails to build o [2002/10/31] ports/44802 will games/xkobo broken on -current o [2002/11/02] ports/44835 knu portupgrade vs. docproj dependencies o [2002/11/03] kern/44853 Panic on resume o [2002/11/03] kern/44867 Frequent hard hangs on ASUS P4T-E/P4S-533 o [2002/11/05] kern/44936 ng_pppoe: relay session identifier does n o [2002/11/06] bin/44995 /usr/bin/limits thinks sbsize is number, o [2002/11/06] kern/45013 locking warnings in CURRENT o [2002/11/06] kern/45014 VLAN tag on frames received via em(4) are o [2002/11/06] kern/45023 flexlm does not run with linux-base-7, st o [2002/11/09] gnu/45168 Buffer overflow in /usr/bin/dialog o [2002/11/11] ports/45210 ports-bugs Broken Linux ABI Emulation in FreeBSD 4.7 o [2002/11/12] ports/45234 ports-bugs timidity++ portupgrade problem, removes s o [2002/11/13] bin/45272 dump/restore problem o [2002/11/14] docs/45303 doc Bug in PDF DocBook rendering o [2002/11/15] kern/45322 Panic on resume (zone: entry not free) o [2002/11/15] kern/45324 Re: 4.7 kernel does not find aha1 o [2002/11/16] kern/45353 silby Trivial local DoS via file table exhausti o [2002/11/17] kern/45373 softupdate / fs damaged after loss of pow o [2002/11/18] bin/45397 nectar Telnet dumps core when MAKE_KERBEROS5=yes o [2002/11/18] kern/45403 imp Cannot install -CURRENT via pccard networ o [2002/11/18] ports/45417 jim everybuddy installs modules in wrong plac o [2002/11/19] bin/45478 tjr /bin/sh coredump o [2002/11/19] bin/45484 paul pkg_update(1) does not correctly re-regis f [2002/11/19] ports/45490 ports-bugs tightvnc leaks connections o [2002/11/19] ports/45495 portmgr Fix port bsd.port.mk to build when there o [2002/11/20] i386/45525 Dell Inspiron 7000 does not recognize PC- o [2002/11/20] bin/45529 hexdump core-dumps with certain args [PAT o [2002/11/20] ports/45531 ports-bugs Upgrade port hyperlatex-2.5 to 2.6 o [2002/11/21] i386/45558 mdconfig and msdosfs make fs writes hang o [2002/11/21] i386/45565 qa sysinstall: write error, filesystem full o [2002/11/21] kern/45579 Panic from USB stack after device detach o [2002/11/24] bin/45669 des pam_ssh fails in presence of SIGCHLD hand o [2002/11/24] kern/45673 sound PC98 internal CS4231A is mis-detected to o [2002/11/24] kern/45679 sound Cannot record except 8bit-mono with CS423 o [2002/11/24] kern/45682 sound Sometime failed to record/play with CS423 o [2002/11/25] kern/45713 emoore If you use the amr driver, it is impossib o [2002/11/25] bin/45721 darrenr ipfilter's flags and icmp-type processing o [2002/11/25] bin/45723 ls(1)'s wrong behaviour with not searchab o [2002/11/25] kern/45733 file descriptor flags and socket flags ou o [2002/11/26] gnu/45744 /usr/bin/makeinfo sometimes segfaults o [2002/11/26] bin/45754 vnconfig(8) fails to return correct exit o [2002/11/26] ports/45757 trevor mail/xc-mail: update to current (2.2) & c o [2002/11/26] conf/45766 rcNG broke non-system sshd startup o [2002/11/26] misc/45772 Kernel does not compile with IPFILTER opt o [2002/11/26] i386/45773 Softboot causes autoconf failure on Broad o [2002/11/26] kern/45777 crashdump issue with too-small dumpdev o [2002/11/27] conf/45792 Compaq WL200 entry in etc/defaults/pccard o [2002/11/27] ports/45805 ports-bugs security/sfs does not build on Alpha o [2002/11/29] docs/45833 trhodes nsmb.conf man page o [2002/11/30] ports/45894 sobomax wxgtk-2.2.9 conflicts with /usr/ports/dev o [2002/12/02] kern/45913 WaveLan driver problems with latest -CURR o [2002/12/03] kern/45966 TCPDEBUG kernel option broken by changes o [2002/12/03] ports/45972 tobez Perl system() calls will hang if the proc o [2002/12/03] ports/45976 ports-bugs librdiff is old version with serious memo o [2002/12/04] bin/45990 dwmalone top dumps core if specific errors in pass o [2002/12/04] bin/45995 Telnet fails to properly handle SIGPIPE o o [2002/12/05] ports/46008 kiri [PATCH] Update mail/mew2 to Mew 2.3 o [2002/12/05] ports/46013 dbaker misc/dnetc: fix install error o [2002/12/05] i386/46017 smb mounts break /etc/periodic/weekly/310 f [2002/12/06] ports/46029 ijliao centericq 4.7.8_5 fails to build o [2002/12/06] ports/46030 mharo ProFTPD 1.2.6 fails to build o [2002/12/06] kern/46036 inaccurate timeouts in select(),nanosleep o [2002/12/06] ports/46039 ports-bugs adzapper install fails out of the box o [2002/12/08] i386/46100 Random panic. o [2002/12/09] ports/46149 trevor Celestia build fix o [2002/12/09] java/46151 java Sound Capture works only one time o [2002/12/09] kern/46152 Panic in adw dumping to tape o [2002/12/10] ports/46164 ports-bugs incorrect work of pkg_add f [2002/12/10] ports/46167 ports-bugs New port: sysutils/gkleds o [2002/12/10] bin/46175 Evolution reports "Generic error" creatin o [2002/12/10] kern/46176 umass causes kernel panic if device remov f [2002/12/11] ports/46180 ports-bugs lang/squeak3 creates $PREFIX/bin/squeak s o [2002/12/11] i386/46194 5.0-RC1 kern floppy load fails on AMD K6- o [2002/12/11] www/46195 www man page kadmind(8) not found at www.Free o [2002/12/12] i386/46223 PC-CARD presence makes kernel panic o [2002/12/12] kern/46226 5.0-RC1 ipfilter module [ipl.ko] fails to o [2002/12/13] kern/46239 posix semaphore implementation errors o [2002/12/13] misc/46245 AC'97 is not supported on ABIT BW7 o [2002/12/13] bin/46249 [PATCH] /usr/bin/cmp -x ignored on specia o [2002/12/15] java/46269 java ports/java: jdk 1.3.1 p7 fails to build w f [2002/12/15] ports/46278 edwin New Port: games/vegastrike o [2002/12/15] docs/46286 doc there's an omission and an error in the n o [2002/12/17] ports/46322 tobez lang/perl5 - string '0' (zero) is not con o [2002/12/17] ports/46329 chuckr gnuplot compiled with -march=pentiumpro o o [2002/12/17] ports/46338 ports-bugs cyrus-sasl-1.5.27_7 mysql_verify_password o [2002/12/18] bin/46352 Open file descriptors and signal handling o [2002/12/19] i386/46371 USB controller cannot be initialized on I o [2002/12/19] ports/46380 dirk mod_php4-4.2.3 file_exists() always retur o [2002/12/19] ports/46381 sumikawa racoon coredumps when talking to win2k o [2002/12/20] ports/46399 ports-bugs lib o [2002/12/20] conf/46401 dougb [PATCH] /etc/rc.d/named doesn't create ch o [2002/12/20] kern/46405 [PATCH] Bad VLAN handling on NIC's with V o [2002/12/21] ports/46443 ports-bugs lang/jgnat compilation failure f [2002/12/21] i386/46446 make(1) core dumps on buildworld o [2002/12/22] i386/46484 System panics upon configuration of bge N o [2002/12/23] ports/46507 ports-bugs Failure to Build Postfix-Current due to S o [2002/12/24] kern/46521 bktr(4)'s yuv422_prog is broken. o [2002/12/25] ports/46530 ports-bugs GtkAda2 links against unexistent libgthre o [2002/12/25] bin/46533 Inadequate validity checking on args to t o [2002/12/26] kern/46551 cbb driver hangs on Sony Vaio o [2002/12/26] i386/46553 System freezes after awakening from hiber o [2002/12/26] ports/46554 tobez fix a regex bug dealing with utf8 strings o [2002/12/27] kern/46557 ipfw ipfw pipe show fails with lots of queues o [2002/12/28] misc/46575 KERBEROS IV and KERBEROS V makes PicoBSD o [2002/12/28] kern/46576 FreeBSD 4.6 broke linux emulation install o [2002/12/29] kern/46618 USB (UHCI/ICH3) PALM connect/disconnect/c o [2002/12/29] kern/46619 Installation hangs on IBM Thinkpad T23 o [2002/12/29] kern/46626 Fatal error during compilation of 4.7-REL o [2002/12/31] i386/46646 snd_emu10k1.ko halting the system a [2002/12/31] kern/46647 silby Failure to initialize MII on 3Com NIC res o [2003/01/01] bin/46676 ru [PATCH] bsd.dep.mk restricts domain of ta o [2003/01/02] misc/46694 Getting DUP packets when in Promiscous mo o [2003/01/03] kern/46736 ISA audio CS4232 (HP Omnibook 5000C) work o [2003/01/03] ports/46741 ports-bugs PVM-POV fails trying to locate file/folde o [2003/01/04] kern/46752 bge(4) does not support Broadcom BCM5702C o [2003/01/04] bin/46761 buffer overflow by strcpy() in natd's arg o [2003/01/05] ports/46788 dirk www/mod_php4 could not be build with `mcv o [2003/01/05] ports/46792 ports-bugs Apache 1.3.27+mod_ssl/2.8.12 segfaults if o [2003/01/07] kern/46834 GENERIC kernel doesn't compile on Alpha a s [2003/01/07] ports/46846 lioux livecd: Running fails due to old patches o [2003/01/08] kern/46872 Make sound work on TV-cards with MSDP3415 o [2003/01/08] kern/46881 ether_input casts m_hdr to mbuf and cause o [2003/01/09] kern/46889 imp ax88790 support for ed(4) o [2003/01/09] misc/46902 Error with mount_smbfs and 15 Char Netbio o [2003/01/10] kern/46957 alfred [Patch] Bogus return value (-1==ERESTART) f [2003/01/10] ports/46964 ports-bugs Failure when running "make install" on ex o [2003/01/11] ports/46985 sobomax port x11-toolkits/py-wxPython broken on - f [2003/01/11] ports/46986 ports-bugs multimedia/mplayer-skins - interactive di o [2003/01/12] kern/47005 OHCI USB not noticing device detachments o [2003/01/14] ports/47061 ports-bugs Conflicting system headers by build of gr o [2003/01/14] ports/47089 ports-bugs multimedia/xmms - core dump (sig 10) whil o [2003/01/15] ports/47107 nbm sip port doesn't build o [2003/01/16] kern/47152 pseudo-device ef in kernel does not creat o [2003/01/16] ports/47153 znerd java/java-tutorial - checksum mismatch (n o [2003/01/17] ports/47158 ports-bugs new port ports/editors/ooodict-ru_RU o [2003/01/17] ports/47177 ports-bugs Have biology/molden build and install the o [2003/01/19] ports/47212 lioux Port `multimedia/libdvdread' could not be o [2003/01/19] i386/47236 Console missing during bootup on Sony Pic o [2003/01/19] i386/47243 Onboard CMedia CMI8738 playback noise o [2003/01/20] ports/47245 znerd daemonctl scribbles over log file when si f [2003/01/20] kern/47255 5.0-RELEASE install boot floppies hang wi o [2003/01/20] ports/47273 portmgr Ports tree references wrong crypto librar o [2003/01/20] kern/47279 IBM 370 hangs on reboot o [2003/01/20] kern/47280 APCI functions crash / corrupt / fail to o [2003/01/20] ports/47285 lioux libmpeg2 fails to build on Alpha o [2003/01/20] kern/47286 device probing not verbose when using boo o [2003/01/21] ports/47298 ports-bugs pkg_update removes installed package even o [2003/01/21] ports/47303 wjv Update biology/p5-bioperl to latest relea o [2003/01/22] kern/47352 pcm/ac'97, dsp device busy o [2003/01/23] ports/47402 ports-bugs New Port: net/sysmon o [2003/01/23] ports/47405 ports-bugs scribius could not save russian letters a o [2003/01/23] i386/47412 fdisk core dumps (gdb) with gbde disc o [2003/01/23] ports/47419 kuriyama gnupg build failure... o [2003/01/24] i386/47449 Thinkpad 755CD floppy boot fails o [2003/01/24] kern/47451 5.0 GENERIC(sysinstall CD) locks during b o [2003/01/24] kern/47452 df(1) reports filesystem empty when it is o [2003/01/25] kern/47453 Leadtek Winfast TV 2000 card identificati f [2003/01/25] bin/47496 amd cannot mount 5.0-RELEASE nfs-exports o [2003/01/26] kern/47512 bash in gdb triggers kernel panic o [2003/01/26] ports/47513 jkh net/cvsupit, add entry for src-sys-crypto o [2003/01/26] kern/47531 mutex_d panics SMP kernel o [2003/01/28] kern/47586 [PATCH] fix information-leak (mounts) in o [2003/01/28] bin/47607 quota(1) misreports nfs quotas >= 4 GB o [2003/01/29] kern/47628 msdosfs file corruption fix o [2003/01/29] i386/47647 init died with signal 6 o [2003/01/29] kern/47648 creating alias on ethernet interface caus o [2003/01/30] ports/47700 ports-bugs New port: XawPlus, a 3D replacement for X o [2003/01/31] ports/47713 lioux multimedia/ffmpeg - "make deinstall reins o [2003/01/31] ports/47734 ports-bugs [NON-MAINTAINER] devel/doc++: update from o [2003/01/31] ports/47768 ports-bugs print/ghostscript-afpl gv (3.5.8_1) can't o [2003/02/01] kern/47786 imp patch for BUFFALO LPC3-CLX 10/100Base-T P f [2003/02/01] i386/47787 markm new 5.0 system without perl fails buildwo f [2003/02/02] ports/47807 knu ruby-bdb1 fails to install o [2003/02/02] ports/47809 ports-bugs New port: Ukrainian accounting system. o [2003/02/02] i386/47813 pseudo-device gre doesn't appear to work o [2003/02/02] ports/47829 ports-bugs New port: python bindings for gtkextra o [2003/02/03] ports/47842 cy security/tripwire fails to build under CU o [2003/02/03] ports/47843 sobomax [PATCH] archivers/libcabinet: make more f o [2003/02/03] ports/47846 knu portupgrade doesn't see any packages on s o [2003/02/03] kern/47871 Kernel panic in unpredictable moments o [2003/02/03] ports/47873 ports-bugs o [2003/02/25] ports/48681 kde `x11/kdebase3' could not be build on rece o [2003/02/26] kern/48715 thomas atacontrol detach panics system when ATAP o [2003/02/26] bin/48730 burncd does not handle signals and causes o [2003/02/26] ports/48737 znerd java/jdk13-doc - 5572 files missing from o [2003/02/27] kern/48741 ipnat corrupts packets on gre interface w o [2003/02/27] kern/48752 freeze when installing 5.0 Release f [2003/02/27] kern/48753 freeze of 5.0-RELEASE related to NFS o [2003/02/27] kern/48755 5.0-p2 kernel panic probably filesystem r o [2003/02/27] kern/48758 kldunload if_{nic} can cause kernel panic o [2003/02/28] kern/48777 vidcontrol modes not restored on vt switc o [2003/03/01] ports/48803 kde KDE 3.1 (kxkb) break XKB configuration an o [2003/03/01] ports/48805 kde `Segmentation fault' for games/nethack34- o [2003/03/02] ports/48829 dirk [New Ports] php-dev (development versions o [2003/03/02] ports/48841 ports-bugs tls on postfix does not work (smtp and sm o [2003/03/02] ports/48852 kris sysutils/pstree can go into infinite loop o [2003/03/02] bin/48856 Setting SIGCHLD to SIG_IGN still leaves z o [2003/03/02] bin/48865 Dumps made on FreeBSD 5.0-RELEASE are unr o [2003/03/03] misc/48881 [PATCH] The influence of /etc/start_ifnam o [2003/03/05] kern/48952 uscanner0 hangs o [2003/03/05] bin/48958 standards The type 'bool' has different sizes for C o [2003/03/06] i386/48982 5.0 buildworld fails after openssl -DOVER f [2003/03/06] kern/48986 sos 5.0-R/4.7R system hangs on HighPoint RAID o [2003/03/07] kern/48996 Fatal trap 12 with incoming traffic from o [2003/03/08] kern/49040 problem mounting root; ffs_mountroot can' f [2003/03/09] bin/49048 [patch] ctm(1) does not check parent dire o [2003/03/09] ports/49051 ports-bugs port for x11-toolkits/flvw won't build o [2003/03/09] ports/49056 trevor Festival fixes for newer GCCs [PATCH] o [2003/03/10] bin/49087 Signals lost in programs linked with libc o [2003/03/11] kern/49102 julian Resident set size calculation broken in 5 o [2003/03/11] i386/49116 ACPI module disables /dev/psm0 detection o [2003/03/12] ports/49966 des portupgrade -R for linux-opera breaks ins o [2003/03/13] misc/49984 openSSH crashes while password based auth o [2003/03/13] ports/49995 phantom Native JDK1.4.1 build fails if WRKDIRPREF o [2003/03/14] ports/49998 tg textproc/rman(rman-3.0.9) segmentation fa o [2003/03/15] ports/50030 kuriyama [Update Port] textproc/dsssl-docbook-modu o [2003/03/15] ports/50042 mbr ports/www/mod_frontpage causes Bad System o [2003/03/16] ia64/50059 kan GCC bug tracker (tracks GCC PR 10116) o [2003/03/16] ports/50062 knu portupgrade does not process directives f o [2003/03/17] ports/50083 lioux qpopper 4.0.5 tarball file permissions do o [2003/03/18] ports/50093 kde x11-toolkits/qt31 port lacks of configura o [2003/03/18] i386/50099 jhb [PATCH] AP initialization fails on some S o [2003/03/18] ports/50104 ports-bugs Zope package does not set sticky bit on v o [2003/03/20] kern/50149 Using Alcatel SpeedTouch results in "usb0 o [2003/03/21] ports/50162 adrian update ports www/squid to 2.5-stable2 o [2003/03/25] kern/50298 unlimited usage of AGP memory make system o [2003/03/25] ports/50305 ports-bugs multimedia/xmms-avi fails to build on CUR o [2003/03/27] kern/50348 On usb.ko unload usb and usbN devices are p [2003/03/28] bin/50384 robert pkg_version -v core-dumps when no package o [2003/03/28] ports/50402 knu glib20 port: pthread_getschedparam is mis o [2003/03/29] ports/50417 phoenix Phoenix does not respect /usr/X11R6/lib/b o [2003/03/29] ports/50418 phoenix Phoenix file "unix.js" links to old versi o [2003/03/29] kern/50422 if_nge broken in FreeBSD 5p6 - nge0: watc o [2003/04/01] standards/50523standards Deprecate , add o [2003/05/01] ports/51664 ports-bugs [Maintainer Update] Port: irc/tr-ircd o [2003/05/01] i386/51676 o [2003/05/02] kern/51685 Unbounded inode allocation causes kernel o [2003/05/02] ports/51687 ports-bugs UPDATE textproc/p5-String-ShowDiff o [2003/05/02] ports/51688 ports-bugs UPDATE textproc/p5-Text-Reform o [2003/05/02] ports/51711 ports-bugs /usr/ports/emulators/linux_base will not o [2003/05/02] ports/51714 ports-bugs emulators/linux_base port fails to instal o [2003/05/03] ports/51717 ports-bugs mail/pear-mailparse: fix build + fix PEAR o [2003/05/03] ports/51736 ports-bugs [PATCH] Upgrade net/poptop o [2003/05/03] pending/51738gnats-admin lang/gcc28 - 'bounds checking' patch is m o [2003/05/03] ports/51740 ports-bugs lang/gnat - patching fails o [2003/05/04] ports/51747 ports-bugs [Update Port] net/mydns o [2003/05/04] ports/51748 ports-bugs net/gnugadu: big update, 0.2.2 -> 1.0.0 f [2003/05/04] bin/51767 mtm /etc/rc.d/virecover in wrong order o [2003/05/05] ports/51789 ports-bugs high security hole in old dcgui/dclib por o [2003/05/05] ports/51807 ports-bugs g++295 can't parse header file 1258 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1995/01/11] i386/105 standards Distributed libm (msun) has non-standard s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/11/20] kern/831 one minor complaint about the kernel visu a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po o [1997/01/10] bin/2442 setusershell()/endusershell() missing a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d s [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/10] bin/2934 cracauer sh(1) has problems with $ENV s [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) f [1997/05/16] bin/3608 jkoshy Telnet in linemode will break apart long o [1997/06/24] kern/3944 paul if_le doesnt receive ether multicast pack o [1997/07/18] bin/4116 Kerberized login as .root fails to s [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 jmallett find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 qa Can't fixit with an NFS-mounted CD. o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts f [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 jkoshy Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/10] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul f [1998/03/06] i386/5932 perfmon kernel code should check for non- f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl p [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/18] conf/6346 joe Kernel version strings need to relate to s [1998/05/17] kern/6668 babkin [PATCH] new driver: Virtual Ethernet driv s [1998/05/29] bin/6785 place for all the default dump flags s [1998/06/01] kern/6820 jesper cd9660_mount NULL pointer deref for no CD o [1998/06/22] ports/7023 portmgr bsd.port.(%|subdir.).mk patches for size a [1998/07/01] bin/7136 markm kerberized telnetd doesn't use gettytab % s [1998/07/10] misc/7232 qa Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel o [1998/07/12] bin/7265 A warning flag is added to ln(1). f [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/19] bin/7324 mtm Suggestions for minor modifications to ad s [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace s [1998/08/22] kern/7722 Changes to acct format s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/16] misc/7946 asami ccdconfig gives confusing error when give o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re s [1998/09/21] kern/8015 nbm [patch] Some sysctl descriptions for the o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/19] kern/8376 tjr CLOCK_VIRTUAL not implemented o [1998/10/27] i386/8474 repquota does not pick up NIS information a [1998/10/28] bin/8479 dd Final \'s in /etc/exports did not work in f [1998/10/30] kern/8498 dwmalone Race condition between unp_gc() and accep o [1998/11/27] i386/8867 qa /stand/sysinstall core dumps (signal 11) a [1998/12/18] bin/9123 pax can't read tar archives that contain f [1998/12/28] misc/9220 ache nvi: catalog: mistake in Russian error me o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy a [1999/01/05] bin/9333 jkoshy timestamp dump's progress o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/22] kern/9619 Restarting mountd kills existing mounts f [1999/01/25] kern/9679 fix for uninterruptible open in portal fi a [1999/01/28] bin/9770 jmallett An openpty(3) auxiliary program o [1999/01/29] i386/9777 cg Generic AD1816 sound suport in Luigi's pc o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/03/02] bin/10358 yar ftp(1) has problems with long pathnames f [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10611 timed enhancement o [1999/03/17] kern/10641 groudier Default sync rate in ncr SCSI driver is s o [1999/03/19] gnu/10670 peter cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/04/11] bin/11085 Per-host configuration for syslog.conf p [1999/04/11] bin/11092 johan readlink(1) from OpenBSD f [1999/04/13] bin/11114 tjr make(1) does not work as documented with o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 f [1999/04/16] bin/11168 pw(8) usermod does not recognize -w flag o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM f [1999/05/29] bin/11929 symorder doesn't work on elf format objec o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor o [1999/06/07] kern/12071 fanf [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 p [1999/06/16] bin/12244 fjoe realpath() fails when there is no permiss o [1999/06/21] conf/12324 qa Sysinstall's fdisk partition editor is mi o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 peter kldload(8) should be more sensitive to er o [1999/07/08] ports/12566 billf a guide to pyrotechnics o [1999/07/25] bin/12801 nvi infinite recursion with options "left o [1999/08/04] ports/12952 portmgr make _PORT_USE touch cookies by variable, f [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/12] bin/13108 authunix_create_default includes egid twi a [1999/08/13] bin/13128 cy pkg_delete doesn't handle absolute pathna f [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for ' cannot be used in "via" o [2000/05/30] kern/18909 dwmalone select(2) timeout limited to 100000000 se o [2000/06/01] ports/18960 portmgr Add USE_APACHE to bsd.port.mk for Apache o [2000/06/03] bin/18992 brian log packets blocked by filter rules o [2000/06/03] misc/18997 markm Kerberos5 CFLAGS needed o [2000/06/06] ports/19051 asami New target for bsd.port.mk : fetchdepends o [2000/06/11] kern/19213 SC_DFLT_FONT compile option breaks kernel s [2000/06/13] misc/19246 portmgr Poor error message when fetching files wi f [2000/06/15] gnu/19327 Fix to build 'a.out' binary. o [2000/06/19] misc/19391 emulation Evilness with Linux Terminus, causes X to o [2000/06/20] misc/19406 setenv() allocates memory which is not fr o [2000/06/23] misc/19467 green OpenSSH (as an rsync tunnel) blocks forev o [2000/06/26] kern/19535 adrian procfs_rlimit tidyup s [2000/06/28] conf/19573 des Dot Files for Optional Shells f [2000/06/29] ports/19591 ports-bugs ssh2 port ignores 'ignorenologin' from lo o [2000/06/30] ports/19594 trevor update port: qrash o [2000/07/01] bin/19635 add -c for grand total to df(1), like du( o [2000/07/02] gnu/19642 kbyanc patch to merge OpenBSD changes to patch(1 o [2000/07/03] bin/19683 green mount displays incorrect mount point on f a [2000/07/03] kern/19686 yokota splash screen fails o [2000/07/05] kern/19720 kbyanc more sysctl signed-ness patches o [2000/07/07] kern/19756 Inability to use linux extended partition f [2000/07/07] bin/19772 df output wrong for union-mounts o [2000/07/08] kern/19782 dirk mkisofs 1.12.1 (i386-unknown-freebsd4.0) f [2000/07/09] misc/19798 cg 4DWAVE doesn't work. o [2000/07/10] kern/19827 yokota psm flag bit9(NOIDPROBE) doesn't work cor o [2000/07/10] misc/19837 ambrisko Run Fit it floppy from serial port o [2000/07/12] kern/19871 alfred select on named pipes always returns 'ava o [2000/07/14] kern/19913 des add SYN+FIN counter o [2000/07/15] kern/19966 new syscons screensaver o [2000/07/20] bin/20054 yar ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/24] misc/20139 msmith Simple typo in src/share/examples/ppi/ppi o [2000/07/24] misc/20166 billf Corrections & additions to games/quiz/dat o [2000/07/26] bin/20204 ps more doesn't handle 8-bit characters prop o [2000/07/27] kern/20214 dec kernel routing bug for nexthop is routed o [2000/07/28] ports/20270 ade libtool needlessly runs ldconfig after in o [2000/07/29] kern/20297 cg Joystick is not enabled with es1370 based o [2000/07/31] misc/20326 marcel [PATCH] installkernel fails if DESTDIR is o [2000/07/31] misc/20333 des ftp login fails on unix password when s/k o [2000/08/01] kern/20352 yokota Configuring a synaptics touchpad o [2000/08/02] ports/20359 demon New port: Apache-mod_perl_guide f [2000/08/02] bin/20371 mbr dhclient inserts bogus configurations o [2000/08/03] kern/20384 n_hibma Phase errors with Zip650 CD on USB o [2000/08/03] kern/20389 ken "device pass" required for CD ripping o [2000/08/03] bin/20391 jhb sysinstall should check debug.boothowto s o [2000/08/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/09] bin/20501 mjacob extra flag to dump to offline autoloaders a [2000/08/10] ports/20520 olgeni New port: lang/mercury o [2000/08/10] docs/20528 standards sysconf(3) manpage doesn't mention posix. o [2000/08/10] kern/20529 wpaul gigabit cards fail to link o [2000/08/11] i386/20537 msmith HP NetRAID controller error when rebootin o [2000/08/16] i386/20660 wpaul if_wi provides 802.11 src and dst, not et o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE o [2000/08/23] ports/20795 msmith FBSD 4.x: Citrix client with drive mappin o [2000/08/23] bin/20799 peter 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 f [2000/08/24] misc/20830 kernel link problems with Olicom token ri f [2000/08/25] i386/20845 Cyclades cy driver incompatible with Cycl o [2000/08/26] bin/20881 kris There's no reason not to build DNSsec-DSA o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/28] bin/20908 qa /stand/sysinstall too limited in selectio o [2000/08/29] misc/20920 yokota window(1) interferes with screensaver o [2000/08/29] kern/20927 ume dmesg output: looutput: mbuf allocation f o [2000/08/30] bin/20944 ru natd enhancements, default config file an o [2000/09/02] bin/21008 gad Fix for lpr's handling of lots of jobs in o [2000/09/04] docs/21024 bde pow() ERANGE bug o [2000/09/05] conf/21059 marcel `make -jN buildkernel' can't keep source o [2000/09/05] misc/21070 marcel default setting of ${SUP} in Makefile.inc o [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/09] kern/21156 yokota [PATCH] inconsistency in scmouse vs xterm 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/16] bin/21312 more incorrectly redraws screen on xterm o [2000/09/16] bin/21315 Shells often behave oddly when executing o [2000/09/24] bin/21519 standards sys/dir.h should be deprecated some more f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q s [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/10/01] i386/21672 obrien AMD Duron Rev. A0 reports incorrect L2 ca o [2000/10/01] misc/21675 Better and more disktab entries for MO dr o [2000/10/02] misc/21715 The freebsd mail list digifier loses MIME o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/04] kern/21754 n_hibma Sound stops working when NetGear USB Devi o [2000/10/05] bin/21766 [PATCH] add -s (skip) flag to head(1) o [2000/10/05] kern/21768 rwatson shouldn't trailing '/' on regular file sy a [2000/10/06] kern/21807 [patches] Make System attribute correspon o [2000/10/07] docs/21826 wollman ARP proxy feature lacks documentation o [2000/10/09] kern/21859 Allow the syncer to be slowed down o [2000/10/09] ports/21885 portmgr bsd.port.mk: test for old layout is too o [2000/10/14] conf/21994 qa Config of Anonftp (at install) always cre o [2000/10/16] bin/22033 iedowse [PATCH] to pw(8) to allow encrypted passw o [2000/10/16] bin/22034 nfsstat lacks useful features found in So f [2000/10/18] misc/22073 xonsole: couldn't open console f [2000/10/18] conf/22102 Local scripts get run before securelevel o [2000/10/21] bin/22182 vi options noprint/print/octal broken f [2000/10/21] misc/22190 A threaded read(2) from a socketpair(2) f o [2000/10/21] bin/22198 inet_ntop may set errno to ENOSPC and nee o [2000/10/26] conf/22308 mounting NFS during boot blocks if host m s [2000/10/27] bin/22351 green sed(1) fails with backslash on buffer bou o [2000/10/30] ports/22412 taoka two extraneous ports and one name change o [2000/10/31] bin/22442 greid [PATCH] Increase speed of split(1) o [2000/11/02] ports/22550 cy Patch for conserver for log file rotation o [2000/11/04] bin/22612 schweikh crontab -e failures a [2000/11/08] misc/22696 luigi picobsd build with router configuration c o [2000/11/08] ports/22698 portmgr Ports' rc.d files should use rc.conf o [2000/11/09] bin/22730 fenner tcpslice doesn't handle long file offsets o [2000/11/14] docs/22861 dd newsyslog man page is misleading and inco o [2000/11/15] kern/22868 getsockname may return an incorrect addre o [2000/11/15] misc/22873 markm Perl's core'h conflicts with ncurses.h o [2000/11/16] i386/22900 patch: Adds Brand ID support to src/sys/i o [2000/11/17] misc/22914 bootinst messages are not updated s [2000/11/17] conf/22916 green Ssh/sshd binaries lacks kerberos support o [2000/11/23] conf/23063 ru [PATCH] for static ARP tables in rc.netwo o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser f [2000/11/25] bin/23097 Enhance WEP some more including ability t o [2000/11/27] misc/23148 getopt(3) works non-intuitively? o [2000/11/29] bin/23178 'talk' not doing right thing o [2000/11/29] bin/23180 Certain KOI8 characters are treated as "w o [2000/12/01] bin/23204 length of salt in crypt() is not the same o [2000/12/02] bin/23233 kris Reincorporate /usr/bin/error in the FreeB a [2000/12/03] bin/23254 fenner yacc accepts bad grammer o [2000/12/05] kern/23304 standards POSIX clock_gettime, clock_getres return o [2000/12/05] kern/23314 aic driver fails to detect Adaptec 1520B f [2000/12/07] misc/23362 fenner tcpdump wrong on sppp CISCO_HDLC encoded o [2000/12/07] gnu/23367 some src/gnu Makefiles are missing $FreeB a [2000/12/09] conf/23402 qa sysinstall upgrade ought to check partiti p [2000/12/11] bin/23472 mp gdb weirdness on programs compiled with - o [2000/12/13] kern/23520 sb0 old style audio support in 4.2-RELEAS o [2000/12/13] misc/23539 marcel make installworld from nfs mounted /usr/s o [2000/12/14] kern/23546 tanimura [PATCH] csa DMA-interrupt problem o [2000/12/15] i386/23562 telnetd doesn't show message in file spec o [2000/12/15] ports/23581 portmgr Updates to bsd.port.mk to detect changing o [2000/12/18] bin/23635 mike [PATCH] whois enhancement - smarter whois f [2000/12/24] kern/23814 .au sound files < 528 bytes actual data d o [2000/12/24] ports/23822 trevor mtree entries for German X11 man pages a [2000/12/28] bin/23912 sheldonh underflow of cnt in vs_paint() by O_NUMBE o [2001/01/04] bin/24066 mp gdb can't detach from programs linked wit p [2001/01/07] misc/24132 mp gdb output is wrong (same as #13427 ?) o [2001/01/07] kern/24141 sound emu10k1 has trouble playing non-44.1KHz s o [2001/01/10] ports/24214 portmgr [PATCH] verbose 'make index' a [2001/01/12] ports/24292 portmgr update-patches target in ports/Mk/bsd.por o [2001/01/12] ports/24299 ports-bugs Configure the synaptics touchpad. o [2001/01/16] misc/24384 4.1 Cant add entry to neighbour discovery o [2001/01/16] bin/24390 Replacing old dir-symlinks when using /bi o [2001/01/18] bin/24435 qa Changing slice type causes Auto-partition o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump a [2001/01/21] kern/24512 jesper Sent ICMP unreach when packet not for us o [2001/01/21] misc/24513 peter new options for pppd p [2001/01/21] conf/24515 dougb Fix for find(1) warning in /etc/rc o [2001/01/21] bin/24521 green ssh-agent exits when authenticating DSA v o [2001/01/22] kern/24528 Bad tracking of Modem status o [2001/01/23] bin/24592 cjc dmesg.boot Gets Overwritten without Reboo o [2001/01/25] ports/24651 mharo portlint gives a bogus warning o [2001/01/26] alpha/24663 alpha Console output gets scribbled into /var/l o [2001/01/30] ports/24743 chuckr a2ps port installs files in / o [2001/01/30] misc/24746 green SSH terminal hangs on large paste of data o [2001/01/30] ports/24749 dirk mysql323-server pkg-install script doesn' o [2001/01/31] bin/24757 yar ftpd not RFC compliant o [2001/02/01] docs/24786 doc missing FILES descriptions in sa(4) o [2001/02/03] kern/24827 yokota Erratic Intellimouse Explorer in 4.1 and f [2001/02/04] gnu/24844 gdb does not support Linux threads a [2001/02/05] docs/24869 keramida Some text elf.5 is duplicated o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/06] misc/24907 qa Options screen at MenuMedia menu problem o [2001/02/07] ports/24940 demon prolem with Tnm::icmp echo command due to o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] kern/24959 jesper proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/08] i386/24963 perfmon(4) doesn't work on SMP systems o [2001/02/09] ports/24983 nobutaka Emacs ports have misleading names o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu p [2001/02/11] docs/25016 ru symlink(7) manpage says symlinks have no o [2001/02/11] bin/25017 cp -pRP does not preserve symlink ownersh o [2001/02/11] kern/25018 lstat(2) returns bogus permissions on sym o [2001/02/12] ports/25031 ache www/apache: dbmmanage fails verifying md5 o [2001/02/13] bin/25070 gad newsyslog(8) should send signals only onc o [2001/02/13] bin/25085 msmith mlxcontrol utility fails silently if devi o [2001/02/15] misc/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/19] misc/25218 peter mailwrapper invokes sendmail when resourc o [2001/02/20] bin/25241 luigi ipfw shouldn't show dynamics rules when s f [2001/02/21] bin/25263 green openssh and /etc/login.access does not wo o [2001/02/21] bin/25273 add fs type feature to vnconfig(8) to all f [2001/02/22] bin/25278 dd bs accepts -s -c but not -sc o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console o [2001/02/26] kern/25386 cg Incorrect mixer registers (line & synth) o [2001/02/27] kern/25445 kernel statistics are displayed in wrong o [2001/02/28] bin/25462 daemon(3) fails if called by a session le f [2001/02/28] i386/25463 PS/2 mouse sync problems with KVM switch o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo o [2001/03/02] ports/25490 wosch [PATCH] fix various bugs in stat(1) p [2001/03/02] misc/25499 buffer paste functionality from keyboard o [2001/03/04] kern/25521 Laptop with FreeBSD4.2 freezes in battery f [2001/03/04] conf/25527 jdp `man ldconfig' does not reflect its behav o [2001/03/06] bin/25572 sshd core dump o [2001/03/06] ports/25576 anholt XFree86-4 port installs manual pages with o [2001/03/07] bin/25598 patch to let ftpd output message when cha s [2001/03/09] bin/25627 Cannot append hash after .elif in Makefil o [2001/03/11] bin/25723 green OpenSSH on 4.2 excessively regenerates RS o [2001/03/12] bin/25724 quota(1) outputs wrong limits about NFS q o [2001/03/12] kern/25733 mismatch between error reporting in smbus o [2001/03/12] bin/25736 ac -d option probrem with overdays logon f [2001/03/13] kern/25777 atime not updated on exec a [2001/03/13] ports/25779 portmgr (patch) make fetch-list should list all m o [2001/03/14] gnu/25794 markm [PATCH] make perl use a decent random num f [2001/03/14] ports/25815 portmgr [PATCH] Port build collision fix. o [2001/03/15] conf/25829 IPSec config in rc.network doesn't allow o [2001/03/16] kern/25866 more than 256 ptys, up to 1302 ptys. o [2001/03/18] kern/25909 4.x kernel freezes on P3-Asus CUSL2-C mot o [2001/03/18] kern/25910 cg Kernel sound driver may die if a program o [2001/03/19] misc/25917 green Paste thrue SSH Secure Shell v.2.4.0 (bui f [2001/03/22] docs/26003 rwatson getgroups(2) lists NGROUPS_MAX but not sy o [2001/03/22] bin/26005 MIME quoted-printable encoding added to v a [2001/03/22] docs/26006 jeff Changing zone(9) man page p [2001/03/22] kern/26016 iedowse VMWare is crash on SMP machine f [2001/03/23] misc/26035 System hangs when playing mp3 on PCI Maes o [2001/03/28] ports/26192 ports-bugs apel appeared both in xemacs/site-package o [2001/03/29] bin/26201 telnet SRA password exchange trap when no o [2001/04/01] kern/26277 ppc driver doesn't work with port 0x3BC p o [2001/04/02] docs/26286 chris *printf(3) etc should gain format string o [2001/04/03] kern/26316 Booting FreeBSD on VMware2 with 2 or 3 et o [2001/04/03] misc/26323 Quota system create zero-length files o [2001/04/03] kern/26324 Defaults for NFS mounts over TCP are slow a [2001/04/04] kern/26348 hm [pcvt] scon -s, page fault in HP mode o [2001/04/04] bin/26359 [PATCH] a minor nit in how netstat detect o [2001/04/06] bin/26375 markm PAMized su allows non-wheel members to su f [2001/04/06] kern/26385 VMWare reboots entire system after starti o [2001/04/09] kern/26454 cg mixer volume settings on Maestro-2E (Diam o [2001/04/09] bin/26468 pkg_delete clears dependencies after runn o [2001/04/10] conf/26488 dougb incomplete named sandbox information a [2001/04/13] docs/26532 green ".Ql ?" becomes "`'?" through nroff (and a [2001/04/13] kern/26534 Add an option to ipfw to log gid/uid of w o [2001/04/13] kern/26547 ambrisko "lnc" problem with shared memory mode wit o [2001/04/13] i386/26562 /dev/lpt0 returns EBUSY when attempting t o [2001/04/14] kern/26584 kernel boot messages aren't logged correc o [2001/04/16] kern/26618 unmount(2) can't unmount a filesystem who p [2001/04/17] misc/26646 srand() provides only 8-bit table f [2001/04/17] misc/26649 diskless client can't share root with ser o [2001/04/17] misc/26658 update to src/usr.bin/calendar/calendars/ o [2001/04/18] bin/26686 Freeze at boot from 4.3-RC4 floopies - US o [2001/04/18] misc/26695 CHANGE REQUEST: kill(all) -l output o [2001/04/22] kern/26787 dd sysctl change request f [2001/04/23] kern/26798 cvsup 4.3-RC -> 4.3-STABLE causes problem s [2001/04/23] bin/26803 des Fix fetch to allow FTP puts in '-o' & all o [2001/04/24] i386/26812 peter old bootstrap /sys/i386/boot/... still in a [2001/04/25] bin/26854 sound Better fix for ESS Technology Maestro-2E o [2001/04/26] misc/26879 darrenr mkfilter not installed, yet referred to v o [2001/04/27] ports/26904 jim New port(?): net/everybuddy-i18n (i18n pa o [2001/04/28] bin/26919 qa sysinstall' fdisk can ONLY set bootable f o [2001/04/29] docs/26943 doc [patch] description of :C modifier is mis o [2001/04/30] i386/26994 obrien AMD Athlon Thunderbird not known to ident o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod o [2001/05/01] ports/27019 marcel patch supplied in PR ports/26976 breaks l o [2001/05/02] misc/27039 new syscons screensaver f [2001/05/02] misc/27041 modify src/release/Makefile to make anoth o [2001/05/04] java/27075 sobomax Port java/javavmwrapper installs no man p o [2001/05/04] java/27079 sobomax Improvements for javavmwrapper? o [2001/05/06] bin/27163 cracauer sh trap TSTP () deadly hangs f [2001/05/07] bin/27188 jon fix of rsh non-interactive mode behaviour o [2001/05/08] ports/27200 greid new port: bed (binary editor) o [2001/05/08] i386/27216 qa Can not get to shell prompt from serial c o [2001/05/09] kern/27232 On NFSv3 mounted filesystems, stat return o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] bin/27268 fdisk does not recognize Linux extended p o [2001/05/11] kern/27269 Cannot mount linux extended (logical) par o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes f [2001/05/12] bin/27283 brian netstat -i missing IPv4 input packet coun o [2001/05/12] bin/27289 green SSH don't do correct diagnostic when no r o [2001/05/13] i386/27306 mp hw watchpoints work unreliable under gdb o [2001/05/14] bin/27319 obrien df displays amd pid processes o [2001/05/17] kern/27403 lpt driver doesn't handle flags anymore o [2001/05/18] kern/27429 'dependant' is a misspelling o [2001/05/20] misc/27471 Linux emulation is missing code needed to o [2001/05/20] bin/27483 qa make sysinstall ask for the keymap at ins o [2001/05/23] kern/27571 bp Changing policy of shadowing files and di o [2001/05/23] bin/27604 change truncate to support low case size o [2001/05/24] i386/27627 machdep.tsc_freq does not exists on machi o [2001/05/25] misc/27633 Mapping for serbian keyboards, follows IS o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/05/27] bin/27697 assar trouble compiling libroken f [2001/05/31] gnu/27803 Enhancement to sort(1) o [2001/06/01] misc/27829 pax's uid/gid cache is read-only a [2001/06/02] docs/27833 cjc No man page for locate.rc f [2001/06/02] kern/27834 Cannot warm-reboot Compaq AP400 due to SC o [2001/06/02] kern/27835 execve() doesn't conform to execve(2) spe s [2001/06/02] docs/27843 alex [PATCH] make.conf WITH_* variables aren't o [2001/06/04] misc/27872 "Load Config" (sysinstall) hangs Compaq D o [2001/06/06] docs/27921 markm manpage skey(1) should be skey(7) o [2001/06/07] alpha/27930 NE2000 not supported on FreeBSD Alpha 4.x o [2001/06/07] alpha/27933 alpha Time jitter under load on FreeBSD 4.3 alp a [2001/06/07] ports/27936 mi Update /usr/ports/deskutils/xmdiary 3.0.1 o [2001/06/08] bin/27972 losing information with talk o [2001/06/10] i386/28023 sendmail tries to get the netgraph.ko mod a [2001/06/11] conf/28081 murray /stand/sysinstall errs out if /cdrom/ alr o [2001/06/13] ports/28121 netchild New port: 3D modelling and animation syst o [2001/06/13] ports/28138 tg python os.statvfs module is not functiona a [2001/06/15] gnu/28189 [PATCH] fix for detecting empty CVS commi o [2001/06/16] kern/28206 bp UMAPFS module should depend on NULLFS - p o [2001/06/17] misc/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't c o [2001/06/17] kern/28247 ATM/HARP driver for IDT and ForeLE ATM ca o [2001/06/18] misc/28255 picobsd documentation still references ol s [2001/06/18] kern/28260 standards UIO_MAXIOV needs to be made public o [2001/06/20] kern/28297 change request for sys/i386/conf/NOTES o [2001/06/21] ports/28332 dwcjr Gimp manual port 1-2 years out of date, m o [2001/06/21] bin/28333 rtprio/idprio setuid problems s [2001/06/22] i386/28346 n_hibma USB ethernet dongle detach requires "ifco o [2001/06/23] bin/28364 lex(1) generated files fail to compile cl o [2001/06/23] ports/28365 wosch Typical use of portchecheckout breaks int o [2001/06/23] docs/28371 phk malloc(2) man page correction p [2001/06/27] misc/28455 GNU readline should be updated to 4.2 o [2001/06/27] misc/28456 german keymap with dead keys o [2001/06/27] ports/28471 keith no iso8859 font o [2001/06/28] misc/28494 n_hibma ugen usable only from "attach" or by usbd o [2001/06/30] docs/28555 trhodes [PATCH] style(9) isn't explicit about boo o [2001/06/30] kern/28566 bp Mount_null loopbacks can hang startx temp o [2001/07/01] bin/28620 ru xinstall has no way to pass options to st o [2001/07/02] ports/28644 jmz Make error when rebuilding xdvi o [2001/07/03] ports/28678 wosch portcheckout doesn't allow flexible build o [2001/07/04] docs/28699 doc strptime(3) %d format specifier not compl o [2001/07/07] bin/28789 /usr/bin/last does not filter for uucp co o [2001/07/07] ports/28803 cy ports/comms/conserver does not support ## o [2001/07/08] ports/28810 lioux qpopper 4.0.3 + PAM modification; HAVE_SH o [2001/07/10] ports/28887 brian [PATCH] sandbox for httptunnel! o [2001/07/10] kern/28888 mbr Acer 8000 NIC not detected correctly o [2001/07/11] misc/28890 merge.c compares int i against size_t siz a [2001/07/13] docs/28949 phk the mknod(8) man page stills refers to bl o [2001/07/14] bin/28972 dwmalone gamma returns same result as lgamma o [2001/07/14] i386/28975 mjacob RocketPort problems o [2001/07/14] misc/28980 Fujitsu/Siemens Lifebook E-6540 stalls wh o [2001/07/15] bin/28988 We need more simple message digesting too o [2001/07/18] bin/29062 markm krb4 and krb5 multiply defined version sy f [2001/07/18] bin/29071 relay patch for rwhod o [2001/07/19] misc/29077 imp At loading notebook pccardd not correctly f [2001/07/19] misc/29089 Some kind of fsbn0 error... o [2001/07/20] misc/29103 make (1) dump core while processing ^C fr o [2001/07/21] bin/29119 menu of fdisk editor in 4.3R does not lis o [2001/07/22] ports/29154 nik TeX resource settings from MAKE_ENV in pr o [2001/07/23] conf/29167 rc.pccard doesn't check /var/run/pccardd. o [2001/07/23] kern/29169 mjacob FC loop that 'goes away' never times out o [2001/07/25] ports/29223 portmgr cyrus-imapd and postfix master.8 manpage o [2001/07/25] kern/29233 VIA 82C686 AC97 codec gets probed as 'chi o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP o [2001/07/27] kern/29264 Recovery from LIPs on FCAL using isp not s [2001/07/28] misc/29292 sos The functional addtion to burncd(8) o [2001/07/29] alpha/29299 alpha FreeBSD 4.3 Alpha + Tekram SCSI adapter p f [2001/07/29] kern/29307 NIC Initialization fails on dual CPU syst o [2001/07/29] misc/29312 sound Using mixer on pcm misbehaves with onboar f [2001/07/29] kern/29318 mjacob Exabyte 8200 needs SA_QUIRK_1FM and SA_QU o [2001/07/31] kern/29355 mux [patch] lchflags support f [2001/08/01] bin/29361 startslip can't load if_sl.ko o [2001/08/01] bin/29363 gad [PATCH] newsyslog can support time as ext f [2001/08/02] kern/29395 reaction on ctrl-alt-del - poweroff, halt o [2001/08/03] kern/29423 [PATCH] kernel security hooks implementat o [2001/08/07] bin/29516 markm telnet from an non FreeBSD host still use o [2001/08/07] misc/29529 dcs Boot prompt "?" command doesn't list "boo f [2001/08/08] kern/29538 joerg Mounting /dev/fd0 never completes f [2001/08/08] misc/29550 duplicate pings jinside of vmware 2.0 o [2001/08/09] bin/29581 nectar proposed gethostbyXXXX_r() implementation o [2001/08/11] kern/29621 n_hibma Missing man page for ulpt f [2001/08/13] ports/29691 portmgr New port variable USE_COMPAT_LIB - bsd.po o [2001/08/14] kern/29698 linux ipcs doesn'work o [2001/08/15] kern/29727 amr_enquiry3 structure in amrreg.h (amr d f [2001/08/16] kern/29777 n_hibma kernel uscanner.c contains wrong vendor a a [2001/08/17] docs/29807 trhodes [PATCH] XFREE86_VERSION is undocumented f [2001/08/18] bin/29850 markm ftpd.c doesn't check via PAM/pam_acct_mgm f [2001/08/19] conf/29870 rc.diskless2 uses /usr/sbin/mtree before o [2001/08/20] misc/29893 qa suggestions for 4.4 sysinstall o [2001/08/20] bin/29897 markm pam_unix patch, which uses loginclass pas o [2001/08/20] kern/29915 kernel panics on interaction with mlock a o [2001/08/21] ports/29929 ports-bugs wginstall.pl script chokes on calculated o [2001/08/22] bin/29961 ru A4 paper size for groff knob for /etc/mak a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/08/24] kern/30052 mbr dc(4) driver queues outgoing pkts indefin o [2001/08/27] ports/30148 ade devel/libtool: shared libs with compaq-cc f [2001/08/28] kern/30160 Kernel panic when flash disk is removed a f [2001/08/28] kern/30179 FreeBSD 5.0 install hangs: deviceTry: mak o [2001/08/29] misc/30186 getaddrinfo does not handle incorrect ser o [2001/08/29] kern/30200 yokota Bug in psm in 4.4-RC o [2001/08/29] ports/30201 msmith editors/wordperfect in ports is not usabl f [2001/08/29] i386/30206 PS/2 server 85 can't boot kern.flp o [2001/08/29] misc/30213 Fatal Errors of Server Programe f [2001/09/01] kern/30257 apm enabled kernel panics (4.4-RC) o [2001/09/03] ports/30298 chuckr [PATCH] a2ps-4.13 can't cope with ENOMEM o [2001/09/03] conf/30301 Default printcap "mx" config too small o [2001/09/04] misc/30320 n_hibma USB mouse does not work after return'ing o [2001/09/04] bin/30321 strftime(3) '%s' format does not work pro o [2001/09/05] conf/30341 be keymap: wrong Capslock behaviour with o [2001/09/05] bin/30360 vmstat returns impossible data o [2001/09/06] bin/30392 sh: incorrect value of $? in here-documen o [2001/09/07] misc/30412 rtdl/dlopen() fails to merge common varia o [2001/09/07] kern/30422 WDT hardware watchdog driver & daemon o [2001/09/07] bin/30424 Generalization of vipw to lock pwdb while o [2001/09/08] docs/30442 trhodes remove broken referemce to gettime(9) fro o [2001/09/08] docs/30443 keramida remove broken reference to kerberos(1) fr o [2001/09/08] docs/30444 keramida remove broken references to gated(8) and o [2001/09/09] i386/30461 sound no audio cd with cmi8330 o [2001/09/09] bin/30464 pthread mutex attributes -- pshared f [2001/09/09] bin/30471 brian periodic script output to a file always a o [2001/09/10] ports/30499 ade libtool-1.4.1 port diffs o [2001/09/11] misc/30517 using sysinstall with install.cfg has no o [2001/09/12] bin/30542 [PATCH] add -q option to shut up killall o [2001/09/13] kern/30570 boot loader don't reacts on USB keyboard o [2001/09/14] ports/30573 nakai /usr/X11R6/bin/xfce_setup does not create o [2001/09/16] kern/30608 kern.ps_showallproc=0 doesn't limit queri p [2001/09/17] kern/30634 kbyanc kevent.data value incorrect for UDP socke o [2001/09/17] bin/30639 apmd crashes on SIGHUP (under certain con o [2001/09/17] bin/30640 apmd does not terminate properly on SIGTE o [2001/09/18] bin/30654 gad Added ability for newsyslog to archive lo f [2001/09/18] bin/30661 alfred FreeBSD-current fails to do partial NFS f a [2001/09/20] bin/30685 cjc Patch for usr.bin/hexdump o [2001/09/20] i386/30700 sound Applications cannot synchronize sound usi o [2001/09/22] ports/30732 obrien bash2 - pkg-plist fix and sample files ad a [2001/09/22] bin/30737 murray sysinstall leaks file descriptors on rest o [2001/09/23] ports/30754 nakai x11/dgs port overwrites a number of files o [2001/09/23] ports/30777 portmgr add a 'make pkg-plist' make target in por f [2001/09/24] ports/30788 sobomax compile works, install fails of graphics/ o [2001/09/24] kern/30794 sound ESS Solo-1 does not work after suspend/re o [2001/09/25] bin/30812 giant termcap database update o [2001/09/25] bin/30819 /bin/mv results in warnings when /bin/cp o [2001/09/26] ports/30848 roam courier imapd won't compile with vpopmail o [2001/09/26] bin/30854 bootpd/bootpgw change - skip ARP modifica o [2001/09/26] misc/30857 intr_machdep.c allows access out of array f [2001/09/26] i386/30860 While install after "Mounting root from u o [2001/09/27] bin/30863 bootpd/dovend.c Win95 compatibility impro f [2001/09/27] ports/30870 ports-bugs httpd in free(): warning: recursive call o [2001/09/27] docs/30873 doc ``ip'' man page does not specify byte ord o [2001/09/30] ports/30929 brian [net/pppoa] use usbd to initialize USB AD o [2001/09/30] ports/30936 taoka pips-sc880 installed script contains inco o [2001/09/30] conf/30938 Improving behavior of /etc/periodic/daily o [2001/09/30] kern/30951 Optimize page queue scan on miss of speci o [2001/10/01] alpha/30970 alpha Ensoniq 1371 (Creative chipset) does not o [2001/10/04] bin/31034 dwmalone regularly add original address logging fo o [2001/10/04] kern/31048 linprocfs:/proc/meminfo cannot handle mul p [2001/10/04] bin/31052 fenner Traceroute needs update f [2001/10/07] misc/31097 main thread will accept() failure when so o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat o [2001/10/09] docs/31164 doc man page for strftime is incorrect o [2001/10/10] bin/31199 tunefs error is incorrect when enabling s o [2001/10/10] bin/31201 [patch] add free_space(chunk) to libdisk o [2001/10/14] docs/31264 jdp cvsup(1) "base" option and keyword descri o [2001/10/15] misc/31297 yokota New screen blanker module for syscons o [2001/10/18] i386/31353 'shutdown -p' does not work on SMP Tyan T o [2001/10/19] misc/31380 NFS rootfs mount failure message too cryp o [2001/10/20] bin/31387 When getuid()=0, mailwrapper should drop o [2001/10/21] i386/31427 minor incorrect code in sys/i386/i386/pma o [2001/10/22] bin/31432 umount(8) and unmount(2) don't corespond o [2001/10/22] kern/31445 sound cat sound.au > /dev/audio fails for sound a [2001/10/23] kern/31455 n_hibma [PATCH] ohci driver probrem when send dat o [2001/10/23] kern/31456 Register number definition for AMD PCnet f [2001/10/25] kern/31490 Panic in sysctl_sysctl_next_ls on empy no o [2001/10/26] kern/31521 cg pcm0 plays too fast on Intel 82801BA (ICH f [2001/10/27] i386/31535 Can't reboot system: Tyan Thunder K7+ Dua o [2001/10/29] bin/31588 change request to allow mount(1) to set t o [2001/10/29] kern/31624 writev may return undocumented ECONNRESET o [2001/10/30] ports/31630 jmz Port se-ispell install the dictionary in o [2001/10/30] kern/31647 socket calls can return undocumented EINV o [2001/11/01] i386/31686 Problem with the timestamp option when fl o [2001/11/02] kern/31708 VM system / fsync / flushing delayed inde f [2001/11/02] i386/31716 FreeBSD uses broken tsc timecounter by de o [2001/11/05] gnu/31772 New option in dialog(1) o [2001/11/09] misc/31890 new syscons font o [2001/11/10] bin/31906 No method available to unwind atexit(3) s o [2001/11/11] ports/31910 greid comms/sms_client o [2001/11/12] bin/31933 pw can interpret numeric name as userid d a [2001/11/12] ports/31943 dirk mysql323-server port hostname look up fai f [2001/11/13] kern/31971 microuptime() went backwards when apm is o [2001/11/14] misc/31981 (mis)feature in getnetent parsing -- comm o [2001/11/14] bin/31985 New /etc/remote flag for tip to append LF o [2001/11/14] bin/31987 patch to allow dump(1) to notify operator s [2001/11/15] i386/32014 ppi locks up system during boot o [2001/11/15] docs/32020 doc loader.8 manpage missing tunables o [2001/11/16] ports/32039 greid UPDATE devel/asmutils 0.14 -> 0.15 o [2001/11/16] docs/32054 doc inconsistency between index.3 and rindex. o [2001/11/17] conf/32067 Problems with spanish keyboard in console o [2001/11/18] bin/32092 crypt pickups the wrong password format o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc o [2001/11/20] standards/32126standards getopt(3) not Unix-98 conformant f [2001/11/20] misc/32144 murray unattended install with sysinstall doesn' o [2001/11/20] ports/32145 jmz XFree86 doesn't ldconfig itself o [2001/11/22] ports/32202 kbyanc ports/devel/py-htmlkit distribution does f [2001/11/23] misc/32210 System hangs while kernel waiting for SCS o [2001/11/23] ports/32232 dirk Update and bugfix port: www/mod_php4 o [2001/11/24] i386/32251 bugfix and new feature for apmd o [2001/11/26] conf/32288 After install: /etc/rc complains if crypt f [2001/11/26] ports/32317 petef Request for linux-qt port a [2001/11/29] conf/32375 murray sysinstall doesn't respect User generated f [2001/11/30] misc/32400 rwhod - option to specify hostname o [2001/11/30] ports/32405 dirk Japanese encoding translation support for a [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/12/01] bin/32433 Cannot specify files beginning with + on o [2001/12/02] ports/32444 dirk www/mod_php4: ctype support o [2001/12/03] misc/32480 Missing graphic characters in syscons fon o [2001/12/04] bin/32501 quot(8) is stupid regarding the filesyste o [2001/12/04] ports/32508 ports-bugs www/flashplugin-mozilla has malloc bug o [2001/12/04] ports/32517 green Update port: emulators/snes9x to 1.39 o [2001/12/08] ports/32604 portmgr Many ports which depends on apache don't f [2001/12/08] misc/32605 nsouch SMBus driver broken o [2001/12/09] kern/32652 joe A new ioctl to uscanner s [2001/12/09] ports/32653 joe Added patches to improve USB scanner supp f [2001/12/09] bin/32657 sed file handing is non-standard o [2001/12/09] kern/32659 VM and VNODE leak with vm.swap_idle_enabl o [2001/12/09] gnu/32661 dd send-pr uses $LOGNAME for From and Reply o [2001/12/09] docs/32662 dd arp(8) uses "this host" with two differen o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/10] kern/32671 imp Patch to generate usbdevs.h automatically o [2001/12/10] kern/32677 pciconf -l opens /dev/pci for read/write o [2001/12/10] misc/32680 [PATCH] Allows users to start jails by ho o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/13] kern/32812 roger bktr driver missing tuner for eeprom dete o [2001/12/14] bin/32828 phk w incorrectly handles stale utmp slots wi p [2001/12/16] kern/32912 mp options misssing TCBHASHSIZE o [2001/12/17] ports/32936 mharo ports/security/keyprint only supports S/K o [2001/12/18] conf/32976 assar Kerberos5 config files not installed by d o [2001/12/18] docs/32979 assar manpages are not installed for k5admin an s [2001/12/18] ports/32999 arved New ports: devel/ORBacus4 o [2001/12/19] kern/33004 n_hibma Patch for USB (uhci) o [2001/12/19] misc/33007 n_hibma umass device timeout after successive use o [2001/12/19] misc/33013 cg mixer does not have treble/bass for Sound o [2001/12/19] conf/33018 Patch for RC (add multiple SSHD configura o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as o [2001/12/22] i386/33097 sound Crystal 4237b mixer problems o [2001/12/23] kern/33117 empty struct md_coredump in pcb.h and use o [2001/12/23] kern/33124 jhb kthread_create doesnt mark kthreads as kt s [2001/12/23] bin/33133 keyinit outputs wrong next login password o [2001/12/25] gnu/33182 mp gdb seg faults when given handle SIGALRM o [2001/12/26] kern/33203 "got bad cookie" errors on NFS client o [2001/12/29] ports/33320 dima print/acroread4 does not install the Nets o [2001/12/31] conf/33395 imp better way to use more than one pccard ne o [2002/01/03] misc/33523 green XV application cannnot be transfered thro o [2002/01/05] docs/33589 doc Patch to doc.docbook.mk to post process . o [2002/01/07] docs/33645 assar k5list(1) contains many incorrect "klist" a [2002/01/07] bin/33661 PAP AuthAck/AuthNak parsing problem in pp o [2002/01/08] kern/33696 phk panic: Driver mistake: repeat make_dev("a o [2002/01/08] kern/33707 sound ICH (82801AA) cannot be used for mono rec o [2002/01/09] docs/33724 chern a very minor documentation error o [2002/01/09] misc/33736 yokota Scroll-lock on the console prevents shutd o [2002/01/09] conf/33753 Intel ICH2 and NVidia device ID updates o [2002/01/10] bin/33774 Patch for killall(1) o [2002/01/10] misc/33778 joe crunchgen enhancements o [2002/01/11] kern/33804 ipfw bug/problem o [2002/01/12] bin/33809 mux mount_nfs has trouble with embedded ':' o [2002/01/13] bin/33834 tjr strptime(3) is misleading o [2002/01/13] docs/33852 doc split(1) man page implies that input file o [2002/01/13] misc/33866 Last Hr, Last ... may be incorrect on mac o [2002/01/14] docs/33877 doc Documentet behaviour of SF_flags for non- o [2002/01/14] misc/33906 ports-bugs [PATCH] tic program as a port for easier o [2002/01/14] ports/33911 dirk php disabled gdbm by default, add option o [2002/01/15] ports/33916 ade Upgrade port devel/libtool o [2002/01/15] conf/33920 imp Can't use `Panasonic KXL-CB10AN' (CD-R/RW o [2002/01/15] misc/33926 doc Search function on website can not access o [2002/01/16] bin/33941 /usr/sbin/dev_mkdb dumps core a [2002/01/16] kern/33963 bmah Messages at the serial IO port device pro f [2002/01/16] misc/33965 Programmable keys of the keyboard (Olidat o [2002/01/16] conf/33967 Alternative Italian keymap o [2002/01/17] ports/33980 benno Can't use sgmltools-lite-3.0.0 port o [2002/01/17] i386/34010 keyinit takes passwords less than 10 char o [2002/01/18] misc/34019 green sftp core dumped o [2002/01/19] misc/34062 bsd.kmod.mk fails due to bug in make with f [2002/01/21] bin/34111 rlogin not finished o [2002/01/21] kern/34120 sound optimized fm801 pcm driver o [2002/01/21] bin/34146 newfs defaults and vfs.usermount=1 tug at o [2002/01/22] misc/34171 ftpd indiscrete about unprivileged user a o [2002/01/23] misc/34195 iedowse setting the action for SIGCHLD to SIG_IGN o [2002/01/23] bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o [2002/01/24] alpha/34232 alpha rpc.statd throws alignment errors o [2002/01/24] ports/34238 dirk fix for port/www/mod_php4 zziplib extensi o [2002/01/24] docs/34239 trhodes tunefs(8) man page doesn't describe argum f [2002/01/24] misc/34247 auto mount smbfs in /etc/fstab AFTER netw f [2002/01/26] misc/34307 accept() fails after ECONNABORTED o [2002/01/26] misc/34309 gad lpd does not garantie that controlfiles b a [2002/01/26] conf/34316 sheldonh Uncomment kserver-adm to /etc/services o [2002/01/27] conf/34355 [PATCH] rc.conf comment misleading (firew o [2002/01/28] bin/34394 peter tgetent returns wrong value in libtermcap o [2002/01/29] misc/34401 green ssh & kerberos IV don't work together o [2002/01/29] ports/34404 ports-bugs NEW PORT: devel/mingw-expat2 f [2002/01/29] misc/34412 tftp will still try and receive traffic e o [2002/01/30] ports/34442 ports-bugs xt, xalan-j, saxon should have the same C o [2002/01/31] conf/34494 n_hibma usb configuration problem - usb does not o [2002/01/31] bin/34497 calendar(1) does not understand calendars s [2002/01/31] bin/34498 Error in vi manpage. o [2002/01/31] bin/34519 pkg_check(8) does not return exit code >0 o [2002/02/01] gnu/34538 mp_set_memory_functions not extern "C"'d o [2002/02/02] ports/34550 ports-bugs ghostscript-gnu-nox11 portversion 6.51 fa o [2002/02/02] ports/34565 ports-bugs graphics/blender port is broke o [2002/02/03] kern/34591 ICMP bandwidth limiting does not indicate o [2002/02/03] ports/34597 eivind [PATCH] Update ports/mail/isync to 0.8 s [2002/02/04] misc/34621 billf i have a patch for (lol) /usr/games/fish o [2002/02/04] bin/34628 jkh pkg-routines ignore the recorded md5 chec o [2002/02/06] ports/34659 reg Proposed change to Mozilla port's Makefil o [2002/02/06] kern/34665 darrenr ipfilter rcmd proxy "hangs". f [2002/02/06] misc/34673 Second call to select() waits ~100ms befo o [2002/02/06] bin/34676 mbr dhclient always in -q quiet mode (PATCH E o [2002/02/07] gnu/34709 [patch] Inaccurate GDB documentation o [2002/02/07] ports/34714 ache unzip(1) breaks filenames in non-ASCII ch f [2002/02/07] bin/34728 murray DHCP hostname set as Hexadecimal string o [2002/02/08] conf/34729 sheldonh treat smbfs as network file system in /et o [2002/02/08] kern/34747 joe Please add USB floppy entry o [2002/02/09] misc/34759 ports-bugs Phantasia does not accept [enter] key o [2002/02/09] conf/34776 rc.diskless1 creates insufficiently sized o [2002/02/10] misc/34788 dwmalone dmesg issues with console output o [2002/02/10] kern/34789 joe PNY brand USB flash readers need 10 byte o [2002/02/10] ports/34796 jmz wrong path in /etc/XF86Config (purely cos o [2002/02/11] kern/34820 FreeBSD should be able to beep after shut o [2002/02/11] bin/34832 /usr/share/man/cat3/setkey.3.gz linked to o [2002/02/11] bin/34834 "fix" of du(1) and -h o [2002/02/11] ports/34841 dirk Adding cyrus to mod_php o [2002/02/11] bin/34843 fenner `tcpdump port echo' filters for port 4 in o [2002/02/11] misc/34850 scp cannot talk to ssh2 sites that have S o [2002/02/11] kern/34854 /src/sys/dev/sound doesn't work correctly o [2002/02/12] bin/34874 Netstat output to small o [2002/02/12] ports/34878 chern sysinstall o [2002/02/12] kern/34880 Impossibility of grouping IP into a pipe f [2002/02/14] misc/34935 New locale (Cyrillic Windows Codepage 125 o [2002/02/14] kern/34942 Attempt to play -> "pcm0: play interrupt o [2002/02/14] kern/34952 Mouse cursor invisible with USB mice and o [2002/02/15] bin/34955 doc [PATCH] ps(1) is out of touch with realit o [2002/02/15] kern/34963 identify procs belonging to the same jail o [2002/02/15] kern/34965 4.4, 4.5 freeze at boot time on ASUS P2B a [2002/02/16] docs/35011 doc There are no commands called "diskless" o o [2002/02/16] bin/35018 brian enhancing daily/460.status-mail-rejects o [2002/02/17] kern/35064 ACPI not work with Epox 8KHA+ motherboard s [2002/02/17] bin/35070 math(3) references section "3m", etc. o [2002/02/18] i386/35078 Uninitialized pointer dereference in func o [2002/02/18] bin/35099 sobomax ldd in -STABLE fails on libc. o [2002/02/18] i386/35101 chern cvusupit and other packages won't extract o [2002/02/19] bin/35109 [PATCH] games/morse: add ability to decod o [2002/02/19] bin/35113 grdc enhancement: countdown timer mode o [2002/02/19] ports/35117 ports-bugs Undefined symbol "ldap_get_dn" when tryin f [2002/02/19] i386/35124 No mouse with FreeBSD 4.5 with ECS K7S5a f [2002/02/20] bin/35148 ppp/nat-problems after cvs update 4.3 -> o [2002/02/21] misc/35172 Please update am-utils(amd) into newer ve o [2002/02/21] kern/35175 ptrace(PT_DETACH, ....) doesn't do signal o [2002/02/21] i386/35182 APMD does not set close on exec for /dev/ o [2002/02/22] ports/35204 dirk www/mod_php4 with xslt is not LOCALBASE c o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/02/23] kern/35234 World access to /dev/pass? (for scanner) o [2002/02/23] conf/35242 Change to etc/periodic/weekly/330.catman f [2002/02/23] misc/35245 brian unwanted stealth behaviour (inbound icmp o [2002/02/23] conf/35262 Generation of boot block for headless ope o [2002/02/23] kern/35269 possible panics with 4:1 filesystem ratio o [2002/02/24] kern/35289 Brooktree device doesnt properly signal a o [2002/02/25] kern/35324 Plug and Play probe fails to configure Di s [2002/02/25] bin/35333 send-pr(1) vim syntax highlighting suppor o [2002/02/27] ports/35372 ports-bugs pgp6 ports fails to compile on alpha plat o [2002/02/27] kern/35377 process gets unkillable (-9) in "ttywai" o [2002/02/27] misc/35381 incorrect floating-point display of large o [2002/02/28] misc/35400 sysinstall could improve manipulation of o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy f [2002/03/01] conf/35457 dual boot problem from 2 different SCSI d s [2002/03/01] ports/35459 ports-bugs portupgrade doesn't clean up dependencies f [2002/03/02] ports/35481 edwin New port: console text editor looks like o [2002/03/03] ports/35522 kuriyama xhtml port uses SGMLDECL in catalog chain o [2002/03/03] docs/35523 doc manpage fixes for df(1) and ls(1) f [2002/03/03] i386/35526 No mouse recognized in Compaq Presario la o [2002/03/04] misc/35542 bde BDECFLAGS needs -U__STRICT_ANSI__ o [2002/03/04] conf/35545 Enhanced periodic scripts o [2002/03/05] bin/35568 make declares target out of date, but $? o [2002/03/05] docs/35575 doc Pw(8) man page makes no mention of /var/l o [2002/03/05] ports/35580 ports-bugs Startup script in /usr/local/etc/rc.d is f [2002/03/06] i386/35599 murray install o [2002/03/06] docs/35602 doc dump(8)/restore(8) pages don't explain "a o [2002/03/06] docs/35607 doc dump(1) page needs discussion of scary er o [2002/03/06] docs/35608 doc mt(1) page uses "setmark" without explana o [2002/03/06] docs/35609 doc mt(1) page needs explanation of "long era o [2002/03/06] docs/35612 doc ps(1) page "state" description doesn't me o [2002/03/07] kern/35635 sheldonh [patch] missing dep in libiconv prevents o [2002/03/07] ports/35638 markm tn3270 dumps core unconditionally o [2002/03/07] ports/35639 max executable name conflicts: ploticus and s o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional o [2002/03/07] docs/35644 doc lo(4) page presumes familiarity with prin o [2002/03/07] docs/35646 doc cp(1) page needs a "Bugs" section. o [2002/03/07] docs/35647 doc www; combine query-by-number and multi-fi o [2002/03/07] docs/35648 doc rc.conf; add note about "flags" to both f o [2002/03/07] docs/35649 doc mount_smbfs(8) page: "See ./examples/dot. o [2002/03/07] docs/35652 doc bsd.README seriously obsolete o [2002/03/08] bin/35671 wrong comments in rc.diskless1 o [2002/03/08] docs/35686 doc blackhole(4) page seems to contradict its o [2002/03/08] docs/35687 doc /etc/nsmb.conf missing mention of readers o [2002/03/08] docs/35696 trhodes mount_smbfs(8) references a nonexistent n o [2002/03/08] kern/35699 trhodes [PATCH] msdosfs: differrent masks for dir o [2002/03/09] docs/35711 keramida the "gnats page" should move to its own s o [2002/03/09] bin/35717 which(1) returns wrong exit status for m o [2002/03/09] misc/35727 man(1) program should not display (old) d o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an o [2002/03/11] misc/35764 nakai Icewm does not display APM status properl o [2002/03/11] ports/35767 portmgr make_index script does not deal with syml o [2002/03/11] bin/35769 w does not correctly interpret X sessions o [2002/03/12] bin/35838 Change to size of WID_IF in usr.bin/netst o [2002/03/13] kern/35846 timeout in wi_cmd 11, machine hangs for a o [2002/03/13] misc/35865 pam_krb5 crashes in pam_sm_setcred() o [2002/03/13] kern/35876 bus_dmamem_free does not call contigfree o [2002/03/13] ports/35882 ports-bugs Perl Expect module send_slow hangs on EOF o [2002/03/14] bin/35886 [patch] Enhancement: custom time format f o [2002/03/14] bin/35894 bbraun popen.c in cron won't build without LOGIN o [2002/03/14] ports/35897 ports-bugs upgrading the linux_base port runs into t o [2002/03/14] kern/35900 Changing RealTek 8139 MAC address fails o [2002/03/15] docs/35941 doc cd(4) manual doesn't mention "target" use o [2002/03/15] docs/35943 doc at(1) config files are misplaced in /var/ p [2002/03/15] docs/35951 trhodes disklabel(8) manual confuses partitions a o [2002/03/15] docs/35953 doc hosts.equiv(5) manual is confusing or wro f [2002/03/17] bin/36000 contrib/amd uses mktemp o [2002/03/17] ports/36020 jmz Update port: print/musixtex T.98 -> T.104 o [2002/03/17] java/36024 sobomax port update: OpenJIT 1.1.16 for JDK 1.3.1 f [2002/03/17] ports/36034 edwin new port databases/pg-crypto s [2002/03/18] standards/36076standards Implementation of POSIX fuser command o [2002/03/18] ports/36079 portmgr [PATCH] Support USE_LESSTIF=yes o [2002/03/19] misc/36110 dmesg output corrupt if /dev/console is b o [2002/03/19] ports/36112 portmgr [PATCH] New feature for whole ports tree: o [2002/03/19] ports/36113 dirk Add gdbm, BerkeleyDB2, BerkeleyDB3, libio o [2002/03/19] conf/36118 re 4.5 Upgrade says it won't touch /usr/src, o [2002/03/20] bin/36136 savecore -z option does not work o [2002/03/20] misc/36143 Dynamic (non linear) mouse acceleration a o [2002/03/20] misc/36154 doc Getting USB mouse to work: usbd and mouse o [2002/03/21] misc/36165 boehm-gc BUS error with gdb o [2002/03/21] kern/36170 an(4) does an_init() even if interface is f [2002/03/22] ports/36202 wosch update to sysutils/socket: NetBSD IPv6 pa o [2002/03/24] bin/36262 [PATCH] Fixed rusers idle-time reporting o [2002/03/26] alpha/36327 alpha trap within cvt() while attempting to pri o [2002/03/26] ports/36341 dburr [patch] devel/SN marked as broken o [2002/03/26] misc/36359 fxp driver and Intel Pro/100 S NIC (0002B o [2002/03/27] misc/36368 sshd error: session_close_by_channel: ki o [2002/03/27] bin/36374 Patch (against core dumps) and improvemet o [2002/03/27] kern/36381 ata + hw.ata.wc=1: high CPU load for larg o [2002/03/27] misc/36385 luigi crunchgen does not handle Makefiles with o [2002/03/27] misc/36392 cron starts before vi recover, and vi rec o [2002/03/28] kern/36425 bump up SYS_NMLN in sys/utsname.h o [2002/03/28] bin/36431 src/secure/lib/libtelnet fails in CURRENT o [2002/03/28] docs/36432 doc Proposal for doc/share/mk: make folded bo a [2002/03/28] docs/36447 trhodes chown(8) manual misdescribes handling of o [2002/03/28] docs/36449 doc symlink(7) manual doesn't mention trailin o [2002/03/28] docs/36459 doc tftp(1) manual's "get" syntax/description o [2002/03/28] gnu/36460 cu(1) program does not work very well. f [2002/03/29] bin/36477 gshapiro mailwrapper doesn't handle rmail calls o [2002/03/29] bin/36501 /usr/bin/calendar can't handle recurring o [2002/03/29] ports/36503 ports-bugs several files conflict in ports/databases o [2002/03/30] misc/36536 Apparent mother board incompatability o [2002/03/30] ports/36545 jmz mwrite is an absolute symbolic link to /u o [2002/03/30] bin/36553 gad Two new features in newsyslog(8) o [2002/03/30] misc/36556 patch: regular expressions for tcpwrapper o [2002/03/30] ports/36557 perky Fix port: security/py-amkCrypto (to refle o [2002/03/30] ports/36560 rse bug fix for the eperl package o [2002/03/31] kern/36569 umass fails when RiteLink Pocket Disk is o [2002/03/31] ports/36587 des news/inn{-stable} do not install when --e o [2002/04/01] ports/36622 dburr [patch] devel/SN : Upgrade port to versio o [2002/04/01] bin/36626 login_cap(3) incorrectly claims that all o [2002/04/01] docs/36628 doc header an footer of openssl manpages are o [2002/04/01] docs/36629 OpenSSL manpages should be reachable with o [2002/04/01] misc/36646 dwmalone [PATCH] Top does not work correctly in a p [2002/04/02] kern/36682 joe USB isochroneous transfer doesn't report o [2002/04/03] kern/36692 Patch for E-Tech ISA PnP modem support o [2002/04/03] docs/36723 chern IPSec section is unintelligible o [2002/04/03] docs/36724 darrenr ipnat(5) manpage grammar is incomplete an f [2002/04/03] docs/36726 trhodes Handbook lacks information about hardware o [2002/04/03] docs/36727 trhodes Mail chapter of Handbook is incomplete o [2002/04/04] bin/36740 make ps obey locale (particularly for tim o [2002/04/04] bin/36757 EnhancementRequest binary which ought to o [2002/04/04] ports/36766 ade Incompatibility between autoconf, automak o [2002/04/05] bin/36786 make ps use 24-hour time by default o [2002/04/05] ports/36795 kuriyama DocBook DSSSL stylesheets should install o [2002/04/06] ports/36832 kuriyama apache13-* coredumps when using XML::Pars o [2002/04/07] ports/36841 ports-bugs use of .MAKEFLAGS target in Makefile.loca o [2002/04/07] ports/36849 cy FVWM-Themes fails to switch themes o [2002/04/08] bin/36884 add support id_rsa (OpenSSH/RSA2) authent o [2002/04/08] java/36901 glewis WITHOUT_X11 Knob for port java/jdk13 o [2002/04/08] bin/36902 [patch] proposed new format code %N for s o [2002/04/08] ports/36913 seanc New port: devel/ruby-rbprof o [2002/04/08] misc/36916 DOS active partition flag lost in libdisk f [2002/04/09] misc/36923 fdesc file system (partially) crashes Fre o [2002/04/09] ports/36933 portmgr [PATHCES] New feature for pkg_create and o [2002/04/09] java/36951 glewis Java (aka 1.3.1-p6-root-020405-00:26) cor o [2002/04/09] kern/36952 ldd comand of linux does not work o [2002/04/10] bin/36960 calendar doesn't effect -t option. o [2002/04/10] kern/36983 CD9660 unicode to utf-8 [hack] o [2002/04/11] conf/36990 pccard I/O DATA PCET10-CL worked o [2002/04/11] bin/37013 ls directory name output trailing slash d o [2002/04/13] misc/37034 Fixed maximum character length in EUC o [2002/04/13] misc/37047 brian daily_status_mailq_shorten doesn't produc o [2002/04/14] misc/37073 Few new tips for FreeBSD-tips fortune o [2002/04/14] bin/37074 bp [PATCH] Typographical error in output of o [2002/04/14] bin/37083 small improvement to talk(1): add clocks o [2002/04/15] bin/37096 Fixes to fsdb command-line handling [patc o [2002/04/15] ports/37128 ports-bugs New port: www/sarg, formerly known as www o [2002/04/16] i386/37137 FreeBSD install doesn't recognize version o [2002/04/16] misc/37160 qa /stand/sysinstall coredumps when trying t o [2002/04/16] misc/37161 ext2 linux file system, error handling la o [2002/04/17] ports/37186 ports-bugs Dbview contains an error, because of whic o [2002/04/17] ports/37187 mita ports/japanese/vfghostscript font-2.6.2 f o [2002/04/18] docs/37221 doc obsolete reference to seqpacket in mount_ o [2002/04/18] ports/37226 mita ports/japanese/vfghostscript5 doesn't fin o [2002/04/19] misc/37244 ports-bugs c2lib port includes vector.h which appare o [2002/04/20] misc/37301 4.5 rc.firewall type simple does not pass o [2002/04/22] ports/37362 ports-bugs The Ted port is incompatible with FreeBSD o [2002/04/23] ports/37366 kde kdeutils-3.0: kdepasswd truncates passwor f [2002/04/23] kern/37374 joe [PATCH] closing ums0 blocks with wmesg uh o [2002/04/23] i386/37379 /dev/MAKEDEV entry for RocketPort is brok o [2002/04/23] misc/37380 jhb boot0 partition list is outdated (patch i o [2002/04/23] misc/37387 bsdmainutils/calendar Hungarian addon fil o [2002/04/23] conf/37395 peter even with NO_SENDMAIL=true, /usr/sbin/sen f [2002/04/23] conf/37404 delayed mouse response to draw box or hig o [2002/04/23] kern/37405 Support for Mitsumi USB Mouse with Memory o [2002/04/24] kern/37417 Treat CT5880 revision4 ( PCM chip ) o [2002/04/24] bin/37424 nfsstat reports negative values o [2002/04/24] misc/37425 df gives wrong ouput > 1TB o [2002/04/24] misc/37434 mbr dhclient generates pointless log messages o [2002/04/24] bin/37437 Add HTTP-style support to {vis,unvis}(1). o [2002/04/24] bin/37442 [PATCH] sleep.c to support time multiplie p [2002/04/25] bin/37448 obrien [PATCH] ldd/rtld support for more informa o [2002/04/25] ports/37462 jmz dvips is no more available separately fro o [2002/04/25] docs/37470 doc jail field not documented in procfs(5) o [2002/04/26] kern/37486 Bug in network stack in sending broadcast o [2002/04/27] docs/37504 blackend The word PC Card should be used instead o o [2002/04/27] ports/37518 grog gmat port CATALOG needs updating o [2002/04/28] kern/37526 Addtron card not being recognized by driv o [2002/04/29] kern/37554 [PATCH] Make ELF shared libraries immutab o [2002/04/29] kern/37555 vnode flags appear to be changed in non-s o [2002/04/29] misc/37562 jdp Incorrect information in /usr/share/examp o [2002/04/29] misc/37569 [PATCH] Extend fstab(5) format to allow f f [2002/04/29] bin/37572 des libfetch(3)/fetch(1): requested feature: o [2002/04/29] ports/37574 taoka ports/print/pips-sc20 file not found on m o [2002/04/30] ports/37596 shige EMACS_PORT_NAME=xemacs21 forks make infin o [2002/04/30] ports/37597 ports-bugs aureal-kmod-1.5_3 fails to build o [2002/04/30] kern/37600 [Partial PATCH] t4dwave drive doesn't rec o [2002/04/30] conf/37611 phk proposed /etc/rc.jails for jail(8) manage o [2002/05/01] bin/37650 Add skipPCCARD variable to sysinstall s [2002/05/01] ports/37654 arved Update textproc/xml4j to 4.0.1 o [2002/05/01] kern/37657 /dev/dsp and /dev/audio skip the first 32 o [2002/05/02] bin/37672 pw(8) prints warnings after successful NI o [2002/05/02] kern/37675 grog Page fault when newfs'ing a vinum volume o [2002/05/02] bin/37676 libc_r: msgsnd(), msgrcv(), pread(), pwri f [2002/05/02] kern/37677 off by 1 in $FreeBSD: src/sys/kern/subr_d o [2002/05/03] ports/37711 znerd New port: Beacon-agent 0.6.3 (Multicast B o [2002/05/03] ports/37712 znerd New port: Beacon server v0.8.9 (Beacon mu o [2002/05/03] ports/37713 seanc AIM Transport doesn't work correctly with o [2002/05/03] bin/37715 "pkg_info -g package_name_version" fail o [2002/05/03] docs/37719 doc Detail VOP_ naming in a relevant man-page o [2002/05/03] misc/37732 usbd start in wrong place in /etc/rc in 4 o [2002/05/04] bin/37733 su(1) does not behave the way it is descr o [2002/05/04] kern/37761 process exits but socket is still ESTABLI s [2002/05/05] ports/37771 znerd New Port: audio/jmax o [2002/05/06] i386/37800 tools\fbsdboot.exe no longer works with c o [2002/05/07] docs/37843 doc manual for pthread_setschedparam is wrong o [2002/05/07] bin/37844 ru [PATCH] make knob to not install progs wi o [2002/05/08] ports/37855 ports-bugs wrong font name in jre/lib/font.propertie o [2002/05/09] ports/37904 znerd New Port: database/isql-viewer (a JDBC 2. o [2002/05/09] conf/37909 make distribution DESTDIR=/path -DNO_MAKE o [2002/05/09] gnu/37910 PATCH: make send-pr(1) respect &'s in /et o [2002/05/09] ports/37917 adrian [PATCH] squid24 does not support local_st o [2002/05/10] ports/37927 ports-bugs port to install linux Lahey Fortran 95 v6 o [2002/05/10] ports/37942 kde KDE 3.0 konsole terminal keyboard table u o [2002/05/11] ports/37962 markm ports/lang/gcl does not build o [2002/05/12] i386/37999 qa In /stand/sysinstall, 's' selects Options o [2002/05/13] alpha/38031 alpha osf1.ko not loaded during boot-time of li o [2002/05/13] ports/38034 ports-bugs compaq-cc (under linux-emu) installes man o [2002/05/13] i386/38055 qa In Install, Groups (creation) item should o [2002/05/13] i386/38056 qa In Install, User (creation)'s "Member gro o [2002/05/13] misc/38057 "install" document doesn't display correc o [2002/05/13] docs/38061 ume Typos in man pages for faith & faithd o [2002/05/14] ports/38086 rse eperl does not build CFLAGS recursive err o [2002/05/14] ports/38090 jkoshy devel/m4 port PREFIX vs LOCALBASE o [2002/05/15] ports/38125 ports-bugs ApacheCylical Link error/bug in Virtualse o [2002/05/16] docs/38148 trhodes In manpages "timezone" should be "time zo o [2002/05/16] kern/38156 quotacheck chokes on user -2 o [2002/05/17] bin/38168 installing curses programs and terminfo d f [2002/05/17] kern/38208 Digital camera Minolta Dimage E203 refuse o [2002/05/18] docs/38225 doc change "CDROM" to "CD-ROM" o [2002/05/18] ports/38238 dirk Adding cyrus imap support to php4/mod_php o [2002/05/18] ports/38243 www Ports search for 'IMP' vs look in Mail ca o [2002/05/18] bin/38256 linking pax to pax_{cpio|tar} o [2002/05/18] ports/38270 openoffice New Port Open office for Linux(1.0.0) o [2002/05/19] i386/38299 Add VT8233A to pci/viapm.c SMBus driver. o [2002/05/19] ports/38301 kiri upgrade www/w3-4 to 4.0.47 p [2002/05/19] bin/38303 billf tftpd -c patch f [2002/05/19] ports/38321 ports-bugs lang/gpc unnecessarily marked broken o [2002/05/20] ports/38324 chuckr print/transfig should default to LaTeX 2e o [2002/05/20] misc/38347 new library function abs2rel and rel2abs. o [2002/05/20] ports/38351 dirk mod_php4(WITH_APACHE2) +apache2(WITH_THRE o [2002/05/21] kern/38372 patch for puc(4) to support parallel port o [2002/05/21] bin/38388 request to add "openssl starttls" command o [2002/05/22] ports/38406 obrien incorrect .so in g++31.1 man page o [2002/05/22] ports/38408 wjv zope-zmysqlda does not run o [2002/05/22] kern/38419 add name "CanoScanN676U" in uscanner o [2002/05/22] docs/38426 doc extra manpage .Xr to locate relevant sysc o [2002/05/22] kern/38429 [PATCH] getgpid and getsid work for proce o [2002/05/22] kern/38445 Centralized ptrace() permission checking o [2002/05/23] misc/38452 Logitech USB iFeel: device_probe_and_atta f [2002/05/23] kern/38458 There is no a file iicbb_if.c on source t o [2002/05/23] bin/38467 less can dump core, FPU exception o [2002/05/23] misc/38468 Write drivers for Intel PRO/Wireless 2011 o [2002/05/23] i386/38477 qa In sysinstall's Choose Distributions scre o [2002/05/23] i386/38478 qa In sysinstall's Choose Distributions scre o [2002/05/23] i386/38480 qa sysinstall should prompt for normal users s [2002/05/24] www/38500 www gnats web form is overenthusiastic about f [2002/05/24] ports/38516 edwin ICQv7 transport for the Jabber Server o [2002/05/24] i386/38524 cons25 doesn't support F-keys beyond 12 f [2002/05/25] ports/38539 edwin New port: devel/libcfg+ o [2002/05/25] docs/38540 rpratt sysinstall application name should be Sys o [2002/05/25] docs/38556 doc EPS file of beastie, as addition to exist o [2002/05/26] kern/38575 NoName USB Flash drive not working o [2002/05/26] misc/38583 qa sysinstall installs crypto sources when / o [2002/05/26] ports/38593 portmgr Third level ports o [2002/05/26] i386/38596 freebsd 4.6rc2 can't support ati videocar o [2002/05/27] bin/38610 qa Sysinstall should be able to mount ISO im o [2002/05/27] docs/38618 trhodes Malloc types can be used with multiple al o [2002/05/27] docs/38620 doc Committers Guide and CVS o [2002/05/27] ports/38621 mita Update port: print/ghostscript-gnu-commfo o [2002/05/27] kern/38626 luigi dummynet/traffic shaper: RED: max_th and o [2002/05/27] docs/38647 doc cvsupit built-in instructions are slightl o [2002/05/28] kern/38657 fujitsu c4110 lifebook crashes on resume o [2002/05/28] ia64/38677 ia64 savecore fault when 1M buffer is allocate o [2002/05/29] misc/38727 mptable should complain about garbage arg o [2002/05/29] kern/38730 Memorex scrollpro mouse is not fully func o [2002/05/30] kern/38749 Diskless booting fails with some DHCP ser o [2002/05/31] docs/38772 doc firewall_type feature not mentioned on Ha o [2002/06/01] ports/38800 ports-bugs update www/roxen to Roxen WebServer 2.2.2 o [2002/06/02] docs/38810 blackend Minor change in section 2.13.5 of the Han o [2002/06/02] i386/38826 RFE: BootMgr should provide more identify o [2002/06/02] kern/38828 DPT PM2012B/90 doesn't work o [2002/06/02] conf/38829 bootblock recompile instructions in handb p [2002/06/03] docs/38850 keramida handbook/kernelopts/ should be in Develop o [2002/06/03] ports/38853 portmgr net/ethereal: configure fails o [2002/06/03] misc/38854 Resetting the sysinstall during setup cau o [2002/06/03] ports/38861 ports-bugs www/auth_ldap compiles-installs but fails o [2002/06/03] misc/38870 kernel-panic when coping data from a NFS- o [2002/06/03] ports/38876 tegge devel/linuxthreads: pkg-plist ignores NOP o [2002/06/05] bin/38931 Cleanup for WARNS=4 of src/games/fortune/ o [2002/06/05] misc/38937 delay between tracks in digital audio dum o [2002/06/05] bin/38940 Change: an option to *stat to allow supre a [2002/06/06] misc/38965 kde [PATCH] kapptemplate fails on FreeBSD o [2002/06/06] kern/38967 4/22/02 pcm driver merge appears to break o [2002/06/07] docs/38982 doc developers-hanbook/Jail fix o [2002/06/07] kern/38986 trhodes a change to msdosfs permissions behaviour o [2002/06/07] ports/38989 assar Fix to BROKEN arla port (arla-0.35.6) f [2002/06/08] i386/39023 Keystrokes yield extended ASCII p [2002/06/08] docs/39044 tjr The man page for rot13(6) never mentions o [2002/06/08] kern/39047 IPSEC Compression (IPCOMP) broken in tunn o [2002/06/09] java/39080 sobomax java/javavmwrapper: Functionality enhance o [2002/06/10] ports/39095 mharo ports/net/nttcp and ports/net/ttcp appear o [2002/06/10] ports/39102 trevor new category requested: finance o [2002/06/10] ports/39103 trevor new virtual category requested: accessib p [2002/06/10] bin/39116 tjr /usr/bin/printf o [2002/06/10] docs/39129 doc handbook; type WRT simulating postscript o [2002/06/11] ports/39182 ports-bugs netsaint-plugins util.c functions don't q o [2002/06/12] docs/39190 blackend Missing quote tags in releng-packages art o [2002/06/12] conf/39192 [PATCH] Save pcm mixer settings during re a [2002/06/12] ports/39193 edwin [maintainer-update] net/papaya update to o [2002/06/12] bin/39198 sh aborts on variables with periods o [2002/06/12] misc/39201 ptrace(2) and rfork(RFLINUXTHPN) confuse o [2002/06/12] bin/39206 core dump bug in sshd o [2002/06/12] docs/39213 doc No rc(4) man page o [2002/06/12] docs/39214 doc No my(4) man page f [2002/06/13] misc/39229 instruction pointer = 0x8:0xc00eaf13 o [2002/06/13] standards/39256standards [v]snprintf aren't POSIX-conformant for s o [2002/06/14] docs/39293 doc the dumpon man page incorrectly states th o [2002/06/14] conf/39306 The /etc/rc file should know if is runnin o [2002/06/14] bin/39311 rwatson you can't enable inetd in sysinstall with o [2002/06/15] ports/39342 sobomax Add automatic truetype support to Mozilla o [2002/06/15] misc/39347 use of /usr/bin/* utils in /etc/rc.diskle o [2002/06/15] docs/39348 doc kenv fetch of hostname requires dhcp/boot o [2002/06/16] misc/39360 If linux emu is added as a dependency (an o [2002/06/16] ports/39390 gnome Make graphics/imlib not depend upon GTK+ o [2002/06/17] misc/39425 Auto mounted directory was not found at b o [2002/06/17] misc/39439 tcopy will not duplicate tapes with block o [2002/06/18] bin/39463 mtm [PATCH] Add several options to fingerd o [2002/06/18] misc/39466 find -xdev hangs on dead NFS mounts (/etc o [2002/06/18] ports/39476 ports-bugs profxp will run but when you fxp a file i o [2002/06/18] ports/39487 mharo portlint doesn't accept MASTER_SITE/DISTF o [2002/06/19] conf/39505 automate BUILDNAME variable for releases o [2002/06/19] kern/39527 dwmalone getcwd() and unreadable parent directory o [2002/06/19] docs/39530 doc access(2) man page has unnecessarily broa o [2002/06/19] docs/39532 doc 'find' man page should a [2002/06/19] ports/39544 ports-bugs mayavi port disfunctional o [2002/06/20] i386/39574 qa Error mounting /dev/acd0c on /dist: No su o [2002/06/20] bin/39576 [PATCH] tail -f for multiple files p [2002/06/20] bin/39578 add more russian holydays o [2002/06/20] conf/39580 insecure default settings o [2002/06/20] i386/39584 ln -f fails to unlink o [2002/06/20] ports/39600 znerd New port: jdictionary-ger-hun 1.4 - Germa o [2002/06/20] ports/39603 znerd New port: jdictionary-eng-ger 1.4 - Engli o [2002/06/20] ports/39608 ports-bugs upgrade games/cgoban to 1.9.13 o [2002/06/21] ports/39619 ports-bugs flashplugin-mozilla crashes and doesnt pl o [2002/06/21] ports/39620 ports-bugs flashplugin-mozilla crashes when viewing o [2002/06/21] ports/39621 ports-bugs isc-dhcpd server can't get all network in o [2002/06/21] ports/39634 jim Port pclock unaligned access on alpha o [2002/06/22] ports/39673 ports-bugs netsaint-plugins fails to install command o [2002/06/22] bin/39676 obrien lukemftpd manual pages fix + examples o [2002/06/22] kern/39681 hidden kernel boot tunables added to sysc o [2002/06/24] misc/39772 imp pccardd is slow to install a PCCARD. o [2002/06/24] ports/39777 des New port: security/libsectok o [2002/06/24] ports/39778 des New port: security/sectok o [2002/06/24] ports/39799 dirk mod_php4, among other ports, maintains no o [2002/06/24] bin/39818 johan cleaning sbin/atm code from warnings o [2002/06/24] bin/39819 tjr cleaning bin/sh code from warnings o [2002/06/24] docs/39824 doc Various tweaks for doc/en_US.ISO8859-1/bo o [2002/06/25] misc/39864 robert hostname instead of IP in w -n output o [2002/06/25] bin/39866 johan cleaning sbin/fsdb code from warnings o [2002/06/25] bin/39867 johan cleaning sbin/mount_cd9660 and sbin/mount o [2002/06/26] ports/39882 ports-bugs pptp client does not install from port in o [2002/06/26] bin/39893 setusercontext library call differs umask o [2002/06/26] bin/39905 johan cleaning sbin/restore code from warnings o [2002/06/26] misc/39911 New Netgear MA401 pccard does not work wi o [2002/06/28] ports/39946 ports-bugs Shift-Tab navigation doesn't work in tk-8 o [2002/06/28] conf/39976 vi recovery halting boot process o [2002/06/28] kern/39977 luigi Device polling support for em(4) driver o [2002/06/29] ports/40002 wjv py-4suite: XSLT import error o [2002/06/29] ports/40004 trevor ports/audio/festlex-ogi has a checksum er o [2002/06/29] kern/40017 [patch] allows config(8) to specify confi o [2002/06/29] kern/40021 [patch] use ld(1) to build kernel with li o [2002/06/30] misc/40057 bugbusters send-pr -a flag does not work with -f o [2002/06/30] kern/40058 lockup on 5.0 DP1 - Xircom X3201 (RealPor o [2002/07/01] ports/40069 dirk mod_php4 doesn't compile with apache2 (& o [2002/07/01] misc/40081 noise in sound output with built-in CMedi o [2002/07/02] ports/40107 trevor ports/audio/festogi-spanish has a checksu o [2002/07/02] ports/40110 dirk add mnoGoSearch extensions to www/mod_php o [2002/07/02] ports/40121 ache standard Apache port creates sbin link o [2002/07/02] ports/40124 kris Patch to wdm to allow long passwords o [2002/07/02] bin/40127 [PATCH] Add functions for PID-file handli o [2002/07/03] ports/40140 trevor ports/audio/festvox-abc has a checksum er o [2002/07/03] ports/40163 cy screen w/o suid and locale o [2002/07/03] misc/40169 problem in latest 4.6-stable o [2002/07/04] docs/40196 doc man find does not describe -follow s [2002/07/04] misc/40197 sos BurnCD doesn't "just work" at 4.6-p1 o [2002/07/04] misc/40211 No sound on Compaq Presario 700 a [2002/07/05] docs/40234 murray Typos and language cleanup in /usr/share/ o [2002/07/05] ports/40241 trevor Update port: biology/xdrawchem to 1.4 (fi f [2002/07/06] misc/40273 dougb some more fortunes o [2002/07/06] misc/40280 I add uscanner entory o [2002/07/07] ports/40284 mi ports/x11/djvuplugin tarball no longer ex o [2002/07/07] misc/40298 using swapfile as /tmp o [2002/07/08] misc/40325 UID changes not reflected in viewed file/ o [2002/07/08] kern/40369 rman_reserve_resource - when "count > (en o [2002/07/09] misc/40378 standards stdlib.h gives needless warnings with -an o [2002/07/09] conf/40391 sysinstall with PCCARD<->ISA bridge gets o [2002/07/09] ports/40396 ports-bugs New port: Logging daemon for Linksys BEFS o [2002/07/10] ports/40411 ports-bugs apache-jserv port points to wrong locatio o [2002/07/10] docs/40423 doc Keyboard(4)'s definition of parameters to o [2002/07/10] docs/40443 doc Update books/faq/book.sgml for USB .ko's o [2002/07/11] ports/40452 wollman ports/www/mod_auth_kerb mastersite doesn' o [2002/07/12] ports/40511 sumikawa update for net/zebra (no-ipv6 option) f [2002/07/12] i386/40512 release i386 4.5 packages gnome/gnomeprin o [2002/07/12] ports/40514 ports-bugs New port: graphics/linux-ac3d easy to use o [2002/07/12] kern/40516 ti driver has no buadrate set o [2002/07/13] ports/40525 ports-bugs [new port] mail/mew2-xemacs-devel-mule f [2002/07/13] bin/40538 dougb mergemaster fixes and enhancements o [2002/07/14] conf/40548 list of /etc/defaults/make.conf undocumme o [2002/07/14] misc/40552 alternate syscons font for iso-07 encodin o [2002/07/14] ports/40555 steve x11-toolkits/open-motif requires mkhtmlin o [2002/07/14] kern/40563 gif driver can clobber route/arp table f [2002/07/14] bin/40570 mbr dhclient freeze the whole thing o [2002/07/14] bin/40572 vipw prints silly message if $EDITOR fail o [2002/07/14] misc/40577 post-October 2001 Dell Inspiron 2500's (a o [2002/07/15] bin/40597 add /sbin/fdisk ability of showing extend o [2002/07/15] bin/40617 brian /usr/sbin/ppp is not able to bind the nat f [2002/07/15] misc/40632 psm0 busy: o [2002/07/16] misc/40657 Logitech iFeel usb mouse will not attach o [2002/07/16] ports/40659 dirk php3 and GD problem p [2002/07/16] standards/40669standards command command does not support `-p' opt o [2002/07/16] misc/40671 pthread_cancel doesn't remove thread from o [2002/07/17] ports/40689 keith ports/chinese/dia file not found on maste f [2002/07/17] misc/40693 the system reboot alone with no reason f [2002/07/17] ports/40699 portmgr allow exclude patterns in `make search` o [2002/07/17] www/40704 www Incorrect CGI settings in http://www.fi.F o [2002/07/17] ports/40705 ports-bugs Upgrade of gnome-commander to 0.9.8 o [2002/07/17] kern/40711 sound CT5880-C sometimes fails to output sound o [2002/07/18] ports/40742 kuriyama DSSSL Modular stylesheets not added to sg o [2002/07/18] kern/40745 Inconsistency between net/if.c and struct o [2002/07/18] ports/40756 ports-bugs insecure default options o [2002/07/19] kern/40763 [UPDATED PATCH] Introduction of non-stric o [2002/07/19] conf/40777 disktab does not support 2.88MB floppies o [2002/07/19] ports/40789 ports-bugs New port: graphics/gocr OCR (Optical Char o [2002/07/21] docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "C o [2002/07/21] conf/40855 psuedo-device bpf need note in LINT and G o [2002/07/21] ports/40866 ports-bugs sml-nj port CM autoloading compilation pr o [2002/07/21] ports/40870 ports-bugs New port: graphics/animabob Interactive 3 o [2002/07/22] ports/40904 ports-bugs new port: www/tclcurl a [2002/07/22] docs/40911 murray [PATCH] Minor improvements for /usr/share o [2002/07/22] ports/40915 billf Fix pkg-plist for net/ethereal o [2002/07/23] kern/40919 usage of ucred->cr_uid in sys/netinet/in_ o [2002/07/23] ports/40925 ports-bugs [new port] www/ljdeps - metaport for Live o [2002/07/23] kern/40926 After Upgrading or Clean Installing 4.6, o [2002/07/23] kern/40927 sound dies with pcm:play:0 play interrupt o [2002/07/23] kern/40933 make depend fails when building kernel fr o [2002/07/24] i386/40946 Possible way to cause a system to hang us o [2002/07/24] kern/40948 USB HP CDW8200 does not work a [2002/07/24] docs/40952 murray login.conf should mention that "idletime" o [2002/07/24] i386/40957 rarpd on laptops doesn't find interfaces, o [2002/07/24] bin/40958 apm on Acer TravelMate 351 could not resu o [2002/07/25] ports/40975 ports-bugs Uncatched coredump of pkg_info while pkgd o [2002/07/25] bin/40980 du(1)'s -h and -k options interact confus o [2002/07/26] bin/41012 brian /etc/periodic/daily/440.status-mailq assu o [2002/07/27] ports/41036 adamw New port: x11-wm/wmDeskGuide, a dockbar p o [2002/07/27] ports/41042 trevor Change print/acroread5 ln's command to -s o [2002/07/27] bin/41060 ready to import gzip 1.3.3 o [2002/07/27] bin/41070 added .warning in make(1) + two fixes o [2002/07/27] bin/41071 make NO to NO_ transition patch o [2002/07/28] docs/41089 doc pax -B option does not mention interactio o [2002/07/29] misc/41107 file(1) command shows incorrect data (sig o [2002/07/29] docs/41110 doc "apropos linux" doesn't find brandelf o [2002/07/29] ports/41131 dirk adding some more configuration parameters o [2002/07/30] ports/41156 dirk Port Update: www/mod_php4: Patch to scrip o [2002/07/30] bin/41159 new sed -c option to allow ; as a separat o [2002/07/30] docs/41167 ports-bugs adventure.6 man-page, add section AUTHORS o [2002/07/30] misc/41179 LD_LIBRARY_PATH security checks o [2002/07/30] bin/41190 in sed, report the { linenum instead of E o [2002/07/31] misc/41202 Upgrade to 4.6.1-RELEASE-p3 breaks remote o [2002/07/31] ports/41209 gnome www/mozilla browser serializes DNS lookup o [2002/07/31] misc/41213 top(1) blocks if NIS-related entries in p o [2002/07/31] misc/41215 console revert back to kbd0 (AT) after KV o [2002/07/31] kern/41220 [PATCH] Minor sk driver enhancements o [2002/07/31] ports/41224 dburr update port: textproc/yodl o [2002/08/01] misc/41238 problems with FreeBSD installation on a d o [2002/08/01] conf/41241 qa sysinstall build uses kbdcontrol keymaps o [2002/08/01] misc/41243 USB, getting full desc failed, HID device o [2002/08/02] ports/41259 ports-bugs Info directory change for various GNU Ema o [2002/08/02] docs/41263 doc [PATCH] Clarifications and minor grammer o [2002/08/02] docs/41270 doc confusing directions for kernelconfig cha o [2002/08/02] bin/41271 Non-suid-crontab. a [2002/08/03] ports/41282 ports-bugs New_Ports japanese/stevie-* o [2002/08/04] bin/41307 libalias: logging of links lifecycle (add o [2002/08/04] misc/41309 brian security check scripts do not delete temp o [2002/08/04] bin/41310 Added ,,-d'' option to truss(1) for chang o [2002/08/04] www/41312 cvs RCS IDs are off-by-one in the NetBSD cvsw o [2002/08/04] ports/41314 ports-bugs amavis-perl is outdated (no longer suppor o [2002/08/04] kern/41317 trhodes reflect kernel building user for sudo-ers o [2002/08/04] ports/41320 ports-bugs New port : security/libprelude (part of P o [2002/08/04] ports/41321 ports-bugs New port : security/prelude-manager (part o [2002/08/04] ports/41324 ports-bugs New port : security/prelude-lml (part of o [2002/08/04] ports/41325 ports-bugs New port : security/prelude-nids (part of o [2002/08/04] misc/41328 ssh logins in 4.6.1 no longer give incomi o [2002/08/04] i386/41337 Compaq 900T syncs too high or incorrectly o [2002/08/05] i386/41364 imp pccard: NewMedia "Bus Toaster" SCSI card f [2002/08/06] misc/41379 Cannot browse directory tree on FreeBSD m o [2002/08/07] misc/41397 no copyright or license on lib/libc/gen/s f [2002/08/07] i386/41398 Illegal instruction Core Dumped o [2002/08/07] ports/41400 benno sgmltools-lite update to 3.0.3 o [2002/08/07] kern/41415 Some USB scanner cannot talk to uscanner o [2002/08/07] docs/41423 doc Update FAQ: attrib command for windows du o [2002/08/07] ports/41434 ports-bugs New port: www/light: another Mozilla-base f [2002/08/08] ports/41439 ports-bugs [MAINTAINER UPDATE] security/fwbuilder -> o [2002/08/08] ports/41444 portmgr ports system fails to check for non-base o [2002/08/08] docs/41449 ceri [PATCH] Missing word in DNS info in Handb s [2002/08/08] ports/41452 wjv games/newkind does not compile due to all o [2002/08/08] ports/41461 ports-bugs New port: graphics/irit Solid modelling s o [2002/08/09] ports/41464 ports-bugs New port Cybercalendar 1.8.2: web based c o [2002/08/09] ports/41468 kuriyama xhtml port needs to be updated for XHTML o [2002/08/09] kern/41489 nge(4) works as a module, but fails when f [2002/08/09] misc/41490 C-Media 8738 sound card static o [2002/08/09] i386/41495 panic: timeout table full when installing o [2002/08/09] ports/41510 ports-bugs New port: graphics/i3d 3D modeling progra o [2002/08/10] misc/41515 jhb boot0cfg corrupts slice table o [2002/08/10] bin/41526 symlinked mount points get mounted more t o [2002/08/11] kern/41543 emulation Easier wine/w23 support o [2002/08/11] kern/41555 Add support of VScom titan PCI-800L f [2002/08/11] bin/41556 obrien [PATCH] wtmp patch for lukemftpd f [2002/08/11] ports/41562 mph New port: inform-glk o [2002/08/11] misc/41566 obrien file(1) out of date p [2002/08/12] standards/41576standards POSIX compliance of ln(1) o [2002/08/12] docs/41578 doc Incorrect #include in the usb(4) manpage o [2002/08/12] ports/41579 ports-bugs New port: Small LDAP-to-KAB (KDE Address o [2002/08/12] docs/41580 doc usb(4) manpage: Structures' fields aren't a [2002/08/12] bin/41583 assorted mtree bugs (+fixes) o [2002/08/12] ports/41601 ports-bugs New port: graphics/gltt TrueType fonts re o [2002/08/13] kern/41631 PATCH to add sysctl knob to disable clone o [2002/08/14] ports/41673 ports-bugs New port: igal, image gallery generator o [2002/08/14] misc/41674 iostat column formatting overlaps o [2002/08/14] ports/41678 ports-bugs New port: xfwm4 is a gtk2 WM ideal for us f [2002/08/16] misc/41711 setup uses a to small disk o [2002/08/16] ports/41719 ports-bugs databases/dbview field positions of outpu o [2002/08/17] i386/41743 No sound from SiS630s controller o [2002/08/17] misc/41744 qa Cannot stop comat22 from being extracted o [2002/08/17] ports/41755 max Wrong letters in Canna iroha dictionary o o [2002/08/18] docs/41761 doc Update for /ru/internal/ part of site o [2002/08/18] misc/41771 '/etc/ttys' and X p [2002/08/18] conf/41772 dougb can't disable keybell o [2002/08/19] ports/41773 ports-bugs new port: x11-servers/Mozdev-PrintServer o [2002/08/19] ports/41784 ports-bugs vmware2 causes panic on recent -current o [2002/08/19] docs/41787 doc man page for route (Section 8) missing de o [2002/08/19] docs/41791 doc Documentation formatting error o [2002/08/19] docs/41807 doc natd -punch_fw "bug" o [2002/08/20] kern/41812 patch to detect/function AMD768 SMBus o [2002/08/20] misc/41817 pw groupshow doesn't include the login gr o [2002/08/20] docs/41820 doc Device driver confusion in Handbook (2.3) o [2002/08/20] ports/41829 ports-bugs New port: mail/squirrelmail-devel o [2002/08/20] ports/41836 ports-bugs new port - virus filtering tool for qmail o [2002/08/21] ports/41839 ade devel/libtool 1.3.4 port patch files inco o [2002/08/21] conf/41855 improvment of /etc/rc.diskless2 script o [2002/08/21] kern/41856 VESA splash screen problems on ThinkPad 2 o [2002/08/21] docs/41879 hrs cleanup to DOCROOT/share/sgml/freebsd.dsl o [2002/08/22] bin/41902 [PATCH] Add queue depth to systat -v disk o [2002/08/22] ports/41904 brian net/pppoa: Fix Makefile to fetch correct o [2002/08/22] ports/41916 ports-bugs New Port: mail/dsbl-testers o [2002/08/22] docs/41919 doc MINI kernel for bootfloppy (Handbook p.34 o [2002/08/23] misc/41947 hexdump(1) unprintable ASCII enhancement o [2002/08/23] misc/41949 qa sysinstall sorts /etc/rc.conf during netb o [2002/08/24] ports/41971 ports-bugs New Port: sysutils/ipfw-manager o [2002/08/25] ports/42018 ports-bugs pkg_info with PKG_PATH searches through t o [2002/08/25] i386/42022 qa sysinstall in non-interactive mode prompt a [2002/08/27] docs/42058 doc Documentation: Installing Oracle 8i onto o [2002/08/27] kern/42065 kern.ps_showallprocs has no effect on /pr o [2002/08/27] ports/42072 ports-bugs New port: mail/wmymail: Report new mail i o [2002/08/27] ports/42073 ports-bugs New port: x11/wmxss o [2002/08/27] misc/42084 luigi PicoBSD's 'netstat -i' reports negative I f [2002/08/27] ports/42110 ports-bugs New port: The ACE ORB 1.2.1 o [2002/08/28] ports/42113 ports-bugs New port: lgeneral-data, data files requi o [2002/08/28] ports/42134 ports-bugs linux-gtk PORTREVISION contaminates other o [2002/08/28] gnu/42154 [patch] gnu: libobjc redefines MIN and MA o [2002/08/29] i386/42162 qa Installation (sysinstall) crashes, md0c f o [2002/08/29] misc/42167 du uses linear search for duplicate inode o [2002/08/29] docs/42182 trhodes Making Dedicated Mode disks doc out of da o [2002/08/30] ports/42197 obrien [patch] make ports/editors GNOMENG aware o [2002/08/30] docs/42210 gioria doc/en_US.ISO8859-1/articles/releng/branc f [2002/08/30] bin/42213 moused(8) seems to delay some mouse event o [2002/08/30] bin/42217 libdisk segfaults with 1024 bytes/sector o [2002/08/30] ports/42218 ports-bugs [PATCH] Cleanup mail/ezmlm-web and bump P o [2002/08/31] kern/42274 jlemon Convert defined variable into tuneable as a [2002/08/31] bin/42275 roam [patch] sftp coredump if file specified b o [2002/08/31] ports/42280 ports-bugs New port: florist (Ada-POSIX bindings) o [2002/09/01] ports/42281 ports-bugs lang/rexx-imc - addition of UPPER patch o [2002/09/01] docs/42293 doc copystr(9) man page incorrectly describes o [2002/09/01] ports/42295 perky New port: Webware for Python (Web applica o [2002/09/01] ports/42296 ports-bugs New port: mod_webkit (adapter between Web o [2002/09/02] misc/42336 [PATCH] ISO-fication of /usr/src/contrib/ o [2002/09/02] bin/42338 pccard_ether should run ipf -y if ipfilte o [2002/09/02] ports/42347 trevor Patch to bring x11-wm/openbox port up to o [2002/09/03] ports/42360 ports-bugs NEW PORT: mail/aileron, WINGs mail client o [2002/09/03] ports/42371 ports-bugs libncurses.so.4 missing from ports/emulat o [2002/09/03] misc/42373 mtm Update to rc scripts to make interface al o [2002/09/03] ports/42378 ports-bugs New port: science/at Acoustic ToolBox o [2002/09/03] bin/42385 clean libatm code from warnings o [2002/09/03] bin/42386 cleaning code from warnings in libkvm o [2002/09/03] bin/42387 cleaning code of librpcsvc from warnings o [2002/09/03] bin/42388 cleaning code from warnings in libm o [2002/09/03] www/42389 www FreeBSD web site navigation bar not worki p [2002/09/04] kern/42404 TIOCSCTTY not implemented in linuxulator o [2002/09/04] misc/42410 cvsup and cvsup-without-gui packages don' o [2002/09/04] misc/42414 Booting SMP with 2 Xeon CPUs on Intel SE7 o [2002/09/04] bin/42419 syslog enhancement for the nologin shell o [2002/09/04] ports/42420 dirk mnoGoSearch support added to www/mod_php4 o [2002/09/04] misc/42422 dbm_delete returns -1 instead of 1 when t o [2002/09/04] ports/42427 motoyuki New port apache13-modssl+ipv6 o [2002/09/04] misc/42429 hash_action called with HASH_DELETE does o [2002/09/04] bin/42430 Add -m option to du(1) for compatibility o [2002/09/05] i386/42439 i386/apm: battery time reported incorrect o [2002/09/05] kern/42442 problem in idlequeue/debugging mode ? o [2002/09/05] misc/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_re o [2002/09/05] kern/42466 linux: 'ipc' typ=258 not implemented o [2002/09/05] misc/42467 netstat -s does not include fabricated pk o [2002/09/05] misc/42468 mount_smbfs incorrectly handled configura o [2002/09/06] misc/42469 After mounting by mount_smbfs directories f [2002/09/06] misc/42470 When install packages FreeBSD read very s o [2002/09/06] ports/42483 cy misc/screen problem with editors/vim-lite o [2002/09/06] conf/42497 rc.network lacks IKE daemon startup o [2002/09/07] ports/42503 kde kuser tries to create the wrong Mailbox o [2002/09/07] ports/42509 ports-bugs Update port: security/saint to 3.5.6 o [2002/09/08] misc/42558 www http://www.freebsd.org/search produces in s [2002/09/09] ports/42593 arved Maintainer update: openag version 1.1.1 ( o [2002/09/09] java/42595 glewis java/jdk13: Math.pow function from applet o [2002/09/09] bin/42609 pkg_info -qg doesn't handle missing files o [2002/09/10] i386/42641 Pam SSH authentication don't work o [2002/09/10] ports/42642 fanf cfexecd needs symlink, cfexecd, cfservd a o [2002/09/10] ports/42649 marcel linux_kdump port for source dirs != /usr/ o [2002/09/11] bin/42655 added new command 'checkpoint' to show an o [2002/09/11] misc/42663 pw useradd assigns unique UID's to multip o [2002/09/11] ports/42668 grog port instant-workstation should be update o [2002/09/12] ports/42696 ports-bugs New port: security/libsectok_pcsc: Smartc o [2002/09/12] ports/42708 wjv update biology/emboss to EMBOSS-2.5.1 o [2002/09/13] bin/42725 dwmalone Patch for calendar to support Hungarian n o [2002/09/13] kern/42728 many problems in src/usr.sbin/ppp/* afte o [2002/09/13] bin/42732 Seg fault in mount_nfs o [2002/09/13] misc/42761 No 'pscr' key defined in pl_PL.ISO8859-2. o [2002/09/14] i386/42766 Proposal to perform reboot via jump to BI o [2002/09/14] kern/42769 Boot stalls if the system has a serial co o [2002/09/14] ports/42790 ports-bugs New Port - www/suphp : A pretty PHP wrapp o [2002/09/15] bin/42803 tconv, tic, captoinfo binaries missing fr o [2002/09/15] conf/42807 /etc/netstart doesn't run /etc/defaults/p o [2002/09/15] kern/42816 file: table is full message o [2002/09/16] ports/42839 roam New Port: Weedns o [2002/09/16] ports/42840 dirk lang/php4 and www/mod_php4 need a newer m o [2002/09/16] kern/42858 Support for Netgear FA-511 pccard. f [2002/09/17] i386/42865 signal 11 caught repeatable during instal o [2002/09/18] misc/42934 installation procedure on install floppie o [2002/09/18] misc/42943 fd 0,1,2 should not be set to nonblock in o [2002/09/19] misc/42956 dlclose gives "invalid shared object hand o [2002/09/19] kern/42967 Sony MemoryStick problems with umass driv o [2002/09/19] bin/42974 [patch] ISO 8601 date format option o [2002/09/19] kern/42977 FreeBSD installer doesn't probe past EISA o [2002/09/20] ports/42985 tobez Perl5 port doesn't build automatically on o [2002/09/20] ports/42986 ports-bugs New Port: libwhisker HTTP testing library o [2002/09/20] bin/43139 /sbin/route -host option doesn't always s o [2002/09/20] ports/43142 ports-bugs New port: AlsaPlayer is an audio player w o [2002/09/21] kern/43154 tunwrite() does not allocate clusters for o [2002/09/21] conf/43167 Ability to have vnode based file systems o [2002/09/21] misc/43169 caps-lock led doesn't work a [2002/09/21] ports/43171 ports-bugs Port misc/upclient setgid kmem o [2002/09/21] misc/43177 markm Updates and additions to src/games/quiz/d o [2002/09/22] misc/43262 command 'shutdown -r' (also reboot) cause o [2002/09/22] ports/43273 portmgr [patch] make bsd.port.mk checksum check a f [2002/09/23] ports/43282 dirk SONY CD-RW CRX10U don't work with FreeBSD o [2002/09/23] ports/43313 ports-bugs New Port: nikto web and CGI vulnerability o [2002/09/24] ports/43324 kde kdebase: kdm config file overwritten when p [2002/09/24] kern/43348 cjc PATCH: make tcp.log_in_vain distinguish S o [2002/09/25] kern/43355 idad driver will work if logical drives d o [2002/09/25] bin/43367 incorrect report from 'who' after 'shutdo o [2002/09/25] misc/43368 pkg_create fails if target directory does o [2002/09/25] bin/43372 Broken struct ufs_args in ufsmount.h o [2002/09/26] ports/43394 ports-bugs New port yptransitd, an nss_ldap replacem o [2002/09/26] docs/43410 doc hardware-i386.html doesn't even mention p o [2002/09/27] docs/43416 doc pw(8) -u uidmin,uidmax feature is out of o [2002/09/27] kern/43426 mlockall and munlockall system calls are o [2002/09/29] ports/43466 ports-bugs editors/gnuserv: gnuserv.el should be mod o [2002/09/29] misc/43470 Solid State / x109 article out of date. o [2002/09/29] bin/43471 `ls -l` shows wrong size for big files (> o [2002/09/29] misc/43474 dhcp.* values not set in kenv by bootp cl o [2002/09/29] misc/43476 rc.* uses kenv - which is in /usr/bin o [2002/09/29] misc/43483 installation: missing '\n' (newline) in d o [2002/09/29] ports/43484 assar Update port net/arla to 0.35.9 o [2002/09/29] misc/43492 fsck hard to 'switch' off in diskless or o [2002/09/29] misc/43494 wish: resolv.conf created (again) later i o [2002/09/29] misc/43495 awk - rc/diskless references by full path o [2002/09/29] misc/43496 touch - rc/diskless references by full pa o [2002/09/29] misc/43497 mount -t nfs -> crunchgen incompatible o [2002/09/29] conf/43500 rc.syscons "allscreens" improvements o [2002/09/30] www/43530 www [PATCH] Add also HTTP_X_FORWARDED_FOR hea o [2002/09/30] ports/43537 mharo portlint 2.3.3 does not handle URLs that o [2002/09/30] misc/43539 Cannot mout floppy on Compaq Proliant ML3 a [2002/09/30] ports/43540 arved Update Port net/cnet 1.7.7 -> 2.0.3 o [2002/09/30] misc/43543 cdboot does not handle 'relaxed' ISO9660 f [2002/09/30] misc/43547 ppp will not connect to att worldnet over o [2002/10/01] alpha/43561 jhb kern_shutdown.c uses time_t as 'long int' o [2002/10/01] ports/43565 znerd jakarta-tomcat41 port breaks upgrades o [2002/10/01] docs/43569 doc src/share/examples/worm/README out-of-dat o [2002/10/02] kern/43577 [PATCH] New kernel option SHUTDOWN_BEEP o [2002/10/02] bin/43582 passwd(1) fails on nonexistent users o [2002/10/02] bin/43596 pkg_add does not propogate 'remote' to de o [2002/10/02] java/43602 glewis jdk13 does not honor WRKDIRPREFIX o [2002/10/02] kern/43610 static-ize some symbols in digi driver o [2002/10/02] kern/43611 static-ize some symbols in sys/crypto o [2002/10/02] kern/43613 static-ize symbol in smbfs code o [2002/10/02] kern/43616 static-ize some functions in sys/net/zlib o [2002/10/03] kern/43623 grog vinum: 'readpol prefer' option broken [pa o [2002/10/03] ports/43641 znerd Port www/orion should log to /var/log o [2002/10/04] docs/43651 doc stab(5) incorrectly states to include jus o [2002/10/04] ports/43656 ports-bugs New version of subversion r3200 (0.34.2) o [2002/10/04] ports/43667 ume RC_NG script for mail/cyrus_imapd o [2002/10/04] ports/43668 ume RC_NG script for mail/cyrus_imapd2 o [2002/10/04] ports/43669 dirk RC_NG script for databases/mysql323-{serv o [2002/10/04] ports/43670 ports-bugs RC_NG script for net/openldap12 o [2002/10/04] ports/43671 ports-bugs RC_NG script for net/openldap20 o [2002/10/04] ports/43672 ume RC_NG script for security/cyrus_sasl + Up o [2002/10/04] ports/43673 ume RC_NG script for security/cyrus_sasl2 o [2002/10/04] bin/43675 tjr uniq prints last, not first of the identi f [2002/10/04] ports/43679 znerd Error starting jakarta-tomcat41 o [2002/10/05] kern/43716 puc driver does not recognize Lava Dual-6 o [2002/10/05] ports/43718 ports-bugs New port: x11-wm/icebgset (set IceWM back p [2002/10/06] bin/43752 des [PATCH] find -not is not o [2002/10/07] ports/43764 ports-bugs New port: audio/wavemagic - An audio play o [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp o [2002/10/07] ports/43773 ports-bugs xmaddressbook complains when run, does no o [2002/10/07] ports/43774 ports-bugs Allow users to build security/cyrus_sasl o [2002/10/07] conf/43800 Belkin 10/100 Base-TX PCMCIA card not rec o [2002/10/07] ports/43804 ports-bugs new port: sysutils/getopt (Frodo Looijaar o [2002/10/07] conf/43805 Asante' FriendlyNet AeroLAN AL1011 802.11 o [2002/10/07] ports/43809 adamw patch for audio/gdcd o [2002/10/08] bin/43819 changed truss output for utrace calls o [2002/10/08] bin/43823 [PATCH] update to environ(7) manpage o [2002/10/08] misc/43825 qa please remove object files in source (src a [2002/10/08] bin/43826 mbr dhclient on 'no carrier' interfaces takes o [2002/10/09] bin/43857 hm conflicting types in /usr/src/usr.sbin/i4 o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol man page f [2002/10/09] docs/43864 doc Minor documentation to add o [2002/10/09] ports/43880 ports-bugs Names of Emacs ports are misleading o [2002/10/10] misc/43886 markm local exploitable overflow in rogue o [2002/10/10] ports/43892 ports-bugs Enable use of keynote with security/isakm o [2002/10/10] i386/43896 Missing "syscall fstat64" in linux emulat o [2002/10/10] docs/43899 doc incorrect info in man page for fetch (8) o [2002/10/10] misc/43905 kqueues: EV_SET(kevp++, ...) is non-int o [2002/10/10] ports/43909 kde kscd should no longer default to rmatcd0c o [2002/10/10] ports/43911 grog instant-workstation depend annoyance o [2002/10/11] kern/43916 Olicom OC-2220 (PC-card) hangs on ifconfi o [2002/10/11] java/43925 java New port: net/beepcore-java (supersedes p o [2002/10/11] java/43929 java linux-ibm-jdk core dumps without System.e o [2002/10/11] conf/43931 imp New pccard entry for Netgear CF Wireless o [2002/10/11] bin/43938 ntpd binds to local aliases o [2002/10/11] docs/43941 doc Rationale for Upgrade Sequence o [2002/10/11] ports/43942 ports-bugs New port submission: security/hydra o [2002/10/11] java/43947 znerd Checkstyle port should install checkstyle o [2002/10/11] ports/43956 ports-bugs New port: x11-wm/ion-devel o [2002/10/12] misc/43979 After a binary upgrade, kernel with ipf f o [2002/10/12] docs/43980 darrenr ipf(5) missing "gre" keyword o [2002/10/12] misc/43989 missing tabs in calendarfiles o [2002/10/12] bin/43994 sshd gives fatal while logging off o [2002/10/13] ports/43997 ports-bugs New port: www/apache13-modsnmp: apache-1. o [2002/10/13] ports/44019 ache Fixes for ftp/wu-ftpd-2.6.2 o [2002/10/13] ports/44028 ports-bugs courier "make install" fails o [2002/10/13] docs/44034 trhodes Multiple sysctl variables are not documen a [2002/10/14] java/44039 znerd Request for port: CruiseControl a [2002/10/14] java/44041 znerd Generate bsd.java.mk from an XML file o [2002/10/14] misc/44044 4.7-R Freezes half the times snd.ko is lo o [2002/10/14] conf/44050 CVSUPIT package when installed from /stan o [2002/10/14] misc/44058 /dev/ch* is created without group write p o [2002/10/14] docs/44074 doc ln(1) manual clarifications [patch] o [2002/10/15] conf/44090 pppoa authentication failure? on FreeBSD p [2002/10/15] ports/44095 mjacob Fix Installation of Manpages, portlint sy o [2002/10/15] kern/44098 RealTec-based NIC initialization problem o [2002/10/15] ports/44099 mharo portlint-2.3.3 give false errors on URLs p [2002/10/15] kern/44121 [PATCH] bogus cast removal in hea driver o [2002/10/15] misc/44122 tun0 gets a second ip adress after a disc o [2002/10/15] i386/44127 About usb flash boot disk! o [2002/10/16] bin/44137 "make most" fails on rmail (RELENG_4) o [2002/10/16] misc/44150 Diskless kernel may crash, depends on the o [2002/10/16] ports/44151 ade Update libtool to 1.4.3 o [2002/10/16] ports/44153 kris [patch] Update net/xprobe to 0.0.2 o [2002/10/17] conf/44170 Add ability to run multiple pppoed(8) on o [2002/10/17] www/44181 www www "Release Information" organization o [2002/10/17] bin/44188 cannot install FreeBSD 4.0-4.6 to Compaq o [2002/10/17] bin/44200 ftp site keeps sockets open. o [2002/10/18] bin/44212 Unify 'recursive' options -r and -R o [2002/10/18] kern/44215 PUC driver support for Moxa C320 Intellio o [2002/10/18] kern/44218 Init dies during boot after upgrade from o [2002/10/18] java/44219 java Update port: textproc/cocoon to 2.0.3 o [2002/10/18] ports/44225 green Update port: emulators/snes9x to 1.39 (fi o [2002/10/18] bin/44238 luigi [PATCH] syntax-check option for ipfw2 o [2002/10/18] ports/44241 fanf Update: sysutils/cfengine2 o [2002/10/18] java/44251 java Create stylebook port o [2002/10/18] ports/44252 anholt XFree86-Servers port removes/overwrites c o [2002/10/19] ports/44258 obrien pkg_update ate my Muttrc o [2002/10/19] kern/44260 LINT does not list pseudo-device tap o [2002/10/19] i386/44262 Problems with nrp driver o [2002/10/19] misc/44265 pkg_update does not preserve +REQUIRED_BY o [2002/10/19] kern/44267 One more modem PNP id for /usr/src/sys/is o [2002/10/19] ports/44270 ports-bugs New port: net/bind9-sdb-ldap o [2002/10/19] ports/44273 dwcjr improved samba start script o [2002/10/19] java/44275 java New Port: netbeans-ide o [2002/10/19] bin/44277 devinfo is not C++ safe o [2002/10/19] conf/44282 /etc/rc.d/sysctl script works incorrectly o [2002/10/19] misc/44286 /etc/defaults/rc.conf uses the obsolete n o [2002/10/19] kern/44293 thomas Unable to access audio CD under Linux emu o [2002/10/20] ports/44305 ports-bugs New port: java/xdoclet (an extended Javad o [2002/10/20] misc/44307 UTF-8 locales support o [2002/10/20] bin/44310 make ppp(8) add clients MAC address to al o [2002/10/20] ports/44319 ports-bugs update port of mail/minimalist to the lat o [2002/10/21] ports/44327 ports-bugs databases/posgtresql7 port doesn't automa o [2002/10/21] bin/44329 wish for systat o [2002/10/21] kern/44333 [PATCH] make A4-tech RFSW-35 mouse's whee a [2002/10/21] java/44335 znerd devel/jakarta-ant does not install man pa o [2002/10/21] docs/44337 doc [PATCH] netstat(1) manual references none o [2002/10/21] bin/44343 [PATCH] sbin/fsdb.c o [2002/10/21] kern/44365 introduce ulong and unchar types o [2002/10/21] kern/44372 some kernel options prevent NTP clock syn o [2002/10/22] ports/44378 dirk Can't compile mod_php4 for apache2 o [2002/10/22] misc/44379 libutil: property.c, properties_read() ba o [2002/10/22] java/44380 java patch for java-commapi-freebsd o [2002/10/22] ports/44393 green Bug in emulators/snes9x -- superfluous "& o [2002/10/22] standards/44394alfred restrict qualifiers missing from sys/sock o [2002/10/23] docs/44400 doc ipfw(8) has contradictions in bridged and o [2002/10/23] standards/44425standards getcwd() succeeds even if current dir has o [2002/10/24] ports/44430 ports-bugs New port: xalan-c v. 1.4 (XSLT engine and o [2002/10/24] java/44432 znerd Ant-based port installs should use Jikes o [2002/10/24] docs/44435 doc sysctl manpage: add example for tcsh o [2002/10/24] i386/44438 Realtek NIC hangs after resume from acpi o [2002/10/24] kern/44439 puc doesn't find all 4 ports on SIIG Cybe o [2002/10/24] kern/44450 USB support FAILURE for device that was s o [2002/10/25] ports/44464 ports-bugs Ports addition f [2002/10/25] misc/44470 mouse freezed! o [2002/10/26] misc/44500 AC1001 Gigabit NIC Worked o [2002/10/28] ports/44565 ports-bugs NEW PORT: devel/libds (Useful data struct o [2002/10/28] i386/44580 NFS updates file access time when file is o [2002/10/29] misc/44587 dev/dpt/dpt.h is missing defines required f [2002/10/29] ports/44589 trevor [patch] Unbreak audio/csound by updating o [2002/10/29] docs/44594 doc Handbook doesn't mention drivers.flp for o [2002/10/29] ports/44712 tg python port doesn't install symlink as 'p o [2002/10/29] ports/44715 bp novell ncp client does not install f [2002/10/29] conf/44717 dougb update login.conf and unify login capabil o [2002/10/30] misc/44747 strange echoes in sound when using PLIP o o [2002/10/30] i386/44762 sound (ie, not system beeps) stop working f [2002/10/30] ports/44768 ports-bugs [Port Fix]: games/xblackjack-2.2 o [2002/10/31] ports/44786 ports-bugs New port: devel/picp o [2002/10/31] ports/44796 dirk www/mod_php4: Add support for Oracle7 o [2002/10/31] conf/44800 RC_NG for local rc scripts o [2002/11/01] ports/44816 ports-bugs new port ngircd o [2002/11/02] ports/44831 dirk PORTS Uprade: mod_php4-4.2.3_1 o [2002/11/02] ports/44836 ports-bugs New port: hunch - Scan httpd log files, f o [2002/11/03] ports/44854 ports-bugs [PATCH] add xaw3d build option to games/x o [2002/11/03] ports/44858 dirk build of mod_php4 fails at iconv o [2002/11/03] ports/44861 markp several games ports are missing their sco o [2002/11/04] kern/44872 dgb driver update o [2002/11/04] ports/44877 portmgr shorter names for REINPLACE_CMD, USE_REIN o [2002/11/04] misc/44894 as a local non-root user and remote it's o [2002/11/04] ports/44909 ports-bugs New port: Krusader 1.11, a two window fil o [2002/11/04] misc/44915 'choose installation media' choose CD-ROM o [2002/11/04] java/44922 java JVM crash o [2002/11/05] ports/44932 ports-bugs New port: xtr o [2002/11/05] ports/44949 ports-bugs New port Squid Access Report Generator o [2002/11/05] ports/44953 ports-bugs make install of apsfilter-7.2.3 fails wit o [2002/11/05] gnu/44984 Send-pr can use environmental variable $F o [2002/11/06] docs/45011 trhodes style(9): '->' and '.' don't require spac o [2002/11/07] misc/45026 Can't set next password change date on NI o [2002/11/07] ports/45127 taoka correct fetch for x11/xco o [2002/11/08] gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messa o [2002/11/08] ports/45148 jhb fix fetch and build for x11/eweather and o [2002/11/09] bin/45156 sshd won't display last login information o [2002/11/09] ports/45166 ports-bugs New port: emulator/fceu o [2002/11/09] www/45169 www suggested update for ports index page on o [2002/11/09] ports/45180 ports-bugs New port (split out from old port): net/s o [2002/11/09] kern/45182 fm801.c does not recognize a FM801 based o [2002/11/10] bin/45193 [PATCH] truss can't truss itself o [2002/11/10] ports/45205 dirk [PATCH] www/mod_php4: Fix OpenSSL use for o [2002/11/11] docs/45214 brueffer [PATCH] Fix sorting in Additional Contrib o [2002/11/11] docs/45215 brueffer [PATCH] Fix sorting in Additional Contrib o [2002/11/11] ports/45216 joerg devel/bcc port is incomplete o [2002/11/11] misc/45222 daily rejected mail hosts report too long o [2002/11/11] conf/45226 Fix for rc.network, ppp-user annoyance o [2002/11/11] ports/45227 ports-bugs problems building/installing db3 and open o [2002/11/11] bin/45229 restore(8) -i: ls reports mising files as p [2002/11/12] alpha/45240 alpha pstat -f column headings misaligned on Al o [2002/11/12] gnu/45246 tar --listed-incremental fails for Solari o [2002/11/12] ports/45247 ports-bugs New port: www/scoop collaborative media o [2002/11/12] misc/45254 qa Sysinstall installs things it should not a [2002/11/13] bin/45269 dougb heap documentation o [2002/11/13] misc/45273 contrib/smbfs: error in examples/dot.nsmb o [2002/11/13] ports/45275 ports-bugs New port for "Simplicity for Java" a Java o [2002/11/14] kern/45285 Support for yet another PCI multiport car o [2002/11/14] ports/45289 mita ja-dvi2ps-3.2 does not handle \special co o [2002/11/14] kern/45291 kevent(2) ignores timeout if nevents == 0 o [2002/11/14] kern/45293 kevent denies to observe /dev/tty o [2002/11/14] docs/45294 doc LINT notes are murky re PQ_CACHESIZE sett o [2002/11/14] ports/45298 ports-bugs [PATCH] make ratpoison 1.1.1 usable o [2002/11/14] ports/45301 anders [UPDATE] Update security/fpm to use GNOME o [2002/11/15] ports/45316 ports-bugs new-port: game, train control simulation o [2002/11/15] ports/45320 ports-bugs New Port: OFM - The open filemanager o [2002/11/15] ports/45323 dirk No zip support option in www/mod_php4 o [2002/11/15] ports/45329 ports-bugs New port: xnodecor (x11 utility on Overri o [2002/11/16] bin/45333 [PATCH] New option -r for chown and chgrp o [2002/11/16] ports/45343 torstenb Metamail 2.7 incorrectly patched [PATCH] o [2002/11/16] ports/45357 jmz PATCH: textproc/ispell - added bulgarian o [2002/11/16] ports/45360 portmgr [patch] add SITE_PERL / ARCH_PERL variabl o [2002/11/17] docs/45371 doc man page for exports lacks information on o [2002/11/18] ports/45394 wjv update biology/emboss from 2.4.1 to 2.5.1 o [2002/11/18] ports/45401 ports-bugs New ports: security/sslsniffer (SSLv3/TL o [2002/11/18] ports/45414 portmgr make update in /usr/ports missing default o [2002/11/18] ports/45420 trevor Update port: biology/xdrawchem to 1.6 (fi o [2002/11/18] ports/45462 ports-bugs Latest version of XML::Twig. o [2002/11/19] ports/45469 alane [patch] bsd.ports.mk: automatic USE_PERL5 o [2002/11/19] bin/45486 Support for human readble (-h/-H) output o [2002/11/19] ports/45491 ports-bugs New Port: apache-soap (Apache SOAP Toolki o [2002/11/19] ports/45496 ports-bugs [New Port] www/mod_layout2 : mod_layout A o [2002/11/19] ports/45502 ports-bugs [New Port] www/mod_accounting : An Apache o [2002/11/20] ports/45522 ports-bugs new port database/WWWdb-0.8.2 f [2002/11/20] ports/45526 edwin New port: math/maxima -- symbolic compute o [2002/11/20] ports/45534 trevor x11-wm/openbox: Update to 2.2.1 (testing) s [2002/11/20] bin/45547 sos a patch to make burncd handle .wav files. o [2002/11/20] ports/45548 wjv Port upgate: textproc/py-csv to 1.0 o [2002/11/21] www/45560 www russian FAQ trouble on www.FreeBSD.org o [2002/11/21] ports/45576 ports-bugs port lcms fails test after build on curre a [2002/11/22] bin/45584 tjr read builtin function of sh does not read o [2002/11/22] ports/45596 dwcjr net/samba v2.2.7 fetch error - maybe a fi f [2002/11/22] ports/45607 edwin New port: french/grisbi, a french finance o [2002/11/22] conf/45608 qa Install should config all ether devices, o [2002/11/22] ports/45612 marcel port devel/linux_kdump does not compile s [2002/11/22] ports/45613 portmgr make update doesn't o [2002/11/23] bin/45659 portmap can not be bound to only loopback f [2002/11/24] ports/45681 sada Update port: chinese/chitex o [2002/11/24] kern/45684 systat -vmstat reports "alternate system o [2002/11/24] i386/45692 ACPI error on Acer motherboard o [2002/11/24] ports/45693 ports-bugs New port: net/gkrellmmultiping2 f [2002/11/24] ports/45695 ports-bugs pnet upgrade 0.4.4 -> 0.4.8 f [2002/11/24] ports/45696 ports-bugs new port, lang/pnetlib o [2002/11/24] bin/45701 markm spelling error in rogue o [2002/11/25] docs/45702 doc Error in manual page ssh_config(5) o [2002/11/25] misc/45704 [PATCH] request to change cp866b to cp866 o [2002/11/25] ports/45712 sobomax [UPDATE] games/teg to 0.11.0 o [2002/11/25] ports/45714 ports-bugs New Port: KMyIRC o [2002/11/25] bin/45729 make rbootd transfere the default file if o [2002/11/25] standards/45738tjr sh "unset" built-in violates IEEE Std 100 o [2002/11/26] bin/45749 [PATCH] rm -f in MS-DOS directory o [2002/11/26] kern/45753 linux-sun-jdk1.4.1 calls SIOCGIFCONF ioct o [2002/11/26] ports/45771 ports-bugs OffiX printer doesn't find printer o [2002/11/26] ports/45782 ports-bugs [patch] fix fetch and update version for o [2002/11/26] kern/45785 emulation Linux WineX seems to require a few new li o [2002/11/27] kern/45793 Invalid media subtype aliases in if_media o [2002/11/27] ports/45801 billf ports/textproc7word2x is gone f [2002/11/27] ports/45812 ports-bugs New port for print/mup o [2002/11/28] bin/45817 [PATCH] Fortune files are needlessly rand o [2002/11/28] misc/45830 KDC has problems when listening to IPv6 a o [2002/11/29] misc/45839 [PATCH] Remove some duplicate fortunes o [2002/11/29] ports/45843 dbaker sysutils/3dm - needs to detect and create p [2002/11/30] misc/45874 ache [PATCH] FreeBSD does not know about ca_ES o [2002/11/30] ports/45886 ports-bugs New ports: japanese/trr* o [2002/12/01] bin/45896 dwmalone setnetgrent() should return error code o [2002/12/01] ports/45899 brian Packaging list for vlc-0.4.4 is incomplet o [2002/12/01] ports/45909 ports-bugs New port: Python DBI Sybase module o [2002/12/02] ports/45911 ports-bugs GEOM-related problem sysutils/diskcheckd o [2002/12/02] docs/45940 doc burncd missing info o [2002/12/03] ports/45963 anders the port looks for majordomo.cf in /etc o [2002/12/03] ports/45965 ports-bugs new port: sysutils/fonteditfs o [2002/12/03] bin/45967 telnetd does not set SO_DEBUG for -debug o [2002/12/03] kern/45968 des linprocfs is missing maps o [2002/12/03] ports/45977 dbaker New version of FreeBSD dnet client releas o [2002/12/05] ports/46005 ports-bugs New port: ginsu - a client for the gale s o [2002/12/05] kern/46014 thomas atapi-cam: cd0c errors o [2002/12/06] ports/46024 ports-bugs palm/plucker-1.2 doesn't work with python a [2002/12/06] ports/46032 gnome net/gabber doesn't work on -CURRENT o [2002/12/06] ports/46034 ports-bugs new ports: mantis o [2002/12/06] ports/46040 ports-bugs request to repo copy www/dansguardian to o [2002/12/06] ports/46041 ports-bugs port update: www/dansguardian to version o [2002/12/06] ports/46042 ports-bugs port update: www/dansguardian-devel to v o [2002/12/07] conf/46062 Remove skel from BSD.root.dist. o [2002/12/07] ports/46063 ports-bugs New port: USB FM Radio Control utility o [2002/12/07] ports/46065 ports-bugs [patch] fix fetch for devel/libvanessa_* o [2002/12/07] ports/46070 ports-bugs [patch] fix fetch and update version for o [2002/12/07] ports/46077 ports-bugs [patch] fix fetch for devel/gsnes9x o [2002/12/07] kern/46080 ipfw [PATCH] logamount in ipfw2 does not defau o [2002/12/07] ports/46089 ports-bugs multimedia/xmms Vorbis plugin built incor o [2002/12/08] ports/46092 tg ports/print/acroread on i386 needs Linux o [2002/12/08] bin/46107 killall(1) can prematurely kill itself o [2002/12/08] bin/46110 why does fsck work with / mounted r/o but o [2002/12/09] standards/46119standards Priority problems for SCHED_OTHER using p o [2002/12/09] bin/46123 fenner PATCH: tcpdump needs -a flag if netmask i o [2002/12/09] ports/46128 trevor Update port: biology/xdrawchem to 1.6.1 ( o [2002/12/09] kern/46157 dnetc crashes DP2-SMP system o [2002/12/10] kern/46159 ipfw dynamic rules lifetime feature o [2002/12/10] misc/46163 gad lpc problem. Only root can modify despit o [2002/12/10] ports/46172 ports-bugs linux_base-7.1_2 install problem w/linpro o [2002/12/10] kern/46174 bootp_subr.c patch o [2002/12/11] docs/46181 doc "make fetch-recursive" target description f [2002/12/11] ports/46185 adamw building /usr/ports/x11-wm/qnxstyle faile o [2002/12/11] docs/46196 doc Missing return value in (set_)menu_format o [2002/12/11] docs/46200 doc fix for ru_RU.KOI8-R/books/porters-handbo o [2002/12/11] ports/46202 ports-bugs hackedbox make install failure (nle/et_EE o [2002/12/11] bin/46203 [patch] make(1) missing trailing '\0' and f [2002/12/12] i386/46222 CPU speed incorrectly reported o [2002/12/13] conf/46235 rwatson Sysinstall NTP servers for Finland requir o [2002/12/13] i386/46238 [code] Driver for the PCL-724 ISA card o [2002/12/13] kern/46250 Sound driver not working correctly on SON o [2002/12/14] ports/46256 lioux update rxvt-devel to 2.7.9 o [2002/12/14] i386/46258 PLT code causes skewed return hint stack o [2002/12/15] docs/46271 trhodes Omission in ldconfig(8) manpage o [2002/12/16] ports/46288 edwin OpenLDAP port update o [2002/12/16] docs/46291 doc correlation between HZ kernel config para o [2002/12/16] docs/46295 doc please add information to Nvi recovery em o [2002/12/16] ports/46317 obrien ports/editors/vim/files/patch-02 is stale o [2002/12/17] ports/46325 ports-bugs new port: net/luasocket - IP library for o [2002/12/17] ports/46327 ports-bugs obsolete version of the Computer Modern f o [2002/12/17] misc/46328 gad patch for lpd o [2002/12/18] bin/46362 mount_smbfs doesn't check if something is o [2002/12/18] kern/46368 MAXDEP in isa/pnpparse.c is too small o [2002/12/19] bin/46379 customize home-directory permissions in p o [2002/12/19] misc/46382 ps(1) could use a "repeat" mode o [2002/12/20] ports/46394 ports-bugs New port: special purpose database applic o [2002/12/20] misc/46409 Certain periodic scripts check broken NFS o [2002/12/20] ports/46410 ports-bugs New port: SGL - incomplete STL implementa o [2002/12/20] kern/46413 imp ufm.ko does not function without a MAKEDE o [2002/12/20] ports/46414 adrian squid man page gives wrong location of co f [2002/12/20] ports/46417 mph bidwatcher port broken as of Dec. 17 2002 o [2002/12/21] standards/46441tjr /bin/sh does not do parameter expansion i o [2002/12/21] ports/46442 ports-bugs New port: Ada thin binding to SDL and Ope o [2002/12/21] ports/46448 ports-bugs New port: adabooch is a Booch implementat o [2002/12/21] i386/46453 [INTERLATIONALIZATION] cons25l2, ISO8859- o [2002/12/21] ports/46457 ports-bugs Update x11/temperature.app to 1.4 and use o [2002/12/22] ports/46478 jmz Fix build on -current for graphics/pixmap p [2002/12/22] ports/46483 trevor [patch] Fix gcc295 on current/i386 o [2002/12/23] ports/46487 ports-bugs New port: cbind - Translator for "thin" A o [2002/12/23] kern/46488 usb driver do not send detach events on S o [2002/12/23] standards/46504standards Warnings in headers o [2002/12/23] ports/46505 ports-bugs New port: adabindx - an Ada-binding to th o [2002/12/23] ports/46510 ports-bugs sshd does not correctly store the remote o [2002/12/24] ports/46520 ports-bugs stability issues re - mplayer and audio o o [2002/12/25] ports/46522 sobomax xtraceroute-0.9.0 fails with "OpenGL not o [2002/12/25] ports/46527 ports-bugs bento-fix: sysutils/bubblemon o [2002/12/26] ports/46552 ports-bugs new port: smtpmap-0.8 o [2002/12/27] misc/46555 enhancements for libradius o [2002/12/27] kern/46564 IPFilter and IPFW processing order is not o [2002/12/27] ports/46568 znerd New Port: eclipse-2.0.2 o [2002/12/27] ports/46570 jhb E-Fancylauncher core dump as receiving mo o [2002/12/28] ports/46602 ports-bugs new port devel/tkinspect o [2002/12/28] ports/46608 ports-bugs [NEW PORT] latest development track of ep f [2002/12/29] ports/46615 ports-bugs new-port: mail/sympa - an electronic mail o [2002/12/30] ports/46630 ports-bugs update of ports/net/lam o [2002/12/30] conf/46645 [PATCH] rc.shutdown state table saving ha o [2002/12/31] kern/46652 DEBUG_VFS_LOCKS never checks locks for ** o [2002/12/31] ports/46655 dwcjr net/samba beauty fix o [2002/12/31] ports/46656 ports-bugs Fix comm/hylafax pkg-plist o [2002/12/31] kern/46661 [patch] compat linux error message for ob o [2003/01/01] ports/46667 ports-bugs New Port: gpkgdep 0.0, a graphical packag o [2003/01/01] misc/46670 5.0-RC2 install leaves CD drawer locked. o [2003/01/01] bin/46672 dump(8) program gives unnecessary -L warn o [2003/01/01] kern/46677 Wrong vendor and device defines in ng_ubt o [2003/01/02] ports/46688 ports-bugs mail/tkrat2 Updated to 2.1.1 o [2003/01/02] ports/46706 ports-bugs New Port: irc/dancer o [2003/01/02] ports/46707 ports-bugs [NEW PORT} audio/asmix mixer for afterste o [2003/01/02] ports/46708 ports-bugs [NEW PORT} audio/asmixer Another mixer fo o [2003/01/02] docs/46709 doc tables in terminfo.5 are broken o [2003/01/03] ports/46714 ache fix www/mnogosearch to adhere to ${APACHE o [2003/01/03] ports/46728 ports-bugs [UPDATE] textproc/xml2rfc o [2003/01/03] ports/46731 ports-bugs New port: SGI's Open Inventor o [2003/01/03] kern/46734 joystick driver doesn't allow for anythin f [2003/01/03] ports/46738 edwin new port: www/templeet o [2003/01/03] conf/46746 No way to set link addresses through rc.c o [2003/01/04] ports/46754 ports-bugs [PATCH] pdftohtml add Plain-Text output o [2003/01/04] ports/46756 ports-bugs new port: net/fpl o [2003/01/04] ports/46757 chuckr gnuplot info fix o [2003/01/04] misc/46758 moused enhancements o [2003/01/04] ports/46766 ports-bugs New port: kix-kmod : Syscons screen saver o [2003/01/04] kern/46773 sos I want IDE HD go into standby mode. o [2003/01/04] ports/46774 ports-bugs New port: comms/lirc: Linux Infared Remot o [2003/01/05] ports/46783 ports-bugs ports/audio DAP update o [2003/01/05] bin/46785 ipfw [patch] add sets information to ipfw2 -h o [2003/01/05] docs/46787 keramida compress(1) manpage missing BUGS; other c o [2003/01/05] kern/46790 [PATCH] new ATM driver o [2003/01/05] docs/46793 doc DEVICE_POLLING can not be used with SMP, o [2003/01/06] ports/46798 dirk zziplib addition to mod_php4 o [2003/01/06] ports/46803 sobomax Unbreak emulators/basiliskII on 5.0 o [2003/01/06] ports/46805 sobomax Update of games/teg o [2003/01/06] ports/46810 edwin [Patch] pkg_tree additional switches o [2003/01/06] ports/46811 ports-bugs palm/pose fails to build o [2003/01/07] bin/46830 Make pkg_add respect prefix for dependanc o [2003/01/07] ports/46847 ports-bugs new port: multimedia/nxtvepg (electronic o [2003/01/07] ports/46851 ports-bugs update port: devei/icu to 2.4 o [2003/01/07] ports/46853 ports-bugs pure-ftp uses /etc for config f [2003/01/08] ports/46868 ports-bugs [New Port] security/privman : cool lib fo o [2003/01/08] ports/46874 ports-bugs make of gnotepad+ fails with missing conf o [2003/01/09] bin/46888 gad Add script run hook to newsyslog(8) o [2003/01/09] ports/46893 ports-bugs make error in /usr/ports/print/xpp o [2003/01/09] www/46895 www non-actual link o [2003/01/09] www/46896 www updating document http://www.freebsd.org/ o [2003/01/09] ports/46904 ports-bugs new port: mail/vqregister o [2003/01/09] bin/46905 FreeBSD 5.x cannot be installed from mult o [2003/01/09] i386/46912 johan chflags nonodump fails o [2003/01/09] conf/46913 ipf denied packets of security run output o [2003/01/09] docs/46918 trhodes ipsec(4) does not reference the IPSEC RFC o [2003/01/09] docs/46919 doc setkey(8) references the wrong RFC for ES o [2003/01/10] bin/46925 sysctl -a goes into an infinite loop... f [2003/01/10] ports/46934 trevor Update port: biology/xdrawchem to 1.6.3 ( o [2003/01/10] ports/46945 chuckr Update port: math/gnuplot to 3.7.3 o [2003/01/10] ports/46948 chuckr Update port: print/transfig to 3.2.4 o [2003/01/10] kern/46961 bridging between vlan-interfaces on same o [2003/01/11] kern/46973 syscons virtual terminals switching featu o [2003/01/11] kern/46978 Creative SoundBlaster 16 does not work wh o [2003/01/11] kern/46983 Support for AGP on Apollo Pro 133A o [2003/01/11] ports/46984 ports-bugs [New Ports] PHP 5 - Zend Engine 2 (CLI & o [2003/01/12] ports/46991 markp new port: dump MSRPC information o [2003/01/12] misc/46998 [patch] Support PicoBSD source in other l o [2003/01/12] ports/47002 roam New port: vodmr - ODMR/ATRN server for vp o [2003/01/13] ports/47017 ports-bugs update games/zangband to 2.7.2 o [2003/01/13] ports/47018 sf Teach ftp/wget new very useful feature - o [2003/01/13] ports/47026 ports-bugs New port: a small assembly to HTML conver o [2003/01/13] ports/47027 ports-bugs port submission (SARG, squid report gener o [2003/01/13] ports/47028 ports-bugs I'm submitting port of www/sarg-devel, SA o [2003/01/13] misc/47029 Static and popping with Hercules GameThea o [2003/01/13] ports/47036 portmgr bsd.port.mk has bad comments WRT dependen o [2003/01/14] ports/47039 ports-bugs [BENTO FIX] devel/cxref o [2003/01/14] ports/47042 ports-bugs Some dependencies of port are built befor a [2003/01/14] ports/47053 jkoshy Port netpipe broken a [2003/01/14] ports/47068 arved Update port: devel/bison to 1.875 o [2003/01/14] docs/47085 doc boot(8) manpage is incomplete according t o [2003/01/14] ports/47087 mharo [patch] Add WITH_SHELL_SETS_HOME knob to o [2003/01/15] ports/47098 ports-bugs New port: Senken, a city simulation game o [2003/01/15] ports/47112 ports-bugs web2ldap compile abends with `LDAP_FILT_M o [2003/01/15] bin/47120 ipfw [patch] Sanity check in ipfw(8) o [2003/01/15] ports/47128 ports-bugs New port: hybserv (irc services for ircd- o [2003/01/16] ports/47138 ports-bugs ports/latex cannot be installed a [2003/01/16] bin/47145 Port conflict Checking for PKG_INSTALL to a [2003/01/16] ports/47146 portmgr Port conflict Checking for bsd.port.mk o [2003/01/16] bin/47149 ru make -C documented but not working o [2003/01/16] ports/47151 glewis New port: java/jmp. A Java Memory Profile o [2003/01/16] ports/47156 ports-bugs new port: ftp/tftp-hpa: Advanced TFTP ser o [2003/01/17] ports/47161 ports-bugs New Port: audio/xmms-kj Add K-JoefolSkinS o [2003/01/17] ports/47166 ports-bugs Tktable port o [2003/01/17] kern/47168 st_*timespec tv_nsec zero on file creatio o [2003/01/17] ports/47173 dirk Patch to the mod_php4 to add mnoGoSearch o [2003/01/17] ports/47183 ports-bugs fetchyahoo porte problem (one line)> o [2003/01/18] misc/47187 [patch] fix printf specifier in src/sys/b o [2003/01/18] ports/47189 ports-bugs New port: x11/chameleon p [2003/01/18] misc/47191 murray 'make iso.1' in /usr/src/release: iso's a o [2003/01/18] ports/47192 adamw New port o [2003/01/18] ports/47197 ports-bugs multimedia/xmms cdaudio plugin issues ill o [2003/01/18] kern/47200 USB port is disabled when Kodak DX4900 is o [2003/01/18] ports/47203 kris upgrade of automake to try on the cluster o [2003/01/18] conf/47204 base + XFree86 install fails -- crypto di o [2003/01/18] ports/47206 edwin [repocopy waiting] repocopy request for p o [2003/01/18] ports/47207 ports-bugs maintainer-update: print/pfaedit to 20030 f [2003/01/18] ports/47208 ports-bugs New Port; ksetisaver o [2003/01/19] ports/47216 ports-bugs daily_clean_hoststat_enable causes errors o [2003/01/19] ports/47218 ports-bugs PostgreSQL client has problems when libbi o [2003/01/19] ports/47220 ports-bugs New port: games/gnmm (GNOME Nine mens' mo o [2003/01/19] i386/47223 [PATCH] pcvt(4), ESC sequences do not cha o [2003/01/19] bin/47235 top reports inaccurate cpu usage s [2003/01/19] bin/47237 des HTTP_PROXY with libfetch stalls at 99% o [2003/01/19] ports/47238 portmgr request for new virtual category: scheme o [2003/01/19] ports/47240 ports-bugs [patch] avifile WITH_AC3PASSTHROUGH=yes b o [2003/01/20] ports/47250 ports-bugs Update of audio/cd2mp3 from ver 0.81 to 0 o [2003/01/20] ports/47257 ports-bugs [update port] irc/ezbounce o [2003/01/20] ports/47268 ports-bugs Update openbox port to 2.2.3 o [2003/01/20] kern/47274 umodem update to support motorola v66 pho o [2003/01/20] ports/47275 ports-bugs devel/sdcc v2.3.0 fails to configure/buil o [2003/01/21] ports/47296 ports-bugs [New Port] irc/eggdrop f [2003/01/21] ports/47310 ports-bugs Old e-mail o [2003/01/21] kern/47311 [PATCH] Kernel support for NVIDIA nForce2 o [2003/01/21] misc/47314 Install requires a swap partition. f [2003/01/21] ports/47334 nakai Update port: x11-wm/icewm to 1.2.6 (fix p o [2003/01/21] www/47335 www bad acpiconf man page link in handbook 6. p [2003/01/21] misc/47342 murray /usr/share/dict/* lacks some amni.* words o [2003/01/21] ports/47346 ports-bugs fbrun from ports/x11-wm/fluxbox has seg f o [2003/01/21] kern/47349 Fake a sound ioctl (plus linux hook) o [2003/01/21] bin/47350 rc.network supports only one ppp profile o [2003/01/22] kern/47359 panic after kldunload snp o [2003/01/22] ports/47362 ports-bugs gnomesword does not build o [2003/01/22] i386/47376 [PATCH], pcvt(4), COLOR_KERNEL_FG, 2nd ch o [2003/01/22] ports/47377 portmgr Ports always depend on Perl5.6.1 even whe o [2003/01/22] ports/47379 ports-bugs patch for elm port o [2003/01/22] ports/47380 ports-bugs xcircuit port has old version o [2003/01/22] ports/47381 ports-bugs ownership wrong if build as one user, ins o [2003/01/22] bin/47387 [PATCH] gprof -K still requires "a.out" a o [2003/01/23] ports/47403 ports-bugs kavmilter port patch to new version o [2003/01/23] ports/47406 ports-bugs [Patch] Remove {PERL} from ports@'s ports o [2003/01/23] ports/47407 arved Unbreak/Update Port: multimedia/xmms-avi o [2003/01/23] ports/47420 ports-bugs cad/xcircuit: ownership is of user who bu o [2003/01/24] conf/47430 mtm wrong order of arguments of ldconfig in / o [2003/01/24] ports/47442 dwcjr ports/net/samba-devel update to 3.0a21 o [2003/01/24] ports/47446 ports-bugs nslookup crash in SetDefaultServer (patch o [2003/01/24] java/47448 java linux-blackdown-jdk-1.4.1: syscall mmap2 o [2003/01/25] ports/47472 ports-bugs new port: games/xcheckers (checkers game) o [2003/01/25] ports/47473 ports-bugs Exitstatus passing in vgetty for external o [2003/01/26] ports/47516 anders unbreak comms/gnokii for -current o [2003/01/26] ports/47520 ports-bugs New port: net/roadrunner - a BEEP library o [2003/01/27] bin/47540 Make natd configurable in running state w o [2003/01/27] ports/47542 ports-bugs [PATCH] Keynote2 support configuration op o [2003/01/27] ports/47545 ports-bugs New port: jpegoptim is an command-line jp o [2003/01/27] ports/47548 ports-bugs mldonkey does not install p [2003/01/27] conf/47556 murray Norwegian dvorak keymap o [2003/01/27] advocacy/47559advocacy New FreeBSD PR campaign has been started. o [2003/01/27] bin/47560 tar 'z' option gzip'd output has extra ga o [2003/01/27] bin/47566 Suggested patch: vinum status verificatio o [2003/01/27] ports/47571 ports-bugs new port: gnotime tracker o [2003/01/27] ports/47573 ports-bugs [PATCH] linux_base-7.1_2 port does not in o [2003/01/27] docs/47575 doc Clarify requirements for IPFW2 in STABLE o [2003/01/27] misc/47576 [PATCH] factor(6)ing of negative numbers o [2003/01/28] ports/47590 ports-bugs port update: dclib 0.1.11 -> 0.2.3 o [2003/01/28] ports/47591 ports-bugs port update: dcgui 0.1.11 -> 0.2.3 a [2003/01/28] ports/47593 nork Update port: www/elinks o [2003/01/28] docs/47594 doc [PATH] passwd(5) incorrectly states allow o [2003/01/28] bin/47596 daily security run complains if timezone o [2003/01/28] misc/47601 ru Additional subdir targets o [2003/01/28] ports/47614 dburr databases/p5-ApacheDBILogConfig 0.01 -> 0 o [2003/01/28] ports/47622 ports-bugs New Port: misc/gkrellshoot2 o [2003/01/29] ports/47640 wjv ports/p5-bioperl-devel is obsolete o [2003/01/29] ports/47649 ports-bugs New port: audio/eTktab - guitar tabulatur o [2003/01/29] ports/47650 kiri unPERLify ports/archivers o [2003/01/29] ports/47651 ports-bugs unPERLify ports/audio o [2003/01/29] ports/47652 ports-bugs unPERLify ports/astro o [2003/01/29] ports/47653 ports-bugs unPERLify ports/cad o [2003/01/29] ports/47654 ports-bugs unPERLify ports/biology o [2003/01/29] ports/47656 ports-bugs unPERLify ports/comms o [2003/01/29] ports/47658 jedgar Update: databases/p5-Mysql 2.216 -> 2.219 o [2003/01/29] kern/47664 change in ip_output.c in 4.7-STABLE seems o [2003/01/30] i386/47669 imp absence of ufm* entry in MAKEDEV script o [2003/01/30] kern/47675 usb/umass problems o [2003/01/30] ports/47686 ports-bugs New Port: kwin-flatcurve o [2003/01/30] docs/47690 doc builtin(1) manpage is wrong about externa o [2003/01/30] docs/47705 doc wc(1) manpage has poor explanations. o [2003/01/31] ports/47717 ports-bugs New port: graphics/hpoj, HP OfficeJet dri o [2003/01/31] kern/47731 reboot goes panic each time o [2003/02/01] kern/47791 imp Idea for what to do on insert o [2003/02/01] docs/47792 mheinen www/news/news.xml translated to .de o [2003/02/02] bin/47815 stty -all should work. f [2003/02/02] docs/47818 doc ln(1) manpage is confusing o [2003/02/02] docs/47824 doc auto-create plist chapter should mention o [2003/02/02] ports/47830 ports-bugs new port comms/qtpcr o [2003/02/02] ports/47834 dirk mysql-server-3.23.55 upgrade should be mo o [2003/02/03] sparc64/47845sparc 4 second daily clock drift o [2003/02/03] ports/47851 mharo Upgrade for Analog to 5.31 o [2003/02/03] ports/47856 ports-bugs new port: sysutils/gkrellmgas2 o [2003/02/03] ports/47861 markp Maintainer update: x11-toolkits/flvw (bui o [2003/02/03] ports/47862 ports-bugs Maintainer update: databases/mysql-gui (b o [2003/02/04] ports/47904 ports-bugs drweb - cron example don't work o [2003/02/04] misc/47906 options screen not return previous screen o [2003/02/04] misc/47908 /stand/sysinstall can't display document o [2003/02/04] ports/47913 ume idled.8 man page conflict in ports mail/c o [2003/02/04] ports/47917 ports-bugs New port: audio/gkrellmss2 o [2003/02/04] kern/47935 panic on disk full o [2003/02/05] ports/47956 sobomax [PATCH] comms/mserver a [2003/02/05] ports/47957 seanc ruby-snmp is broken o [2003/02/05] ports/47981 ports-bugs new port: net/wmnetload (a network load m f [2003/02/05] kern/47982 Minix file-system offered o [2003/02/05] ports/47990 ports-bugs Patch so loadpath.UNIX is correct o [2003/02/05] docs/47991 doc Handbook section on upgrading kernel says o [2003/02/05] ports/47992 gnome gtk12 apps don't pick up correct locale r o [2003/02/06] ports/47995 ports-bugs New port: Showing moving blobs o [2003/02/06] ports/47996 sobomax [patch] graphics/svgalib shouldn't called o [2003/02/06] i386/48014 moused fails to correctly identify usb mo o [2003/02/06] bin/48015 make ipfw2 work with iplen ranges o [2003/02/06] docs/48018 doc telnetd(8) manpage appears incorrect rega o [2003/02/06] ports/48021 ports-bugs New Port: www/photo_gallery o [2003/02/06] ports/48026 trevor update port: x11-wm/openbox f [2003/02/07] docs/48038 doc [PATCH] add Tips and Tricks section into o [2003/02/07] ports/48052 obrien Upgrading vim blows away locally-added pl a [2003/02/07] ports/48059 roam Nitpicks for the comms/qpage port o [2003/02/07] kern/48081 Enabling mutex profiling panics the kerne o [2003/02/08] ports/48093 kde kde3 FreeBSD port fails to configure Xine o [2003/02/08] docs/48097 doc Manual for camediaplay(1) falsely describ o [2003/02/08] docs/48101 doc There's no documentation on the fixit dis o [2003/02/08] docs/48104 doc disktab(1) manpage omits b0 and b1, etc. o [2003/02/08] conf/48105 /etc/disktab has incomplete duplication o o [2003/02/09] misc/48110 change CVSROOT/log_accum.pl to not send m o [2003/02/09] bin/48114 gethostname(3) can leave the wrong errno o [2003/02/09] ports/48115 ports-bugs Update port: math/abs o [2003/02/09] ports/48124 dbaker [PATCH] updates ports/misc/proxyper to ve o [2003/02/09] ports/48127 ports-bugs New port: security/hostsentry, Login anom o [2003/02/10] misc/48133 improvied vi recovery notification o [2003/02/10] ports/48139 trevor [patch] audio/opmixer: endl->std::endl (b o [2003/02/10] ports/48140 andreas Update Port: print/apsfilter (conditional p [2003/02/10] misc/48141 murray Device ID for Acer Communications & Multi o [2003/02/10] ports/48150 kris Update port: x11/wdm to 1.22 o [2003/02/11] kern/48172 ipfw does not log size and flags o [2003/02/11] conf/48195 /var/db/mounttab error on diskless boot o [2003/02/12] docs/48210 doc make -q only does what the manpage says i o [2003/02/12] ports/48214 trevor Update port: audio/festogi-spanish to 2.0 o [2003/02/12] kern/48216 mike Linux uname returns wrong hostname inside o [2003/02/12] ports/48217 ports-bugs New Port: www/mod_frontpage13 and www/mod o [2003/02/12] ports/48221 mharo portlint: bogus warnings about DISTFILES o [2003/02/12] docs/48223 keramida friendlier output when gnats database is o [2003/02/13] ports/48235 ports-bugs New Port: anomy mail sanitizer - removing o [2003/02/13] ports/48239 anders [UPDATE] security/pam-mysql update to 0.5 o [2003/02/13] ports/48246 ports-bugs unPERLify ports/databases o [2003/02/13] ports/48247 ports-bugs unPERLify ports/deskutils o [2003/02/13] ports/48248 ports-bugs unPERLify ports/editors o [2003/02/13] ports/48249 nork unPERLify ports/emulators o [2003/02/13] ports/48253 ports-bugs unPERLify ports/devel o [2003/02/13] ports/48257 ports-bugs New Port: portdowngrade: a tool to set a o [2003/02/14] ports/48273 ports-bugs FlightGear can only be run once between b o [2003/02/14] ports/48281 obrien Patch editors/vim to use fetch instead of o [2003/02/14] i386/48283 sound (pcm/sbc) broken with acpi o [2003/02/14] ports/48292 ports-bugs new port: print/epsonepl "Printer filter o [2003/02/15] bin/48309 pppoe connections fail to establish if th o [2003/02/15] bin/48313 [patch] make yacc(1) use getopt(3) o [2003/02/16] bin/48342 [PATCH] usbd dynamic device list. o [2003/02/16] ports/48350 ports-bugs [gimp-print] build error f [2003/02/16] ports/48352 roam JavaCC port updated for new distfiles. o [2003/02/17] ports/48362 ports-bugs New port: lft-2.0 LFT Alternative tracero o [2003/02/17] ports/48377 portmgr Randomizing MASTER_SITES o [2003/02/17] ports/48382 ports-bugs /usr/ports/net/cflowd compile errors, wil o [2003/02/17] ports/48388 ports-bugs ftp/lukemftpd: Maintainer does not exist o [2003/02/17] ports/48397 jmz malformed make file in /usr/ports/comms/m o [2003/02/17] i386/48398 Belgian Keyboard Driver o [2003/02/17] bin/48399 Can't put URL in GECOS phone field o [2003/02/17] ports/48404 ports-bugs gnuchess doesn't install the gnuchessx al o [2003/02/17] docs/48407 doc PPP section needs a cleanup. o [2003/02/17] ports/48410 kris Update ports: security/snortsnarf version o [2003/02/17] ports/48411 ports-bugs New port: databases/p5-SQL-Abstract o [2003/02/18] ports/48418 ports-bugs mail/teapop: 2 problems o [2003/02/18] ports/48422 ports-bugs New POrt: webstats o [2003/02/18] ports/48426 sobomax [PATCH] digger-vgl does not support conso o [2003/02/18] ports/48434 obrien shells/bash2: process substitution broken o [2003/02/18] bin/48443 /usr/sbin/periodic executes too many file o [2003/02/18] misc/48444 change to count connection attempts inste o [2003/02/18] ports/48448 ports-bugs New port: orca text data grapher (uses rr o [2003/02/19] ports/48458 ports-bugs [patch] www/mgstat: tarball rerolled o [2003/02/19] ports/48459 ports-bugs upgrade www/plone to 1.0.1 o [2003/02/19] kern/48468 imp puc driver for Nm9845 o [2003/02/19] ports/48470 nork [PATCH www/flashpluginwrapper] add helper o [2003/02/19] kern/48471 Private IPC for every jail. [PATCH] o [2003/02/19] ports/48474 glewis Update port: java/jmp to 0.27 o [2003/02/20] bin/48489 ru [PATCH] update information arp(4): descri p [2003/02/20] docs/48493 trhodes missing range information in arc4random() o [2003/02/20] kern/48494 BP6 ACPI errors - AML incorrect o [2003/02/20] ports/48505 ports-bugs [bento fix]: ftp/ftptool patch o [2003/02/20] ports/48511 ports-bugs math/atlas does not build with multithrea o [2003/02/20] i386/48516 add support of Dell PS/2 mouse port o [2003/02/21] bin/48525 [PATCH] pkg_add under 5.0-RELEASE o [2003/02/21] ports/48534 nbm update-port: mail/vqadmin o [2003/02/21] ports/48541 dirk mod_php4 does not uninstall itself correc o [2003/02/21] ports/48552 ports-bugs new port: sysutils/ganglia-webfrontend: G o [2003/02/22] ports/48561 ports-bugs [new ports] : sysutils/memgrep : Utility o [2003/02/22] ports/48564 ports-bugs [new port] net/zonemaster : a tool for zo o [2003/02/22] conf/48566 [PATCH] /etc/defaults/make.conf stales af o [2003/02/22] conf/48569 make.conf misses comments on some options o [2003/02/22] ports/48573 billf update-port: irc/muh o [2003/02/22] www/48575 www 0.28. o [2003/03/26] bin/50328 ctm_smail doesn't handle large deltas wel o [2003/03/26] bin/50331 Changing uid with pw causes duplicate use o [2003/03/27] docs/50349 doc make release fails with NO_OPENSSH and ! o [2003/03/27] bin/50365 [PATCH] rc.sysctl cannot handle values co o [2003/03/27] misc/50370 NLSOWN set to ${SHAREGRP} in o [2003/03/28] docs/50390 doc no man page for suser_xxx() o [2003/03/28] docs/50391 doc Incorrect information in a man o [2003/03/28] ports/50397 ports-bugs [PATCH] databases/postgresql[-odbc|7|72] o [2003/03/28] ports/50404 ports-bugs [UPDATE] sysutils/fastresolve from 2.8-1 o [2003/03/28] ports/50405 ports-bugs New port: x11-wm/fluxspace o [2003/03/28] ports/50411 ports-bugs Revised [UPDATE] sysutils/fastresolve fro o [2003/03/28] ports/50413 mharo [UPDATE] www/analog from 5.24,1 to 5.32,1 o [2003/03/28] ports/50414 ports-bugs Revised [UPDATE] www/reportmagic from 2.1 o [2003/03/28] ports/50415 ports-bugs New port: irc/onis o [2003/03/29] ports/50419 ports-bugs NEW PORT! misc/ekg o [2003/03/29] ports/50423 ports-bugs New port: www/phpftp o [2003/03/29] kern/50428 [PATCH] typo in aic7xxx_pci.c o [2003/03/29] ports/50442 greid [patch] fix checksum for mail/spambnc o [2003/03/29] ports/50443 ports-bugs New port for libirman 0.4.2 o [2003/03/29] ports/50444 portmgr Suggestion for new category: "dns" o [2003/03/29] ports/50446 ports-bugs [patch] fix checksum for audio/mxv o [2003/03/30] ports/50454 ports-bugs cricket port update to 1.4.0.p2 o [2003/03/30] ports/50455 ports-bugs apache13-modssl/Makefile new options and o [2003/03/30] bin/50461 ctm cannot handle the large files current o [2003/03/30] docs/50463 doc netstat(1) points to mbuf(9) which doesn' o [2003/03/30] ports/50466 grog The benchmarks/rawio port does not seem t f [2003/03/30] ports/50467 edwin Fix for port net/citadel o [2003/03/30] docs/50469 doc "mount_msdos -W" issue in handbook o [2003/03/31] ports/50470 ports-bugs SNMP_Session.pm conflict in net/mrtg net/ o [2003/03/31] bin/50471 telnet-bang crashes o [2003/03/31] ports/50473 ports-bugs amavis-perl is no longer supported (super o [2003/03/31] ports/50475 ports-bugs Port of rubber. o [2003/03/31] ports/50476 ports-bugs New port: math/libmath++ o [2003/03/31] conf/50477 gshapiro RELENG_4: src/etc/Makefile does not check o [2003/03/31] ports/50478 ports-bugs New port: games/monopd o [2003/03/31] ports/50479 portmgr Request for approval to commit bsd.gnuste o [2003/03/31] ports/50481 ports-bugs [patch] update java/bluej -> 1.2.2 o [2003/03/31] ports/50484 ports-bugs Lots of warnings when compiling hping o [2003/03/31] docs/50503 doc Upgate to the agp(4) manual page o [2003/03/31] ports/50514 ports-bugs TCH] Added tractorgen(6) manpage and othe o [2003/04/01] ports/50521 mich New port: net/remarp o [2003/04/01] kern/50526 Update to #! line termination o [2003/04/02] ports/50536 mich New port: net/ttlscan o [2003/04/02] ports/50548 ports-bugs print/ghostscript-gnu missing "standard" o [2003/04/02] ports/50553 ports-bugs [update] games/hlserver-psychostats to 1. f [2003/04/03] ports/50558 dougb xscreensaver-getimage-file has a problem o [2003/04/03] bin/50569 /bin/sh doesn't handles ${HOME}/.profile f [2003/04/03] ports/50572 portmgr Simlifying the work with Debian packages o [2003/04/03] docs/50573 doc return values for res_query/res_search/re o [2003/04/03] ports/50578 ports-bugs pktrace has been renamed to mftrace by th o [2003/04/03] ports/50586 ports-bugs JDEE port needs updates o [2003/04/03] ports/50589 ports-bugs conditionalize dependencies on modules in o [2003/04/04] i386/50598 gcc -pg -fPIC creates garbage assembly ou o [2003/04/04] ports/50607 ports-bugs New port: puff (text editor) (very easy o [2003/04/04] ports/50608 ports-bugs Update port: www/p5-Apache-AuthCookie o [2003/04/04] ports/50609 ports-bugs New port: russian/muttprint (pretty print o [2003/04/04] bin/50613 [PATCH] pppd(8) incorrect CBCP response f o [2003/04/04] ports/50616 ports-bugs UPDATE-PORT: devel/linux-sdl12 update to p [2003/04/04] www/50617 brueffer [patch] add missing mailing lists to WWW o [2003/04/05] ports/50628 ports-bugs [PATCH] waimea port has missing run-depen o [2003/04/05] kern/50633 problems mounting SanDisk compact flash r o [2003/04/06] ports/50642 ports-bugs New port: security/ADMsnmp - SNMP brute f o [2003/04/06] kern/50644 [PATCH] Update xe driver: multicast, hard o [2003/04/06] ports/50645 ports-bugs New port: benchmarks/scimark2 - a Java b o [2003/04/06] ports/50646 ports-bugs New port: benchmarks/scimark2c - an ANSI o [2003/04/06] ports/50654 ports-bugs /usr/ports/lang/lua: website update o [2003/04/06] bin/50656 /bin/cp - wrong error on copying of multi o [2003/04/07] ports/50662 ume sysutils/gkrellm2 interaction with Metaci o [2003/04/07] ports/50663 ume sysutils/gkrellm2 - it is not possible to o [2003/04/07] ports/50672 ports-bugs New port submission f [2003/04/07] docs/50677 doc [PATCH] update doc/en_US.ISO8859-1/books/ o [2003/04/07] kern/50687 ioctl(.., CDIOCCAPABILITY, ...) always re o [2003/04/07] ports/50692 ports-bugs Update port of ScrollZ to 1.9 o [2003/04/08] ports/50708 jedgar update sysutils/roottail to 0.2 o [2003/04/08] ports/50710 ports-bugs New port: misc/pxclient o [2003/04/08] ports/50714 ports-bugs Checksum mismatch for ghostscript/hpdj-2. o [2003/04/08] ports/50723 ports-bugs astro/setiathome request: use linux versi o [2003/04/08] ports/50724 ports-bugs [PATCH] pkg_fetch saves full filename o [2003/04/08] ports/50725 ports-bugs new port: russian/koi2koi o [2003/04/08] java/50729 java java/jdk14: broken java.net.NetworkInterf o [2003/04/08] conf/50732 murray [PATCH] A french dvorak-like layout for S p [2003/04/08] docs/50735 brueffer Small diff to the developers handbook & o o [2003/04/09] bin/50749 ipfw ipfw2 incorrectly parses ports and port r o [2003/04/09] ports/50754 ports-bugs New port: security/hmap - web server fing o [2003/04/09] www/50759 brueffer [PATCH] Updates mailing list search page o [2003/04/09] ports/50763 ports-bugs New-port: games/linux_nwnclient games/li o [2003/04/09] ports/50767 ports-bugs New port: ldap2dns - maintain DNS zones i o [2003/04/10] ports/50772 mich New port: net/wping o [2003/04/10] docs/50773 doc NFS problems by jumbo frames to mention i o [2003/04/10] ports/50775 ports-bugs axel port failes to build o [2003/04/10] ports/50777 ports-bugs New port: lxsplit-0.1.1 f [2003/04/10] ports/50779 edwin Maintainer Update: net/libdnet o [2003/04/10] ports/50782 ports-bugs python port installs files not in pkg-pli o [2003/04/10] ports/50788 ports-bugs gnump3d - install problem - adamw asked m o [2003/04/10] sparc64/50789sparc PCI Bus number reported by /dev/pci is wr o [2003/04/10] ports/50794 ports-bugs New port graphics/pho (version 0.9.1) o [2003/04/10] ports/50799 ports-bugs Lisp Packages install directory should no o [2003/04/11] ports/50810 ports-bugs Update port: lang/cmucl (docs installed a o [2003/04/11] ports/50811 dirk make building mod_php4 without MySQL more o [2003/04/11] ports/50813 wjv New port: japanese/mailman o [2003/04/11] ports/50819 ports-bugs New port: chinese/kon2 o [2003/04/11] ports/50820 ports-bugs New port: chinese/ntuttf f [2003/04/11] ports/50822 ports-bugs [PATCH] graphics/netpbm doesn't install i o [2003/04/11] ports/50828 ports-bugs New port: mod_jk for apache2 o [2003/04/11] ports/50835 dirk cdrtools port uses the config path "/etc/ o [2003/04/11] ports/50840 ports-bugs mail/squirrelmail - Port Docs in wrong lo o [2003/04/11] ports/50843 tg x11/xlockmore uses PERL, not REINPLACE_CM o [2003/04/12] ports/50850 ports-bugs -march=pca56 blows up nethack34-nox11 o [2003/04/12] ports/50858 ports-bugs compile of ecasound-2.2.2 fails with unde o [2003/04/12] ports/50863 trevor Update audio/csound-manual o [2003/04/12] ports/50864 trevor Update audio/festlex-ogi o [2003/04/12] ports/50866 lioux [PATCH] Introduce patch to qmail-1.03 to o [2003/04/12] alpha/50868 alpha fd0 floppy device is not mapped into /dev o [2003/04/12] ports/50869 trevor Update audio/festvox-abc o [2003/04/12] ports/50880 ports-bugs Request for (optional) addition of tcplim o [2003/04/12] ports/50881 ports-bugs New port: mail/scmail - mail filter in sc o [2003/04/12] ports/50886 ports-bugs Update port: devel/eboxy (bento fix) o [2003/04/12] ports/50888 ports-bugs Updated fetchyahoo port, like fetchmail f o [2003/04/12] ports/50890 ports-bugs Updated patch file (missing -DHAVE_FT for o [2003/04/12] ports/50891 phantom [PATCH] java/jdk14 port don't build on so o [2003/04/13] ports/50898 ports-bugs abcde netbsd patch merge and cddb proto a o [2003/04/13] ports/50901 ports-bugs New port: gqradio - a GTK based FM tuner o [2003/04/13] ports/50910 nbm update-port: mail/sqwebmail o [2003/04/13] ports/50914 ports-bugs Port update: editors/fte o [2003/04/13] ports/50921 ports-bugs [PATCH] mail/librfc822: unbreak on -CURRE o [2003/04/13] kern/50923 rfork(RFPROC|RFMEM, ...) fails unconditio p [2003/04/13] bin/50924 "vmstat -f" says "unimplemented" but data o [2003/04/14] i386/50929 AMD K6-2+ processor is identified incorre o [2003/04/14] ports/50930 lioux Update net/silc-client o [2003/04/14] ports/50931 lioux Update net/silc-server o [2003/04/14] ports/50932 lioux Update net/silc-doc o [2003/04/14] ports/50940 greid Update mail/spambnc o [2003/04/14] ports/50944 ports-bugs Update port www/mod_fastcgi : version has o [2003/04/14] misc/50945 ru BUG: NOINSTALLLIB isn't honored in all Ma o [2003/04/14] kern/50948 BUG: @0 does not insert at the beginning o [2003/04/14] bin/50949 BUG: mtree doesn't honor the -P when chec o [2003/04/14] bin/50955 [PATCH] natd / libalias support for multi o [2003/04/14] conf/50956 daily_status_disks_df_flags in /etc/defau o [2003/04/14] ports/50957 ports-bugs [PATCH]: unbreak port converters/dumpasn1 o [2003/04/14] ports/50960 trevor Update port: x11-wm/openbox 1.2.4 -> 2.2. o [2003/04/14] ports/50965 ports-bugs www/linux-flashplugin update to 6.0r79 o [2003/04/14] ports/50967 ports-bugs [patch] ftp/ftptool patch the file lex.c o [2003/04/15] ports/50970 anholt KDE-3.1.1a - R128(0) Idle timed out, rese o [2003/04/15] bin/50971 du(1) doesn't understand UF_NODUMP flag o [2003/04/15] ports/50972 ports-bugs Update devel/liboop: fix distinfo - bento p [2003/04/15] misc/50979 [PATCH] Some spelling corrections in sbin o [2003/04/15] ports/50984 ports-bugs [PATCH] port mail/exim bug fixes, support o [2003/04/15] bin/50988 [Patch] find -size -- express argument in o [2003/04/15] ports/50989 ports-bugs Update cad/slffea: fix distinfo - bento e o [2003/04/15] ports/50992 ports-bugs ports-bug: devel/kprof o [2003/04/15] ports/50996 openoffice editors/ooodict-hu_HU port can moved to h o [2003/04/15] ports/50997 ports-bugs [patch] x11-toolkits/slingshot o [2003/04/15] ports/51002 ports-bugs new feature for net/trafshow o [2003/04/15] ports/51005 ports-bugs New port of native window decoration for o [2003/04/15] docs/51006 doc [PATCH] divert(4) and ipfw(8) manpages ar o [2003/04/15] ports/51008 ports-bugs making sysutils/eject understand cdrom ar o [2003/04/15] kern/51009 Buggy aue driver fixed. o [2003/04/15] ports/51011 ports-bugs port update o [2003/04/15] ports/51012 ports-bugs Avidemux port update to rc3 o [2003/04/15] ports/51013 ports-bugs New Port: avidemux2 o [2003/04/16] ports/51017 ports-bugs New Port: xvmixer an Open Look-based audi o [2003/04/16] ports/51021 ports-bugs New port: mail/gmime2 (version for glib-2 o [2003/04/16] ports/51024 ports-bugs fix-bento/update port: french/spip o [2003/04/16] i386/51027 can't load device apm in o [2003/04/16] ports/51036 ports-bugs New port: sysutils/clockspeed-conf - Supe o [2003/04/16] ports/51037 ports-bugs wrong lib dependency (ldap) in x11/kdelib o [2003/04/16] ports/51040 mich New port: devel/p4delta o [2003/04/16] ports/51042 mich New port: devel/doctorj o [2003/04/16] ports/51048 ports-bugs Update port: cad/qfsm to 0.4.1 o [2003/04/16] ports/51055 ports-bugs Update port: lang/smalltalk to 2.1 o [2003/04/16] bin/51070 add -p option to pom [PATCH] o [2003/04/16] ports/51071 ports-bugs New port: net/pear-Net_URL - Easy parsing o [2003/04/16] kern/51074 joe pointer arithmatic error in ugen.c o [2003/04/16] ports/51076 ports-bugs [patch] x11-toolkits/xview-clients now bu o [2003/04/16] ports/51077 ports-bugs update net/ntop to 2.2 o [2003/04/16] ports/51079 ports-bugs upgrade SN 4.5.2 to sourcenav 5.1.2 o [2003/04/17] kern/51082 FEATURE: More descriptive message on drop o [2003/04/17] ports/51086 mich New port: security/vida o [2003/04/17] ports/51087 ports-bugs spamass-milter can not be built with send o [2003/04/17] bin/51091 [FEATURE] Add -A (print ASCII) flag to tc o [2003/04/17] ports/51092 znerd unbreak: java/linux-sun-jdk1[34] o [2003/04/17] ports/51097 tobez New port databases/p5-DBD-PgSPI o [2003/04/17] ports/51098 ports-bugs New port: Perl5 module to read and write f [2003/04/17] ports/51102 foxfair [new port] security/xmlsec1 o [2003/04/17] ports/51108 ports-bugs devel/pear-HTML_Common: upgrading to 1.1. o [2003/04/17] kern/51111 ipf doesn't allow outbound IPv6 packets u o [2003/04/17] ports/51117 ports-bugs New port: Freecraft RTS game o [2003/04/17] ports/51118 ports-bugs New Port: graphics/xvgr Open Look-based d o [2003/04/17] kern/51120 MSGBUF_SIZE doesn't work in makefiles o [2003/04/17] ports/51122 ports-bugs New port: textproc/xhtml-1.1 o [2003/04/18] ports/51124 ports-bugs new port: games/oilwar: Evil army wants y o [2003/04/18] ports/51130 ports-bugs databases/freetds overwrites config file a [2003/04/18] docs/51133 murray RSH environmental variable not described o [2003/04/18] kern/51137 config(8) should check if a scheduler is o [2003/04/18] bin/51138 [PATCH] re-enable growfs(8) to work on vi o [2003/04/18] ports/51147 ports-bugs Update of graphics/jhead port to 2.0 o [2003/04/18] bin/51148 Control the cache size for pwd_mkdb to sp o [2003/04/19] ports/51150 ache ports/apache13 MASTER_SITES incorrect/out o [2003/04/19] bin/51151 du hardlinkmatching is slow - fix include o [2003/04/19] ports/51152 portmgr bsd.port.mk: generic SHEBANG_FILES o [2003/04/19] ports/51154 ports-bugs Update math/kseg to 0.4 o [2003/04/19] ports/51158 ports-bugs New port: sysutils/reoback o [2003/04/19] ports/51161 ports-bugs upgrade math/R to 1.7.0 o [2003/04/19] ports/51162 ports-bugs new port: misc/gkrellm-helium, Prague the o [2003/04/19] bin/51165 Login does not honor .hushlogin o [2003/04/19] misc/51167 dougb [PATCH] Makefile for /etc/namedb. o [2003/04/19] ports/51175 ports-bugs Update port: www/mod_blosxom o [2003/04/20] kern/51182 ipfw2. -d list shows couters for dynamic o [2003/04/20] ports/51185 ports-bugs New port: chinese/stardict2 o [2003/04/20] kern/51186 pointer arithmatic error in ugen.c o [2003/04/20] docs/51187 doc logger(1) -A clarification o [2003/04/20] ports/51188 ports-bugs Update audio/snack: Fix md5 and make pack o [2003/04/20] ports/51190 ports-bugs New port: emulators/extract-xiso o [2003/04/20] ports/51192 mharo portlint has wrong #! line o [2003/04/20] ports/51197 ports-bugs New Port: rendezvous (Apple's ZeroConf im o [2003/04/20] ports/51199 ports-bugs upgrade to version 5.9.0 o [2003/04/21] bin/51205 openssl in base system is not compiled th o [2003/04/21] ports/51214 ports-bugs New port: www/zope-localizer o [2003/04/21] ports/51215 ports-bugs New port: www/zope-translationservice o [2003/04/21] ports/51220 ports-bugs Update multimedia/avidemux: 0.9.0.101 -> o [2003/04/21] ports/51223 ports-bugs Update port: graphics/gliv to 1.7.1 (fix o [2003/04/21] ports/51225 ports-bugs Update port: graphics/qglviewer to 1.4 o [2003/04/21] ports/51227 ports-bugs Update port: graphics/tulip to 1.2.3 o [2003/04/21] ports/51229 ports-bugs Update port: lang/onyx to 4.4.3 o [2003/04/21] ports/51231 ports-bugs Update port: lang/yabasic to 2.722 o [2003/04/21] ports/51234 ports-bugs Update port: misc/wmwork to 0.2.3 (fix po o [2003/04/21] ports/51235 ports-bugs Update port: print/scribus to 0.9.9 o [2003/04/21] ports/51238 ports-bugs Update port: textproc/redland to 0.9.12 o [2003/04/21] ports/51240 ports-bugs Update port: x11/xautomation to 0.92 o [2003/04/21] ports/51246 ports-bugs Port upgrade: kdiff3 to 0.9.51 o [2003/04/21] ports/51251 ports-bugs Avidemux port update to 0.9 Supersedes po o [2003/04/21] docs/51254 doc [patch] Missing manlink arc4rand.9 -> ran o [2003/04/21] conf/51256 chkgrp should make sure the file is newli o [2003/04/21] ports/51258 ports-bugs [UPDATE] Meta-CVS 1.0.6 o [2003/04/21] ports/51259 ports-bugs update cmucl to 18e o [2003/04/21] ports/51260 ports-bugs update to 18e o [2003/04/21] ports/51264 ports-bugs new port: mail/mls p [2003/04/21] bin/51265 murray new USB device registration: JRC AirH" PH o [2003/04/22] ports/51272 ports-bugs Update net/ifstat: 0.5 -> 1.0 o [2003/04/22] ports/51275 ports-bugs textproc/latex2html PLIST is missing some f [2003/04/22] ports/51277 ports-bugs [maintainer update] openldap21, user and o [2003/04/22] ports/51290 nbm Update devel/sip: patchout license confir o [2003/04/22] standards/51292standards [PATCH] add ecvt()/fcvt()/gcvt() function o [2003/04/22] docs/51295 doc [patch] Bring kame(4) better in sync with o [2003/04/22] bin/51296 calendar wrong for dates based on day+-nu o [2003/04/22] ports/51300 ports-bugs [PATCH] update of port mail/exim distribu o [2003/04/23] ports/51306 ports-bugs Update port: net/dictd-database o [2003/04/23] ports/51313 ports-bugs new port x11-toolkits/SoXt (SUPERCEEDS po o [2003/04/23] ports/51320 ports-bugs NEW PORT: sysutils/adtool o [2003/04/23] ports/51321 ports-bugs Patch to update port dclib 0.1.11 -> 0.2. o [2003/04/23] ports/51323 ports-bugs Patch to update port dcgui 0.1.11 -> 0.2. o [2003/04/24] ports/51337 ports-bugs Update converters/konwert: Fix make packa f [2003/04/24] ports/51343 ports-bugs New port: Krusader, a two window file man o [2003/04/24] ports/51349 ports-bugs New port: sysutils/xps o [2003/04/24] ports/51351 ports-bugs new port x11-toolkits/SoXt 1.1.0 (SUPERCE o [2003/04/24] ports/51356 ports-bugs smtpd modification o [2003/04/24] ports/51366 ports-bugs Update port: devel/trio to 1.10 o [2003/04/24] ports/51367 ports-bugs Update port: ftp/ftpq to 1.06 o [2003/04/24] ports/51368 ports-bugs Update port: ftp/hsftp 1.12 o [2003/04/24] ports/51369 ports-bugs Update port: ftp/mget o [2003/04/24] ports/51371 ports-bugs Update port: graphics/gts to 0.7.1 o [2003/04/24] ports/51372 ports-bugs Update port: graphics/qslim o [2003/04/24] ports/51373 ports-bugs Update port: graphics/qtutils o [2003/04/24] ports/51375 ports-bugs Update port: math/plplot to 5.2.1 o [2003/04/24] ports/51376 ports-bugs Update port: math/spar o [2003/04/24] ports/51378 ports-bugs Update port: misc/argparse o [2003/04/24] ports/51379 ports-bugs Update port: misc/colortail o [2003/04/24] ports/51380 ports-bugs Update port: misc/goldstr o [2003/04/24] ports/51381 ports-bugs Update port: multimedia/recmpeg o [2003/04/24] ports/51382 ports-bugs Update port: net/serveez o [2003/04/24] ports/51383 ports-bugs Update port: print/catdvi o [2003/04/24] ports/51384 ports-bugs Update port: print/pnm2ppa o [2003/04/24] ports/51385 portmgr Confusing message when installing newer v o [2003/04/24] ports/51386 ports-bugs Update port: sysutils/slmon to 0.5.12 o [2003/04/24] ports/51387 ports-bugs Update port: www/cadaver o [2003/04/24] ports/51388 ports-bugs Update port: www/httperf o [2003/04/24] kern/51389 smbfs fails to work on SMP kernels. o [2003/04/24] ports/51393 ports-bugs update request: lang/sml-mode.el to 3.9.5 o [2003/04/24] ports/51395 ports-bugs [PATCH] Update xdiskusage to 1.45 a [2003/04/24] docs/51397 murray login-retries & login-backoff fields undo p [2003/04/24] docs/51399 blackend XFree86 section of handbook needs some up f [2003/04/24] ports/51400 ports-bugs new port:biology/lsysexp o [2003/04/24] ports/51402 ports-bugs New port for LDAP Directory Administrator o [2003/04/24] ports/51404 ports-bugs [patch] fix WWW for www/css-mode.el o [2003/04/25] ports/51406 ports-bugs Add linprocfs mount check to emulators/li a [2003/04/25] docs/51407 murray references to gated remain when gated is o [2003/04/25] ports/51415 kevlo Port textproc/xerces-j should be updated o [2003/04/25] ports/51416 ports-bugs antlr 2.7.1 -> 2.7.2 o [2003/04/25] ports/51417 ports-bugs Port antlr can automatically download dis o [2003/04/25] ports/51418 ports-bugs Port antlr should install JAR file in ${P o [2003/04/25] ports/51419 ports-bugs [PATCH] openldap21 port won't compile wit o [2003/04/25] ports/51420 ports-bugs Update sysutils/vcp: 0.9 -> 1.0 o [2003/04/25] ports/51424 ports-bugs www/httrack should be updated to lastest o [2003/04/25] ports/51427 ports-bugs Update port: devel/rlwrap to 0.15 o [2003/04/25] ports/51428 tg Update port: x11/xlockmore from version 5 o [2003/04/26] bin/51430 Patch, renice convenience option o [2003/04/26] ports/51439 ports-bugs fix MASTER_SITES audio/id3ed o [2003/04/26] ports/51446 trevor Update port: audio/fest* to last versions o [2003/04/26] ports/51447 ports-bugs x11/nvidia-driver: adding support for 5.0 o [2003/04/26] ports/51449 ports-bugs Update sysutils/durep: 0.8 -> 0.8.1 o [2003/04/27] ports/51453 ports-bugs New port: x11-toolkits/freeglut, an alter o [2003/04/27] ports/51454 ports-bugs New port: games/torcs, The Open Racing Ca o [2003/04/27] ports/51456 ports-bugs adding new port: opencm o [2003/04/27] ports/51457 ports-bugs Update x11-toolkits/fox-devel: 1.1.22 -> o [2003/04/27] ports/51467 tobez NEW PORT devel/p5-Locale-Maketext-Gettext o [2003/04/27] ports/51468 ports-bugs [patch][non-maintainer update] canonical o [2003/04/27] ports/51469 ports-bugs New port: net/packit: a network auditing o [2003/04/27] ports/51474 ports-bugs p5-CGI-SpeedyCGI broken on current 1386 o [2003/04/27] ports/51475 ports-bugs japanese/kappa20: does not handle italic o [2003/04/27] ports/51477 ports-bugs net/pear-Net_SMTP: upgrading to 1.2.1. o [2003/04/27] ports/51478 ports-bugs sysutils/pear-Log: upgrading to 1.6.5 o [2003/04/27] docs/51480 doc Multiple undefined references in the Free o [2003/04/27] ports/51482 ports-bugs IMCom port upgrade (supersedes ports/5077 o [2003/04/27] ports/51484 ports-bugs undefined reference in libobjc.so o [2003/04/28] ports/51487 ports-bugs [MAINTAINER] Update mail/offlineimap to 3 o [2003/04/28] bin/51488 Compat patch: more(1) allowed filename to o [2003/04/28] ports/51489 ports-bugs Update net/gnunet: 0.5.1a -> 0.5.3 o [2003/04/28] bin/51493 ls usage is missing a few options o [2003/04/28] ports/51494 perky Update port: misc/xosd to 2.2.1 o [2003/04/28] ports/51496 ports-bugs Update port: net/gps to 0.9.3 o [2003/04/28] ports/51498 ports-bugs [PATCH] Update sysutils/logtool to 1.2.2 o [2003/04/28] misc/51504 New file: src/share/mklocale/zh_CN.GBK.sr o [2003/04/28] ports/51505 ports-bugs security/cyrus-sasl: A few fixes and enha o [2003/04/28] misc/51506 zh_CN.eucCN is also zh_CN.GB2312 o [2003/04/28] ports/51511 ports-bugs Update port: devel/e4graph to 1.0a7 o [2003/04/28] ports/51512 ports-bugs Update port: graphics/fractorama to 1.6.5 o [2003/04/28] ports/51517 ports-bugs Update port: net/opendchub to 0.7.11 o [2003/04/28] ports/51518 ports-bugs Update port: print/ghostscript-gnu-commfo o [2003/04/28] bin/51519 newsyslog handles bzip2-compressed files o [2003/04/28] ports/51520 ports-bugs Update security/nmap to 3.27 o [2003/04/28] ports/51521 ports-bugs Update port security/oident: 2.0.5 -> 2.0 o [2003/04/28] ports/51522 ports-bugs [PATCH] Convert devel/fastdep to USE_GETO o [2003/04/28] ports/51528 ports-bugs [PATCH] Convert misc/dvorakng to USE_GETO o [2003/04/28] ports/51529 ports-bugs [PATCH] Convert devel/picprog to USE_GETO o [2003/04/28] ports/51530 ports-bugs [PATCH] Convert databases/dbview to USE_G o [2003/04/28] ports/51536 ports-bugs rmagic 2.21/FreeBSD 4.8-STABLE failing to o [2003/04/28] ports/51540 ports-bugs [update orphaned port] : audio/darkice o [2003/04/28] ports/51543 ports-bugs New port: py-sybase 0.36 (Sybase DB modul o [2003/04/28] ports/51545 ports-bugs [update orphaned port]: audio/mixer.app o [2003/04/28] ports/51547 anders [non maintainer update]: www/pound -> 1.4 o [2003/04/28] ports/51551 tobez UPDATE devel/p5-File-DirSync o [2003/04/29] ports/51553 tobez UPDATE textproc/p5-Text-Autoformat o [2003/04/29] ports/51554 ports-bugs p5-File-Spec is too picky o [2003/04/29] ports/51557 tobez UPDATE audio/p5-MP3-Info o [2003/04/29] ports/51558 tobez UPDATE chinese/p5-Date-Chinese o [2003/04/29] ports/51559 ports-bugs [MAINTAINER FIX]: emulators/xmame, emulat o [2003/04/29] ports/51560 ports-bugs UPDATE converters/p5-Convert-BER o [2003/04/29] ports/51563 tobez UPDATE converters/p5-Convert-UUlib o [2003/04/29] ports/51564 tobez o [2003/04/29] ports/51566 mich Update port: [Maintainer Update]: irc/pis o [2003/04/29] ports/51567 tobez UPDATE converters/p5-Unicode-Map8 o [2003/04/29] ports/51568 tobez UPDATE converters/p5-Unicode-String o [2003/04/29] ports/51569 ports-bugs [MAINTAINER] Update mail/offlineimap to 3 p [2003/04/29] bin/51571 murray Add dragon screensaver to sysinstall menu o [2003/04/29] ports/51572 dburr UPDATE databases/p5-ApacheDBILogConfig o [2003/04/29] ports/51574 ports-bugs security/gpgme: Conditionally add support o [2003/04/29] ports/51575 tobez UPDATE databases/p5-CDB_File o [2003/04/29] ports/51581 ports-bugs UPDATE databases/p5-DBD-ODBC o [2003/04/29] ports/51582 ports-bugs Update net/kopete: 0.6.1a -> 0.6.2 o [2003/04/29] bin/51587 syslogd prints corrupted timestamp in cer o [2003/04/29] ports/51588 portmgr SITE_PERL defined too late in bsd.port.mk o [2003/04/29] ports/51590 brian port update for multimedia/vlc o [2003/04/29] ports/51594 ports-bugs Maintainer Update devel/p5-Locale-Maketex o [2003/04/29] ports/51599 ports-bugs Maintainer-update bluefish-devel o [2003/04/29] www/51607 ceri query-pr.cgi formats some links incorrect o [2003/04/29] docs/51608 phantom [PATCH] Add Internet Archive Wayback Mach o [2003/04/29] ports/51609 portmgr [PATCH] use su(1) when installing ports a o [2003/04/29] ports/51610 ports-bugs rmagic.sample (config file) & sample.dat o [2003/04/30] ports/51612 ports-bugs update textproc/p5-Text-Template to 1.44 o [2003/04/30] ports/51616 ports-bugs update libfwbuilder to 0.10.13 o [2003/04/30] ports/51617 ports-bugs update fwbuilder to 1.0.9 o [2003/04/30] ports/51618 ports-bugs Maintainer update: hungarian/ispell to ve o [2003/04/30] bin/51619 [PATCH] newfs: wipe UFS1 superblock befor o [2003/04/30] ports/51624 ports-bugs NEW port: pixilate o [2003/04/30] ports/51627 ports-bugs Update Ports: misc/xrmap to 2.27 o [2003/04/30] ports/51630 ports-bugs [new port]: net/haproxy (HTTP load balanc o [2003/04/30] ports/51631 ports-bugs New port: hungarian/complexjogtar - Hunga o [2003/04/30] ports/51632 anholt luit from x11/XFree86-4-clients is unusab o [2003/04/30] ports/51634 ports-bugs Updated mod_webapp version o [2003/04/30] ports/51635 ports-bugs [update orphaned port]: devel/trio 1.9 - o [2003/04/30] ports/51638 patrick New Port:: HamLib Shared libraries for Am o [2003/04/30] ports/51639 ports-bugs Maintainer update: www/linux-opera7 o [2003/04/30] ports/51640 ports-bugs [PATCH] update of port net/openldap20 to o [2003/04/30] ports/51643 ports-bugs NEW PORT: devel/wxGlade o [2003/04/30] ports/51645 ports-bugs Port ftp/gftp needs a better description o [2003/04/30] ports/51646 ports-bugs mod_perl2 port can't make package on 4.8 o [2003/04/30] ports/51647 ports-bugs NEW PORT: pglod - inserts web logs into a o [2003/05/01] ports/51650 ports-bugs security/nettle update o [2003/05/01] ports/51651 kde KDE 3.1.1a: KProcess' stdout redirection o [2003/05/01] ports/51652 tobez devel/p5-Params-Validate does not really o [2003/05/01] ports/51653 ports-bugs Make www/p5-HTML-Mason depend on mod_perl o [2003/05/01] bin/51655 savecore needs ${dumpdev} as an argument o [2003/05/01] ports/51656 ports-bugs www/p5-Apache-Session depends on mod_perl o [2003/05/01] ports/51659 ports-bugs make www/rt3 be compatible with www/p5-Fa o [2003/05/01] java/51662 java Fix port: jakarta-commons-logging o [2003/05/01] ports/51663 ports-bugs [PATCH] vpopmail-stable fix for using vmo o [2003/05/01] ports/51665 ports-bugs Update port: astro/planets to 0.1.10 o [2003/05/01] ports/51668 ports-bugs Update port: audio/libcdaudio to 0.99.9 o [2003/05/01] ports/51671 ports-bugs Update port: devel/libmba to 0.5.2 o [2003/05/01] ports/51672 ports-bugs Update port: mail/asmail to 1.5 o [2003/05/01] ports/51674 ports-bugs Update port: x11/xdialog to 2.1.1 o [2003/05/01] kern/51675 Quirks for i-Bead MP3 player/USB key o [2003/05/01] ports/51678 ports-bugs x11/wmdrawer uses transparent icon now o [2003/05/01] ports/51680 ports-bugs security/cyrus-sasl?: Group readable file o [2003/05/02] ports/51684 ports-bugs Update misc/wmwork: 0.2.2 -> 0.2.4 o [2003/05/02] ports/51690 blackend Update devel/linux-runrev: 1.1.1 -> 2.0-B o [2003/05/02] ports/51691 ports-bugs Update audio/gnump3d: 2.3 -> 2.4 o [2003/05/02] ports/51692 ports-bugs Patch to enable USB scanner autodetection o [2003/05/02] ports/51693 ports-bugs [PATCH] Unbreak w11-fm/fvwm2-devel o [2003/05/02] ports/51694 ports-bugs net/lft update to 2.1 o [2003/05/02] ports/51697 ports-bugs [New Port] sysutils/gtk-send-pr (GTK2 pro o [2003/05/02] ports/51698 ports-bugs Update port: audio/vorbisgain to 0.32 o [2003/05/02] ports/51699 ports-bugs Update port: audio/wmsmixer to 0.5.1 o [2003/05/02] ports/51701 ports-bugs Update port: textproc/cwtext to 0.93 o [2003/05/02] ports/51702 ports-bugs Update port: textproc/dictfmt to 1.9.9 o [2003/05/02] ports/51703 ports-bugs Update port: textproc/xmlppm to 0.97 o [2003/05/02] ports/51704 ports-bugs Update port: www/cgic to 2.02 o [2003/05/02] ports/51705 ports-bugs Update port: www/dillo to 0.7.2 o [2003/05/02] ports/51706 ports-bugs Update port: x11/xvattr to 1.3 o [2003/05/02] ports/51710 ports-bugs Please import Config::IniFile 2.37 o [2003/05/02] ports/51712 ports-bugs [MAINTAINER UPDATE] databases/firebird: u o [2003/05/03] ports/51718 ports-bugs [MAINTAINER UPDATE] Bugfix: audio/lopster o [2003/05/03] ports/51722 ports-bugs New port: libukcprog - generally useful l o [2003/05/03] ports/51723 ports-bugs New port: libstatgrab - a useful interfac p [2003/05/03] docs/51724 keramida Duplicate "from" in cut(1) o [2003/05/03] misc/51729 A patch that can make freebsd support zh_ o [2003/05/03] misc/51730 A patch that can make freebsd support zh_ o [2003/05/03] ports/51731 ports-bugs Update Port: emulators/freesci o [2003/05/03] gnu/51733 [PATCH] Obsolete freebsd local hack to in o [2003/05/03] ports/51734 ports-bugs Update devel/elf: 0.5.2 -> 0.5.3 o [2003/05/03] ports/51737 ports-bugs multimedia/mplayer does not autodetect li o [2003/05/03] ports/51739 ports-bugs new port:audio/xmms-cdparanoia o [2003/05/03] ports/51741 ports-bugs Update port (maintainer): biology/treevie o [2003/05/04] ports/51745 ports-bugs Update net/tcpreplay: 1.3.2 -> 1.3.3 o [2003/05/04] bin/51750 ipfw2.c typos o [2003/05/04] ports/51751 ports-bugs New port: security/ike-scan IKE scanner a o [2003/05/04] ports/51752 ports-bugs Update port: net/cvsync 0.20.1 o [2003/05/04] ports/51754 anders [PATCH] update of ports mail/imap-uw and o [2003/05/04] ports/51757 ports-bugs Maintainer update: isc-dhcp3 splitted to o [2003/05/04] ports/51759 ports-bugs Maintainer update: astro/setiathome (manu o [2003/05/04] ports/51760 ports-bugs Change-request: mail/tmda (ACTION_AUTO_RE o [2003/05/04] ports/51761 ports-bugs Maintainer update: mail/elm+ME (2.4.99f) o [2003/05/04] ports/51764 ports-bugs Maintainer update: lang/gforth (0.6.1) o [2003/05/04] ports/51765 ports-bugs Update graphics/gwenview: 0.15.0.p1 -> 0. o [2003/05/04] ports/51768 ports-bugs [new port]: net/libnss_mysql (NSS module o [2003/05/04] ports/51772 dirk Upgrade to version 0.52 of port net/nsc o [2003/05/04] ports/51773 ports-bugs NEW PORT: net/iog: IO Grapher: graphs byt o [2003/05/04] ports/51775 ports-bugs Update deskutils/knowit: 0.6 -> 0.8 o [2003/05/04] ports/51776 ports-bugs Update port: x11-toolkits/gtkglext to 0.9 o [2003/05/04] ports/51777 ports-bugs Update port: x11-toolkits/gtkglextmm to 0 o [2003/05/05] ports/51780 ports-bugs UPDATE devel/p5-Class-Factory-Util o [2003/05/05] ports/51781 ports-bugs NEW PORTS devel/p5-DateTime-LeapSecond o [2003/05/05] ports/51782 ports-bugs NEW PORT devel/p5-DateTime-TimeZone o [2003/05/05] ports/51783 ports-bugs NEW PORTS devel/p5-DateTime o [2003/05/05] ports/51786 ports-bugs (update) databases/p5-DBI o [2003/05/05] ports/51787 ports-bugs (update) databases/p5-DBIx-Tree o [2003/05/05] java/51788 znerd Update port: jakarta-commons-logging depe o [2003/05/05] ports/51791 ports-bugs Change-request: shell/pdksh (pdksh-5.2.14 o [2003/05/05] ports/51792 ports-bugs Maintainer update: textproc/gsed (4.0.7) o [2003/05/05] ports/51793 ports-bugs Maintainer update: devel/gengetopt (2.9) o [2003/05/05] ports/51794 ports-bugs New port: games/spacehulk o [2003/05/05] ports/51795 ports-bugs update port: devel/libgii from 0.7 to 0.8 o [2003/05/05] ports/51796 ports-bugs (update) databases/p5-GraphViz-DBI o [2003/05/05] ports/51797 ports-bugs update port: graphics/libggi from 2.0b3 t o [2003/05/05] kern/51798 sys/fs/ntfs/ntfs_subr.c ntfs_uastricmp() o [2003/05/05] ports/51799 ports-bugs (update) devel/p5-AppConfig o [2003/05/05] ports/51800 ports-bugs [MAINTAINER] Unbreak mail/bincimap build o [2003/05/05] ports/51801 ports-bugs (update) devel/p5-Cache-Cache o [2003/05/05] i386/51802 i386 agp driver for i875P chipset o [2003/05/05] ports/51803 ports-bugs (update) devel/p5-Class-Container o [2003/05/05] ports/51804 ports-bugs (update) devel/p5-Class-Date o [2003/05/05] ports/51805 ports-bugs (update) devel/p5-Class-Delegation o [2003/05/05] ports/51806 ports-bugs (update) devel/p5-Class-Factory o [2003/05/05] ports/51808 ports-bugs (update) devel/p5-Class-Fields o [2003/05/05] ports/51810 ports-bugs Update ports: japanese/yc.el 2866 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 11:17:08 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78A5037B401; Mon, 5 May 2003 11:17:08 -0700 (PDT) Received: from servidor1.cursosvirtuales.com.ar (www.cursosvirtuales.com.ar [200.59.46.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCE8843F3F; Mon, 5 May 2003 11:17:06 -0700 (PDT) (envelope-from fernando@schapachnik.com.ar) Received: from servidor1.cursosvirtuales.com.ar (localhost [127.0.0.1]) h45IH9Al067634; Mon, 5 May 2003 15:17:09 -0300 (ART) (envelope-from fernando@schapachnik.com.ar) Received: (from fpscha@localhost)h45IH9DX067633; Mon, 5 May 2003 15:17:09 -0300 (ART) X-Authentication-Warning: servidor1.cursosvirtuales.com.ar: fpscha set sender to fernando@schapachnik.com.ar using -f Date: Mon, 5 May 2003 15:17:09 -0300 From: Fernando Schapachnik To: =?iso-8859-1?Q?S=F8ren?= Schmidt Message-ID: <20030505181709.GA67509@servidor1.cursosvirtuales.com.a> References: <200305051021.h45ALRf9042588@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200305051021.h45ALRf9042588@freefall.freebsd.org> User-Agent: Mutt/1.4i X-OS: FreeBSD 4.7 - http://www.freebsd.org cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/44508: 4.7R boot delay on ata X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 18:17:08 -0000 En un mensaje anterior, Søren Schmidt escribió: > There was a few changes in this area, but its not possible to > avoid all dealys here (the spec calls for a 30s wait for slow > devices). Hi, What about showing a leyend like "waiting for ... according to spec". This gets closer to POLA. Agreed, is a very minor thing. Thanks! Fernando P. Schapachnik fernando@schapachnik.com.ar From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 11:48:10 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66C0237B401; Mon, 5 May 2003 11:48:10 -0700 (PDT) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4226643F3F; Mon, 5 May 2003 11:48:08 -0700 (PDT) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.8p1/8.12.8) id h45Im5Xn006095; Mon, 5 May 2003 20:48:05 +0200 (CEST) (envelope-from sos) From: Soeren Schmidt Message-Id: <200305051848.h45Im5Xn006095@spider.deepcore.dk> In-Reply-To: <20030505181709.GA67509@servidor1.cursosvirtuales.com.a> To: Fernando Schapachnik Date: Mon, 5 May 2003 20:48:05 +0200 (CEST) X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 cc: freebsd-bugs@FreeBSD.ORG cc: =?ISO-8859-1?Q?S=F8ren_Schmidt?= Subject: Re: kern/44508: 4.7R boot delay on ata X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 18:48:10 -0000 It seems Fernando Schapachnik wrote: > En un mensaje anterior, Søren Schmidt escribió: > > There was a few changes in this area, but its not possible to > > avoid all dealys here (the spec calls for a 30s wait for slow > > devices). > > Hi, > What about showing a leyend like "waiting for ... according to spec". > This gets closer to POLA. Agreed, is a very minor thing. Hmm, thats an idea actually, I'll put in on my TODO list... -Søren From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 11:50:19 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1435037B401 for ; Mon, 5 May 2003 11:50:19 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A824243FA3 for ; Mon, 5 May 2003 11:50:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45IoIUp087359 for ; Mon, 5 May 2003 11:50:18 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45IoIaM087358; Mon, 5 May 2003 11:50:18 -0700 (PDT) Date: Mon, 5 May 2003 11:50:18 -0700 (PDT) Message-Id: <200305051850.h45IoIaM087358@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Pawel Malachowski" Subject: Re: kern/44006: Filesystem corruption with ata(4) software-raid on HPT370. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Pawel Malachowski List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 18:50:19 -0000 The following reply was made to PR kern/44006; it has been noted by GNATS. From: "Pawel Malachowski" To: "=?ISO-8859-2?Q?S=F8ren_Schmidt?=" Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/44006: Filesystem corruption with ata(4) software-raid on HPT370. Date: Mon, 05 May 2003 20:47:28 +0200 On 5 May 2003 at 2:50, Søren Schmidt wrote: > Synopsis: Filesystem corruption with ata(4) software-raid on HPT370. > > State-Changed-From-To: open->closed > State-Changed-By: sos > State-Changed-When: Mon May 5 02:48:15 PDT 2003 > State-Changed-Why: > You cannot just dd one disk to another and then create a RAID ontop of that. > > You need to create the RAID *before* you create (disklabel newfs) your filesystems. > > What you encounter is problems because you fool the system into using a > mirror where the two parts are almost but not entirely identical. I was not clear, ATA-RAID was created before installing system. Filesystem was getting corrupted, so I've tried to synchronize disks using HPT BIOS. The problem was still there so _then_ I've decided to copy disks using dd. Of course system never complained me about any inconsistence between two disks in RAID1 (when data on disk1 and disk2 are known to be different, shouldn't array be degraded?). However, I think this PR should stay closed cause I know machines using HPT370 without such problems -- I suspect my card was broken somehow. I simply removed that HPT controller from my PC and I can't verify that right now. -- Pawel Malachowski From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 15:58:55 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBFDC37B401; Mon, 5 May 2003 15:58:55 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67CE443F93; Mon, 5 May 2003 15:58:55 -0700 (PDT) (envelope-from gad@FreeBSD.org) Received: from freefall.freebsd.org (gad@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h45MwtUp010660; Mon, 5 May 2003 15:58:55 -0700 (PDT) (envelope-from gad@freefall.freebsd.org) Received: (from gad@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h45Mwt4Q010656; Mon, 5 May 2003 15:58:55 -0700 (PDT) Date: Mon, 5 May 2003 15:58:55 -0700 (PDT) From: Garance A Drosehn Message-Id: <200305052258.h45Mwt4Q010656@freefall.freebsd.org> To: gad@FreeBSD.org, freebsd-bugs@FreeBSD.org, gad@FreeBSD.org Subject: Re: bin/51519: newsyslog handles bzip2-compressed files incorrectly X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 22:58:56 -0000 Synopsis: newsyslog handles bzip2-compressed files incorrectly Responsible-Changed-From-To: freebsd-bugs->gad Responsible-Changed-By: gad Responsible-Changed-When: Mon May 5 15:56:03 PDT 2003 Responsible-Changed-Why: I've been working on newsyslog for the past month or so, so I should probably look into this too. The patch suggested by Lukas Ertl does not look too good to me, so I doubt I would go with that. Unfortunately we're just a few hours away from a code-freeze for freebsd-current. If I can come up with a likely patch in that time, then I'll try to commit it tonight. Otherwise it will probably have to wait a few weeks. http://www.freebsd.org/cgi/query-pr.cgi?pr=51519 From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 18:20:16 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04B1137B401 for ; Mon, 5 May 2003 18:20:16 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B26843FAF for ; Mon, 5 May 2003 18:20:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h461KEUp026061 for ; Mon, 5 May 2003 18:20:14 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h461KEr5026060; Mon, 5 May 2003 18:20:14 -0700 (PDT) Resent-Date: Mon, 5 May 2003 18:20:14 -0700 (PDT) Resent-Message-Id: <200305060120.h461KEr5026060@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kaho Toshikazu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BBEC37B401 for ; Mon, 5 May 2003 18:11:44 -0700 (PDT) Received: from elam.kais.kyoto-u.ac.jp (elam.kais.kyoto-u.ac.jp [130.54.60.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE70D43F3F for ; Mon, 5 May 2003 18:11:42 -0700 (PDT) (envelope-from kaho@elam.kais.kyoto-u.ac.jp) Received: from elam.kais.kyoto-u.ac.jp (localhost [IPv6:::1]) h461BcoP020154 for ; Tue, 6 May 2003 10:11:38 +0900 (JST) (envelope-from kaho@elam.kais.kyoto-u.ac.jp) Received: (from kaho@localhost) by elam.kais.kyoto-u.ac.jp (8.12.9/8.12.8/Submit) id h461BbUs020153; Tue, 6 May 2003 10:11:37 +0900 (JST) (envelope-from kaho) Message-Id: <200305060111.h461BbUs020153@elam.kais.kyoto-u.ac.jp> Date: Tue, 6 May 2003 10:11:37 +0900 (JST) From: Kaho Toshikazu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/51823: ADMtek 9511 Ethernet isn't probed X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Kaho Toshikazu List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 01:20:16 -0000 >Number: 51823 >Category: kern >Synopsis: ADMtek 9511 Ethernet isn't probed >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon May 05 18:20:13 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Kaho Toshikazu >Release: FreeBSD 4.8-RC i386 >Organization: Kyoto University >Environment: System: FreeBSD elam.kais.kyoto-u.ac.jp 4.8-RC FreeBSD 4.8-RC #1: Sun Mar 23 16:26:51 JST 2003 suguri@elam.kais.kyoto-u.ac.jp:/var/obj/usr/src/sys/ELAM i386 >Description: ADMtek 9511 has Ethernet and Modem functions in a chip. Its data sheets are published at http://www.admtek.com.tw/index/index/download.htm . The part of Ethernet is compatible with AN983/985, but kernel dosen't know its PCI ID. No device driver is attached. `pciconf -lv` shows: dc0@pci0:20:0: class=0x020000 card=0x400e144f chip=0x95111317 rev=0x01 hdr=0x00 vendor = 'Admtek Inc' device = 'ADM9511 cardbus ethernet-modem controller' class = network subclass = ethernet none7@pci0:20:1: class=0x070301 card=0x400e144f chip=0x28501317 rev=0x02 hdr=0x00 vendor = 'Admtek Inc' class = simple comms >How-To-Repeat: Insert card and boot kernel. >Fix: Please add ID to the dc drivers. Patch is here. --- if_dc.c.orig Thu May 1 18:31:01 2003 +++ if_dc.c Fri May 2 18:09:33 2003 @@ -156,6 +156,8 @@ "ADMtek AL981 10/100BaseTX" }, { DC_VENDORID_ADMTEK, DC_DEVICEID_AN985, "ADMtek AN985 10/100BaseTX" }, + { DC_VENDORID_ADMTEK, DC_DEVICEID_ADM9511, + "ADMtek ADM9511 10/100BaseTX" }, { DC_VENDORID_ASIX, DC_DEVICEID_AX88140A, "ASIX AX88140A 10/100BaseTX" }, { DC_VENDORID_ASIX, DC_DEVICEID_AX88140A, @@ -1984,6 +1986,7 @@ dc_read_srom(sc, sc->dc_romwidth); break; case DC_DEVICEID_AN985: + case DC_DEVICEID_ADM9511: case DC_DEVICEID_FE2500: case DC_DEVICEID_EN2242: case DC_DEVICEID_HAWKING_PN672TX: --- if_dcreg.h.orig Sat Apr 19 00:42:25 2003 +++ if_dcreg.h Fri May 2 18:12:04 2003 @@ -866,6 +866,7 @@ */ #define DC_DEVICEID_AL981 0x0981 #define DC_DEVICEID_AN985 0x0985 +#define DC_DEVICEID_ADM9511 0x9511 /* * ASIX vendor ID. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 19:40:07 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEBF337B401 for ; Mon, 5 May 2003 19:40:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF1B443FBD for ; Mon, 5 May 2003 19:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h462e5Up032432 for ; Mon, 5 May 2003 19:40:05 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h462e5dT032431; Mon, 5 May 2003 19:40:05 -0700 (PDT) Resent-Date: Mon, 5 May 2003 19:40:05 -0700 (PDT) Resent-Message-Id: <200305060240.h462e5dT032431@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gregory Bond Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA88237B401 for ; Mon, 5 May 2003 19:31:19 -0700 (PDT) Received: from ns1.itga.com.au (ns1.itga.com.au [202.53.40.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BC1643F3F for ; Mon, 5 May 2003 19:31:18 -0700 (PDT) (envelope-from gnb@itga.com.au) Received: from lightning.itga.com.au (lightning.itga.com.au [192.168.71.20]) by ns1.itga.com.au (8.12.9/8.12.9) with ESMTP id h462VGm2062075 for ; Tue, 6 May 2003 12:31:16 +1000 (EST) (envelope-from gnb@itga.com.au) Received: from hellcat.itga.com.au (hellcat.itga.com.au [10.132.2.163]) by lightning.itga.com.au (8.9.3/8.9.3) with ESMTP id MAA11276; Tue, 6 May 2003 12:31:16 +1000 (EST) Received: from hellcat.itga.com.au (localhost [127.0.0.1]) by hellcat.itga.com.au (8.12.9/8.12.9) with ESMTP id h462VGFu000634 for ; Tue, 6 May 2003 12:31:16 +1000 (EST) (envelope-from gnb@hellcat.itga.com.au) Received: (from gnb@localhost) by hellcat.itga.com.au (8.12.9/8.12.9/Submit) id h462VGPa000633; Tue, 6 May 2003 12:31:16 +1000 (EST) Message-Id: <200305060231.h462VGPa000633@hellcat.itga.com.au> Date: Tue, 6 May 2003 12:31:16 +1000 (EST) From: Gregory Bond To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/51825: QUIRK: OTi USB Flash Memory keyring X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gregory Bond List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 02:40:07 -0000 >Number: 51825 >Category: kern >Synopsis: QUIRK: OTi USB Flash Memory keyring >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 May 05 19:40:05 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Gregory Bond >Release: FreeBSD 4.8-STABLE i386 >Organization: ITG Australia Limited >Environment: System: FreeBSD hellcat.itga.com.au 4.8-STABLE FreeBSD 4.8-STABLE #10: Tue May 6 12:05:40 EST 2003 toor@grollo.itga.com.au:/usr/obj/usr/src/sys/HELLCAT i386 >Description: OTi USB Flash keyring needs NO_6_BYTE quirk. Symptoms w/o the quirk are long hang (> 30 sec) when trying to access, then an error when attempting to read. da0: reading primary partition table: error reading fsbn 0 What clued me in was, sometimes, after several tries at reading, I got the following message: (da0:umass-sim0:0:0:0): READ(6)/WRITE(6) not supported, increasing minimum_cmd_size to 10. I don't know why the auto 10-byte fallback wasn't kicking in earlier or more reliably; I'm happy to run some tests if anyone can tell me what to do. >How-To-Repeat: Plug in an OTi USB flash disk. Attempt to mount it. umass0: USB Solid state disk, rev 1.10/1.00, addr 2 da0 at umass-sim0 bus 0 target 0 lun 0 da0: Removable Direct Access SCSI-2 device da0: 650KB/s transfers da0: 63MB (129024 512 byte sectors: 64H 32S/T 63C) da0: reading primary partition table: error reading fsbn 0 hellcat# camcontrol inquiry da0 pass0: Removable Direct Access SCSI-2 device pass0: Serial Number pass0: 650KB/s transfers hellcat# usbdevs -v Controller /dev/usb0: addr 1: self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered Controller /dev/usb1: addr 1: self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 addr 2: power 100 mA, config 1, Solid state disk(0x6803), USB(0x0ea0), rev 1.00 port 2 powered hellcat# >Fix: --- OTi-quirk begins here --- Index: sys/cam/scsi/scsi_da.c =================================================================== RCS file: /usr/ncvs/src/sys/cam/scsi/scsi_da.c,v retrieving revision 1.42.2.34 diff -u -r1.42.2.34 scsi_da.c --- sys/cam/scsi/scsi_da.c 27 Apr 2003 20:05:11 -0000 1.42.2.34 +++ sys/cam/scsi/scsi_da.c 6 May 2003 02:05:24 -0000 @@ -426,6 +426,13 @@ }, { /* + * OTi USB Key-Storage + */ + {T_DIRECT, SIP_MEDIA_REMOVABLE, "OTi", "Flash Disk", "*"}, + /*quirks*/ DA_Q_NO_6_BYTE + }, + { + /* * Lexar Media Jumpdrive * PR: kern/47006 */ --- OTi-quirk ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 20:40:25 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 902B037B411 for ; Mon, 5 May 2003 20:40:25 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22AAB43F75 for ; Mon, 5 May 2003 20:40:25 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h463eOUp038473 for ; Mon, 5 May 2003 20:40:24 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h463eOwc038472; Mon, 5 May 2003 20:40:24 -0700 (PDT) Date: Mon, 5 May 2003 20:40:24 -0700 (PDT) Message-Id: <200305060340.h463eOwc038472@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Dorr H. Clark" Subject: see 41331 Re: misc/42943: fd 0,1,2 should not be set to nonblock in _thread_fd_table_init() X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Dorr H. Clark" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 03:40:25 -0000 The following reply was made to PR misc/42943; it has been noted by GNATS. From: "Dorr H. Clark" To: freebsd-gnats-submit@FreeBSD.org, pqf@163.net Cc: Subject: see 41331 Re: misc/42943: fd 0,1,2 should not be set to nonblock in _thread_fd_table_init() Date: Mon, 05 May 2003 20:35:01 -0700 42943 is a duplicate of 41331, or at best an extended symptom. Please see that PR for more detailed discussion. Rashmi Venkatesh, engineer Dorr H. Clark, advisor COEN 284 - Operating Systems Case Study Santa Clara University, Santa Clara CA. From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 20:40:32 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A340837B49A for ; Mon, 5 May 2003 20:40:28 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 344BC43FAF for ; Mon, 5 May 2003 20:40:28 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h463eSUp038516 for ; Mon, 5 May 2003 20:40:28 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h463eSLM038515; Mon, 5 May 2003 20:40:28 -0700 (PDT) Date: Mon, 5 May 2003 20:40:28 -0700 (PDT) Message-Id: <200305060340.h463eSLM038515@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Dorr H. Clark" Subject: Re: misc/41331: Pthread library open sets O_NONBLOCK flag andcauses unnecessary EAGAIN errors especially with /dev/stdout. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Dorr H. Clark" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 03:40:32 -0000 The following reply was made to PR misc/41331; it has been noted by GNATS. From: "Dorr H. Clark" To: freebsd-gnats-submit@FreeBSD.org, alo@iki.fi Cc: Subject: Re: misc/41331: Pthread library open sets O_NONBLOCK flag and causes unnecessary EAGAIN errors especially with /dev/stdout. Date: Mon, 05 May 2003 20:37:20 -0700 42943 is a duplicate of 41331, or at best an extended symptom. First of all, both 41331 and 42943 occur on purpose, and this is not a regression introduced by some other change, it is part of the original pthread code. We believe that this behavior is a side effect of the FreeBSD threads implementation, and that 41331 and 42943 are normal behavior. These bugs can only plausibly be addressed by rearchitecting the threads implementation, possibly in the context of 5.x. In FreeBSD, the pthread implementation is as a user-level thread package, in other words, all threads execute in the context of a single process, and the thread scheduler is hidden in the threaded version of libc. As a side-effect of this implementation, when a blocking system call is executed, the kernel only knows about the process, and this results in all the threads being blocked. To avoid blocking the entire thread group, the stdin, stdout and stderr file descriptors are made non-blocking. Note that while these two bugs were filed against the recent 4.x releases, there is nothing new in this area. The code governing this behavior has 2.x and 3.x labels in the CVS tree. In 41331, there is a test program, and as part of our investigation we tried this program on both Solaris and Linux. Neither one exhibits the 41331 behavior, however readers who are familiar with the threads implementation will realize that these are three radically different threads implementations, accounting for the discrepancy. If the 41331 behavior is intolerable, there are two possible approaches, either wait for a pthreads implementation on top of the kernel threads in FreeBSD 5.0 or install the linuxthreads port, which simulates the Linux way of handling threads as separate processes. NOTE: The following code excerpt is from 4.7-STABLE ! Here are two code snips which control this behavior. code snip from libc_r/uthread/pthread_private.h : /* * Standard I/O file descriptors need special flag treatment since * setting one to non-blocking does all on *BSD. Sigh. This array * is used to store the initial flag settings. */ SCLASS int _pthread_stdio_flags[3]; code snip from uthread_fd.c : /* Check if a stdio descriptor: */ if ((fd < 3) && (_pthread_stdio_flags[fd] != -1)) /* * Use the stdio flags read by * _pthread_init() to avoid * mistaking the non-blocking * flag that, when set on one * stdio fd, is set on all stdio * fds. */ entry->flags = _pthread_stdio_flags[fd]; /* * Make the file descriptor non-blocking. * This might fail if the device driver does * not support non-blocking calls, or if the * driver is naturally non-blocking. */ saved_errno = errno; _thread_sys_fcntl(fd, F_SETFL, entry->flags | O_NONBLOCK); errno = saved_errno; Rashmi Venkatesh, engineer Dorr H. Clark, advisor COEN 284 - Operating Systems Case Study Santa Clara University, Santa Clara CA. From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 22:30:17 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 548E337B401 for ; Mon, 5 May 2003 22:30:17 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5BF343FAF for ; Mon, 5 May 2003 22:30:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h465U9Up070569 for ; Mon, 5 May 2003 22:30:09 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h465U9GQ070568; Mon, 5 May 2003 22:30:09 -0700 (PDT) Resent-Date: Mon, 5 May 2003 22:30:09 -0700 (PDT) Resent-Message-Id: <200305060530.h465U9GQ070568@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mark Andrews Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4B2837B404 for ; Mon, 5 May 2003 22:26:56 -0700 (PDT) Received: from bsdi.dv.isc.org (c17249.carlnfd1.nsw.optusnet.com.au [210.49.138.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F94943FD7 for ; Mon, 5 May 2003 22:26:55 -0700 (PDT) (envelope-from marka@isc.org) Received: from drugs.dv.isc.org (drugs.dv.isc.org [192.168.191.236]) by bsdi.dv.isc.org (8.12.9/8.12.9) with ESMTP id h465Qrab068405 for ; Tue, 6 May 2003 15:26:53 +1000 (EST) (envelope-from marka@isc.org) Received: from drugs.dv.isc.org (localhost [127.0.0.1]) by drugs.dv.isc.org (8.12.9/8.12.9) with ESMTP id h465Qr1G037638 for ; Tue, 6 May 2003 15:26:53 +1000 (EST) (envelope-from marka@drugs.dv.isc.org) Received: (from marka@localhost) by drugs.dv.isc.org (8.12.9/8.12.9/Submit) id h465QqT3037637; Tue, 6 May 2003 15:26:52 +1000 (EST) (envelope-from marka) Message-Id: <200305060526.h465QqT3037637@drugs.dv.isc.org> Date: Tue, 6 May 2003 15:26:52 +1000 (EST) From: Mark Andrews To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/51827: getaddrinfo() is broken with numeric service X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mark Andrews List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 05:30:17 -0000 >Number: 51827 >Category: bin >Synopsis: getaddrinfo() is broken with numeric service >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 May 05 22:30:09 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Mark Andrews >Release: FreeBSD 4.8-RC i386 >Organization: ISC >Environment: System: FreeBSD drugs.dv.isc.org 4.8-RC FreeBSD 4.8-RC #6: Sun Mar 30 11:45:29 EST 2003 marka@drugs.dv.isc.org:/usr/obj/usr/src/sys/DRUGS i386 >Description: getaddrinfo() should accept numeric when ai_socktype is not specified in hint or hints is NULL. RFC 3493: If servname is null, the call shall return network-level addresses for the specified nodename. If servname is not null, it is a null- terminated character string identifying the requested service. This can be either a descriptive name or a numeric representation suitable for use with the address family or families. If the specified address family is AF_INET, AF_INET6 or AF_UNSPEC, the service can be specified as a string specifying a decimal port number. While I havn't checked the posix spec nothing in RFC 3493 indicates that numeric values are only to be accepted when ai_socktype is specified. >How-To-Repeat: % ./a.out 53/NULL servname not supported for ai_socktype 53/hint servname not supported for ai_socktype domain/hint 28 2 17 2 2 17 28 1 6 2 1 6 domain/hint 28 2 17 2 2 17 28 1 6 2 1 6 % #include #include #include #include main() { int error; struct addrinfo *res, *res0; struct addrinfo hint; memset(&hint, 0, sizeof(hint)); hint.ai_family = AF_UNSPEC; printf("53/NULL\n"); error = getaddrinfo("rc.isc.org", "53", NULL, &res0); if (error) { printf("%s\n", gai_strerror(error)); } else { for (res = res0; res; res = res->ai_next) { printf("%d %u %u\n", res->ai_family, res->ai_socktype, res->ai_protocol); } freeaddrinfo(res0); } printf("53/hint\n"); error = getaddrinfo("rc.isc.org", "53", &hint, &res0); if (error) { printf("%s\n", gai_strerror(error)); } else { for (res = res0; res; res = res->ai_next) { printf("%d %u %u\n", res->ai_family, res->ai_socktype, res->ai_protocol); } freeaddrinfo(res0); } printf("domain/hint\n"); error = getaddrinfo("rc.isc.org", "domain", NULL, &res0); if (error) { printf("%s\n", gai_strerror(error)); } else { for (res = res0; res; res = res->ai_next) { printf("%d %u %u\n", res->ai_family, res->ai_socktype, res->ai_protocol); } freeaddrinfo(res0); } printf("domain/hint\n"); error = getaddrinfo("rc.isc.org", "domain", &hint, &res0); if (error) { printf("%s\n", gai_strerror(error)); } else { for (res = res0; res; res = res->ai_next) { printf("%d %u %u\n", res->ai_family, res->ai_socktype, res->ai_protocol); } freeaddrinfo(res0); } exit(0); } >Fix: The following if from the BIND 8 source but should apply. Index: lib/irs/getaddrinfo.c =================================================================== RCS file: /proj/cvs/isc/bind8/src/lib/irs/getaddrinfo.c,v retrieving revision 8.12 diff -u -r8.12 getaddrinfo.c --- lib/irs/getaddrinfo.c 3 Dec 2002 05:26:49 -0000 8.12 +++ lib/irs/getaddrinfo.c 6 May 2003 05:10:26 -0000 @@ -987,7 +987,17 @@ allownumeric = 1; break; case ANY: - allownumeric = 0; + switch (ai->ai_family) { + case AF_INET: +#ifdef AF_INET6 + case AF_INET6: +#endif + allownumeric = 1; + break; + default: + allownumeric = 0; + break; + } break; default: return EAI_SOCKTYPE; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 00:07:59 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2512937B401; Tue, 6 May 2003 00:07:59 -0700 (PDT) Received: from mail.uni-bielefeld.de (mail2.uni-bielefeld.de [129.70.4.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 984A443F3F; Tue, 6 May 2003 00:07:57 -0700 (PDT) (envelope-from lars.koeller@uni-bielefeld.de) Received: from rayadm.hrz.uni-bielefeld.de (rayadm.hrz.uni-bielefeld.de [129.70.202.15]) by mail.uni-bielefeld.de (Sun Internet Mail Server sims.4.0.2000.10.12.16.25.p8) with ESMTP id <0HEG002FAE6P3S@mail.uni-bielefeld.de>; Tue, 6 May 2003 09:01:39 +0200 (MET DST) Received: from rayadm.hrz.uni-bielefeld.de (lkoeller@localhost) h4671bx06729; Tue, 06 May 2003 09:01:37 +0200 (MEST) Date: Tue, 06 May 2003 09:01:37 +0200 From: Lars =?iso-8859-1?Q?K=F6ller?= X-Face: eCcoCV}FjV*O{6>[1$XP/e%]TJhEw2MF33dFh)^HM7Gfd=[/(4+0a$~ MIME-version: 1.0 X-Mailer: exmh version 2.6.1 02/18/2003 with nmh-1.0.4 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: quoted-printable cc: lars+freebsd@koellers.net cc: lars.koeller@uni-bielefeld.de Subject: Re: bin/51586: rsh/rshd connect problem (select: protocol failurein circuit setup) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 07:07:59 -0000 -------- Hi, this bug seems to be a serious one perhaps TCP/kernel based. The same setup (even manipulating tcp_time_wait_interval on solaris) = between two Solaris machines runes very well! The Solaris rshd machine which is connected from the FreeBSD rsh Client reports: rsh[22477]: [ID 632004 daemon.info] connect second port: Connection tim= ed out Please, again, can someone have a look at it??? It's really important for us! Thanks Lars -- = E-Mail: Lars.Koeller@Uni-Bielefeld.DE \ Lars K=F6ller lkoeller@FreeBSD.org \ CC University of PGP: http://www.uk.pgp.net/pgpnet/wwwkeys.html \ Bielefeld, Germany = Key-ID: A430D499 \ Tel: +49 521 106 4964 ----------- FreeBSD, what else? ---- http://www.freebsd.org -------------= From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 00:10:22 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CBB237B404 for ; Tue, 6 May 2003 00:10:22 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54C0243F75 for ; Tue, 6 May 2003 00:10:21 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h467ALUp080590 for ; Tue, 6 May 2003 00:10:21 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h467ALVw080589; Tue, 6 May 2003 00:10:21 -0700 (PDT) Resent-Date: Tue, 6 May 2003 00:10:21 -0700 (PDT) Resent-Message-Id: <200305060710.h467ALVw080589@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, serg@vostok.net Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1285437B401 for ; Tue, 6 May 2003 00:07:46 -0700 (PDT) Received: from serg.vostok.net (serg.cit-ua.net [80.77.32.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E99443FAF for ; Tue, 6 May 2003 00:07:41 -0700 (PDT) (envelope-from serg@serg.vostok.net) Received: from serg.vostok.net (localhost [127.0.0.1]) by serg.vostok.net (8.12.6p2/8.12.6) with ESMTP id h4677bC5000787 for ; Tue, 6 May 2003 10:07:37 +0300 (EEST) (envelope-from serg@serg.vostok.net) Received: (from root@localhost) by serg.vostok.net (8.12.6p2/8.12.6/Submit) id h4677ail000786; Tue, 6 May 2003 10:07:36 +0300 (EEST) Message-Id: <200305060707.h4677ail000786@serg.vostok.net> Date: Tue, 6 May 2003 10:07:36 +0300 (EEST) From: serg@vostok.net To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: conf/51830: new entries in termcap X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 07:10:22 -0000 >Number: 51830 >Category: conf >Synopsis: new entries in termcap >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 06 00:10:15 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Sergiy Vyshnevetskiy >Release: FreeBSD 5.0-RELEASE-p7 i386 >Organization: >Environment: System: FreeBSD serg.vostok.net 5.0-RELEASE-p7 FreeBSD 5.0-RELEASE-p7 #1: Tue May 6 00:18:23 EEST 2003 root@serg.vostok.net:/usr/obj/usr/src/sys/SERG i386 >Description: There are no terminal types in termcap for VGA_90* russian video modes. >How-To-Repeat: Just look in your /etc/termcap. >Fix: This patch should work. --- termcap.orig Tue Apr 29 22:20:03 2003 +++ termcap Mon May 5 19:53:45 2003 @@ -2453,6 +2453,28 @@ :li#60:tc=cons25r: cons60r-m|cons60u-m|cons60-koi8-mono:\ :li#60:tc=cons25r-m: +# Syscons console with 90 characters (VGA modes) +# KOI8-R/KOI8-U FreeBSD console with ACS support +cons25r-v|cons25u-v|pc3r-v|ibmpc3r-vga|cons25-koi8-vga:\ + :co#90:tc=cons25r: +cons25r-mv|cons25u-mv|pc3r-mv|ibmpc3r-monovga|cons25-koi8-monovga:\ + :co#90:tc=cons25r-m: +cons30r-v|cons30u-v|cons30-koi8-vga:\ + :co#90:tc=cons30r: +cons30r-mv|cons30u-mv|cons30-koi8-monovga:\ + :co#90:tc=cons30r-m: +cons43r-v|cons43u-v|cons43-koi8-vga:\ + :co#90:tc=cons43r: +cons43r-mv|cons43u-mv|cons43-koi8-monovga:\ + :co#90:tc=cons43r-m: +cons50r-v|cons50u-v|cons50-koi8-vga:\ + :co#90:tc=cons50r: +cons50r-mv|cons50u-mv|cons50-koi8-monovga:\ + :co#90:tc=cons50r-m: +cons60r-v|cons60u-v|cons60-koi8-vga:\ + :co#90:tc=cons60r: +cons60r-mv|cons60u-mv|cons60-koi8-monovga:\ + :co#90:tc=cons60r-m: # ISO 8859-2 FreeBSD console with ACS support cons25l2|cons25-iso8859-2:\ :ac=f\260i\247:\ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 00:10:23 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E951E37B401 for ; Tue, 6 May 2003 00:10:23 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 880AA43F3F for ; Tue, 6 May 2003 00:10:23 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h467ANUp080626 for ; Tue, 6 May 2003 00:10:23 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h467ANPa080623; Tue, 6 May 2003 00:10:23 -0700 (PDT) Date: Tue, 6 May 2003 00:10:23 -0700 (PDT) Message-Id: <200305060710.h467ANPa080623@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Lars =?iso-8859-1?Q?K=F6ller?= Subject: Re: bin/51586: rsh/rshd connect problem (select: protocol failurein circuit setup) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Lars =?iso-8859-1?Q?K=F6ller?= List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 07:10:24 -0000 The following reply was made to PR bin/51586; it has been noted by GNATS. From: Lars =?iso-8859-1?Q?K=F6ller?= To: freebsd-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: lars.koeller@uni-bielefeld.de, lars+freebsd@koellers.net Subject: Re: bin/51586: rsh/rshd connect problem (select: protocol failure in circuit setup) Date: Tue, 06 May 2003 09:01:37 +0200 -------- Hi, this bug seems to be a serious one perhaps TCP/kernel based. The same setup (even manipulating tcp_time_wait_interval on solaris) = between two Solaris machines runes very well! The Solaris rshd machine which is connected from the FreeBSD rsh Client reports: rsh[22477]: [ID 632004 daemon.info] connect second port: Connection tim= ed out Please, again, can someone have a look at it??? It's really important for us! Thanks Lars -- = E-Mail: Lars.Koeller@Uni-Bielefeld.DE \ Lars K=F6ller lkoeller@FreeBSD.org \ CC University of PGP: http://www.uk.pgp.net/pgpnet/wwwkeys.html \ Bielefeld, Germany = Key-ID: A430D499 \ Tel: +49 521 106 4964 ----------- FreeBSD, what else? ---- http://www.freebsd.org -------------= From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 00:10:25 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 672D437B404 for ; Tue, 6 May 2003 00:10:25 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4628943F93 for ; Tue, 6 May 2003 00:10:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h467ANUp080672 for ; Tue, 6 May 2003 00:10:23 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h467ANlf080671; Tue, 6 May 2003 00:10:23 -0700 (PDT) Resent-Date: Tue, 6 May 2003 00:10:23 -0700 (PDT) Resent-Message-Id: <200305060710.h467ANlf080671@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vincent Jardin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EDA437B401 for ; Tue, 6 May 2003 00:10:06 -0700 (PDT) Received: from mwinf0102.wanadoo.fr (smtp8.wanadoo.fr [193.252.22.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09E2943F75 for ; Tue, 6 May 2003 00:10:05 -0700 (PDT) (envelope-from vjardin@wanadoo.fr) Received: from venus.vincentjardin.net (AVelizy-102-1-5-134.abo.wanadoo.fr [80.13.229.134]) by mwinf0102.wanadoo.fr (SMTP Server) with ESMTP id 913AF1BFFFBF for ; Tue, 6 May 2003 09:10:03 +0200 (CEST) Message-Id: <200305060910.09348.vjardin@wanadoo.fr> Date: Tue, 6 May 2003 09:10:09 +0200 From: Vincent Jardin To: FreeBSD-gnats-submit@FreeBSD.org Subject: kern/51831: ATM/HARP BPF support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Vincent Jardin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 07:10:25 -0000 >Number: 51831 >Category: kern >Synopsis: ATM/HARP BPF support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: wish >Submitter-Id: current-users >Arrival-Date: Tue May 06 00:10:23 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Vincent Jardin >Release: Patch for FreeBSD 4.x, 5.x and later >Organization: Vincent Jardin >Environment: n/a >Description: Currently, the NBMA interfaces of the HARP/ATM stack do not support tcpdu= mp=20 whereas FreeBSD's tcpdump already support Classical IP (see DLT_ATM_CLIP). >How-To-Repeat: tcpdump -ni atm0 >Fix: Currently, I am using the following patch on FreeBSD 4.7: netatm/atm_cm.c: --- atm_cm.c.orig Sat Aug 28 02:48:34 1999 +++ atm_cm.c Sun Apr 20 03:37:34 2003 @@ -37,6 +37,8 @@ =20 #include =20 +#include + #ifndef lint __RCSID("@(#) $FreeBSD: src/sys/netatm/atm_cm.c,v 1.6 1999/08/28 00:48:3= 4=20 peter Exp $"); #endif @@ -2877,6 +2879,17 @@ * Locate packet's connection */ cop =3D cvp->cvc_conn; + + /* + * Send the packet to the interface's bpf if this vc has = one. + */ =20 + if (cvp->cvc_vcc && cvp->cvc_vcc->vc_nif) { + struct ifnet *ifp =3D (struct ifnet=20 *)cvp->cvc_vcc->vc_nif; + + if (ifp->if_bpf) + bpf_mtap(ifp, m); + } + switch (cop->co_mpx) { =20 case ATM_ENC_NULL: netatm/atm_device.c: --- atm_device.c.orig Mon Apr 21 02:45:20 2003 +++ atm_device.c Tue May 6 08:58:17 2003 @@ -37,6 +37,8 @@ =20 #include =20 +#include + #ifndef lint __RCSID("@(#) $FreeBSD: src/sys/netatm/atm_device.c,v 1.5 1999/08/28 00:= 48:35=20 peter Exp $"); #endif @@ -351,6 +353,16 @@ tok, state ); KB_FREEALL((KBuffer *)arg1); break; + } + + /* + * Send the packet to the interface's bpf if this vc has = one. + */ + if (cvcp->cvc_vcc && cvcp->cvc_vcc->vc_nif) { + struct ifnet *ifp =3D (struct ifnet=20 *)cvcp->cvc_vcc->vc_nif; + + if (ifp->if_bpf) + bpf_mtap(ifp, (KBuffer *)arg1); } =20 /* netatm/atm_if.c: --- atm_if.c.orig Thu Apr 17 01:28:43 2003 +++ atm_if.c Tue May 6 09:01:42 2003 @@ -37,6 +37,8 @@ =20 #include =20 +#include + #ifndef lint __RCSID("@(#) $FreeBSD: src/sys/netatm/atm_if.c,v 1.5 1999/08/28 00:48:3= 5=20 peter Exp $"); #endif @@ -51,8 +53,10 @@ */ static int atm_physif_ioctl __P((int, caddr_t, caddr_t)); #if (defined(BSD) && (BSD >=3D 199306)) +#if defined(__FreeBSD__) && (__FreeBSD_version < 440000) static int atm_netif_rtdel __P((struct radix_node *, void *)); #endif +#endif static int atm_if_ioctl __P((struct ifnet *, u_long, caddr_t)); static int atm_ifparse __P((char *, char *, int, int *)); =20 @@ -762,6 +766,13 @@ if_attach(ifp); =20 /* + * Add to BPF interface list + * DLT_ATM_RFC1483 cannot be used because both NULL and LLC/SNAP = could + * be provisionned. + */ + bpfattach(ifp, DLT_ATM_CLIP, T_ATM_LLC_MAX_LEN); + + /* * Add to physical interface list */ LINK2TAIL(nip, struct atm_nif, pip->pif_nif, nif_pnext); @@ -807,11 +818,14 @@ struct atm_nif *nip; { struct atm_ncm *ncp; - int s, i; + int s; struct ifnet *ifp =3D &nip->nif_if; +#if defined(__FreeBSD__) && (__FreeBSD_version < 440000) + int i; struct ifaddr *ifa; struct in_ifaddr *ia; struct radix_node_head *rnh; +#endif s =3D splimp(); @@ -823,6 +837,7 @@ (void) (*ncp->ncm_stat)(NCM_DETACH, nip, 0); } =20 +#if !defined(__FreeBSD__) || (__FreeBSD_version < 440000) /* * Mark interface down */ @@ -864,6 +879,20 @@ * Remove from system interface list (ie. if_detach()) */ TAILQ_REMOVE(&ifnet, ifp, if_link); +#else + /* + * Remove from BPF interface list + */ + bpfdetach(ifp); + + /* + * Free all interface routes and addresses, + * Delete all remaining routes using this interface, + * then remove from system interface list + */ + if_detach(ifp); + +#endif /* (__FreeBSD_version < 440000) */ =20 /* * Remove from physical interface list @@ -874,6 +903,7 @@ } =20 =20 +#if defined(__FreeBSD__) && (__FreeBSD_version < 440000) /* * Delete Routes for a Network Interface *=20 @@ -917,6 +947,7 @@ =20 return (0); } +#endif /* __FreeBSD_version < 440000 */ =20 =20 /* >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 00:30:23 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4527C37B404 for ; Tue, 6 May 2003 00:30:23 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A811043FAF for ; Tue, 6 May 2003 00:30:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h467UMUp081307 for ; Tue, 6 May 2003 00:30:22 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h467UMWX081306; Tue, 6 May 2003 00:30:22 -0700 (PDT) Date: Tue, 6 May 2003 00:30:22 -0700 (PDT) Message-Id: <200305060730.h467UMWX081306@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Vincent Jardin Subject: Re: kern/51831: ATM/HARP BPF support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Vincent Jardin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 07:30:23 -0000 The following reply was made to PR kern/51831; it has been noted by GNATS. From: Vincent Jardin To: freebsd-gnats-submit@FreeBSD.org, vjardin@free.fr Cc: Subject: Re: kern/51831: ATM/HARP BPF support Date: Tue, 6 May 2003 09:25:39 +0200 For example, now you can get the LLC/SNAP header with tcpdump: su-2.05b# atm add pvc hva1 3 40 AAL5 SNAP IP atm0 1.1.2.3 su-2.05b# atm show ipvcc Net Intf VPI VCI State Flags IP Address atm0 1 40 ACTIVE PM 1.1.2.2 atm0 3 40 ACTIVE PLM 1.1.2.3 su-2.05b# atm show vcc Interface VPI VCI AAL Type Dir State Encaps Owner hva1 1 40 AAL5 PVC InOut ACTIVE Null IP hva1 3 40 AAL5 PVC InOut ACTIVE LLC/SNAP IP su-2.05b# ifconfig atm0 atm0: flags=3D43 mtu 9180 inet 1.1.1.1 netmask 0xffff0000 broadcast 1.1.255.255 ether 00:19:e1:6a:a3:f2 $ ping 1.1.2.3 su-2.05b# tcpdump -nXi atm0 tcpdump: listening on atm0 09:22:20.540119 1.1.1.1 > 1.1.2.3: icmp: echo request 0x0000 aaaa 0300 0000 0800 4500 0054 05c6 0000 ........E..T.... 0x0010 4001 6fde 0101 0101 0101 0203 0800 cc1b @.o............. 0x0020 f702 1500 ac62 b73e c93c 0800 0809 0a0b .....b.>.<...... 0x0030 0c0d 0e0f 1011 1213 1415 1617 1819 1a1b ................ 0x0040 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b .....!"#$%&'()*+ 0x0050 2c2d 2e2f 3031 3233 3435 3637 ,-./01234567 su-2.05b# tcpdump -nvi atm0 tcpdump: listening on atm0 09:22:25.590190 snap 0:0:0:8:0 1.1.1.1 > 1.1.2.3: icmp: echo request (ttl= 64,=20 id 1493, len 84) From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 02:37:06 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B174E37B401; Tue, 6 May 2003 02:37:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 524C143FBD; Tue, 6 May 2003 02:37:06 -0700 (PDT) (envelope-from maxim@FreeBSD.org) Received: from freefall.freebsd.org (maxim@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h469b6Up092884; Tue, 6 May 2003 02:37:06 -0700 (PDT) (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h469b53F092880; Tue, 6 May 2003 02:37:05 -0700 (PDT) Date: Tue, 6 May 2003 02:37:05 -0700 (PDT) From: Maxim Konovalov Message-Id: <200305060937.h469b53F092880@freefall.freebsd.org> To: imura@ryu16.org, maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/51798: sys/fs/ntfs/ntfs_subr.c ntfs_uastricmp() bug? X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 09:37:07 -0000 Synopsis: sys/fs/ntfs/ntfs_subr.c ntfs_uastricmp() bug? State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Tue May 6 02:36:43 PDT 2003 State-Changed-Why: Pilot error. http://www.freebsd.org/cgi/query-pr.cgi?pr=51798 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 02:45:31 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 194EA37B401; Tue, 6 May 2003 02:45:31 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABC6343F93; Tue, 6 May 2003 02:45:30 -0700 (PDT) (envelope-from maxim@FreeBSD.org) Received: from freefall.freebsd.org (maxim@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h469jUUp093343; Tue, 6 May 2003 02:45:30 -0700 (PDT) (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h469jUcT093339; Tue, 6 May 2003 02:45:30 -0700 (PDT) Date: Tue, 6 May 2003 02:45:30 -0700 (PDT) From: Maxim Konovalov Message-Id: <200305060945.h469jUcT093339@freefall.freebsd.org> To: lazykang@hotmail.com, maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/51730: A patch that can make freebsd support zh_CN.GB18030 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 09:45:31 -0000 Synopsis: A patch that can make freebsd support zh_CN.GB18030 State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Tue May 6 02:44:05 PDT 2003 State-Changed-Why: Duplicate of misc/51729. http://www.freebsd.org/cgi/query-pr.cgi?pr=51730 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 06:30:07 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D929437B401 for ; Tue, 6 May 2003 06:30:07 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6911A43F3F for ; Tue, 6 May 2003 06:30:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46DU6Up037618 for ; Tue, 6 May 2003 06:30:06 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46DU6xR037617; Tue, 6 May 2003 06:30:06 -0700 (PDT) Date: Tue, 6 May 2003 06:30:06 -0700 (PDT) Message-Id: <200305061330.h46DU6xR037617@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Sergey Svishchev Subject: Re: bin/42397: dlclose for a module loaded with RTLD_GLOBAL can access freed memory and crash X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Svishchev List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 13:30:08 -0000 The following reply was made to PR bin/42397; it has been noted by GNATS. From: Sergey Svishchev To: freebsd-gnats-submit@FreeBSD.org Cc: ejalbert@cs.stanford.edu Subject: Re: bin/42397: dlclose for a module loaded with RTLD_GLOBAL can access freed memory and crash Date: Tue, 6 May 2003 17:26:53 +0400 This might be fixed by revision 1.72 of src/libexec/rtld-elf/rtld.c (MFCd in 1.43.2.15) -- Sergey Svishchev From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 07:50:07 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CF2037B404 for ; Tue, 6 May 2003 07:50:07 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ABBA43FE0 for ; Tue, 6 May 2003 07:50:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46Eo5Up012463 for ; Tue, 6 May 2003 07:50:05 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Eo57I012462; Tue, 6 May 2003 07:50:05 -0700 (PDT) Resent-Date: Tue, 6 May 2003 07:50:05 -0700 (PDT) Resent-Message-Id: <200305061450.h46Eo57I012462@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Michal F.Hanula" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A16337B401 for ; Tue, 6 May 2003 07:44:14 -0700 (PDT) Received: from kyblik.pieskovisko.sk (kyblik.pieskovisko.sk [213.215.72.42]) by mx1.FreeBSD.org (Postfix) with SMTP id 94BB243FA3 for ; Tue, 6 May 2003 07:44:13 -0700 (PDT) (envelope-from frankie@kyblik.pieskovisko.sk) Received: (qmail 90281 invoked by uid 19508); 6 May 2003 14:44:11 -0000 Message-Id: <20030506144411.72144.qmail@kyblik.pieskovisko.sk> Date: 6 May 2003 14:44:11 -0000 From: "Michal F.Hanula" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/51874: Apacer HandySteno should have DA_Q_NO_6_BYTE set X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Michal F.Hanula" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 14:50:07 -0000 >Number: 51874 >Category: kern >Synopsis: Apacer HandySteno should have DA_Q_NO_6_BYTE set >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 May 06 07:50:05 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Michal F. Hanula >Release: FreeBSD 4.8-STABLE i386 >Organization: >Environment: System: FreeBSD kyblik.pieskovisko.sk 4.8-STABLE FreeBSD 4.8-STABLE #0: Thu Apr 17 20:09:26 CEST 2003 root@kyblik.pieskovisko.sk:/usr/obj/usr/src/sys/KYBLIK i386 >Description: Apacer HandySteno 1.1 USB flash drive only works when the machine is booted with it. >How-To-Repeat: Boot the machine insert Apacer etc. -> doesn't work. Reboot -> works (and says that ``READ(6)/WRITE(6) not supported, increasing minimum_cmd_size to 10.'') >Fix: An entry should be added to src/sys/cam/scsi/scsi_da.c listing the drive with DA_Q_NO_6_BYTE >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 10:37:20 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C18537B401; Tue, 6 May 2003 10:37:20 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E690843F3F; Tue, 6 May 2003 10:37:19 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from freefall.freebsd.org (phk@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46HbJUp030216; Tue, 6 May 2003 10:37:19 -0700 (PDT) (envelope-from phk@freefall.freebsd.org) Received: (from phk@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46HbJ9Z030212; Tue, 6 May 2003 10:37:19 -0700 (PDT) Date: Tue, 6 May 2003 10:37:19 -0700 (PDT) From: Poul-Henning Kamp Message-Id: <200305061737.h46HbJ9Z030212@freefall.freebsd.org> To: phk@FreeBSD.org, freebsd-bugs@FreeBSD.org, harti@FreeBSD.org Subject: Re: kern/51831: ATM/HARP BPF support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 17:37:20 -0000 Synopsis: ATM/HARP BPF support Responsible-Changed-From-To: freebsd-bugs->harti Responsible-Changed-By: phk Responsible-Changed-When: Tue May 6 10:37:01 PDT 2003 Responsible-Changed-Why: Hi Harti, this sounds like your area... http://www.freebsd.org/cgi/query-pr.cgi?pr=51831 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 10:45:33 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0300D37B401; Tue, 6 May 2003 10:45:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 951FC43FB1; Tue, 6 May 2003 10:45:32 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from freefall.freebsd.org (phk@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46HjWUp030570; Tue, 6 May 2003 10:45:32 -0700 (PDT) (envelope-from phk@freefall.freebsd.org) Received: (from phk@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46HjWXU030566; Tue, 6 May 2003 10:45:32 -0700 (PDT) Date: Tue, 6 May 2003 10:45:32 -0700 (PDT) From: Poul-Henning Kamp Message-Id: <200305061745.h46HjWXU030566@freefall.freebsd.org> To: phk@FreeBSD.org, freebsd-bugs@FreeBSD.org, harti@FreeBSD.org Subject: Re: kern/28247: ATM/HARP driver for IDT and ForeLE ATM cards available. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 17:45:33 -0000 Synopsis: ATM/HARP driver for IDT and ForeLE ATM cards available. Responsible-Changed-From-To: freebsd-bugs->harti Responsible-Changed-By: phk Responsible-Changed-When: Tue May 6 10:45:07 PDT 2003 Responsible-Changed-Why: Another ATM bug for you. Yell if you don't want them. http://www.freebsd.org/cgi/query-pr.cgi?pr=28247 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:22:24 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 516EA37B401; Tue, 6 May 2003 12:22:24 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E76CA43F75; Tue, 6 May 2003 12:22:23 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JMNUp051461; Tue, 6 May 2003 12:22:23 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JMN5p051457; Tue, 6 May 2003 12:22:23 -0700 (PDT) Date: Tue, 6 May 2003 12:22:23 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061922.h46JMN5p051457@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, njl@FreeBSD.org Subject: Re: kern/51825: QUIRK: OTi USB Flash Memory keyring X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:22:24 -0000 Synopsis: QUIRK: OTi USB Flash Memory keyring Responsible-Changed-From-To: freebsd-bugs->njl Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:21:46 PDT 2003 Responsible-Changed-Why: Over to quirks maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=51825 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:24:06 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 504B937B401; Tue, 6 May 2003 12:24:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2E5043F85; Tue, 6 May 2003 12:24:05 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JO5Up051944; Tue, 6 May 2003 12:24:05 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JO5UZ051940; Tue, 6 May 2003 12:24:05 -0700 (PDT) Date: Tue, 6 May 2003 12:24:05 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061924.h46JO5UZ051940@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ache@FreeBSD.org Subject: Re: misc/51729: A patch that can make freebsd support zh_CN.GB18030 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:24:06 -0000 Synopsis: A patch that can make freebsd support zh_CN.GB18030 Responsible-Changed-From-To: freebsd-bugs->ache Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:23:44 PDT 2003 Responsible-Changed-Why: Over to locale maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=51729 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:25:02 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B453D37B401; Tue, 6 May 2003 12:25:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 551CA43F3F; Tue, 6 May 2003 12:25:02 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JP2Up052230; Tue, 6 May 2003 12:25:02 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JP2AR052222; Tue, 6 May 2003 12:25:02 -0700 (PDT) Date: Tue, 6 May 2003 12:25:02 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061925.h46JP2AR052222@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, njl@FreeBSD.org Subject: Re: kern/51675: Quirks for i-Bead MP3 player/USB key X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:25:03 -0000 Synopsis: Quirks for i-Bead MP3 player/USB key Responsible-Changed-From-To: freebsd-bugs->njl Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:24:33 PDT 2003 Responsible-Changed-Why: Over to quirks maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=51675 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:27:00 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 378B937B404; Tue, 6 May 2003 12:27:00 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD15943F3F; Tue, 6 May 2003 12:26:59 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JQxUp052791; Tue, 6 May 2003 12:26:59 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JQxKQ052787; Tue, 6 May 2003 12:26:59 -0700 (PDT) Date: Tue, 6 May 2003 12:26:59 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061926.h46JQxKQ052787@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/51657: apache problem X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:27:00 -0000 Old Synopsis: New Synopsis: apache problem Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:26:03 PDT 2003 Responsible-Changed-Why: apache is in ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=51657 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:29:40 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A89437B401; Tue, 6 May 2003 12:29:40 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9585643FAF; Tue, 6 May 2003 12:29:39 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JTdUp053610; Tue, 6 May 2003 12:29:39 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JTdXi053606; Tue, 6 May 2003 12:29:39 -0700 (PDT) Date: Tue, 6 May 2003 12:29:39 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061929.h46JTdXi053606@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ache@FreeBSD.org Subject: Re: misc/51506: zh_CN.eucCN is also zh_CN.GB2312 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:29:40 -0000 Synopsis: zh_CN.eucCN is also zh_CN.GB2312 Responsible-Changed-From-To: freebsd-bugs->ache Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:29:21 PDT 2003 Responsible-Changed-Why: Over to locale guru. http://www.freebsd.org/cgi/query-pr.cgi?pr=51506 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:31:02 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54C6A37B401; Tue, 6 May 2003 12:31:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6145C43FAF; Tue, 6 May 2003 12:31:01 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JV1Up054262; Tue, 6 May 2003 12:31:01 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JV1iZ054258; Tue, 6 May 2003 12:31:01 -0700 (PDT) Date: Tue, 6 May 2003 12:31:01 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061931.h46JV1iZ054258@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ache@FreeBSD.org Subject: Re: misc/51504: New file: src/share/mklocale/zh_CN.GBK.src X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:31:02 -0000 Synopsis: New file: src/share/mklocale/zh_CN.GBK.src Responsible-Changed-From-To: freebsd-bugs->ache Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:30:36 PDT 2003 Responsible-Changed-Why: Over to locale guru. http://www.freebsd.org/cgi/query-pr.cgi?pr=51504 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:32:18 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84FFF37B401; Tue, 6 May 2003 12:32:18 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25C5A43F3F; Tue, 6 May 2003 12:32:18 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JWIUp054660; Tue, 6 May 2003 12:32:18 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JWIhh054656; Tue, 6 May 2003 12:32:18 -0700 (PDT) Date: Tue, 6 May 2003 12:32:18 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061932.h46JWIhh054656@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, njl@FreeBSD.org Subject: Re: kern/51332: QUIRK: BNCHMARK DLT1 requires SA_QUIRK_1FM X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:32:18 -0000 Synopsis: QUIRK: BNCHMARK DLT1 requires SA_QUIRK_1FM Responsible-Changed-From-To: freebsd-bugs->njl Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:31:52 PDT 2003 Responsible-Changed-Why: Over to quirks maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=51332 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:35:00 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B04437B401; Tue, 6 May 2003 12:35:00 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC72F43FBF; Tue, 6 May 2003 12:34:59 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JYxUp055413; Tue, 6 May 2003 12:34:59 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JYxXo055409; Tue, 6 May 2003 12:34:59 -0700 (PDT) Date: Tue, 6 May 2003 12:34:59 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061934.h46JYxXo055409@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/47529: natd/ipfw lose TCP packets for firewalled machines X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:35:00 -0000 Synopsis: natd/ipfw lose TCP packets for firewalled machines Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:34:18 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=47529 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:36:06 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4526A37B401; Tue, 6 May 2003 12:36:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D687743F85; Tue, 6 May 2003 12:36:05 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46Ja5Up055654; Tue, 6 May 2003 12:36:05 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Ja5rT055650; Tue, 6 May 2003 12:36:05 -0700 (PDT) Date: Tue, 6 May 2003 12:36:05 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061936.h46Ja5rT055650@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/50216: kernel panic on 5.0-current when use ipfw2 with dynamic rules X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:36:06 -0000 Synopsis: kernel panic on 5.0-current when use ipfw2 with dynamic rules Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:35:46 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=50216 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:37:01 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A432A37B401; Tue, 6 May 2003 12:37:01 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32A3D43F93; Tue, 6 May 2003 12:37:01 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46Jb1Up055968; Tue, 6 May 2003 12:37:01 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Jb1Bp055964; Tue, 6 May 2003 12:37:01 -0700 (PDT) Date: Tue, 6 May 2003 12:37:01 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061937.h46Jb1Bp055964@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/51485: "Fatal trap 12" from bridge code with ipfw enabled, when passing a traceroute. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:37:02 -0000 Synopsis: "Fatal trap 12" from bridge code with ipfw enabled, when passing a traceroute. Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:36:41 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=51485 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:46:28 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB9BA37B401; Tue, 6 May 2003 12:46:28 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C11F43FB1; Tue, 6 May 2003 12:46:28 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JkSUp058763; Tue, 6 May 2003 12:46:28 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JkS2P058759; Tue, 6 May 2003 12:46:28 -0700 (PDT) Date: Tue, 6 May 2003 12:46:28 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061946.h46JkS2P058759@freefall.freebsd.org> To: void@shell.rawbw.com, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/38373: ipfw-graph reboots compaq 5500r X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:46:29 -0000 Synopsis: ipfw-graph reboots compaq 5500r State-Changed-From-To: feedback->closed State-Changed-By: johan State-Changed-When: Tue May 6 12:45:59 PDT 2003 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=38373 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:47:39 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4582C37B404; Tue, 6 May 2003 12:47:39 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5EC143FA3; Tue, 6 May 2003 12:47:38 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JlcUp059086; Tue, 6 May 2003 12:47:38 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JlatS059072; Tue, 6 May 2003 12:47:36 -0700 (PDT) Date: Tue, 6 May 2003 12:47:36 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061947.h46JlatS059072@freefall.freebsd.org> To: tsevy@epx.com, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/41557: periodic daily -> 500.ipfwdenied -> system reboot without explaination X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:47:39 -0000 Synopsis: periodic daily -> 500.ipfwdenied -> system reboot without explaination State-Changed-From-To: open->feedback State-Changed-By: johan State-Changed-When: Tue May 6 12:47:15 PDT 2003 State-Changed-Why: Is this still a problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=41557 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:49:53 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2730B37B401; Tue, 6 May 2003 12:49:53 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAE2243F93; Tue, 6 May 2003 12:49:52 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JnqUp059646; Tue, 6 May 2003 12:49:52 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Jnq5X059642; Tue, 6 May 2003 12:49:52 -0700 (PDT) Date: Tue, 6 May 2003 12:49:52 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061949.h46Jnq5X059642@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/51132: kernel part of ipfw1 processes 'to not me in recv rl0' incorrectly X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:49:53 -0000 Synopsis: kernel part of ipfw1 processes 'to not me in recv rl0' incorrectly Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:49:32 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=51132 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:50:48 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEB4B37B401; Tue, 6 May 2003 12:50:48 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EC0443FB1; Tue, 6 May 2003 12:50:48 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JomUp060206; Tue, 6 May 2003 12:50:48 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JomnE060202; Tue, 6 May 2003 12:50:48 -0700 (PDT) Date: Tue, 6 May 2003 12:50:48 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061950.h46JomnE060202@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/51274: ipfw2 create dynamic rules with parent number 65535 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:50:49 -0000 Synopsis: ipfw2 create dynamic rules with parent number 65535 Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:50:16 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=51274 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:51:38 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0EDC37B401; Tue, 6 May 2003 12:51:38 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D6B543F85; Tue, 6 May 2003 12:51:38 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JpcUp060424; Tue, 6 May 2003 12:51:38 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Jpcoh060420; Tue, 6 May 2003 12:51:38 -0700 (PDT) Date: Tue, 6 May 2003 12:51:38 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061951.h46Jpcoh060420@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/51341: ipfw rule 'deny icmp from any to any icmptype 5' matches fragmented icmp packets X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:51:39 -0000 Synopsis: ipfw rule 'deny icmp from any to any icmptype 5' matches fragmented icmp packets Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:51:20 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=51341 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:55:26 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E304237B401; Tue, 6 May 2003 12:55:26 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ECA143F75; Tue, 6 May 2003 12:55:26 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JtQUp060790; Tue, 6 May 2003 12:55:26 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46JtQXj060786; Tue, 6 May 2003 12:55:26 -0700 (PDT) Date: Tue, 6 May 2003 12:55:26 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061955.h46JtQXj060786@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/26534: Add an option to ipfw to log gid/uid of who caused the rule X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:55:27 -0000 Synopsis: Add an option to ipfw to log gid/uid of who caused the rule Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:52:54 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=26534 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:57:46 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A758137B401; Tue, 6 May 2003 12:57:46 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46C9543FB1; Tue, 6 May 2003 12:57:46 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46JvkUp061309; Tue, 6 May 2003 12:57:46 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Jvjah061305; Tue, 6 May 2003 12:57:45 -0700 (PDT) Date: Tue, 6 May 2003 12:57:45 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061957.h46Jvjah061305@freefall.freebsd.org> To: gary@outloud.org, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/33804: ipfw bug/problem X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:57:47 -0000 Synopsis: ipfw bug/problem State-Changed-From-To: open->feedback State-Changed-By: johan State-Changed-When: Tue May 6 12:57:02 PDT 2003 State-Changed-Why: Is this still a problem? Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:57:02 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=33804 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 12:59:04 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3575237B401; Tue, 6 May 2003 12:59:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAC2143F93; Tue, 6 May 2003 12:59:03 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46Jx3Up061732; Tue, 6 May 2003 12:59:03 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Jx38p061728; Tue, 6 May 2003 12:59:03 -0700 (PDT) Date: Tue, 6 May 2003 12:59:03 -0700 (PDT) From: Johan Karlsson Message-Id: <200305061959.h46Jx38p061728@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/46159: ipfw dynamic rules lifetime feature X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 19:59:04 -0000 Synopsis: ipfw dynamic rules lifetime feature Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 12:58:45 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=46159 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:02:43 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A729D37B401; Tue, 6 May 2003 13:02:43 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AC0143FB1; Tue, 6 May 2003 13:02:42 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46K2gUp062475; Tue, 6 May 2003 13:02:42 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46K2gB6062471; Tue, 6 May 2003 13:02:42 -0700 (PDT) Date: Tue, 6 May 2003 13:02:42 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062002.h46K2gB6062471@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/46564: IPFilter and IPFW processing order is not sensible> X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:02:44 -0000 Synopsis: IPFilter and IPFW processing order is not sensible> Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 13:02:05 PDT 2003 Responsible-Changed-Why: Over to ipfw maintainers who will hopefully know if this is the correct solution. http://www.freebsd.org/cgi/query-pr.cgi?pr=46564 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:06:20 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A06037B401; Tue, 6 May 2003 13:06:20 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A059443F75; Tue, 6 May 2003 13:06:19 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46K6JUp066713; Tue, 6 May 2003 13:06:19 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46K6J0K066709; Tue, 6 May 2003 13:06:19 -0700 (PDT) Date: Tue, 6 May 2003 13:06:19 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062006.h46K6J0K066709@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: bin/48015: make ipfw2 work with iplen ranges X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:06:20 -0000 Synopsis: make ipfw2 work with iplen ranges Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 13:05:58 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=48015 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:40:10 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E79C37B401 for ; Tue, 6 May 2003 13:40:10 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 332F543F75 for ; Tue, 6 May 2003 13:40:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46Ke9Up070932 for ; Tue, 6 May 2003 13:40:09 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Ke9Ix070931; Tue, 6 May 2003 13:40:09 -0700 (PDT) Resent-Date: Tue, 6 May 2003 13:40:09 -0700 (PDT) Resent-Message-Id: <200305062040.h46Ke9Ix070931@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Joseph Kacmarcik Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DF0A37B401 for ; Tue, 6 May 2003 13:35:06 -0700 (PDT) Received: from loche.chubbo.net (loche.chubbo.net [168.75.98.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id 106D143F3F for ; Tue, 6 May 2003 13:35:06 -0700 (PDT) (envelope-from joe@loche.chubbo.net) Received: (qmail 48627 invoked by uid 1000); 6 May 2003 20:30:37 -0000 Message-Id: <20030506203037.48626.qmail@loche.chubbo.net> Date: 6 May 2003 20:30:37 -0000 From: Joseph Kacmarcik To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/51892: can't ssh after su to different local user X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Joseph Kacmarcik List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:40:11 -0000 >Number: 51892 >Category: bin >Synopsis: can't ssh after su to different local user >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue May 06 13:40:08 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Joseph Kacmarcik >Release: FreeBSD 5.0-RELEASE-p3 i386 >Organization: chubbo.net >Environment: System: FreeBSD loche.chubbo.net 5.0-RELEASE-p3 FreeBSD 5.0-RELEASE-p3 #0: Mon Feb 24 11:39:12 PST 2003 joe@loche.chubbo.net:/usr/src/sys/i386/compile/CHUBBO_SMP7 i386 >Description: when i login via console or via ssh as user1, i can ssh out to other boxes (or localhost) without difficulty. if the remote host is not in my known_hosts, i'm prompted to add the key. when i login as user2, i get the same effects, i can ssh out with no trouble. in this situation, user2 is a common user and will not be allowed direct login with the sshd_config parameter DenyUsers. user1 and other users will su to user2 or 'sudo su' to user2. anytime i do 'su - user2' or 'sudo su - user2' and i try to ssh to a remote box (or localhost), i get "Host key verification failed.". i've also tried just 'su user2' and 'sudo su user2' to avoid importing the environment. i've tried homedirs that are completely empty thinking it may be the environment, changing shells, changing uid's. i just dunno what's goin on. i've looked at the output of ssh -vvv while user1 and after su to user2 and they are identical up to where i would get verification of an unknown host or password, but after su, i get the failure. i've run sshd in debug, su'ed to user2 and did ssh -vvv localhost. looking at the debug output, it stops at "debug1: waiting for SSH2_MSG_NEWKEYS" and immediately following is "Connection closed by 127.0.0.1" >How-To-Repeat: login as any user, su to a different local user (including root), try to ssh anywhere (including localhost). i have completely reinstalled freebsd 5 on a new drive and i get the same results. i've also tried this on other freebsd 5 machines with the same result. i've never needed to have this functionality on freebsd 5 but it does work on freebsd 4 as well as other OS'es. >Fix: if i login directly as root or su to root, i can ssh anywhere (including localhost). i don't consider this a resolution or workaround. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:40:52 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 900A337B401; Tue, 6 May 2003 13:40:52 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 322F443F3F; Tue, 6 May 2003 13:40:52 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46KeqUp071152; Tue, 6 May 2003 13:40:52 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46KeqoX071148; Tue, 6 May 2003 13:40:52 -0700 (PDT) Date: Tue, 6 May 2003 13:40:52 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062040.h46KeqoX071148@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/48172: ipfw does not log size and flags X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:40:52 -0000 Synopsis: ipfw does not log size and flags Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 13:40:34 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=48172 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:42:00 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00A3837B40B; Tue, 6 May 2003 13:42:00 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 943CF43F3F; Tue, 6 May 2003 13:41:59 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46KfxUp071224; Tue, 6 May 2003 13:41:59 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46KfxKq071220; Tue, 6 May 2003 13:41:59 -0700 (PDT) Date: Tue, 6 May 2003 13:41:59 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062041.h46KfxKq071220@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/49086: [patch] Make ipfw2 log to different syslog priorities X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:42:00 -0000 Synopsis: [patch] Make ipfw2 log to different syslog priorities Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 13:41:39 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=49086 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:43:03 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD58937B404; Tue, 6 May 2003 13:43:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7476F43F93; Tue, 6 May 2003 13:43:03 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46Kh3Up071289; Tue, 6 May 2003 13:43:03 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Kh3Iw071285; Tue, 6 May 2003 13:43:03 -0700 (PDT) Date: Tue, 6 May 2003 13:43:03 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062043.h46Kh3Iw071285@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: bin/49959: ipfw tee port rule skips parsing next rules X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:43:04 -0000 Synopsis: ipfw tee port rule skips parsing next rules Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 13:42:48 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=49959 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:46:37 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ED5A37B401; Tue, 6 May 2003 13:46:37 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A15C443F85; Tue, 6 May 2003 13:46:36 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46KkaUp071438; Tue, 6 May 2003 13:46:36 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Kkaqr071434; Tue, 6 May 2003 13:46:36 -0700 (PDT) Date: Tue, 6 May 2003 13:46:36 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062046.h46Kkaqr071434@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: kern/51182: ipfw2. -d list shows couters for dynamic rules X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:46:37 -0000 Synopsis: ipfw2. -d list shows couters for dynamic rules Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 13:46:19 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=51182 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:47:17 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A27337B404; Tue, 6 May 2003 13:47:17 -0700 (PDT) Received: from mx1.lublin.pl (mx1.lublin.pl [212.182.63.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F95443F93; Tue, 6 May 2003 13:47:15 -0700 (PDT) (envelope-from pawmal@unia.3lo.lublin.pl) Received: from proxy.zin.lublin.pl ([212.182.126.66]:24700 "EHLO towah-xp") by mx1.lublin.pl with ESMTP id ; Tue, 6 May 2003 22:47:04 +0200 From: "Pawel Malachowski" Organization: unidentified flying modems To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Date: Tue, 06 May 2003 22:47:21 +0200 MIME-Version: 1.0 Message-ID: <3EB83B79.16633.10E9496@localhost> Priority: normal X-mailer: Pegasus Mail for Windows (v4.02a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Subject: Re: kern/46564: IPFilter and IPFW processing order is not sensible> X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:47:17 -0000 Hello, Here is some example: (private IPs)LAN---(fxp1)BOX(fxp0)---Internet There are: . dummynet running on fxp0 . ipnat running on fxp0 Right now outgoing packets on fxp0 go through ipnat and then through dummynet. It is not possible to shape this traffic on per-user basis (for example with src-ip mask) cause after ipnatting all packets have the same source IP. Possible sollutions are: . use dummynet on fxp0 This is not so good idea if I have a huge number of local NICs and subnets cause I have to make exceptions (ipfw skip) for local traffic. It is very easy and natural to use dummynet on fxp0 interface for bandwith limitaion of `Internet' traffic. . use natd instead of ipnat Sucessfully tested, but I simply prefer ipnat. :) So, probably packets flow should be: incoming: IPFilter -> IPFW outgoing: IPFW -> IPFilter This code is `for private use' and is quite bad but does that (4.8): http://unia.3lo.lublin.pl/~pawmal/freebsd/ip_output-ipfw-ipf.diff I know submitter tried something similar on his own, too. However, allowing user to decide about order (using sysctls?) would be the best solution. regards, -- Pawel Malachowski From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:48:36 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07DC437B401; Tue, 6 May 2003 13:48:36 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EF1143F93; Tue, 6 May 2003 13:48:35 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46KmZUp071509; Tue, 6 May 2003 13:48:35 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46KmZ8w071505; Tue, 6 May 2003 13:48:35 -0700 (PDT) Date: Tue, 6 May 2003 13:48:35 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062048.h46KmZ8w071505@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ipfw@FreeBSD.org Subject: Re: bin/51750: ipfw2.c typos X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:48:36 -0000 Synopsis: ipfw2.c typos Responsible-Changed-From-To: freebsd-bugs->ipfw Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 13:48:16 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=51750 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:51:34 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AD4D37B401; Tue, 6 May 2003 13:51:34 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D50B43F3F; Tue, 6 May 2003 13:51:33 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46KpXUp071837; Tue, 6 May 2003 13:51:33 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46KpW4n071833; Tue, 6 May 2003 13:51:32 -0700 (PDT) Date: Tue, 6 May 2003 13:51:32 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062051.h46KpW4n071833@freefall.freebsd.org> To: stefan@extum.com, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, qa@FreeBSD.org Subject: Re: i386/41437: sysinstall 4.6 RELEASE - hang X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:51:34 -0000 Synopsis: sysinstall 4.6 RELEASE - hang State-Changed-From-To: open->feedback State-Changed-By: johan State-Changed-When: Tue May 6 13:50:47 PDT 2003 State-Changed-Why: Is this still a problem with more recent releases such as 4.8? Responsible-Changed-From-To: freebsd-bugs->qa Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 13:50:47 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=41437 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:53:04 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 569CF37B401; Tue, 6 May 2003 13:53:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7E6F43F85; Tue, 6 May 2003 13:53:03 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46Kr3Up071902; Tue, 6 May 2003 13:53:03 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Kr3K6071898; Tue, 6 May 2003 13:53:03 -0700 (PDT) Date: Tue, 6 May 2003 13:53:03 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062053.h46Kr3K6071898@freefall.freebsd.org> To: martin.kirst@epost.de, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, qa@FreeBSD.org Subject: Re: i386/41860: sysinstall rel. 4.5 and 4.6 hangs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:53:04 -0000 Synopsis: sysinstall rel. 4.5 and 4.6 hangs State-Changed-From-To: open->feedback State-Changed-By: johan State-Changed-When: Tue May 6 13:52:19 PDT 2003 State-Changed-Why: Is this still a problem with more recent releases such as 4.8? Responsible-Changed-From-To: freebsd-bugs->qa Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 13:52:19 PDT 2003 Responsible-Changed-Why: Over to group of maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=41860 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:54:01 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3D2F37B404; Tue, 6 May 2003 13:54:01 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E716943F75; Tue, 6 May 2003 13:54:00 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46Ks0Up071958; Tue, 6 May 2003 13:54:00 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46Ks0S3071954; Tue, 6 May 2003 13:54:00 -0700 (PDT) Date: Tue, 6 May 2003 13:54:00 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062054.h46Ks0S3071954@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, qa@FreeBSD.org Subject: Re: bin/48341: Sysinstall deletes mbr although it should not X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:54:02 -0000 Synopsis: Sysinstall deletes mbr although it should not Responsible-Changed-From-To: freebsd-bugs->qa Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 13:53:46 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=48341 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 13:55:14 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC87837B401; Tue, 6 May 2003 13:55:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B7F943FA3; Tue, 6 May 2003 13:55:14 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46KtEUp072036; Tue, 6 May 2003 13:55:14 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46KtEXK072032; Tue, 6 May 2003 13:55:14 -0700 (PDT) Date: Tue, 6 May 2003 13:55:14 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062055.h46KtEXK072032@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, qa@FreeBSD.org Subject: Re: bin/30837: Sysinstall doesn't set the schg flag on the sensitive files X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 20:55:15 -0000 Synopsis: Sysinstall doesn't set the schg flag on the sensitive files Responsible-Changed-From-To: freebsd-bugs->qa Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 13:54:59 PDT 2003 Responsible-Changed-Why: Over to maintainer group. http://www.freebsd.org/cgi/query-pr.cgi?pr=30837 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 14:10:38 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5B3037B401; Tue, 6 May 2003 14:10:38 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84D8543F85; Tue, 6 May 2003 14:10:38 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46LAcUp076139; Tue, 6 May 2003 14:10:38 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46LAcYI076135; Tue, 6 May 2003 14:10:38 -0700 (PDT) Date: Tue, 6 May 2003 14:10:38 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062110.h46LAcYI076135@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: gnu/51733: [PATCH] Obsolete freebsd local hack to info(1) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 21:10:39 -0000 Synopsis: [PATCH] Obsolete freebsd local hack to info(1) Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 14:10:15 PDT 2003 Responsible-Changed-Why: Over to texinfo maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=51733 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 14:12:59 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E388D37B401; Tue, 6 May 2003 14:12:59 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82C5B43F85; Tue, 6 May 2003 14:12:59 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46LCxUp076247; Tue, 6 May 2003 14:12:59 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46LCxYY076243; Tue, 6 May 2003 14:12:59 -0700 (PDT) Date: Tue, 6 May 2003 14:12:59 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062112.h46LCxYY076243@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ache@FreeBSD.org Subject: Re: misc/51085: FreeBSD is missing ja_JP.eucJP locale. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 21:13:00 -0000 Synopsis: FreeBSD is missing ja_JP.eucJP locale. Responsible-Changed-From-To: freebsd-bugs->ache Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 14:12:42 PDT 2003 Responsible-Changed-Why: Over to locale maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=51085 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 14:14:48 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F15937B401; Tue, 6 May 2003 14:14:48 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFE6F43FA3; Tue, 6 May 2003 14:14:47 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46LElUp076302; Tue, 6 May 2003 14:14:47 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46LElrq076298; Tue, 6 May 2003 14:14:47 -0700 (PDT) Date: Tue, 6 May 2003 14:14:47 -0700 (PDT) From: Johan Karlsson Message-Id: <200305062114.h46LElrq076298@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, njl@FreeBSD.org Subject: Re: kern/50297: QUIRK: Apacer Handydrive 256M USB Disk X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 21:14:48 -0000 Synopsis: QUIRK: Apacer Handydrive 256M USB Disk Responsible-Changed-From-To: freebsd-bugs->njl Responsible-Changed-By: johan Responsible-Changed-When: Tue May 6 14:14:29 PDT 2003 Responsible-Changed-Why: Over to quirks maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=50297 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 16:13:06 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCC8C37B401; Tue, 6 May 2003 16:13:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6956043F3F; Tue, 6 May 2003 16:13:06 -0700 (PDT) (envelope-from gerald@FreeBSD.org) Received: from freefall.freebsd.org (gerald@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h46ND6Up089049; Tue, 6 May 2003 16:13:06 -0700 (PDT) (envelope-from gerald@freefall.freebsd.org) Received: (from gerald@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h46ND6HB089045; Tue, 6 May 2003 16:13:06 -0700 (PDT) Date: Tue, 6 May 2003 16:13:06 -0700 (PDT) From: Gerald Pfeifer Message-Id: <200305062313.h46ND6HB089045@freefall.freebsd.org> To: gerald@FreeBSD.org, freebsd-bugs@FreeBSD.org, gerald@FreeBSD.org Subject: Re: i386/50598: gcc -pg -fPIC creates garbage assembly output [patch] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2003 23:13:07 -0000 Synopsis: gcc -pg -fPIC creates garbage assembly output [patch] Responsible-Changed-From-To: freebsd-bugs->gerald Responsible-Changed-By: gerald Responsible-Changed-When: Tue May 6 16:12:17 PDT 2003 Responsible-Changed-Why: I'll try to resolve this, one way or the other. http://www.freebsd.org/cgi/query-pr.cgi?pr=50598 From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 19:00:11 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C38AD37B401 for ; Tue, 6 May 2003 19:00:11 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C262443FBD for ; Tue, 6 May 2003 19:00:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h47206Up007435 for ; Tue, 6 May 2003 19:00:06 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h47206VH007434; Tue, 6 May 2003 19:00:06 -0700 (PDT) Resent-Date: Tue, 6 May 2003 19:00:06 -0700 (PDT) Resent-Message-Id: <200305070200.h47206VH007434@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, pscott@sthe-frontier.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16AE037B401 for ; Tue, 6 May 2003 18:54:12 -0700 (PDT) Received: from the-frontier.org (ns1.the-frontier.org [216.86.199.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83B2E43FD7 for ; Tue, 6 May 2003 18:54:11 -0700 (PDT) (envelope-from pscott@the-frontier.org) Received: (from root@localhost) by the-frontier.org (8.9.3/8.9.3) id SAA74505; Tue, 6 May 2003 18:54:11 -0700 (PDT) (envelope-from pscott) Message-Id: <200305070154.SAA74505@the-frontier.org> Date: Tue, 6 May 2003 18:54:11 -0700 (PDT) From: pscott@the-frontier.org To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.2 Subject: misc/51909: Error in startrek fortune data base X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: pscott@sthe-frontier.org List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 02:00:12 -0000 >Number: 51909 >Category: misc >Synopsis: Error in startrek fortune data base >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 06 19:00:06 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Paul A. Scott >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: N/A >Description: Grammatical error in /usr/share/games/fortune/startrek data base. -"The release of emotion is what keeps us health. Emotionally healthy." +"The release of emotion is what keeps us healthy. Emotionally healthy." >How-To-Repeat: N/A >Fix: --- startrek Fri Jul 28 06:05:34 2000 +++ startrek-new Tue May 6 18:39:45 2003 @@ -491,11 +491,11 @@ % ... The prejudices people feel about each other disappear when then get to know each other. -- Kirk, "Elaan of Troyius", stardate 4372.5 % -"The release of emotion is what keeps us health. Emotionally healthy." +"The release of emotion is what keeps us healthy. Emotionally healthy." "That may be, Doctor. However, I have noted that the healthy release of emotion is frequently unhealthy for those closest to you." -- McCoy and Spock, "Plato's Stepchildren", stardate 5784.3 % >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 21:10:15 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3282837B40C for ; Tue, 6 May 2003 21:10:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3215843FBD for ; Tue, 6 May 2003 21:10:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h474ACUp022381 for ; Tue, 6 May 2003 21:10:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h474ACaF022380; Tue, 6 May 2003 21:10:12 -0700 (PDT) Resent-Date: Tue, 6 May 2003 21:10:12 -0700 (PDT) Resent-Message-Id: <200305070410.h474ACaF022380@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Yeske Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C08AB37B408 for ; Tue, 6 May 2003 21:05:19 -0700 (PDT) Received: from web13509.mail.yahoo.com (web13509.mail.yahoo.com [216.136.173.13]) by mx1.FreeBSD.org (Postfix) with SMTP id BEFCB43F85 for ; Tue, 6 May 2003 21:05:18 -0700 (PDT) (envelope-from dyeske@yahoo.com) Received: from [68.26.179.27] by web13509.mail.yahoo.com via HTTP; Tue, 06 May 2003 21:05:18 PDT Message-Id: <20030507040518.85358.qmail@web13509.mail.yahoo.com> Date: Tue, 6 May 2003 21:05:18 -0700 (PDT) From: David Yeske To: FreeBSD-gnats-submit@FreeBSD.org cc: arved cc: rwatson@FreeBSD.org Subject: conf/51910: ucom0 should be generated by MAKEDEV all X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 04:10:15 -0000 >Number: 51910 >Category: conf >Synopsis: ucom0 should be generated by MAKEDEV all >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 06 21:10:11 PDT 2003 >Closed-Date: >Last-Modified: >Originator: David Yeske >Release: FreeBSD 4.8-RC i386 >Organization: >Environment: System: FreeBSD blue 4.8-RC FreeBSD 4.8-RC #0: Thu Mar 20 03:51:59 EST 2003 root@blue:/usr/obj/usr/src/sys/BLUE i386 >Description: ucom0 is not generated from MAKEDEV all >How-To-Repeat: >Fix: http://futurebsd.sourceforge.net/freebsd/src/patch-MAKEDEV Index: MAKEDEV =================================================================== RCS file: /home/ncvs/src/etc/Attic/MAKEDEV,v retrieving revision 1.243.2.57 diff -u -r1.243.2.57 MAKEDEV --- MAKEDEV 10 Feb 2003 11:35:53 -0000 1.243.2.57 +++ MAKEDEV 7 May 2003 03:52:08 -0000 @@ -328,7 +328,7 @@ sh MAKEDEV iic0 iic1 # cdev, I2C device sh MAKEDEV smb0 smb1 # cdev, SMBus device sh MAKEDEV usb usb0 uhid0 ums0 ulpt0 ugen0 # cdev, USB devices - sh MAKEDEV urio0 uscanner0 umodem0 # cdev, USB devices too + sh MAKEDEV urio0 uscanner0 umodem0 ucom0 # cdev, USB devices too sh MAKEDEV bpf0 bpf1 bpf2 bpf3 # cdev, network sh MAKEDEV ipl tun0 tun1 tun2 tun3 # cdev, network sh MAKEDEV tap0 tap1 tap2 tap3 # cdev, network __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 21:38:28 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09B4637B404; Tue, 6 May 2003 21:38:28 -0700 (PDT) Received: from sccrmhc01.attbi.com (sccrmhc01.attbi.com [204.127.202.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id E31FF43F3F; Tue, 6 May 2003 21:38:26 -0700 (PDT) (envelope-from DougB@freebsd.org) Received: from master.dougb.net (12-234-22-23.client.attbi.com[12.234.22.23]) by attbi.com (sccrmhc01) with SMTP id <20030507043825001000vuhhe>; Wed, 7 May 2003 04:38:26 +0000 Date: Tue, 6 May 2003 21:38:23 -0700 (PDT) From: Doug Barton To: David Yeske In-Reply-To: <20030507040518.85358.qmail@web13509.mail.yahoo.com> Message-ID: <20030506213717.L5620@znfgre.qbhto.arg> References: <20030507040518.85358.qmail@web13509.mail.yahoo.com> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: arved cc: FreeBSD-gnats-submit@FreeBSD.org cc: rwatson@FreeBSD.org cc: freebsd-bugs@FreeBSD.org Subject: Re: conf/51910: ucom0 should be generated by MAKEDEV all X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 04:38:28 -0000 On Tue, 6 May 2003, David Yeske wrote: > ucom0 is not generated from MAKEDEV all You haven't said why this is a problem. Since most users don't have these devices, it's probably up to the ones who do to deal with this. Just a thought. Doug From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 21:40:02 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D939A37B401 for ; Tue, 6 May 2003 21:40:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2A1A43FBF for ; Tue, 6 May 2003 21:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h474e1Up023502 for ; Tue, 6 May 2003 21:40:01 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h474e1V6023501; Tue, 6 May 2003 21:40:01 -0700 (PDT) Resent-Date: Tue, 6 May 2003 21:40:01 -0700 (PDT) Resent-Message-Id: <200305070440.h474e1V6023501@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Yeske Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D52AE37B401 for ; Tue, 6 May 2003 21:37:55 -0700 (PDT) Received: from web13505.mail.yahoo.com (web13505.mail.yahoo.com [216.136.175.84]) by mx1.FreeBSD.org (Postfix) with SMTP id 079A843FB1 for ; Tue, 6 May 2003 21:37:55 -0700 (PDT) (envelope-from dyeske@yahoo.com) Received: from [68.26.129.196] by web13505.mail.yahoo.com via HTTP; Tue, 06 May 2003 21:37:54 PDT Message-Id: <20030507043754.31846.qmail@web13505.mail.yahoo.com> Date: Tue, 6 May 2003 21:37:54 -0700 (PDT) From: David Yeske To: FreeBSD-gnats-submit@FreeBSD.org cc: arved cc: mini@FreeBSD.org Subject: kern/51911: update networking fields in loader.conf X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 04:40:03 -0000 X-List-Received-Date: Wed, 07 May 2003 04:40:03 -0000 >Number: 51911 >Category: kern >Synopsis: update networking fields in loader.conf >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 06 21:40:01 PDT 2003 >Closed-Date: >Last-Modified: >Originator: David Yeske >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD aurora 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Apr 29 23:24:37 EDT 2003 root@aurora:/usr/obj/usr/src/sys/AURORA i386 >Description: some networking fields are missing from loader.conf >How-To-Repeat: >Fix: http://futurebsd.sourceforge.net/freebsd/src/patch-loader.conf __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 21:40:04 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D77BD37B401 for ; Tue, 6 May 2003 21:40:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CE9543F93 for ; Tue, 6 May 2003 21:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h474e4Up023511 for ; Tue, 6 May 2003 21:40:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h474e44g023510; Tue, 6 May 2003 21:40:04 -0700 (PDT) Date: Tue, 6 May 2003 21:40:04 -0700 (PDT) Message-Id: <200305070440.h474e44g023510@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Doug Barton Subject: Re: conf/51910: ucom0 should be generated by MAKEDEV all X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Doug Barton List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 04:40:05 -0000 The following reply was made to PR conf/51910; it has been noted by GNATS. From: Doug Barton To: David Yeske Cc: FreeBSD-gnats-submit@FreeBSD.org, arved , rwatson@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/51910: ucom0 should be generated by MAKEDEV all Date: Tue, 6 May 2003 21:38:23 -0700 (PDT) On Tue, 6 May 2003, David Yeske wrote: > ucom0 is not generated from MAKEDEV all You haven't said why this is a problem. Since most users don't have these devices, it's probably up to the ones who do to deal with this. Just a thought. Doug From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 21:58:03 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBB0637B40A for ; Tue, 6 May 2003 21:58:03 -0700 (PDT) Received: from web13509.mail.yahoo.com (web13509.mail.yahoo.com [216.136.173.13]) by mx1.FreeBSD.org (Postfix) with SMTP id 3DDF943FAF for ; Tue, 6 May 2003 21:58:01 -0700 (PDT) (envelope-from dyeske@yahoo.com) Message-ID: <20030507045759.90653.qmail@web13509.mail.yahoo.com> Received: from [68.26.179.53] by web13509.mail.yahoo.com via HTTP; Tue, 06 May 2003 21:57:59 PDT Date: Tue, 6 May 2003 21:57:59 -0700 (PDT) From: David Yeske To: Doug Barton In-Reply-To: <20030506213717.L5620@znfgre.qbhto.arg> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: stable@freebsd.org cc: rwatson@FreeBSD.org cc: arved cc: FreeBSD-gnats-submit@FreeBSD.org cc: freebsd-bugs@FreeBSD.org cc: Mario Subject: Re: conf/51910: ucom0 should be generated by MAKEDEV all X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 04:58:04 -0000 --- Doug Barton wrote: > On Tue, 6 May 2003, David Yeske wrote: > > > ucom0 is not generated from MAKEDEV all > > You haven't said why this is a problem. Since most users don't have these > devices, it's probably up to the ones who do to deal with this. Just a > thought. > > Doug Most users don't have urio0 or umodem0, should we remove those from being generated from MAKEDEV all? When should a device be in MAKEDEV, but not be generated via MAKEDEV all? __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com From owner-freebsd-bugs@FreeBSD.ORG Tue May 6 22:00:26 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94D0C37B401 for ; Tue, 6 May 2003 22:00:26 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F51743FA3 for ; Tue, 6 May 2003 22:00:26 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h4750QUp024287 for ; Tue, 6 May 2003 22:00:26 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h4750Qx8024286; Tue, 6 May 2003 22:00:26 -0700 (PDT) Date: Tue, 6 May 2003 22:00:26 -0700 (PDT) Message-Id: <200305070500.h4750Qx8024286@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: David Yeske Subject: Re: conf/51910: ucom0 should be generated by MAKEDEV all X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Yeske List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 05:00:26 -0000 The following reply was made to PR conf/51910; it has been noted by GNATS. From: David Yeske To: Doug Barton Cc: FreeBSD-gnats-submit@FreeBSD.org, arved , rwatson@FreeBSD.org, freebsd-bugs@FreeBSD.org, stable@freebsd.org, Mario Subject: Re: conf/51910: ucom0 should be generated by MAKEDEV all Date: Tue, 6 May 2003 21:57:59 -0700 (PDT) --- Doug Barton wrote: > On Tue, 6 May 2003, David Yeske wrote: > > > ucom0 is not generated from MAKEDEV all > > You haven't said why this is a problem. Since most users don't have these > devices, it's probably up to the ones who do to deal with this. Just a > thought. > > Doug Most users don't have urio0 or umodem0, should we remove those from being generated from MAKEDEV all? When should a device be in MAKEDEV, but not be generated via MAKEDEV all? __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com From owner-freebsd-bugs@FreeBSD.ORG Wed May 7 05:10:06 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4505D37B401 for ; Wed, 7 May 2003 05:10:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1687F43FB1 for ; Wed, 7 May 2003 05:10:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h47CA4Up006963 for ; Wed, 7 May 2003 05:10:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h47CA4Xg006962; Wed, 7 May 2003 05:10:04 -0700 (PDT) Resent-Date: Wed, 7 May 2003 05:10:04 -0700 (PDT) Resent-Message-Id: <200305071210.h47CA4Xg006962@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Brage Førland Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF99237B401 for ; Wed, 7 May 2003 05:03:25 -0700 (PDT) Received: from dionysos.zoo.uib.no (dionysos.zoo.uib.no [129.177.182.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8422143F75 for ; Wed, 7 May 2003 05:03:24 -0700 (PDT) (envelope-from brage@dionysos.nml.uib.no) Received: from dionysos.zoo.uib.no (localhost [127.0.0.1]) h47C3MNh068383; Wed, 7 May 2003 14:03:22 +0200 (CEST) (envelope-from brage@dionysos.zoo.uib.no) Received: (from brage@localhost) by dionysos.zoo.uib.no (8.12.9/8.12.5/Submit) id h47C3Mh7068382; Wed, 7 May 2003 14:03:22 +0200 (CEST) (envelope-from brage) Message-Id: <200305071203.h47C3Mh7068382@dionysos.zoo.uib.no> Date: Wed, 7 May 2003 14:03:22 +0200 (CEST) From: Brage Førland To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: brage@zoo.uib.no Subject: misc/51920: Collation for no_NO.ISO8859-1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Brage Førland List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 12:10:06 -0000 >Number: 51920 >Category: misc >Synopsis: Collation for no_NO.ISO8859-1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed May 07 05:10:04 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Brage Førland >Release: FreeBSD 4.8-RC i386 >Organization: Dept. of Zoology, University of Bergen, Norway >Environment: System: FreeBSD dionysos.zoo.uib.no 4.8-RC FreeBSD 4.8-RC #4: Mon Mar 31 12:03:33 CEST 2003 brage@dionysos.zoo.uib.no:/usr/obj/usr/src/sys/DIONYSOS i386 >Description: no_NO.ISO8859-1/15 collation not present >How-To-Repeat: >Fix: The attached patch adds collation sequences for no_NO.ISO8859-1 and no_NO.ISO8859-15 diff -u -r -N /usr/src/share/colldef.orig/Makefile /usr/src/share/colldef/Makefile --- /usr/src/share/colldef.orig/Makefile Wed May 7 13:25:40 2003 +++ /usr/src/share/colldef/Makefile Wed May 7 13:24:59 2003 @@ -20,6 +20,8 @@ la_LN.ISO8859-2 \ la_LN.ISO8859-4 \ la_LN.US-ASCII \ + no_NO.ISO8859-1 \ + no_NO.ISO8859-15 \ lt_LT.ISO8859-4 \ pl_PL.ISO8859-2 \ ru_RU.CP866 \ @@ -39,7 +41,7 @@ ZHLINKS= zh_TW.Big5 LATIN1LINKS= af_ZA da_DK en_AU en_CA en_GB en_NZ en_US fi_FI \ - fr_BE fr_CA fr_CH fr_FR it_CH it_IT nl_BE nl_NL no_NO \ + fr_BE fr_CA fr_CH fr_FR it_CH it_IT nl_BE nl_NL \ pt_PT LATIN2LINKS= hr_HR hu_HU ro_RO sl_SI @@ -66,6 +68,8 @@ la_LN.ISO8859-1.out: map.ISO8859-1 la_LN.ISO8859-2.out: map.ISO8859-2 la_LN.ISO8859-4.out: map.ISO8859-4 +no_NO.ISO8859-15.out: map.ISO8859-15 +no_NO.ISO8859-1.out: map.ISO8859-1 lt_LT.ISO8859-4.out: map.ISO8859-4 pl_PL.ISO8859-2.out: map.ISO8859-2 ru_RU.CP866.out: map.CP866 diff -u -r -N /usr/src/share/colldef.orig/no_NO.ISO8859-1.src /usr/src/share/colldef/no_NO.ISO8859-1.src --- /usr/src/share/colldef.orig/no_NO.ISO8859-1.src Thu Jan 1 01:00:00 1970 +++ /usr/src/share/colldef/no_NO.ISO8859-1.src Wed May 7 13:22:43 2003 @@ -0,0 +1,44 @@ +# Norwegian/ISO 8859-1 (backward compatible with ASCII) +# +# (Mostly based on the Swedish sv_SE.ISO_8859-1) +# +# In order to stay backward compatible with ASCII "aa" is collated +# as "aa". To get correct Norwegian collation for "aa", replace +# with (,aa) and with (,AA,Aa) below. +# +# $Id$ +# +charmap map.ISO8859-1 +order \ +# controls + ;...;;;...;;\ +# + ;;!;;\";<<<>;/>>;;\ + ;;;;;\ + %;&;<',>;';\(;\);*;+;<+->;<-:>;<*X>;\,;<-->;-;.;/;\ +# digits + (0,<14>,<12>,<34>);(1,<1S>);(2,<2S>);(3,<3S>);4;...;9;\ +# + :;\;;\<;=;>;?;;;;;;;\ +# capital + (A,,,>,);\ + B;(C,);(D,);(E,,,>,);\ + F;G;H;(I,,,>,);\ + J;...;M;(N,);(O,,,,>);\ + P;...;T;(U,,,>);\ + (V,W);X;(Y,,);Z;(,);(,);;\ + ;\ +# + [;\\;];^;<':>;_;<'m>;<''>;`;\ +# small + (a,,,>,);\ + b;(c,);(d,);(e,,,>,);\ + f;g;h;(i,,,>,);\ + j;...;m;(n,);(o,,,,>);\ + p;...;t;(u,,,>);\ + (v,w);x;(y,,,);z;(,);(,);;\ + ;\ +# + \{;;|;;\};~;<.M>;;;
;\ +# remains + <-a>;<-o> >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed May 7 06:04:43 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20DFF37B401; Wed, 7 May 2003 06:04:43 -0700 (PDT) Received: from mail.uni-bielefeld.de (mail2.uni-bielefeld.de [129.70.4.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CF5443FBF; Wed, 7 May 2003 06:04:41 -0700 (PDT) (envelope-from lars.koeller@uni-bielefeld.de) Received: from rayadm.hrz.uni-bielefeld.de (rayadm.hrz.uni-bielefeld.de [129.70.202.15]) by mail.uni-bielefeld.de (Sun Internet Mail Server sims.4.0.2000.10.12.16.25.p8) with ESMTP id <0HEI00AECPMEJP@mail.uni-bielefeld.de>; Wed, 7 May 2003 15:03:52 +0200 (MET DST) Received: from rayadm.hrz.uni-bielefeld.de (lkoeller@localhost) h47D3mC08065; Wed, 07 May 2003 15:03:50 +0200 (MEST) Date: Wed, 07 May 2003 15:03:48 +0200 From: Lars =?iso-8859-1?Q?K=F6ller?= X-Face: eCcoCV}FjV*O{6>[1$XP/e%]TJhEw2MF33dFh)^HM7Gfd=[/(4+0a$~ Sender: lars.koeller@uni-bielefeld.de To: Mark Cammidge Message-id: <200305071303.h47D3mC08065@rayadm.hrz.uni-bielefeld.de> MIME-version: 1.0 X-Mailer: exmh version 2.6.1 02/18/2003 with nmh-1.0.4 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT cc: freebsd-bugs@freebsd.org cc: freebsd-questions@freebsd.org cc: Lars =?iso-8859-1?Q?K=F6ller?= Subject: Re: HELP: TCP stack problem in 4.8-R with rsh connects (second channel) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 13:04:44 -0000 ---------- Hi, this mail results out of my news group posting concerning PR bin/51586 In reply to Mark Cammidge who wrote: > > > Sporadically the rshd can't open the second tcp connection back > > to the port the rsh-client has announced. > > Hi. I don't have a simple solution for you, but > some things you may want to try: > > - Check whether a FreeBSD-Solaris or Solaris-FreeBSD > combination works. That may not be useful to you, > but I think it will help other people to track > down the source of the problem. I've tested this, it doesen't change anything! > - Try update to FreeBSD-STABLE - the problem may have > been fixed already. > - Try update to FreeBSD-CURRENT - it's pretty stable > and may not suffer from the same problem. Hm, I don't like this, really for production machines. > - Use SSH instead of rsh. I suspect most people are > no longer using rsh, and ssh is meant to be pretty > much a drop in replacement. You can set it up to > avoid needing passwords. It will probably be > somewhat slower though. That's the point, there is no need to crypt, and performance would be too poor! > - Post to one of the mailing lists - the developers > who work on this soft of stuff are more likely to > read about it there than they are in the newsgroup. I have! Thanks and best regards Lars -- E-Mail: Lars.Koeller@Uni-Bielefeld.DE \ Lars Köller lkoeller@FreeBSD.org \ CC University of PGP: http://www.uk.pgp.net/pgpnet/wwwkeys.html \ Bielefeld, Germany Key-ID: A430D499 \ Tel: +49 521 106 4964 ----------- FreeBSD, what else? ---- http://www.freebsd.org ------------- From owner-freebsd-bugs@FreeBSD.ORG Wed May 7 06:20:14 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABCD037B401 for ; Wed, 7 May 2003 06:20:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76E1743FA3 for ; Wed, 7 May 2003 06:20:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h47DKDUp034998 for ; Wed, 7 May 2003 06:20:13 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h47DKDqb034997; Wed, 7 May 2003 06:20:13 -0700 (PDT) Resent-Date: Wed, 7 May 2003 06:20:13 -0700 (PDT) Resent-Message-Id: <200305071320.h47DKDqb034997@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eric Masson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71A9337B401 for ; Wed, 7 May 2003 06:12:04 -0700 (PDT) Received: from musique.teaser.net (musique.teaser.net [213.91.2.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E67B43F3F for ; Wed, 7 May 2003 06:12:01 -0700 (PDT) (envelope-from e-masson@kisoft-services.com) Received: from srvbsdchassv.interne.kisoft-services.com (chantilly.kisoft-services.com [193.56.60.242]) by musique.teaser.net (Postfix) with ESMTP id 97E647252A for ; Wed, 7 May 2003 15:11:59 +0200 (CEST) Received: from localhost (localhost [127.0.0.1])26822102C1D for ; Wed, 7 May 2003 15:11:59 +0200 (CEST) Received: from by localhost (amavisd-new, port ) id cLo4Tq7c for ; Wed, 7 May 2003 15:11:46 +0200 (CEST) Received: from srvbsdnanssv.interne.kisoft-services.com (srvbsdnanssv.interne.kisoft-services.com [192.168.1.1])8CA7A102C1B for ; Wed, 7 May 2003 15:11:46 +0200 (CEST) Received: by srvbsdnanssv.interne.kisoft-services.com (Postfix, from userid 1001) id CD4965DCF; Wed, 7 May 2003 15:11:45 +0200 (CEST) Message-Id: <20030507131145.CD4965DCF@srvbsdnanssv.interne.kisoft-services.com> Date: Wed, 7 May 2003 15:11:45 +0200 (CEST) From: Eric Masson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/51922: IPSEC_FILTERGIF support for FAST_IPSEC X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Eric Masson List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 13:20:15 -0000 >Number: 51922 >Category: kern >Synopsis: IPSEC_FILTERGIF support for FAST_IPSEC >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 May 07 06:20:12 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Eric Masson >Release: FreeBSD 4.7-STABLE i386 >Organization: Kisoft Services >Environment: System: FreeBSD srvbsdnanssv.interne.kisoft-services.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Tue Dec 31 09:29:34 CET 2002 root@srvbsdnanssv.nantes.kisoft-services.com:/usr/obj/usr/src/sys/K6II i386 >Description: Add support for option IPSEC_FILTERGIF to FAST_IPSEC >How-To-Repeat: >Fix: *** ip_input.c.orig Wed Apr 2 16:50:54 2003 --- ip_input.c Wed Apr 2 16:18:57 2003 *************** *** 432,437 **** --- 432,445 ---- goto pass; #endif + #if defined(FAST_IPSEC) && !defined(IPSEC_FILTERGIF) + /* + * Bypass packet filtering for packets from a tunnel (gif). + */ + if (m_tag_find(m, PACKET_TAG_IPSEC_IN_DONE, NULL) != NULL) + goto pass; + #endif + /* * IpHack's section. * Right now when no processing on packet has done >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed May 7 09:00:24 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68BB937B401 for ; Wed, 7 May 2003 09:00:24 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E94143F93 for ; Wed, 7 May 2003 09:00:21 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h47G0LUp077961 for ; Wed, 7 May 2003 09:00:21 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h47G0LWr077960; Wed, 7 May 2003 09:00:21 -0700 (PDT) Resent-Date: Wed, 7 May 2003 09:00:21 -0700 (PDT) Resent-Message-Id: <200305071600.h47G0LWr077960@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eugene Grosbein Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70A5C37B401 for ; Wed, 7 May 2003 08:55:16 -0700 (PDT) Received: from grosbein.pp.ru (D00015.dialonly.kemerovo.su [213.184.66.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CF1C43FA3 for ; Wed, 7 May 2003 08:55:13 -0700 (PDT) (envelope-from eugen@grosbein.pp.ru) Received: from grosbein.pp.ru (smmsp@localhost [127.0.0.1]) by grosbein.pp.ru (8.12.9/8.12.7) with ESMTP id h47Ft48p003689 for ; Wed, 7 May 2003 23:55:04 +0800 (KRAST) (envelope-from eugen@grosbein.pp.ru) Received: (from eugen@localhost) by grosbein.pp.ru (8.12.9/8.12.9/Submit) id h47Ffm0n003484; Wed, 7 May 2003 23:41:48 +0800 (KRAST) Message-Id: <200305071541.h47Ffm0n003484@grosbein.pp.ru> Date: Wed, 7 May 2003 23:41:48 +0800 (KRAST) From: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/51927: routed(8) fails to use multicast with IFF_POINTOPOINT interfaces X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Eugene Grosbein List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 16:00:24 -0000 >Number: 51927 >Category: bin >Synopsis: routed(8) fails to use multicast with IFF_POINTOPOINT interfaces >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 May 07 09:00:20 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 4.8-STABLE i386 >Organization: Svyaz Service JSC >Environment: System: FreeBSD grosbein.pp.ru 4.8-STABLE FreeBSD 4.8-STABLE #0: Sat Apr 26 00:03:18 KRAST 2003 eu@grosbein.pp.ru:/usr/local/obj/usr/local/src/sys/DADV i386 >Description: 'routed -s' passes remote address of IFF_POINTOPOINT interface into setsockopt(rip_sock,IPPROTO_IP, IP_ADD_MEMBERSHIP,&m, sizeof(m)), see rip_mcast_on() in the src/sbin/routed/main.c A kernel uses a macro INADDR_TO_IFP (see netinet/in_var.h) to find an interface that is unable to find it using remote IP. >How-To-Repeat: run 'routed -s' when one on more PPP interfaces (f.e. ppp(4), gif(4)) are up and running. You will get error message one time for each of PPP interfaces: setsockopt(IP_ADD_MEMBERSHIP RIP): Can't assign requested address >Fix: Either change the macro INADDR_TO_IFP, or teach routed(8) to pass source IP of the interface. I tried the latter, it works for me. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed May 7 09:48:27 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4206C37B401; Wed, 7 May 2003 09:48:27 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6FE643F75; Wed, 7 May 2003 09:48:26 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from freefall.freebsd.org (obrien@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h47GmQUp083487; Wed, 7 May 2003 09:48:26 -0700 (PDT) (envelope-from obrien@freefall.freebsd.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h47GmQsW083483; Wed, 7 May 2003 09:48:26 -0700 (PDT) Date: Wed, 7 May 2003 09:48:26 -0700 (PDT) From: "David E. O'Brien" Message-Id: <200305071648.h47GmQsW083483@freefall.freebsd.org> To: kettenis@gnu.org, obrien@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/41671: gcc produces bad debug info X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 16:48:27 -0000 Synopsis: gcc produces bad debug info State-Changed-From-To: open->closed State-Changed-By: obrien State-Changed-When: Wed May 7 09:48:10 PDT 2003 State-Changed-Why: Committed. Thanks for tracking down this logic bug! http://www.freebsd.org/cgi/query-pr.cgi?pr=41671 From owner-freebsd-bugs@FreeBSD.ORG Wed May 7 14:00:32 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99C5137B404 for ; Wed, 7 May 2003 14:00:32 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E39F43F93 for ; Wed, 7 May 2003 14:00:32 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h47L0WUp010616 for ; Wed, 7 May 2003 14:00:32 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h47L0VfL010615; Wed, 7 May 2003 14:00:31 -0700 (PDT) Date: Wed, 7 May 2003 14:00:31 -0700 (PDT) Message-Id: <200305072100.h47L0VfL010615@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Paul A. Scott" Subject: Re: misc/51909: Error in startrek fortune data base X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Paul A. Scott" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 21:00:32 -0000 The following reply was made to PR misc/51909; it has been noted by GNATS. From: "Paul A. Scott" To: , Cc: Subject: Re: misc/51909: Error in startrek fortune data base Date: Wed, 07 May 2003 13:53:31 -0700 Here is another fix: @@ -732,11 +732,11 @@ courage and foolhardiness. Always it is the brave ones who die, the soldiers. -- Kor, the Klingon Commander, "Errand of Mercy", stardate 3201.7 % -You! What PLANET is this! +You! What PLANET is this?! -- McCoy, "The City on the Edge of Forever", stardate 3134.0 % You'll learn something about men and women -- the way they're supposed to be. Caring for each other, being happy with each other, being good to each other. That's what we call love. You'll like that a lot. Also, if someone would correct my e-mail address in the originator field, it should be pscott@the-frontier.org (not sthe-frontier). From owner-freebsd-bugs@FreeBSD.ORG Wed May 7 14:39:29 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34C5A37B404 for ; Wed, 7 May 2003 14:39:29 -0700 (PDT) Received: from smtp.hotbox.ru (smtp.hotbox.ru [80.68.244.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id F333643FBD for ; Wed, 7 May 2003 14:39:27 -0700 (PDT) (envelope-from alex_us@fromru.com) Received: from netadmin.mainof.pbtf.ru (dialup21-57-114.primorye.ru [81.2.57.114]) (authenticated bits=0) by smtp.hotbox.ru (8.12.9/8.12.9) with ESMTP id h47LUUmI071117 for ; Thu, 8 May 2003 01:30:31 +0400 (MSD) (envelope-from alex_us@fromru.com) Date: Thu, 8 May 2003 08:39:15 +1100 From: alex_us X-Mailer: The Bat! (v1.62i) X-Priority: 3 (Normal) Message-ID: <2944494656.20030508083915@fromru.com> To: freebsd-bugs@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=Windows-1251 Content-Transfer-Encoding: 8bit Subject: bug or not: freebsd 5.0 can not find netcard X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: alex_us List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2003 21:39:30 -0000 Hello. I have notebook - Toshiba Satellite 4000CDT and PCMCI network card - AmbiCom | AMB2100A I have installed freebsd 5.0 all passed well but my network card were not installed. When loading freebsd, it writes following in log: Product name: AmbiCom, Inc. | AMB2100A | Fast Ethernet CardBus PC Card| 1.00 | Manufacturer ID: 2s020121 Functions: Network Adaptor, Multi-Functioned Functions Extensions: 0102 Functions Extensions: 0280969800 Functions Extensions: 0200e1f505 Functions Extensions: 0301 CIS reading done cardbus0: Resource nor specified in CIS: id=14, size=400 cardbus0: (vendor=0x1317, dev=0x1985) at 0.0 irq 11 cbb0: cardbus card activation failed Why such occurs? Thanks -- Best regards, Alexander system manager ÎÀÎ "PBTF" e-mail: alex_us@fromru.com ICQ UIN# 18374792 From owner-freebsd-bugs@FreeBSD.ORG Wed May 7 21:00:30 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59FE137B401 for ; Wed, 7 May 2003 21:00:30 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0497243FB1 for ; Wed, 7 May 2003 21:00:29 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h4840SUp051869 for ; Wed, 7 May 2003 21:00:28 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h4840SjF051868; Wed, 7 May 2003 21:00:28 -0700 (PDT) Resent-Date: Wed, 7 May 2003 21:00:28 -0700 (PDT) Resent-Message-Id: <200305080400.h4840SjF051868@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ted Stockwell Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53F0D37B401 for ; Wed, 7 May 2003 21:00:14 -0700 (PDT) Received: from verniernetworks.com (dns.verniernetworks.com [65.200.185.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1FDC43FDD for ; Wed, 7 May 2003 21:00:11 -0700 (PDT) (envelope-from ted@verniernetworks.com) Received: from cvs.verniernetworks.com (cvs.verniernetworks.com [192.168.10.231]) by verniernetworks.com (8.12.9/8.11.0) with ESMTP id h4840BJf094655 for ; Wed, 7 May 2003 21:00:11 -0700 (PDT) (envelope-from ted@cvs.verniernetworks.com) Received: (from ted@localhost) by cvs.verniernetworks.com (8.11.6/8.11.6) id h4840Bh63824; Wed, 7 May 2003 21:00:11 -0700 (PDT) (envelope-from ted) Message-Id: <200305080400.h4840Bh63824@cvs.verniernetworks.com> Date: Wed, 7 May 2003 21:00:11 -0700 (PDT) From: Ted Stockwell To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/51949: thread in accept cannot be cancelled X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ted Stockwell List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2003 04:00:30 -0000 >Number: 51949 >Category: bin >Synopsis: thread in accept cannot be cancelled >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 May 07 21:00:28 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Ted Stockwell >Release: FreeBSD 4.7-RELEASE i386 >Organization: >Environment: >Description: A thread in a blocking accept() does not terminate if cancelled with pthread_cancel(). >How-To-Repeat: >Fix: --- uthread_accept.c.orig Tue Apr 29 01:40:14 2003 +++ uthread_accept.c Wed May 7 18:42:37 2003 @@ -106,7 +106,21 @@ } /* Return the socket file descriptor or -1 on error: */ return (ret); } -__strong_reference(_accept, accept); +/* + * Cancelled threads were stuck in accept(). Code below is + * patterned after uthread_select.c + */ +int +accept(int fd, struct sockaddr * name, socklen_t *namelen) +{ + int ret; + + _thread_enter_cancellation_point(); + ret = _accept(fd, name, namelen); + _thread_leave_cancellation_point(); + + return ret; +} #endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed May 7 21:29:23 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B655C37B401 for ; Wed, 7 May 2003 21:29:23 -0700 (PDT) Received: from hall.mail.mindspring.net (hall.mail.mindspring.net [207.69.200.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 138FE43FB1 for ; Wed, 7 May 2003 21:29:23 -0700 (PDT) (envelope-from bobf@mrp3.com) Received: from user-112v223.biz.mindspring.com ([66.47.136.67]) by hall.mail.mindspring.net with esmtp (Exim 3.33 #1) id 19Dd22-0005Eo-00 for freebsd-bugs@FreeBSD.org; Thu, 08 May 2003 00:29:22 -0400 Received: from bobxp ([192.168.0.16]) by user-112v223.biz.mindspring.com with Microsoft SMTPSVC(5.0.2195.4905); Wed, 7 May 2003 21:29:02 -0700 Message-ID: <02f401c3151a$5a4f1110$1000a8c0@SFT> From: "Bob Frazier" To: , Date: Wed, 7 May 2003 21:29:01 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2727.1300 X-OriginalArrivalTime: 08 May 2003 04:29:02.0517 (UTC) FILETIME=[5A521E50:01C3151A] Subject: addition of 'vtnt' term type X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2003 04:29:24 -0000 I recommend adding the 'vtnt' term type to 'termcap'. I have noticed that 'vt200' performs almost exactly as desired, and the only difference might be to alter the performance of the 'delete' key so that it deletes the character under the cursor (and does not merely duplicate the backspace key). Using the 'set term=vt200' setting with FreeBSD 4.7-RELEASE I was able to get the arrow keys, page up, page down, end, and home to work as expected with 'ee'. I did not try them with 'vi', however. No other terminal setting that I tried worked as well. Unfortunately the behavior of the background color was not as good as it is for an ANSI terminal, but this may be unavoidable in order to get the cursor motion capabilites via 'pgup' 'pgdown' 'home' 'end' and arrow keys, and may actually be a compatibility problem wiht the Windows XP 'telnet' application. Windows XP 'telnet' has the capability of specifying itself as a 'vtnt' terminal type via the following: set term vtnt The default emulation appears to be 'ansi'. However, this doesn't work properly with applications like 'ee', which is why I wanted to find the best possible terminal setting. I was able to modify my own 'termcap' file by adding 'vtnt' along with 'vt200' in the same section. This setting may be adequate for MOST applications but I may be unaware of additional 'fixes' needed by 'vtnt' that 'vt200' either breaks or does not correctly implement, "delete character under cursor" being the most obvious capability that I would like to see working. From owner-freebsd-bugs@FreeBSD.ORG Wed May 7 22:46:11 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D69E37B401; Wed, 7 May 2003 22:46:11 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE48843F93; Wed, 7 May 2003 22:46:10 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from freefall.freebsd.org (dinoex@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h485kAUp063154; Wed, 7 May 2003 22:46:10 -0700 (PDT) (envelope-from dinoex@freefall.freebsd.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h485kApI063150; Thu, 8 May 2003 07:46:10 +0200 (CEST) Date: Thu, 8 May 2003 07:46:10 +0200 (CEST) From: Dirk Meyer Message-Id: <200305080546.h485kApI063150@freefall.freebsd.org> To: andy@acelerate.uk.com, dinoex@FreeBSD.org, freebsd-bugs@FreeBSD.org, dinoex@FreeBSD.org Subject: Re: ports/51676: X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2003 05:46:11 -0000 Synopsis: State-Changed-From-To: open->feedback State-Changed-By: dinoex State-Changed-When: Thu May 8 07:44:54 CEST 2003 State-Changed-Why: I will look into this. Responsible-Changed-From-To: freebsd-bugs->dinoex Responsible-Changed-By: dinoex Responsible-Changed-When: Thu May 8 07:44:54 CEST 2003 Responsible-Changed-Why: I will look into this. http://www.freebsd.org/cgi/query-pr.cgi?pr=51676 From owner-freebsd-bugs@FreeBSD.ORG Thu May 8 01:50:15 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3960437B401 for ; Thu, 8 May 2003 01:50:15 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E78E43FE0 for ; Thu, 8 May 2003 01:50:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h488oEUp080535 for ; Thu, 8 May 2003 01:50:14 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h488oEGm080534; Thu, 8 May 2003 01:50:14 -0700 (PDT) Resent-Date: Thu, 8 May 2003 01:50:14 -0700 (PDT) Resent-Message-Id: <200305080850.h488oEGm080534@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Xander Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 520C137B401 for ; Thu, 8 May 2003 01:41:27 -0700 (PDT) Received: from triplex.phaze-III.sec.nl (x55.flex.surfnet.nl [192.87.117.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DAF943FE5 for ; Thu, 8 May 2003 01:41:23 -0700 (PDT) (envelope-from xander@reserve.phaze-III.sec.nl) Received: from triplex.phaze-III.sec.nl (localhost [127.0.0.1]) h488fDXA017082; Thu, 8 May 2003 10:41:13 +0200 (CEST) (envelope-from xander@reserve.phaze-III.sec.nl) Received: (from xander@localhost) by triplex.phaze-III.sec.nl (8.12.9/8.12.9/Submit) id h487rWOS016059; Thu, 8 May 2003 09:53:32 +0200 (CEST) Message-Id: <200305080753.h487rWOS016059@triplex.phaze-III.sec.nl> Date: Thu, 8 May 2003 09:53:32 +0200 (CEST) From: Xander To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: misc/51955: pccard_ether textual errors X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2003 08:50:15 -0000 >Number: 51955 >Category: misc >Synopsis: pccard_ether textual 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: Thu May 08 01:50:13 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Xander >Release: FreeBSD 5.1-BETA i386 >Organization: SURFnet >Environment: System: FreeBSD triplex.phaze-III.sec.nl 5.1-BETA FreeBSD 5.1-BETA #2: Wed May 7 21:03:24 CEST 2003 >Description: The comment in pccard_ether (rev 1.29) at the top mentions a third argument for 'ifconfig_option'. This argument appears to be unused in the script. There's also a typo (delelte) elsewhere in the script. >How-To-Repeat: >Fix: The following patch removes the remarks about the ifconfig_option and fixes the typo. Whether removing the ifconfig_option explanation is the best way to go is left to the maintainer of course. --- pccard_ether.rev1.29 Tue May 6 13:38:48 2003 +++ pccard_ether Thu May 8 09:31:31 2003 @@ -2,9 +2,9 @@ # # $FreeBSD: src/etc/pccard_ether,v 1.29 2003/05/05 19:06:46 ume Exp $ # -# pccard_ether interfacename [start|stop] [ifconfig option] +# pccard_ether interfacename [start|stop] # -# example: pccard_ether ep0 start -link0 +# example: pccard_ether ep0 start # stop_dhcp() { @@ -156,7 +157,7 @@ stop_dhcp ;; *) - # Delelte static route if specified + # Delete static route if specified eval ifx_routes=\$static_routes_${interface} if [ -n "${ifx_routes}" ]; then for i in ${ifx_routes}; do >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu May 8 02:50:13 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF9B837B405 for ; Thu, 8 May 2003 02:50:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D216F43F93 for ; Thu, 8 May 2003 02:50:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h489oCUp000444 for ; Thu, 8 May 2003 02:50:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h489oCFm000442; Thu, 8 May 2003 02:50:12 -0700 (PDT) Resent-Date: Thu, 8 May 2003 02:50:12 -0700 (PDT) Resent-Message-Id: <200305080950.h489oCFm000442@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sergey Akifyev Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 265F937B401 for ; Thu, 8 May 2003 02:45:53 -0700 (PDT) Received: from mail.gascom.ru (mail.gascom.ru [217.17.160.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 8BC4143FAF for ; Thu, 8 May 2003 02:45:49 -0700 (PDT) (envelope-from asa@gascom.ru) Received: (qmail 77501 invoked from network); 8 May 2003 09:35:32 -0000 Received: from asa.gascom.net.ru (HELO ?192.168.100.29?) (192.168.100.29) by mail.gascom.ru with SMTP; 8 May 2003 09:35:32 -0000 Message-Id: <1052387118.354.11.camel@asa.gascom.net.ru> Date: 08 May 2003 13:45:19 +0400 From: Sergey Akifyev To: FreeBSD-gnats-submit@FreeBSD.org Subject: kern/51958: update for urio driver [PATCH] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2003 09:50:14 -0000 >Number: 51958 >Category: kern >Synopsis: update for urio driver [PATCH] >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu May 08 02:50:10 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Sergey Akifyev=20 >Release: FreeBSD 4.8-RELEASE i386 >Organization: JSC Gascom >Environment: System: FreeBSD asa.xxxxxxxxxxxx 4.8-RELEASE FreeBSD 4.8-RELEASE #1: Thu May 8 12:17:19 MSD 2003 asa@boulder.gascom.ru:/usr/src/sys/compile/ASA i386 >Description: This patch adds support for Digit@lway MPIO mp3 players to urio driver, and fixes it's possible deadlock. Patch was thoroughly tested on -STABLE. I had no time to test it on -CURRENT, but it shouldn't break anything there too. This is needed to support MPIO driver project (http://mpio.sourceforge.net) >How-To-Repeat: N/A >Fix: Just apply the patch. --=20 regards, Akifyev Sergey JSC Gascom PGP key available from: ftp://ftp.gascom.ru/pub/PGP-keys/asa.txt --=-n+E2M38LMjCMnT0lllsD Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+uictbu06QwmNwNsRAg/RAJ9lhpuY3m8TovUk9kP9QsGB4tEdeQCgmBIU MgH/kIZkcR6rELyksYjOPhI= =eAtN -----END PGP SIGNATURE----- --=-n+E2M38LMjCMnT0lllsD-- >Release-Note: >Audit-Trail: >Unformatted: --=-n+E2M38LMjCMnT0lllsD Content-Type: text/plain Content-Transfer-Encoding: quoted-printable From owner-freebsd-bugs@FreeBSD.ORG Thu May 8 04:00:34 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5770637B40E for ; Thu, 8 May 2003 04:00:34 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91D2F43F93 for ; Thu, 8 May 2003 04:00:30 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h48B0UUp020873 for ; Thu, 8 May 2003 04:00:30 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h48B0UqX020752; Thu, 8 May 2003 04:00:30 -0700 (PDT) Resent-Date: Thu, 8 May 2003 04:00:30 -0700 (PDT) Resent-Message-Id: <200305081100.h48B0UqX020752@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jilles Tjoelker Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6188937B401 for ; Thu, 8 May 2003 03:54:36 -0700 (PDT) Received: from hexagon.stack.nl (hexagon.stack.nl [131.155.140.144]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA75643F85 for ; Thu, 8 May 2003 03:54:34 -0700 (PDT) (envelope-from jilles@stack.nl) Received: by hexagon.stack.nl (Postfix, from userid 65534) id A36D71C4C; Thu, 8 May 2003 12:54:33 +0200 (CEST) Received: from turtle.stack.nl (turtle.stack.nl [2001:610:1108:5010::132]) by hexagon.stack.nl (Postfix) with ESMTP id B1CA81C5D; Thu, 8 May 2003 12:54:25 +0200 (CEST) Received: by turtle.stack.nl (Postfix, from userid 1677) id A32321CC2D; Thu, 8 May 2003 12:54:25 +0200 (CEST) Message-Id: <20030508105425.A32321CC2D@turtle.stack.nl> Date: Thu, 8 May 2003 12:54:25 +0200 (CEST) From: Jilles Tjoelker To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: svdb@stack.nl Subject: kern/51964: panic: race condition with realitexpire() called for zombie X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jilles Tjoelker List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2003 11:00:35 -0000 >Number: 51964 >Category: kern >Synopsis: panic: race condition with realitexpire() called for zombie >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu May 08 04:00:29 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Jilles Tjoelker >Release: FreeBSD 5.0-CURRENT i386 >Organization: MCGV Stack >Environment: System: FreeBSD turtle.stack.nl 5.0-CURRENT FreeBSD 5.0-CURRENT #9: Wed Mar 26 16:42:07 CET 2003 jilles@turtle.stack.nl:/usr/obj/usr/src/sys/TURTLE i386 Dual Athlon XP 2000+ 1 GB RAM XFree86-Server-4.2.1_7 The test program was also tried on a uniprocessor machine running 4.6-RELEASE, which did not crash. I have not been able to test it on a UP 5-CURRENT box. Using SCHED_4BSD. >Description: When shutting down the X server, the machine sometimes panics. This has been happening for about 2.5 months. I have two traces: one with the X server (started via Xwrapper-4), and one with the test program (called itimer). There were similar panics earlier, but as there was no kernel.debug available, little analysis was possible. A trap occured in realitexpire(). The function realitexpire() is called for a zombie process. Also, the fact that p==NULL seems strange. Script started on Thu Apr 3 12:54:18 2003 # gdb -k kernel.debug.3 vmcore.3 GNU gdb 5.2.1 (FreeBSD) Copyright 2002 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-undermydesk-freebsd"... panic: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode cpuid = 0; lapic.id = 01000000 fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01cfdb8 stack pointer = 0x10:0xdf0e5c24 frame pointer = 0x10:0xdf0e5c58 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 = 14 (swi7: tty:sio clock) trap number = 12 panic: page fault cpuid = 0; lapic.id = 01000000 boot() called on cpu#0 syncing disks, buffers remaining... 7128 7128 7128 7128 7128 7128 7128 7128 7128 7128 7128 7128 7128 7128 7128 7128 7128 7128 7128 7128 giving up on 223 buffers Uptime: 5d21h3m49s Dumping 1023 MB 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 480 496 512 528 544 560 576 592 608 624 640 656[CTRL-C to abort] [CTRL-C to abort] [CTRL-C to abort] 672 688 704 720 736 752 768 784 800 816 832 848 864 880 896 912 928 944 960 976 992 1008 --- Reading symbols from /usr/obj/usr/src/sys/TURTLE/modules/usr/src/sys/modules/acpi/acpi.ko.debug...done. Loaded symbols for /usr/obj/usr/src/sys/TURTLE/modules/usr/src/sys/modules/acpi/acpi.ko.debug Reading symbols from /usr/obj/usr/src/sys/TURTLE/modules/usr/src/sys/modules/linux/linux.ko.debug...done. Loaded symbols for /usr/obj/usr/src/sys/TURTLE/modules/usr/src/sys/modules/linux/linux.ko.debug #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:239 239 dumping++; (kgdb) bt #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:239 #1 0xc01ccdb1 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:371 #2 0xc01cd137 in panic () at /usr/src/sys/kern/kern_shutdown.c:542 #3 0xc0334ae2 in trap_fatal (frame=0xdf0e5be4, eva=0) at /usr/src/sys/i386/i386/trap.c:843 #4 0xc0334792 in trap_pfault (frame=0xdf0e5be4, usermode=0, eva=0) at /usr/src/sys/i386/i386/trap.c:757 #5 0xc0334282 in trap (frame= {tf_fs = 24, tf_es = 16, tf_ds = 16, tf_edi = -899772928, tf_esi = 1, tf_ebp = -552706984, tf_isp = -552707056, tf_ebx = 0, tf_edx = 0, tf_ecx = 8192, tf_eax = 8192, tf_trapno = 12, tf_err = 0, tf_eip = -1071841864, tf_cs = 8, tf_eflags = 66070, tf_esp = -899772640, tf_ss = 134217742}) at /usr/src/sys/i386/i386/trap.c:444 #6 0xc031c808 in calltrap () at {standard input}:97 #7 0xc01dc0ec in realitexpire (arg=0xca5e8e00) at /usr/src/sys/kern/kern_time.c:530 #8 0xc01dc845 in softclock (dummy=0x0) at /usr/src/sys/kern/kern_timeout.c:195 #9 0xc01b88b4 in ithread_loop (arg=0xc21d2180) at /usr/src/sys/kern/kern_intr.c:536 #10 0xc01b7743 in fork_exit (callout=0xc01b86e0 , arg=0x0, frame=0x0) at /usr/src/sys/kern/kern_fork.c:791 (kgdb) frame 7 #7 0xc01dc0ec in realitexpire (arg=0xca5e8e00) at /usr/src/sys/kern/kern_time.c:530 530 psignal(p, SIGALRM); (kgdb) print p $1 = (struct proc *) 0x0 (kgdb) print *(struct proc *)arg $2 = {p_list = {le_next = 0xc6d73800, le_prev = 0xc0392f58}, p_ksegrps = { tqh_first = 0xc7ed9180, tqh_last = 0xc7ed9184}, p_threads = { tqh_first = 0xc7e25780, tqh_last = 0xc7e25788}, p_suspended = { tqh_first = 0x0, tqh_last = 0xca5e8e18}, p_ucred = 0x0, p_fd = 0x0, p_stats = 0xe5330a80, p_limit = 0x0, p_upages_obj = 0xca5e5390, p_procsig = 0x0, p_flag = 24834, p_sflag = 1, p_state = PRS_ZOMBIE, p_pid = 89957, p_hash = {le_next = 0x0, le_prev = 0xc21c8d94}, p_pglist = { le_next = 0x0, le_prev = 0xcaade008}, p_pptr = 0xca5e9c00, p_sibling = { le_next = 0x0, le_prev = 0xca5e9c64}, p_children = {lh_first = 0x0}, p_mtx = {mtx_object = {lo_class = 0xc0392840, lo_name = 0xc0367102 "process lock", lo_type = 0xc0367102 "process lock", lo_flags = 4325376, lo_list = { tqe_next = 0x0, tqe_prev = 0x0}, lo_witness = 0x0}, mtx_lock = 3256699952, mtx_recurse = 0, mtx_blocked = {tqh_first = 0x0, tqh_last = 0xca5e8e8c}, mtx_contested = {le_next = 0x0, le_prev = 0xc7e257e8}}, p_oppid = 0, p_vmspace = 0x0, p_swtime = 117, p_realtimer = {it_interval = {tv_sec = 0, tv_usec = 20000}, it_value = { tv_sec = 507813, tv_usec = 320975}}, p_runtime = {sec = 3, frac = 14595943908044818724}, p_uu = 3255398, p_su = 539957, p_iu = 1, p_uticks = 416, p_sticks = 69, p_iticks = 0, p_profthreads = 0, p_maxthrwaits = 0, p_traceflag = 0, p_tracevp = 0x0, p_tracecred = 0x0, p_siglist = {__bits = {0, 0, 0, 0}}, p_textvp = 0x0, p_lock = 0 '\0', p_klist = {slh_first = 0x0}, p_sigiolst = {slh_first = 0x0}, ---Type to continue, or q to quit--- p_sigparent = 20, p_oldsigmask = {__bits = {0, 0, 0, 0}}, p_sig = 0, p_code = 0, p_stops = 0, p_stype = 0, p_step = 0 '\0', p_pfsflags = 0 '\0', p_nlminfo = 0x0, p_aioinfo = 0x0, p_singlethread = 0x0, p_suspcount = 0, p_sigmask = {__bits = {0, 0, 0, 0}}, p_sigstk = {ss_sp = 0x0, ss_size = 0, ss_flags = 4}, p_magic = 3203398350, p_comm = "XFree86\0-4\0\0\0\0\0\0\0\0\0", p_pgrp = 0x0, p_sysent = 0xc03ad5e0, p_args = 0x0, p_cpulimit = 900, p_xstat = 0, p_numthreads = 1, p_numksegrps = 1, p_md = {md_ldt = 0x0}, p_itcallout = { c_links = {sle = {sle_next = 0xca5ea834}, tqe = {tqe_next = 0xca5ea834, tqe_prev = 0xd288e680}}, c_time = 50769900, c_arg = 0xca5e8e00, c_func = 0, c_flags = 2}, p_uarea = 0xe5330000, p_acflag = 0, p_ru = 0x0, p_peers = 0x0, p_leader = 0xca5e8e00, p_emuldata = 0x0, p_label = { l_flags = 0, l_perpolicy = {{l_ptr = 0x0, l_long = 0}, {l_ptr = 0x0, l_long = 0}, {l_ptr = 0x0, l_long = 0}, {l_ptr = 0x0, l_long = 0}}}, p_sched = 0xca5e9000} (kgdb) # # gdb -k kernel.debug.4 vmcore.4 GNU gdb 5.2.1 (FreeBSD) Copyright 2002 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-undermydesk-freebsd"... panic: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode cpuid = 1; lapic.id = 00000000 fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01cfdb8 stack pointer = 0x10:0xdf0e5c24 frame pointer = 0x10:0xdf0e5c58 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 = 14 (swi7: tty:sio clock) trap number = 12 panic: page fault cpuid = 1; lapic.id = 00000000 boot() called on cpu#1 syncing disks, buffers remaining... 6255 6255 6253 6252 6252 6252 6252 6252 6252 6252 6252 6252 6252 6252 6252 6252 6252 6252 6252 6252 6252 6252 6252 giving up on 1878 buffers Uptime: 1h25m40s Dumping 1023 MB 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 480 496 512 528 544 560 576 592 608 624 640 656 672 688 704 720 736 752 768 784 800 816 832 848 864 880 896 912 928 944 960 976 992 1008 --- Reading symbols from /usr/obj/usr/src/sys/TURTLE/modules/usr/src/sys/modules/acpi/acpi.ko.debug...done. Loaded symbols for /usr/obj/usr/src/sys/TURTLE/modules/usr/src/sys/modules/acpi/acpi.ko.debug Reading symbols from /usr/obj/usr/src/sys/TURTLE/modules/usr/src/sys/modules/linux/linux.ko.debug...done. Loaded symbols for /usr/obj/usr/src/sys/TURTLE/modules/usr/src/sys/modules/linux/linux.ko.debug #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:239 239 dumping++; (kgdb) bt #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:239 #1 0xc01ccdb1 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:371 #2 0xc01cd137 in panic () at /usr/src/sys/kern/kern_shutdown.c:542 #3 0xc0334ae2 in trap_fatal (frame=0xdf0e5be4, eva=0) at /usr/src/sys/i386/i386/trap.c:843 #4 0xc0334792 in trap_pfault (frame=0xdf0e5be4, usermode=0, eva=0) at /usr/src/sys/i386/i386/trap.c:757 #5 0xc0334282 in trap (frame= {tf_fs = 24, tf_es = 16, tf_ds = 16, tf_edi = -955814912, tf_esi = 1, tf_ebp = -552706984, tf_isp = -552707056, tf_ebx = 0, tf_edx = 0, tf_ecx = 8192, tf_eax = 8192, tf_trapno = 12, tf_err = 0, tf_eip = -1071841864, tf_cs = 8, tf_eflags = 66070, tf_esp = -955814624, tf_ss = 134217742}) at /usr/src/sys/i386/i386/trap.c:444 #6 0xc031c808 in calltrap () at {standard input}:97 #7 0xc01dc0ec in realitexpire (arg=0xc7076c00) at /usr/src/sys/kern/kern_time.c:530 #8 0xc01dc845 in softclock (dummy=0x0) at /usr/src/sys/kern/kern_timeout.c:195 #9 0xc01b88b4 in ithread_loop (arg=0xc21d2180) at /usr/src/sys/kern/kern_intr.c:536 #10 0xc01b7743 in fork_exit (callout=0xc01b86e0 , arg=0x0, frame=0x0) at /usr/src/sys/kern/kern_fork.c:791 (kgdb) frame 7 #7 0xc01dc0ec in realitexpire (arg=0xc7076c00) at /usr/src/sys/kern/kern_time.c:530 530 psignal(p, SIGALRM); (kgdb) print p $1 = (struct proc *) 0x0 (kgdb) print *(struct proc *)arg $2 = {p_list = {le_next = 0xc713ac00, le_prev = 0xc7101400}, p_ksegrps = { tqh_first = 0xc7074d80, tqh_last = 0xc7074d84}, p_threads = { tqh_first = 0xc70713c0, tqh_last = 0xc70713c8}, p_suspended = { tqh_first = 0x0, tqh_last = 0xc7076c18}, p_ucred = 0x0, p_fd = 0x0, p_stats = 0xe516fa80, p_limit = 0x0, p_upages_obj = 0xc6dd3ab0, p_procsig = 0x0, p_flag = 8194, p_sflag = 1, p_state = PRS_ZOMBIE, p_pid = 8772, p_hash = {le_next = 0x0, le_prev = 0xc21c8910}, p_pglist = { le_next = 0xc708f400, le_prev = 0xc712c050}, p_pptr = 0xc712c000, p_sibling = {le_next = 0xc708f400, le_prev = 0xc712c064}, p_children = { lh_first = 0x0}, p_mtx = {mtx_object = {lo_class = 0xc0392840, lo_name = 0xc0367102 "process lock", lo_type = 0xc0367102 "process lock", lo_flags = 4325376, lo_list = { tqe_next = 0x0, tqe_prev = 0x0}, lo_witness = 0x0}, mtx_lock = 3256699952, mtx_recurse = 0, mtx_blocked = {tqh_first = 0x0, tqh_last = 0xc7076c8c}, mtx_contested = {le_next = 0x0, le_prev = 0x0}}, p_oppid = 0, p_vmspace = 0x0, p_swtime = 0, p_realtimer = {it_interval = { tv_sec = 0, tv_usec = 10000}, it_value = {tv_sec = 5125, tv_usec = 942046}}, p_runtime = {sec = 0, frac = 10478957466101902}, p_uu = 0, p_su = 753, p_iu = 0, p_uticks = 0, p_sticks = 1, p_iticks = 0, p_profthreads = 0, p_maxthrwaits = 0, p_traceflag = 0, p_tracevp = 0x0, p_tracecred = 0x0, p_siglist = {__bits = {0, 0, 0, 0}}, p_textvp = 0x0, p_lock = 0 '\0', p_klist = {slh_first = 0x0}, p_sigiolst = { slh_first = 0x0}, p_sigparent = 20, p_oldsigmask = {__bits = {0, 0, 0, ---Type to continue, or q to quit--- 0}}, p_sig = 0, p_code = 0, p_stops = 0, p_stype = 0, p_step = 0 '\0', p_pfsflags = 0 '\0', p_nlminfo = 0x0, p_aioinfo = 0x0, p_singlethread = 0x0, p_suspcount = 0, p_sigmask = {__bits = {0, 0, 0, 0}}, p_sigstk = { ss_sp = 0x0, ss_size = 0, ss_flags = 4}, p_magic = 3203398350, p_comm = "itimer", '\0' , p_pgrp = 0x0, p_sysent = 0xc03ad5e0, p_args = 0x0, p_cpulimit = 900, p_xstat = 0, p_numthreads = 1, p_numksegrps = 1, p_md = {md_ldt = 0x0}, p_itcallout = { c_links = {sle = {sle_next = 0xd28760d8}, tqe = {tqe_next = 0xd28760d8, tqe_prev = 0xd289f328}}, c_time = 512385, c_arg = 0xc7076c00, c_func = 0, c_flags = 2}, p_uarea = 0xe516f000, p_acflag = 1, p_ru = 0x0, p_peers = 0x0, p_leader = 0xc7076c00, p_emuldata = 0x0, p_label = { l_flags = 0, l_perpolicy = {{l_ptr = 0x0, l_long = 0}, {l_ptr = 0x0, l_long = 0}, {l_ptr = 0x0, l_long = 0}, {l_ptr = 0x0, l_long = 0}}}, p_sched = 0xc7076e00} (kgdb) # Script done on Thu Apr 3 13:24:03 2003 >How-To-Repeat: The problem originally occured when the X server was shut down (not always, and it seemed to depend on the way it was started). The program "itimer.c" (by Serge van den Boom ) reproduces the panic on our system. It may be necessary to change the delays somewhat. It will start 500 child processes. Also, it may take 20 seconds or more before the panic occurs. >Fix: Probably revision 1.97 of src/sys/kern/kern_time.c introduced the problem as it changed the locking for setitimer(), realitexpire(), etc. kern_exit.c may be related as well (exit1() stops the callout, perhaps it was already called in another thread). The bug may have been fixed already, but looking briefly in CVSweb, it does not seem to be. The sources were cvsup'ed on March 26, just before compilation of world and kernel (nightly cvsup was right in a commit of some ATM stuff and didn't compile). --- itimer.c begins here --- #include #include #include #include #include #include int main(int argc, char *argv[]) { struct itimerval tv = { {0, 1}, {0, 1} }; pid_t pid; int i; int waitval; while(1) { i = 500; while (i--) { pid = fork(); switch (pid) { case -1: perror("fork failed"); exit(1); case 0: // child signal(SIGALRM, SIG_IGN); setitimer(ITIMER_REAL, &tv, NULL); usleep(100); return 0; default: // parent break; } } usleep(20); i = 500; while(i--) wait(&waitval); } return 0; } --- itimer.c ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu May 8 06:50:10 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 869A137B401 for ; Thu, 8 May 2003 06:50:10 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84CC743F93 for ; Thu, 8 May 2003 06:50:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h48Do9Up054384 for ; Thu, 8 May 2003 06:50:09 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h48Do9eW054383; Thu, 8 May 2003 06:50:09 -0700 (PDT) Resent-Date: Thu, 8 May 2003 06:50:09 -0700 (PDT) Resent-Message-Id: <200305081350.h48Do9eW054383@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Seva Gluschenko Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F283337B401 for ; Thu, 8 May 2003 06:48:05 -0700 (PDT) Received: from road.demos.su (road.demos.su [194.87.2.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5ED543F93 for ; Thu, 8 May 2003 06:48:04 -0700 (PDT) (envelope-from gvs@road.demos.su) Received: from road.demos.su (localhost [127.0.0.1]) by road.demos.su (8.12.8/8.12.8) with ESMTP id h48Ds7ww077143 for ; Thu, 8 May 2003 17:54:07 +0400 (MSD) (envelope-from gvs@road.demos.su) Received: (from gvs@localhost) by road.demos.su (8.12.8/8.12.8/Submit) id h48Ds78l077142; Thu, 8 May 2003 17:54:07 +0400 (MSD) Message-Id: <200305081354.h48Ds78l077142@road.demos.su> Date: Thu, 8 May 2003 17:54:07 +0400 (MSD) From: Seva Gluschenko To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/51970: Adaptec AIC-7902 with HostRAID option enabled fails to be probed X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2003 13:50:10 -0000 >Number: 51970 >Category: kern >Synopsis: Adaptec AIC-7902 with HostRAID option enabled fails to be probed >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu May 08 06:50:08 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Seva Gluschenko >Release: FreeBSD 4.8-RC i386 >Organization: JSC Demos-Internet >Environment: System: FreeBSD road.demos.su 4.8-RC FreeBSD 4.8-RC #2: Tue Mar 4 15:43:13 MSK 2003 gvs@road.demos.su:/usr/local/obj/usr/local/src/sys/ROAD i386 >Description: When booting with FreeBSD installation CD on ServerWorks machine with AIC-7902 SCSI controller on-board with HostRAID option is turned on, the controller fails to be detected by FreeBSD driver and is reported as unknown device. >How-To-Repeat: Configure your Adaptec SCSI Controller to enable HostRAID option and try booting FreeBSD on that. Obviously, you'll fail. >Fix: In /usr/src/sys/dev/aic7xxx/aic79xx_pci.c, line 69: #define ID_9005_GENERIC_MASK 0xFFF0FFFF00000000ull this line breaks successful AIC-7902 detection with HostRAID option turned on because it reports itself as another device ID (809F vs. 801F with disabled HostRAID). So change the mask to be 0xFF70FFFF00000000ull (don't care about the specified bit) and thus the detection problem is solved. BEWARE: while our HostRAID has been configured for mirroring, both disks were seen by FreeBSD (da0 and da1), so maybe different communication method should be used. I failed to find any contact addresses of driver developer from Adaptec, so I can't verify that. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu May 8 10:20:07 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B34F37B401 for ; Thu, 8 May 2003 10:20:07 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1649D43F3F for ; Thu, 8 May 2003 10:20:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h48HK6Up009293 for ; Thu, 8 May 2003 10:20:06 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h48HK60s009292; Thu, 8 May 2003 10:20:06 -0700 (PDT) Date: Thu, 8 May 2003 10:20:06 -0700 (PDT) Message-Id: <200305081720.h48HK60s009292@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Xander Subject: misc/51955: pccard_ether textual errors X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Xander List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2003 17:20:07 -0000 The following reply was made to PR misc/51955; it has been noted by GNATS. From: Xander To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: misc/51955: pccard_ether textual errors Date: Thu, 8 May 2003 09:53:32 +0200 (CEST) >Number: 51955 >Category: misc >Synopsis: pccard_ether textual 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: Thu May 08 01:50:13 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Xander >Release: FreeBSD 5.1-BETA i386 >Organization: SURFnet >Environment: System: FreeBSD triplex.phaze-III.sec.nl 5.1-BETA FreeBSD 5.1-BETA #2: Wed May 7 21:03:24 CEST 2003 >Description: The comment in pccard_ether (rev 1.29) at the top mentions a third argument for 'ifconfig_option'. This argument appears to be unused in the script. There's also a typo (delelte) elsewhere in the script. >How-To-Repeat: >Fix: The following patch removes the remarks about the ifconfig_option and fixes the typo. Whether removing the ifconfig_option explanation is the best way to go is left to the maintainer of course. --- pccard_ether.rev1.29 Tue May 6 13:38:48 2003 +++ pccard_ether Thu May 8 09:31:31 2003 @@ -2,9 +2,9 @@ # # $FreeBSD: src/etc/pccard_ether,v 1.29 2003/05/05 19:06:46 ume Exp $ # -# pccard_ether interfacename [start|stop] [ifconfig option] +# pccard_ether interfacename [start|stop] # -# example: pccard_ether ep0 start -link0 +# example: pccard_ether ep0 start # stop_dhcp() { @@ -156,7 +157,7 @@ stop_dhcp ;; *) - # Delelte static route if specified + # Delete static route if specified eval ifx_routes=\$static_routes_${interface} if [ -n "${ifx_routes}" ]; then for i in ${ifx_routes}; do >Release-Note: >Audit-Trail: >Unformatted: _______________________________________________ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" From owner-freebsd-bugs@FreeBSD.ORG Thu May 8 12:00:33 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45A1737B40B for ; Thu, 8 May 2003 12:00:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AFCE43F93 for ; Thu, 8 May 2003 12:00:32 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h48J0WUp016730 for ; Thu, 8 May 2003 12:00:32 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h48J0WXp016729; Thu, 8 May 2003 12:00:32 -0700 (PDT) Resent-Date: Thu, 8 May 2003 12:00:32 -0700 (PDT) Resent-Message-Id: <200305081900.h48J0WXp016729@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ian Freislich Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25E3637B401 for ; Thu, 8 May 2003 11:58:49 -0700 (PDT) Received: from brane.digs.iafrica.com (brane.digs.iafrica.com [196.7.162.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA62B43F93 for ; Thu, 8 May 2003 11:58:42 -0700 (PDT) (envelope-from root@digs.iafrica.com) Received: from root by brane-dead.digs.iafrica.com with local (Exim 3.36 #1) id 19CgpH-0001JQ-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 05 May 2003 16:20:19 +0200 Message-Id: Date: Mon, 05 May 2003 16:20:19 +0200 From: Ian Freislich To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/51982: sio1: interrupt-level buffer overflows X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ian Freislich List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2003 19:00:33 -0000 >Number: 51982 >Category: kern >Synopsis: sio1: interrupt-level buffer overflows >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu May 08 12:00:31 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Ian Freislich >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD brane-dead.digs.iafrica.com 5.0-CURRENT FreeBSD 5.0-CURRENT #35: Sat May 3 11:21:01 SAST 2003 root@brane-dead.digs.iafrica.com:/usr/src/sys/i386/compile/BRANE-DEAD i386 Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #35: Sat May 3 11:21:01 SAST 2003 root@brane-dead.digs.iafrica.com:/usr/src/sys/i386/compile/BRANE-DEAD Preloaded elf kernel "/boot/kernel/kernel" at 0xc0456000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc0456244. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 267273839 Hz CPU: Pentium II/Pentium II Xeon/Celeron (267.27-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x634 Stepping = 4 Features=0x80fbff real memory = 201261056 (191 MB) avail memory = 190533632 (181 MB) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): apic id: 0, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard pcibios: BIOS version 2.10 Using $PIR table, 8 entries at 0xc00fdc60 acpi_bus_number: root bus has no _BBN, assuming 0 acpi0: power button is handled as a fixed feature programming model. Timecounter "ACPI-safe" frequency 3579545 Hz acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 acpi_cpu0: on acpi0 pcib0: port 0x5000-0x500f,0x4000-0x4041,0xcf8-0xcff on acpi0 pci0: on pcib0 IOAPIC #0 intpin 16 -> irq 2 IOAPIC #0 intpin 17 -> irq 16 agp0: mem 0xe0000000-0xe3ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xf000-0xf00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xe000-0xe01f irq 11 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered piix0 port 0x5000-0x500f at device 7.3 on pci0 Timecounter "PIIX" frequency 3579545 Hz xl0: <3Com 3c905-TX Fast Etherlink XL> port 0xe400-0xe43f irq 2 at device 8.0 on pci0 xl0: Ethernet address: 00:60:08:0b:2e:c8 miibus0: on xl0 nsphy0: on miibus0 nsphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto de0: port 0xe800-0xe87f mem 0xe7001000-0xe700107f irq 16 at device 9.0 on pci0 de0: DEC DE450-CA 21041 [10Mb/s] pass 1.1 de0: address 00:00:f8:30:dd:c2 ahc0: port 0xec00-0xecff mem 0xe7000000-0xe7000fff irq 2 at device 12.0 on pci0 ahc0: Using left over BIOS settings aic7880: Ultra Single Channel A, SCSI Id=7, 16/253 SCBs fdc0: port 0x3f7,0x3f2-0x3f5 irq 6 drq 2 on acpi0 sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A, console sio1 port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A sio2: configured irq 10 not in bitmap of probed irqs 0 sio2: port may not be enabled sio2 port 0x2e8-0x2ef irq 10 on acpi0 sio2: type 16550A ppc0 port 0x778-0x77b,0x378-0x37f irq 7 drq 3 on acpi0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/16 bytes threshold ppbus0: on ppc0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 atkbdc0: port 0x64,0x60 irq 1 on acpi0 orm0:
;\ +# remains + <-a>;;<-o> diff -u -r -N /usr/src/share/colldef.orig/no_NO.ISO8859-15.src /usr/src/share/colldef/no_NO.ISO8859-15.src --- /usr/src/share/colldef.orig/no_NO.ISO8859-15.src Thu Jan 1 01:00:00 1970 +++ /usr/src/share/colldef/no_NO.ISO8859-15.src Wed May 7 13:18:46 2003 @@ -0,0 +1,40 @@ +# Norwegian/DIS 8859-15 (backward compatible with ASCII) +# +# (Mostly based on the Swedish sv_SE.ISO_8859-15) +# +# $Id$ +# +charmap map.ISO8859-15 +order \ +# controls + ;...;;;...;;\ +# + ;;!;;\";<<<>;/>>;;\ + ;;;;;\ + %;&;';\(;\);*;+;<+->;<-:>;<*X>;\,;<-->;-;.;/;\ +# digits + 0;(1,<1S>);(2,<2S>);(3,<3S>);4;...;9;\ +# + :;\;;\<;=;>;?;;;;;;;\ +# capital + (A,,,>,);\ + B;(C,);(D,);(E,,,>,);\ + F;G;H;(I,,,>,);\ + J;...;M;(N,);(O,,,,>,);\ + P;Q;R;(S,);T;(U,,,>);\ + (V,W);X;(Y,,,);(Z,);(,);(,);;\ + ;\ +# + [;\\;];^;_;<'m>;`;\ +# small + (a,,,>,);\ + b;(c,);(d,);(e,,,>,);\ + f;g;h;(i,,,>,);\ + j;...;m;(n,);(o,,,,>,);\ + p;q;r;(s,,);t;(u,,,>);\ + (v,w);x;(y,,,);(z,);(,);(,);;\ + ;\ +# + \{;;|;\};~;<.M>;;;