From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 06:02: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 4EF7316A4B3 for ; Sun, 19 Oct 2003 06:02:51 -0700 (PDT) Received: from mail.cs.tu-berlin.de (mail.cs.tu-berlin.de [130.149.17.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id C220543FBF for ; Sun, 19 Oct 2003 06:02:49 -0700 (PDT) (envelope-from boris@cs.tu-berlin.de) Received: from fiesta.cs.tu-berlin.de (boris@fiesta.cs.tu-berlin.de [130.149.17.4]) by mail.cs.tu-berlin.de (8.9.3p2/8.9.3) with ESMTP id PAA19830; Sun, 19 Oct 2003 15:00:14 +0200 (MET DST) Received: (from boris@localhost)h9JD0Ewr010924; Sun, 19 Oct 2003 15:00:14 +0200 (MEST) Date: Sun, 19 Oct 2003 15:00:14 +0200 From: Boris Nikolaus To: John-Mark Gurney , freebsd-bugs@freebsd.org Message-ID: <20031019130014.GA4033@fiesta.cs.tu-berlin.de> References: <200310130749.h9D7nWF9038579@freefall.freebsd.org> <20031013194716.GP533@funkthat.com> <20031016093941.GB23308@fiesta.cs.tu-berlin.de> <20031016170958.GB42635@funkthat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="pWyiEgJYm5f9v55/" Content-Disposition: inline In-Reply-To: <20031016170958.GB42635@funkthat.com> User-Agent: Mutt/1.4.1i X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Re: kern/45291: kevent(2) ignores timeout if nevents == 0 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, 19 Oct 2003 13:02:51 -0000 --pWyiEgJYm5f9v55/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Oct 16, 2003 at 10:09:58AM -0700, John-Mark Gurney wrote: > Boris Nikolaus wrote this message on Thu, Oct 16, 2003 at 11:39 +0200: > > To quote the poll and select man pages: > > > > poll: If timeout is neither zero nor INFTIM (-1), it specifies a > > maximum interval to wait for any file descriptor to become > > ready, in milliseconds. > > select: If timeout is a non-nil pointer, it specifies the maximum > > interval to wait for the selection to complete. > > > > In both cases, it is a very similar text to the kevent man page, but > > for poll and select, the behaviour is to wait if nfds = 0 (and so no > > event can be returned). > > but the thing is that nfds is different for select than for kqueue. > nfds specifies the maxium file descriptors to check, not number of > events to wait for. In fact, after reading select's manpage, this > misfeature isn't documented, and select really should return EINVAL > if nfds is 0, and -1 is an invalid fd (which is the last fd that > select is suppose to check).. Select's manpage says, it checks all file descriptors from 0 to nfds - 1. The set of whole numbers which are >= 0 and <= -1 is empty, so select has to check no descriptors and waits for the timeout. This is exactly what select does, so this behaviour is implicitely documented. Changing select's behaviour as you suggest would break many software as this behavious is often used, both in main loops (which have to observe a set of file descriptors and timers and do not want to handle the case "only timers left" in a special way) and explicitely for sleeping (before microsleep/nanosleep have been invented, there was no function for sleeping with resolution below seconds, so the common way for sleeping in these cases was to call select with nfds == 0). > > > Simple fix, you wait for a single event, adding a struct kevent such as: > > > struct kevent ke; > > > ret = kevent(qfd, NULL, 0, &ke, 1, &ts); > > > > > > makes it wait the full 10 seconds. so, are you suggesting that we change > > > the behavior to wait for the timeout to expire before we return ANY > > > events? (because that is what your suggesting). Special caseing when > > > someone passes in 0 is not good IMO... it will probably brake lots of > > > code that may in advertantly set as ts, but expect immediate return > > > because of not specifing any return events. > > > > I think, you misunderstood me: I do not want kevent to wait for the timeout > > to expire before returning ANY events, I want kevent to wait for the timeout > > when NO event has signalled! This is not a special case, I think the current > > implementation handles nevent = 0 as special case, as it returns before the > > timeout has expired although no event has been signalled. > > no, I understood you perfectly fine, but I'm saying that special casing > this is BAD, and that if we didn't make it a special case, then we would > have a problem of always waiting. No, IMHO returning immediately if nevents == 0 is the special case, I just want kevent to behave all times the same way, independent of nevents: If nevents > 0, kevent waits for an event to occur, the timeout to expire or an interruption by a signal. And so should kevent if nevent == 0: Wait for an event to occur (even if it cannot show which event signalled), the timeout to expire or a signal to arrive! Make as few special cases as possible! > Unless you come up with a patch in the next few days, I will close this. > patches speak louder than words. and make sure you update the manpage > to expliciately state this, patches w/o manpage updates aren't acceptable. No problem, I attach patches for both FreeBSD 4.9RC and 5.1. Simply apply the source patch to /usr/src/sys/kern/kern_event.c and the man page patch to /usr/src/lib/libc/sys/kqueue.2 The patches are very simple, but in case of questions do not hesitate to ask. Best regards, Boris --pWyiEgJYm5f9v55/-- From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 06:08: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 551B216A4B3; Sun, 19 Oct 2003 06:08:45 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCCE543F93; Sun, 19 Oct 2003 06:08:44 -0700 (PDT) (envelope-from simon@FreeBSD.org) Received: from freefall.freebsd.org (simon@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9JD8iFY043883; Sun, 19 Oct 2003 06:08:44 -0700 (PDT) (envelope-from simon@freefall.freebsd.org) Received: (from simon@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9JD8ih7043879; Sun, 19 Oct 2003 06:08:44 -0700 (PDT) (envelope-from simon) Date: Sun, 19 Oct 2003 06:08:44 -0700 (PDT) From: "Simon L. Nielsen" Message-Id: <200310191308.h9JD8ih7043879@freefall.freebsd.org> To: simon@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/58228: atacontrol rebuild always panics 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, 19 Oct 2003 13:08:45 -0000 Synopsis: atacontrol rebuild always panics Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: simon Responsible-Changed-When: Sun Oct 19 06:08:23 PDT 2003 Responsible-Changed-Why: Over to ata(4) maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=58228 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 06:09: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 5C8CE16A4BF; Sun, 19 Oct 2003 06:09:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6841E43FB1; Sun, 19 Oct 2003 06:09:32 -0700 (PDT) (envelope-from simon@FreeBSD.org) Received: from freefall.freebsd.org (simon@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9JD9WFY043965; Sun, 19 Oct 2003 06:09:32 -0700 (PDT) (envelope-from simon@freefall.freebsd.org) Received: (from simon@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9JD9W15043961; Sun, 19 Oct 2003 06:09:32 -0700 (PDT) (envelope-from simon) Date: Sun, 19 Oct 2003 06:09:32 -0700 (PDT) From: "Simon L. Nielsen" Message-Id: <200310191309.h9JD9W15043961@freefall.freebsd.org> To: simon@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/58230: ata raid crashes in g_down 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, 19 Oct 2003 13:09:33 -0000 Synopsis: ata raid crashes in g_down Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: simon Responsible-Changed-When: Sun Oct 19 06:09:15 PDT 2003 Responsible-Changed-Why: Over to ata(4) maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=58230 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 10:38:45 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 B6C1B16A4B3 for ; Sun, 19 Oct 2003 10:38:45 -0700 (PDT) Received: from blake.polstra.com (dsl081-189-066.sea1.dsl.speakeasy.net [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3B8543F3F for ; Sun, 19 Oct 2003 10:38:44 -0700 (PDT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.9p2/8.12.9) with ESMTP id h9JHcaOH066693; Sun, 19 Oct 2003 10:38:36 -0700 (PDT) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20031019130014.GA4033@fiesta.cs.tu-berlin.de> Date: Sun, 19 Oct 2003 10:38:36 -0700 (PDT) From: John Polstra To: Boris Nikolaus X-Bogosity: No, tests=bogofilter, spamicity=0.501781, version=0.14.5 cc: freebsd-bugs@freebsd.org cc: John-Mark Gurney Subject: Re: kern/45291: kevent(2) ignores timeout if nevents == 0 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, 19 Oct 2003 17:38:45 -0000 On 19-Oct-2003 Boris Nikolaus wrote: > On Thu, Oct 16, 2003 at 10:09:58AM -0700, John-Mark Gurney wrote: >> events to wait for. In fact, after reading select's manpage, this >> misfeature isn't documented, and select really should return EINVAL >> if nfds is 0, and -1 is an invalid fd (which is the last fd that >> select is suppose to check).. > > Select's manpage says, it checks all file descriptors from 0 to > nfds - 1. The set of whole numbers which are >= 0 and <= -1 is empty, > so select has to check no descriptors and waits for the timeout. This > is exactly what select does, so this behaviour is implicitely > documented. > > Changing select's behaviour as you suggest would break many software > as this behavious is often used, both in main loops (which have to > observe a set of file descriptors and timers and do not want to > handle the case "only timers left" in a special way) and explicitely > for sleeping (before microsleep/nanosleep have been invented, there > was no function for sleeping with resolution below seconds, so the > common way for sleeping in these cases was to call select with > nfds == 0). Boris is right about this, John-Mark. If you think otherwise then you really need to go read the code in a few real-world event loops. They absolutely rely on this behavior of select. If anybody changed it they'd have a whole lot of broken programs on their hands. You may view it as a case of lazy programmers using the wrong system call for sleeping, but in fact it is just the proper and most sensible behavior for select to have at this boundary condition. John From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 11:11:44 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 3985316A4BF for ; Sun, 19 Oct 2003 11:11:44 -0700 (PDT) Received: from mail.speakeasy.net (mail10.speakeasy.net [216.254.0.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0210343FBF for ; Sun, 19 Oct 2003 11:11:43 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 20274 invoked from network); 19 Oct 2003 18:11:42 -0000 Received: from unknown (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail10.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 19 Oct 2003 18:11:42 -0000 Received: from hydrogen.funkthat.com (crytyt@localhost.funkthat.com [127.0.0.1])h9JIBWCe059612; Sun, 19 Oct 2003 11:11:33 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id h9JIBWUh059611; Sun, 19 Oct 2003 11:11:32 -0700 (PDT) Date: Sun, 19 Oct 2003 11:11:32 -0700 From: John-Mark Gurney To: John Polstra Message-ID: <20031019181132.GD56592@funkthat.com> Mail-Followup-To: John-Mark Gurney , John Polstra , Boris Nikolaus , freebsd-bugs@freebsd.org References: <20031019130014.GA4033@fiesta.cs.tu-berlin.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: Boris Nikolaus cc: freebsd-bugs@freebsd.org Subject: Re: kern/45291: kevent(2) ignores timeout if nevents == 0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Oct 2003 18:11:44 -0000 John Polstra wrote this message on Sun, Oct 19, 2003 at 10:38 -0700: > On 19-Oct-2003 Boris Nikolaus wrote: > > On Thu, Oct 16, 2003 at 10:09:58AM -0700, John-Mark Gurney wrote: > >> events to wait for. In fact, after reading select's manpage, this ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > >> misfeature isn't documented, and select really should return EINVAL EBADF > >> if nfds is 0, and -1 is an invalid fd (which is the last fd that > >> select is suppose to check).. > > > > Select's manpage says, it checks all file descriptors from 0 to > > nfds - 1. The set of whole numbers which are >= 0 and <= -1 is empty, yes, but -1 is an invalid fd, so how can use that to put an upper bound on a set when that number isn't valid to describe the numbers for the set (the set of fds)? > > so select has to check no descriptors and waits for the timeout. This > > is exactly what select does, so this behaviour is implicitely > > documented. > > > > Changing select's behaviour as you suggest would break many software I never suggested that.. > > as this behavious is often used, both in main loops (which have to > > observe a set of file descriptors and timers and do not want to > > handle the case "only timers left" in a special way) and explicitely > > for sleeping (before microsleep/nanosleep have been invented, there > > was no function for sleeping with resolution below seconds, so the > > common way for sleeping in these cases was to call select with > > nfds == 0). > > Boris is right about this, John-Mark. If you think otherwise then > you really need to go read the code in a few real-world event loops. do you mean select loops? or event loops? I've written enough code on both. > They absolutely rely on this behavior of select. If anybody changed > it they'd have a whole lot of broken programs on their hands. You may > view it as a case of lazy programmers using the wrong system call for > sleeping, but in fact it is just the proper and most sensible behavior > for select to have at this boundary condition. I never suggested that we change/fix select. I'm simply saying that the manpage doesn't document the behavior everyone expects/sees... I was simply playing devil's advocate on this subject. -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 14:10: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 7808416A502 for ; Sun, 19 Oct 2003 14:10:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 951C343F85 for ; Sun, 19 Oct 2003 14:10:02 -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 h9JLA2FY031737 for ; Sun, 19 Oct 2003 14:10:02 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9JLA2uM031736; Sun, 19 Oct 2003 14:10:02 -0700 (PDT) (envelope-from gnats) Resent-Date: Sun, 19 Oct 2003 14:10:02 -0700 (PDT) Resent-Message-Id: <200310192110.h9JLA2uM031736@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, Stefan Farfeleder Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 192E516A4B3 for ; Sun, 19 Oct 2003 14:04:17 -0700 (PDT) Received: from fafoe.narf.at (chello212186121237.14.vie.surfer.at [212.186.121.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DB1743FA3 for ; Sun, 19 Oct 2003 14:04:15 -0700 (PDT) (envelope-from stefan@fafoe.narf.at) Received: from wombat.fafoe.narf.at (wombat.fafoe.narf.at [192.168.2.102]) by fafoe.narf.at (Postfix) with ESMTP id 9249D40EE; Sun, 19 Oct 2003 23:04:12 +0200 (CEST) Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id BAFB5D1; Sun, 19 Oct 2003 23:04:11 +0200 (CEST) Message-Id: <20031019210411.BAFB5D1@wombat.fafoe.narf.at> Date: Sun, 19 Oct 2003 23:04:11 +0200 (CEST) From: Stefan Farfeleder To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: stefan@fafoe.narf.at Subject: kern/58258: Panic in knote_drop() X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Stefan Farfeleder List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Oct 2003 21:10:04 -0000 >Number: 58258 >Category: kern >Synopsis: Panic in knote_drop() >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 19 14:10:02 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Stefan Farfeleder >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD wombat.fafoe.narf.at 5.1-CURRENT FreeBSD 5.1-CURRENT #6: Thu Oct 16 21:34:42 CEST 2003 freebsd@frog.fafoe.narf.at:/freebsd/wombat/obj/freebsd/wombat/src/sys/WOMBAT i386 >Description: The attached program kqueue-crash.c causes a null pointer dereference in the kernel if you do a few ctrl-z / fg cycles while it is running. I'm aware that the program is rather buggy (e.g. it doesn't collect its zombies), but I stripped it down to the smallest one still reproducing the panic. >How-To-Repeat: This panic results from the actions described above: %% Fatal trap 12: page fault while in kernel mode fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x8:0xc04b25c2 stack pointer = 0x10:0xcd429bf0 frame pointer = 0x10:0xcd429c0c 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 = 514 (a.out) kernel: type 12 trap, code=0 Stopped at knote_drop+0xc2: cmpl %ebx,0(%edx) db> t knote_drop(c1e64cc0,c1cb9000,c06589a8,29b,c065de22) at knote_drop+0xc2 kqueue_scan(c1cf46e8,1,8049b40,0,c1cb9000) at kqueue_scan+0x2f0 kevent(c1cb9000,cd429d10,c067228c,3ec,6) at kevent+0x1f1 syscall(2f,2f,2f,bfbffbe0,bfbffbe8) at syscall+0x273 Xint0x80_syscall() at Xint0x80_syscall+0x1d --- syscall (363, FreeBSD ELF32, kevent), eip = 0x280bc18f, esp = 0xbfbff77c, ebp = 0xbfbffbb8 --- db> show registers cs 0x8 ds 0x10 es 0xc1e50010 fs 0x18 ss 0x10 eax 0x1 ecx 0x1 edx 0 ebx 0xc1e65500 esp 0xcd975bf0 ebp 0xcd975c0c esi 0xc1e5a500 edi 0xc1d5ed34 eip 0xc04b25c2 knote_drop+0xc2 efl 0x10207 dr0 0 dr1 0 dr2 0 dr3 0 dr4 0xffff0ff0 dr5 0x400 dr6 0xffff0ff0 dr7 0x400 knote_drop+0xc2: cmpl %ebx,0(%edx) db> ps pid proc uarea uid ppid pgrp flag stat wmesg wchan cmd 519 c1cf0d3c cd8aa000 1001 514 514 0010002 [RUNQ] a.out 514 c1cf0974 cd8a8000 1001 468 514 0005002 [CPU 0] a.out 468 c1e3b790 cd8bf000 1001 467 468 0004002 [SLP]wait 0xc1e3b790] bash 467 c1e3b974 cd8c0000 1001 465 465 0000100 [RUNQ] sshd 465 c1e3bd3c cd8e9000 0 398 465 0000100 [SLP]sbwait 0xc1d3d964] sshd 461 c1e3e5ac cd8ed000 0 1 461 0004002 [SLP]ttyin 0xc1d6ac10] getty 460 c1e3e790 cd8ee000 0 1 460 0004002 [SLP]ttyin 0xc1d6a810] getty 459 c1cf05ac cd8a6000 0 1 459 0004002 [SLP]ttyin 0xc1d6a410] getty 458 c1cb8d3c cd44f000 0 1 458 0004002 [SLP]ttyin 0xc1d6a010] getty 457 c1cf0b58 cd8a9000 0 1 457 0004002 [SLP]ttyin 0xc1d35c10] getty 456 c1cb85ac cd424000 0 1 456 0004002 [SLP]ttyin 0xc1d35810] getty 455 c1cf03c8 cd8a5000 0 1 455 0004002 [SLP]ttyin 0xc1d35610] getty 454 c1cb8b58 cd44e000 0 1 454 0004002 [SLP]ttyin 0xc0f76410] getty 416 c1cb8790 cd425000 0 1 416 0000000 [SLP]nanslp 0xc06b62cc] cron 398 c1cf01e4 cd8a4000 0 1 398 0000100 [CV]select 0xc06db394] sshd 250 c1cb8974 cd426000 0 1 250 0000000 [CV]select 0xc06db394] syslogd 42 c1c2eb58 c9406000 0 0 0 0000204 [SLP]- 0xc06e310c] nfsiod 3 41 c1c2ed3c c9407000 0 0 0 0000204 [SLP]- 0xc06e3108] nfsiod 2 40 c1cb6000 cd419000 0 0 0 0000204 [SLP]- 0xc06e3104] nfsiod 1 --More-- 39 c1cb61e4 cd41a000 0 0 0 0000204 [SLP]- 0xc06e3100] nfsiod 0 38 c1cb63c8 cd41b000 0 0 0 0000204 [SLP]vlruwt 0xc1cb63c8] vnlru 37 c1cb65ac cd41c000 0 0 0 0000204 [SLP]syncer 0xc06b5c80] syncer 36 c1cb6790 cd41d000 0 0 0 0000204 [SLP]psleep 0xc06db828] bufdaemon 35 c1cb6974 cd41e000 0 0 0 000020c [SLP]pgzero 0xc06e9288] pagezero 34 c1cb6b58 cd41f000 0 0 0 0000204 [SLP]psleep 0xc06e92e0] vmdaemon 9 c1cb6d3c cd420000 0 0 0 0000204 [SLP]psleep 0xc06e92cc] pagedaemon 33 c1cb8000 cd421000 0 0 0 0000204 new [IWAIT] irq8: rtc 32 c1cb81e4 cd422000 0 0 0 0000204 new [IWAIT] irq0: clk 31 c1bb95ac c93d0000 0 0 0 0000204 new [IWAIT] irq5: ed1 30 c1bb9790 c93d1000 0 0 0 0000204 new [IWAIT] irq3: sio1 29 c1bb9974 c93d2000 0 0 0 0000204 new [IWAIT] irq4: sio0 28 c1bb9b58 c93d3000 0 0 0 0000204 [IWAIT] swi0: tty:sio 27 c1bb9d3c c93d4000 0 0 0 0000204 [IWAIT] irq6: fdc0 26 c1c2e000 c93d9000 0 0 0 0000204 [RUNQ] irq12: sis0 25 c1c2e1e4 c93da000 0 0 0 0000204 [IWAIT] irq15: ata1 24 c1c2e3c8 c93db000 0 0 0 0000204 [IWAIT] irq14: ata0 8 c1c2e5ac c93dc000 0 0 0 0000204 [SLP]actask 0xc07c366c] acpi_task2 7 c1c2e790 c93dd000 0 0 0 0000204 [SLP]actask 0xc07c366c] acpi_task1 6 c1c2e974 c93de000 0 0 0 0000204 [SLP]actask 0xc07c366c] acpi_task0 --More-- 23 c0f821e4 c8dce000 0 0 0 0000204 new [IWAIT] irq9: acpi0 22 c0f823c8 c8dcf000 0 0 0 0000204 new [IWAIT] irq13: 21 c0f825ac c8dd0000 0 0 0 0000204 [IWAIT] swi7: task queue 20 c0f82790 c8dd1000 0 0 0 0000204 new [IWAIT] swi3: cambio 19 c0f82974 c8dd2000 0 0 0 0000204 new [IWAIT] swi2: camnet 18 c0f82b58 c8dd3000 0 0 0 0000204 new [IWAIT] swi5:+ 17 c0f82d3c c8dfb000 0 0 0 0000204 new [IWAIT] swi7: acpitaskq 5 c1bb9000 c93cd000 0 1 0 0000204 [SLP]tqthr 0xc06b6ec8] taskqueue 16 c1bb91e4 c93ce000 0 0 0 0000204 new [IWAIT] swi6:+ 15 c1bb93c8 c93cf000 0 0 0 0000204 [SLP]- 0xc06a30c0] random 4 c0f7b000 c8d77000 0 0 0 0000204 [SLP]- 0xc06afc00] g_down 3 c0f7b1e4 c8dc6000 0 0 0 0000204 [SLP]- 0xc06afbfc] g_up 2 c0f7b3c8 c8dc7000 0 0 0 0000204 [SLP]- 0xc06afbf4] g_event 14 c0f7b5ac c8dc8000 0 0 0 0000204 [IWAIT] swi1: net 13 c0f7b790 c8dc9000 0 0 0 0000204 new [IWAIT] swi4: vm 12 c0f7b974 c8dca000 0 0 0 000020c [RUNQ] swi8: tty:sio clock 11 c0f7bb58 c8dcb000 0 0 0 000020c [Can run] idle 1 c0f7bd3c c8dcc000 0 0 1 0004200 [SLP]wait 0xc0f7bd3c] init 10 c0f82000 c8dcd000 0 0 0 0000204 [CV]ktrace 0xc06b3634] ktrace 0 c06afd20 c081f000 0 0 0 0000200 [SLP]sched 0xc06afd20] swapper --More-- 518 c1e3b3c8 cd8bd000 1001 514 514 0002002 zomb[CPU 0] a.out 517 c1e3b000 cd8bb000 1001 514 514 0002002 zomb[CPU 0] a.out 516 c1cf0000 cd8a3000 1001 514 514 0002002 zomb[CPU 0] a.out 515 c1e3b5ac cd8be000 1001 514 514 0002002 zomb[CPU 0] a.out %% This is the output from gdb. Unfortunately the knote_drop frame gets eaten by gdb for some reason, but I think the output is valuable nevertheless. %% 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 messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x8:0xc04b25c2 stack pointer = 0x10:0xcd429bf0 frame pointer = 0x10:0xcd429c0c 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 = 514 (a.out) Dumping 127 MB 16 32 48 64 80 96 112 --- Reading symbols from /boot/kernel/acpi.ko...done. Loaded symbols for /boot/kernel/acpi.ko #0 doadump () at /freebsd/lama/src/sys/kern/kern_shutdown.c:240 240 dumping++; (kgdb) bt #0 doadump () at /freebsd/lama/src/sys/kern/kern_shutdown.c:240 #1 0xc043d9b5 in db_fncall (dummy1=1016, dummy2=0, dummy3=1016, dummy4=0xcd4299e4 "ÈÇpÀø\003") at /freebsd/lama/src/sys/ddb/db_command.c:548 #2 0xc043d702 in db_command (last_cmdp=0xc06a1c80, cmd_table=0x0, aux_cmd_tablep=0xc0676ef4, aux_cmd_tablep_end=0xc0676ef8) at /freebsd/lama/src/sys/ddb/db_command.c:346 #3 0xc043d845 in db_command_loop () at /freebsd/lama/src/sys/ddb/db_command.c:472 #4 0xc0440835 in db_trap (type=12, code=0) at /freebsd/lama/src/sys/ddb/db_trap.c:73 #5 0xc0616c6c in kdb_trap (type=12, code=0, regs=0xcd429bb0) at /freebsd/lama/src/sys/i386/i386/db_interface.c:171 #6 0xc0628086 in trap_fatal (frame=0xcd429bb0, eva=0) at /freebsd/lama/src/sys/i386/i386/trap.c:814 #7 0xc0627d52 in trap_pfault (frame=0xcd429bb0, usermode=0, eva=0) at /freebsd/lama/src/sys/i386/i386/trap.c:733 #8 0xc062790d in trap (frame= {tf_fs = 24, tf_es = -1043005424, tf_ds = 16, tf_edi = -1042951920, tf_esi = -1042952192, tf_ebp = -851272692, tf_isp = -851272740, tf_ebx = -1041871680, tf_edx = 0, tf_ecx = 1, tf_eax = 1, tf_trapno = 12, tf_err = 0, tf_eip = -1068816958, tf_cs = 8, tf_eflags = 66051, tf_esp = -1042952140, tf_ss = 0}) at /freebsd/lama/src/sys/i386/i386/trap.c:418 ---Type to continue, or q to quit--- #9 0xc0618618 in calltrap () at {standard input}:102 #10 0xc04b1cd0 in kqueue_scan (fp=0xc1e64cc0, maxevents=1, ulistp=0x8049b40, tsp=0xc1d5d000, td=0xc1cb9000) at /freebsd/lama/src/sys/kern/kern_event.c:755 #11 0xc04b14d1 in kevent (td=0xc1cb9000, uap=0xcd429d10) at /freebsd/lama/src/sys/kern/kern_event.c:483 #12 0xc06283a3 in syscall (frame= {tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = -1077937184, tf_esi = -1077937176, tf_ebp = -1077937224, tf_isp = -851272332, tf_ebx = 1, tf_edx = 134519636, tf_ecx = -1077938288, tf_eax = 363, tf_trapno = 12, tf_err = 2, tf_eip = 671859087, tf_cs = 31, tf_eflags = 658, tf_esp = -1077938308, tf_ss = 47}) at /freebsd/lama/src/sys/i386/i386/trap.c:1006 #13 0xc061866d in Xint0x80_syscall () at {standard input}:144 ---Can't read userspace from dump, or kernel process--- (kgdb) f 10 #10 0xc04b1cd0 in kqueue_scan (fp=0xc1e64cc0, maxevents=1, ulistp=0x8049b40, tsp=0xc1d5d000, td=0xc1cb9000) at /freebsd/lama/src/sys/kern/kern_event.c:755 755 knote_drop(kn, td); (kgdb) l 750 if (kn->kn_flags & EV_ONESHOT) { 751 kn->kn_status &= ~KN_QUEUED; 752 kq->kq_count--; 753 splx(s); 754 kn->kn_fop->f_detach(kn); 755 knote_drop(kn, td); 756 s = splhigh(); 757 } else if (kn->kn_flags & EV_CLEAR) { 758 kn->kn_data = 0; 759 kn->kn_fflags = 0; (kgdb) p kn->kn_fop->f_isfd $3 = 0 (kgdb) p kn->kn_id There is no member named kn_id. (kgdb) p kn->kn_kevent.ident $4 = 518 (kgdb) p td->td_proc->p_fd->fd_knhashmask $5 = 63 (kgdb) p (518 ^ (518 >> 8)) & 63 $6 = 4 (kgdb) p td->td_proc->p_fd->fd_knhash[4] $7 = {slh_first = 0x0} (kgdb) q %% Finally here is the interesting part from the disassembled kern_event.o: %% static void knote_drop(struct knote *kn, struct thread *td) { 1900: 55 push %ebp 1901: 89 e5 mov %esp,%ebp 1903: 57 push %edi [...] SLIST_REMOVE(list, kn, knote, kn_link); 19b3: 39 1f cmp %ebx,(%edi) 19b5: 75 09 jne 19c0 19b7: 8b 03 mov (%ebx),%eax 19b9: 89 07 mov %eax,(%edi) 19bb: eb 1f jmp 19dc 19bd: 8d 76 00 lea 0x0(%esi),%esi 19c0: 8b 17 mov (%edi),%edx 19c2: 39 1a cmp %ebx,(%edx) This line leeds to the page fault because edx is 0. Obviously the SLIST list is empty although it shouldn't be. 19c4: 74 10 je 19d6 19c6: 8d 76 00 lea 0x0(%esi),%esi 19c9: 8d bc 27 00 00 00 00 lea 0x0(%edi,1),%edi 19d0: 8b 12 mov (%edx),%edx 19d2: 39 1a cmp %ebx,(%edx) 19d4: 75 fa jne 19d0 19d6: 8b 02 mov (%edx),%eax 19d8: 8b 00 mov (%eax),%eax 19da: 89 02 mov %eax,(%edx) if (kn->kn_status & KN_QUEUED) %% >Fix: Not known at this time. --- kqueue-crash.c begins here --- #include #include #include #include struct kevent kev[2]; int chfd, kqfd; void new_child(void) { static char buf[32] = "abc"; int pipefd[2], i, pid; if (pipe(pipefd) != 0) err(1, "pipe"); switch (pid = fork()) { case -1: err(1, "fork"); case 0: for (i = 0; i < 1024; i++) if (write(pipefd[1], buf, sizeof(buf)) != sizeof(buf)) err(1, "write"); exit(0); } close(pipefd[1]); chfd = pipefd[0]; EV_SET(&kev[0], chfd, EVFILT_READ, EV_ADD, 0, 0, NULL); EV_SET(&kev[1], pid, EVFILT_PROC, EV_ADD, NOTE_EXIT, 0, NULL); if (kevent(kqfd, kev, 2, NULL, 0, NULL) == -1) err(1, "kevent"); } int main(void) { char buf[1024]; ssize_t n; if ((kqfd = kqueue()) == -1) err(1, "kqueue"); new_child(); while (kevent(kqfd, NULL, 0, kev, 1, NULL) == 1) if (kev[0].filter == EVFILT_READ) { if ((n = read(chfd, buf, sizeof buf)) < 0) err(1, "read"); else if (n == 0) new_child(); } err(1, "kevent"); } --- kqueue-crash.c ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 17:45:41 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 B8EF816A4B3 for ; Sun, 19 Oct 2003 17:45:41 -0700 (PDT) Received: from ns1.itga.com.au (ns1.itga.com.au [202.53.40.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23E6F43F85 for ; Sun, 19 Oct 2003 17:45:40 -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 h9K0jDR5074809; Mon, 20 Oct 2003 10:45:13 +1000 (EST) (envelope-from gnb@itga.com.au) Received: from lightning.itga.com.au (localhost [127.0.0.1]) by lightning.itga.com.au (8.9.3/8.9.3) with ESMTP id KAA22822; Mon, 20 Oct 2003 10:45:12 +1000 (EST) Message-Id: <200310200045.KAA22822@lightning.itga.com.au> X-Mailer: exmh version 2.4 05/15/2001 with nmh-1.0.4 From: Gregory Bond To: John Polstra In-reply-to: Your message of Sun, 19 Oct 2003 10:38:36 -0700. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 20 Oct 2003 10:45:12 +1000 Sender: gnb@itga.com.au cc: Boris Nikolaus cc: freebsd-bugs@freebsd.org cc: John-Mark Gurney Subject: Re: kern/45291: kevent(2) ignores timeout if nevents == 0 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, 20 Oct 2003 00:45:41 -0000 > They absolutely rely on this behavior of select. If anybody changed > it they'd have a whole lot of broken programs on their hands. You may > view it as a case of lazy programmers using the wrong system call for > sleeping, but in fact it is just the proper and most sensible behavior > for select to have at this boundary condition. It's not just lazy either. Up to and including 4.2 BSD, the _only_ way to get sub-second sleeps was to use select() with no FDs. SysV / AT&T varients couldn't do it at all. nanosleep() is a much later addition. Even Solaris 2.6/2.8 has this in the nanosleep man page: ENOSYS nanosleep() is not supported by this implementa- tion. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 21:34:57 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 5A07016A4B3 for ; Sun, 19 Oct 2003 21:34:57 -0700 (PDT) Received: from hotmail.com (bay1-dav36.bay1.hotmail.com [65.54.244.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id B353743FD7 for ; Sun, 19 Oct 2003 21:34:56 -0700 (PDT) (envelope-from amit_varshey@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 19 Oct 2003 21:34:56 -0700 Received: from 220.226.15.85 by bay1-dav36.bay1.hotmail.com with DAV; Mon, 20 Oct 2003 04:34:56 +0000 X-Originating-IP: [220.226.15.85] X-Originating-Email: [amit_varshey@hotmail.com] From: "amiot" To: Date: Sun, 19 Oct 2003 21:59:57 -0700 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: X-OriginalArrivalTime: 20 Oct 2003 04:34:56.0518 (UTC) FILETIME=[837B2260:01C396C3] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: bin/48730: burncd does not handle signals and causes damage 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, 20 Oct 2003 04:34:57 -0000 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 21:35:19 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 CB14616A4BF for ; Sun, 19 Oct 2003 21:35:19 -0700 (PDT) Received: from hotmail.com (bay1-dav62.bay1.hotmail.com [65.54.244.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3395D43FBF for ; Sun, 19 Oct 2003 21:35:19 -0700 (PDT) (envelope-from amit_varshey@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 19 Oct 2003 21:35:18 -0700 Received: from 220.226.15.85 by bay1-dav62.bay1.hotmail.com with DAV; Mon, 20 Oct 2003 04:35:18 +0000 X-Originating-IP: [220.226.15.85] X-Originating-Email: [amit_varshey@hotmail.com] From: "amiot" To: Date: Sun, 19 Oct 2003 22:00:54 -0700 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: X-OriginalArrivalTime: 20 Oct 2003 04:35:18.0966 (UTC) FILETIME=[90DC6D60:01C396C3] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: bin/48730: burncd does not handle signals and causes damage 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, 20 Oct 2003 04:35:19 -0000 From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 02:32: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 B02E916A4B3 for ; Mon, 20 Oct 2003 02:32:17 -0700 (PDT) Received: from www2.hotbox.ru (www2.hotbox.ru [80.68.244.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 702DE43F3F for ; Mon, 20 Oct 2003 02:32:16 -0700 (PDT) (envelope-from icehard@pisem.net) Received: by HotBOX.Ru WebMail v2.1 id h9K9WAGL017027 for ; Date: Mon, 20 Oct 2003 13:32:10 +0400 (MSD) Message-Id: <200310200932.h9K9WAGL017027@www2.hotbox.ru> From: IceHard To: freebsd-bugs@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 8bit X-Mailer: Free WebMail HotBOX.ru X-Originating-IP: [193.232.119.137] Subject: SYSTEM HANGS DURING BOOTUP 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, 20 Oct 2003 09:32:17 -0000 I was trying to install FreeBSD 4.8 and FreeBSD 5.1 on GATEWAY ALR 7200 SERVER but fault. System hangs duirn initialization of integrated video card (cirrus logic). Is there any way to fix it? From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 04:20: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 7F7C216A4B3 for ; Mon, 20 Oct 2003 04:20:22 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8256C43F93 for ; Mon, 20 Oct 2003 04:20: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 h9KBKJFY035199 for ; Mon, 20 Oct 2003 04:20:19 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9KBKJAQ035197; Mon, 20 Oct 2003 04:20:19 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 20 Oct 2003 04:20:19 -0700 (PDT) Resent-Message-Id: <200310201120.h9KBKJAQ035197@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, Matt Peterson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 566E316A4C0 for ; Mon, 20 Oct 2003 04:14:58 -0700 (PDT) Received: from mail.forko.com (forko.com [206.14.189.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50B1843F3F for ; Mon, 20 Oct 2003 04:14:57 -0700 (PDT) (envelope-from matt@mail.forko.com) Received: (qmail 69372 invoked by uid 1000); 20 Oct 2003 04:10:02 -0700 Message-Id: <20031020111002.69371.qmail@mail.forko.com> Date: 20 Oct 2003 04:10:02 -0700 From: Matt Peterson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Dirk-Willem van Gulik cc: phk@FreeBSD.org Subject: misc/58272: [patch] rc.d/diskless detection, dhcp rebuild X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matt Peterson List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Oct 2003 11:20:22 -0000 >Number: 58272 >Category: misc >Synopsis: [patch] rc.d/diskless detection, dhcp rebuild >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 Oct 20 04:20:16 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Matt Peterson >Release: FreeBSD 5.1-CURRENT i386 >Organization: Bay Area Wireless Users Group >Environment: >Description: The following patch fixes a few issues with the rc.d/diskless script: 1. Add detection based on read-only / (popular for embedded systems which are booting from flash, not NFS/PXE/etc). 2. Require syslog & named before, since they may require a writable /var 3. Move newalias rebuild, only if sendmail is enabled 4. Re-work DHCP domain-name & DNS to use kenv dhcp.* values (plumbed from PXE boot loader) OR read from dhclient.leases (in the case of r/o flash using DHCP). Much of these tweaks are down right ugly, I welcome a more sanatized version to be committed. Quick glance from phk was postive, request this PR assigned to DougB; thx! >How-To-Repeat: >Fix: --- diskless.orig Mon Oct 13 01:18:05 2003 +++ diskless Mon Oct 20 03:59:59 2003 @@ -29,11 +29,20 @@ # PROVIDE: diskless # REQUIRE: initdiskless rcconf mountcritlocal -# BEFORE: addswap random +# BEFORE: addswap random named syslogd # KEYWORD: FreeBSD -dlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null` -[ ${dlv:=0} -eq 0 ] && exit 0 +# Detect boot from flash (read-only /) or PXE (nfs /) +### TODO: grep requires /usr, re-work to use /sbin/something? +rootdev=`sysctl -n kern.rootdev` +ro_test=`mount | grep $rootdev | grep read` + +if [ -n "$ro_test" ]; then + dlv="2" +else + dlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null` + [ ${dlv:=0} -eq 0 ] && exit 0 +fi name="diskless2" @@ -87,11 +96,15 @@ # echo "+++ populate /var using /etc/mtree/BSD.var.dist" /usr/sbin/mtree -deU -f /etc/mtree/BSD.var.dist -p /var > /dev/null + +# Make sendmail happy +# case ${sendmail_enable} in [Nn][Oo][Nn][Ee]) ;; *) /usr/sbin/mtree -deU -f /etc/mtree/BSD.sendmail.dist -p / > /dev/null + /usr/bin/newaliases ;; esac @@ -104,11 +117,6 @@ echo "+++ create lastlog" /usr/bin/touch /var/log/lastlog -# Make sure our aliases database is uptodate, the aliases may have -# been overriden in /conf. -# -/usr/bin/newaliases - # XXX make sure to create one dir for each printer as requested by lpd # # If we do not have a writable /tmp, create a memory @@ -145,23 +153,43 @@ # generate our hostname # -if [ -z "`hostname -s`" -a \ - "x`/bin/kenv dhcp.host-name`" != "x" ]; then - hostname=`/bin/kenv dhcp.host-name` - hostname $hostname - echo "Hostname is $hostname" -fi - -# if the info is available via dhcp/kenv -# build the resolv.conf -# -if [ ! -e /etc/resolv.conf -a \ - "x`/bin/kenv dhcp.domain-name-servers`" != "x" ]; then - echo domain `/bin/kenv dhcp.domain-name` > /etc/resolv.conf - - set `/bin/kenv dhcp.domain-name-servers` - for ns in `IFS=','; echo $*`; do - echo nameserver $ns >> /etc/resolv.conf; - done +if [ -z "`hostname -s`" ] ; then + if [ $dlv = 2 ] ; then + hostname="`grep 'host-name ' /var/db/dhclient.leases | \ + sed -e 's/^.*me \"//' -e 's/\"\;$//'`" + kenv dhcp.host-name="$hostname" + echo here + fi + echo two + hostname "`kenv dhcp.host-name`" + echo "Hostname is $hostname" +fi + +# populate resolv.conf with domain and name servers +# TODO: snarf dhclient_flags for -lf different leases file location +# +# writable? +if [ -w /etc/resolv.conf -o ! -f /etc/resolv.conf ] ; then +# domain already exist? + if [ -z "`grep 'domain' /etc/resolv.conf > /dev/null 2>&1`" ] ; then +# non-PXE boot, snarf from dhclient leases file, fill in kernel enviro + if [ $dlv = 2 ] ; then + /bin/kenv dhcp.domain-name=`grep 'domain-name ' \ + /var/db/dhclient.leases | sed -e 's/^.*me \"//' -e 's/\"\;$//'` \ + > /dev/null 2>&1; + fi + echo domain `/bin/kenv dhcp.domain-name` > /etc/resolv.conf + fi + + if [ -z "`grep 'nameserver' /etc/resolv.conf > /dev/null 2>&1`" ] ; then + if [ $dlv = 2 ] ; then + /bin/kenv dhcp.domain-name-servers=`grep domain-name-servers \ + /var/db/dhclient.leases | sed -e 's/^.*ers //' -e 's/;//'` \ + > /dev/null 2>&1; + fi + set `/bin/kenv dhcp.domain-name-servers` + for ns in `IFS=','; echo $*`; do + echo nameserver $ns >> /etc/resolv.conf; + done + fi fi - >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 08:20: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 AA7F616A4B3 for ; Mon, 20 Oct 2003 08:20:21 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31D4243F85 for ; Mon, 20 Oct 2003 08:20: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 h9KFKLFY081138 for ; Mon, 20 Oct 2003 08:20: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 h9KFKL0D081137; Mon, 20 Oct 2003 08:20:21 -0700 (PDT) (envelope-from gnats) Date: Mon, 20 Oct 2003 08:20:21 -0700 (PDT) Message-Id: <200310201520.h9KFKL0D081137@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Matt Peterson Subject: Re: misc/58272: [patch] rc.d/diskless detection, dhcp rebuild X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matt Peterson List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Oct 2003 15:20:21 -0000 The following reply was made to PR misc/58272; it has been noted by GNATS. From: Matt Peterson To: FreeBSD-gnats-submit@freebsd.org Cc: Dirk-Willem van Gulik , phk@freebsd.org Subject: Re: misc/58272: [patch] rc.d/diskless detection, dhcp rebuild Date: Mon, 20 Oct 2003 08:11:21 -0700 On Mon, Oct 20, 2003 at 07:33:10AM -0700, Dirk-Willem van Gulik wrote: > > Comparing this to > http://wleiden.webweaving.org:8080/svn/node-config/factory/trunk/nodeconfig/ > where do the same. > > > 3. Move newalias rebuild, only if sendmail is enabled > > We moved this to /var/run with a link from /etc > > > 4. Re-work DHCP domain-name & DNS to use kenv dhcp.* values (plumbed > > from PXE boot loader) OR read from dhclient.leases (in the case of > > r/o flash using DHCP). > > And same for resolv.conf to /var/run - as dhclient will actualy block/hang > when it cannot write its resolv.conf to /etc. Right, I assume resolv.conf and other etc files are sym-link to a writable directory. > > +rootdev=`sysctl -n kern.rootdev` > > +ro_test=`mount | grep $rootdev | grep read` > > Rather than detect we also found it useful to have this under > mount_rw_root="NO sort of control. Ahh, you mean 'root_rw_mount', ya; totally, I've updated the patch to use vs. the ghetto detection method. http://matt.peterson.org/FreeBSD/stripdown/diskless.diff From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 09:10: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 8F22F16A4B3 for ; Mon, 20 Oct 2003 09:10:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B4E443FBF for ; Mon, 20 Oct 2003 09: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 h9KGACFY088575 for ; Mon, 20 Oct 2003 09: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 h9KGACXk088573; Mon, 20 Oct 2003 09:10:12 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 20 Oct 2003 09:10:12 -0700 (PDT) Resent-Message-Id: <200310201610.h9KGACXk088573@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, Matthew George Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A75F16A4B3 for ; Mon, 20 Oct 2003 09:03:23 -0700 (PDT) Received: from mail.secureworks.net (mail.secureworks.net [209.101.212.155]) by mx1.FreeBSD.org (Postfix) with SMTP id 1DDA743FBD for ; Mon, 20 Oct 2003 09:03:22 -0700 (PDT) (envelope-from mdg@secureworks.net) Received: (qmail 89561 invoked from network); 20 Oct 2003 16:01:02 -0000 Received: from unknown (HELO HOST-192-168-10-225.internal.secureworks.net) (63.239.86.253) by mail.secureworks.net with SMTP; 20 Oct 2003 16:01:02 -0000 Message-Id: <20031020120039.O33518@localhost> Date: Mon, 20 Oct 2003 12:03:00 -0400 (EDT) From: Matthew George To: FreeBSD-gnats-submit@FreeBSD.org Subject: kern/58287: ipnat map protocol specification broken 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, 20 Oct 2003 16:10:13 -0000 >Number: 58287 >Category: kern >Synopsis: ipnat map protocol specification broken >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 20 09:10:11 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Matthew George >Release: FreeBSD 4.8-RELEASE-p1 i386 >Organization: SecureWorks >Environment: System: FreeBSD fbsd.secureworks.net 4.8-RELEASE-p1 FreeBSD 4.8-RELEASE-p1 #4: Thu Sep 25 12:29:50 EDT 2003 mdg@fbsd.secureworks.net:/usr/src/sys/compile/SW-GENERIC-SMP i386 >Description: The docs in ipnat(5) provide the following description of ipnat map with regards to protocol specification: map ::= mapit ifname ipmask "->" dstipmask [ mapport ] mapoptions. mapoptions ::= [ tcpudp ] [ "frag" ] [ age ] [ clamp ] . tcpudp ::= "tcp/udp" | protocol . protocol ::= protocol-name | decnumber . However, ipnat refuses to properly parse a rule with a protocol specified. >How-To-Repeat: # ipnat -f - map dc0 from 192.168.0.0/16 to any -> w.x.y.z/32 icmp 1: extra junk at the end of the line: icmp 1: syntax error in "map" >Fix: I only looked at this very shortly, but the problem appears to be around line 458 of natparse.c. It looks like the protocol is only examined and dealt with if !(ipn.in_redir & (NAT_MAP|NAT_MAPBLK)). -- Matthew George SecureWorks Technical Operations >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 11:00:33 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 12B4C16A4C3 for ; Mon, 20 Oct 2003 11:00:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1416D43FE1 for ; Mon, 20 Oct 2003 11:00:27 -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 h9KI0QFY097776 for ; Mon, 20 Oct 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 h9KI0QQK097769 for freebsd-bugs@freebsd.org; Mon, 20 Oct 2003 11:00:26 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 20 Oct 2003 11:00:26 -0700 (PDT) Message-Id: <200310201800.h9KI0QQK097769@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, 20 Oct 2003 18:00:33 -0000 Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/10/08] pending/57767gnats-admin [MAINTAINER] misc/libhome: update to 0.7 o [2003/10/09] pending/57821gnats-admin Re: [PATCH] databases/py-cdb: install exa o [2003/10/13] pending/57948gnats-admin followup: ports/57906 o [2003/10/13] pending/57949gnats-admin followup: java/57901 o [2003/10/14] pending/58020gnats-admin Re: isc-dhcp3 port broken with lots of in o [2003/10/14] pending/58021gnats-admin Re: [patch] archivers/gzip - typo in Make o [2003/10/14] pending/58022gnats-admin Re: ports using NOPORTSDOCS (instead of N o [2003/10/14] pending/58033gnats-admin [PATCH] getenv(3) manpage doesn't state t o [2003/10/15] pending/58063gnats-admin RE: java/jdk14 (jdk-1.4.1p4) fails to bui o [2003/10/16] pending/58116gnats-admin Re: [non-maintainer] Update port: mail/sq o [2003/10/16] pending/58140gnats-admin quitting gnome2-2.2.1_1 results in LOR o [2003/10/16] pending/58150gnats-admin Re: ports that use pre-everything: (inste o [2003/10/16] pending/58151gnats-admin o [2003/10/18] pending/58194gnats-admin Re: [non-maintainer] port emulators/xpinm o [2003/10/19] pending/58261gnats-admin TO GOD BE THE GLORY o [2003/10/19] pending/58262gnats-admin o [2003/10/20] pending/58282gnats-admin Re: [patch] rc.d/diskless detection, dhcp 17 problems total. Non-critical problems From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 11:02:24 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 17D4116A4BF for ; Mon, 20 Oct 2003 11:02:24 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70E1143F3F for ; Mon, 20 Oct 2003 11:00:34 -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 h9KI0YFY097908 for ; Mon, 20 Oct 2003 11:00:34 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9KI0R3A097781 for freebsd-bugs@freebsd.org; Mon, 20 Oct 2003 11:00:27 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 20 Oct 2003 11:00:27 -0700 (PDT) Message-Id: <200310201800.h9KI0R3A097781@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, 20 Oct 2003 18:02:24 -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 ------------------------------------------------------------------------------- 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 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 threads 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/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/03] bin/22595 brian telnetd tricked into using arbitrary peer 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 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 njl 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/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 ? 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 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 s [2001/09/29] kern/30921 ACER mechanic ps/2 keyboard don´t work an 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 o [2001/11/16] bin/32040 brian 4.4-Release "set mtu" in ppp is broken wi o [2001/12/11] kern/32713 joe usb mouse detaches from hub and doesnt re 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 threads pthread_cancel is ignored 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 o [2002/01/30] kern/34470 bde Modem gets sio1 interrupt-level buffer o f [2002/02/26] kern/35354 4.4/4.5 FreeBSD causes hard lock after 20 o [2002/03/01] kern/35466 imp 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-jp ACPI missing prevents install from floppi 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 f [2002/04/07] i386/36850 joe Page Fault using ppp with USB Modem f [2002/04/12] kern/37015 njl Kernel panic in tty_subr.c while using pp f [2002/04/14] kern/37056 joe usb mouse with bios legacy support on han o [2002/04/14] kern/37064 imp System hangs when removing wire of NIC D- 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 f [2002/05/23] i386/38459 mux 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 kan Fortan program don't link post gcc-3.1 o [2002/05/28] bin/38676 change request for pw command o [2002/05/30] misc/38748 qa FreeBSD 4.5 Keyboard problem cannot insta f [2002/06/03] kern/38848 joe kernel panic when removing memory stick f o [2002/06/03] kern/38872 nfs code ignores possibility of MGET(M_WA o [2002/06/08] kern/39043 Corrupted files on a FAT32 partition o [2002/06/13] i386/39234 jhb SMP 4.6-RC freezes during boot (Fujitsu-S o [2002/06/15] misc/39341 joe ppp + USB modem problem o [2002/06/19] kern/39524 smbfs with nge NIC causes kernel panic o [2002/06/29] kern/40003 Panic on boot w/4.6 and 4.6-stable from 6 o [2002/07/05] bin/40215 wpaul NIS host search not terminate o [2002/07/14] misc/40575 qa Kern.flp boot floppy error 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 f [2002/08/08] i386/41437 qa sysinstall 4.6 RELEASE - hang o [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 a [2002/08/13] bin/41647 bms ifconfig doesn't accept lladdr along with 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 p [2002/08/19] misc/41792 tjr lseek after ftruncate fails f [2002/08/21] i386/41860 qa 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 bms panic when zebra works on detaching tun i o [2002/08/26] i386/42046 System crashes with o [2002/08/29] i386/42173 sound Sony VAIO FXA 53 (or FXA 679 in Mexico) w o [2002/08/30] kern/42198 Kernel panics or system hangs up with big f [2002/08/30] misc/42221 qa Signal 11 core dumped when fetchin index f [2002/08/30] kern/42235 system panics with "worklist_remove: item p [2002/09/09] kern/42580 robert kernel crash when starting ISC 3.2 X11 bi p [2002/09/14] bin/42772 usr.bin/make: patch to stop a fork bomb o [2002/09/15] kern/42796 NCR/SYM 53C825 driver detects scsi cdrom f [2002/09/18] ports/42921 nork archivers/rpm/work/rpm-3.0.6/lib/rpmlead. o [2002/09/18] kern/42937 bms panic when ARP cache uses up all mbufs o [2002/09/27] bin/43434 New option to 'dmesg' which allow to disp 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 imp Wi(4) driver hangs after long data transf o [2002/10/05] kern/43713 during install, mounting root from ufs:/d o [2002/10/11] kern/43954 nfs-blocked process can't return or be in o [2002/10/17] kern/44198 njl Toshiba PDR-M25 camera/umass o [2002/10/21] kern/44336 NFSv3 client broken - security problem wi o [2002/10/25] misc/44471 qa 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 imp pcic is broken in current o [2002/11/17] i386/45383 Failed installation FreeBSD 4.7-RELEASE a o [2002/11/21] kern/45568 gibbs ahc(A19160) pci parity error o [2002/12/02] kern/45910 emoore unable to use amr device o [2002/12/08] i386/46113 busspace bug f [2002/12/20] kern/46392 grog kernel, vinum, umount, changing user mode o [2002/12/23] kern/46490 silby xl driver generates lots of interrupts wi o [2002/12/23] i386/46506 joe 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 imp 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/27] bin/47538 tar buggy on memory disk partitions o [2003/01/27] kern/47544 iir does not detect direct access drives a [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 s [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/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 qa Sysinstall deletes mbr although it should o [2003/02/17] kern/48369 ext2fs no-go in FreeBSD 5 (regression ove o [2003/02/25] kern/48667 FreeBSD hangs o [2003/02/25] kern/48691 kernel panics on ASUS A7N266-VM Motherboa o [2003/03/02] kern/48849 joe Maxtor XT5000 causes panic in boot o [2003/03/13] i386/49978 installation problem on Acer Altos G300 o [2003/03/23] kern/50216 ipfw kernel panic on 5.0-current when use ipfw o [2003/03/23] kern/50229 FreeBSD detects laptop drive geometries i o [2003/04/15] ports/50999 ports-bugs SSL with mail/dovecot simply doesn't work o [2003/04/15] kern/51016 kernel panic: ufsdirhash_lookup: bad offs o [2003/04/18] i386/51129 acpi-jp ACPI problem, booting from install cd fai o [2003/04/24] i386/51338 sound random system hangs; system hangs because 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/16] ports/52346 obrien Portupgrade of bash-2.05b.004 fails with o [2003/05/22] kern/52585 luigi Kernel panic with ipfw2 and syncookies f [2003/05/22] i386/52593 mdodd Kernel panic when starting apm o [2003/05/23] ports/52632 ports-bugs vmware3 port is missing /usr/lib/vmware/v o [2003/05/25] i386/52668 i386 AIC7902 problem when large data transferr f [2003/05/27] kern/52718 jeffr changes to kern_umtx.c causes panic in ca s [2003/05/27] kern/52745 Fatal trap 12: page fault while in kernel o [2003/06/01] i386/52835 pdeuskar em driver does not work with mobile-chips o [2003/06/03] kern/52916 grog vinum causes panic after start/stop/... c o [2003/06/06] kern/53004 union_lookup returning . (0xbc332e90) not o [2003/06/07] kern/53010 FreeBSD-CURRENT cannot use 2940 UW on SNI o [2003/06/11] kern/53195 rwatson Easily reproduceable mac_lomac panic o [2003/06/11] i386/53203 i386 "BTX halted" when attempting install of 5 o [2003/06/15] kern/53350 fill up a malloc md-disk on 5.1-R causes o [2003/06/17] kern/53416 kmem_map too small after around 12 hours. o [2003/06/17] kern/53433 heavy i/o on GBDE partition on SMP locks o [2003/06/21] ports/53600 ports-bugs /usr/port/emulators/linux_base says "linu o [2003/06/22] i386/53620 i386 Kernel panics / reboots during install of o [2003/06/25] kern/53725 jhb fatal trap 12 during boot, sys/dev/pci/pc o [2003/06/25] ports/53742 sobomax /usr/ports/print/freetype2 fails to insta o [2003/06/28] ports/53874 ports-bugs /usr/ports/emulators/linux_base isn't wor s [2003/07/08] kern/54211 rwatson Seeing other uid with kern.file sysctl. o [2003/07/08] ports/54230 ports-bugs fsck_ext2fs is broken (unable to perform o [2003/07/13] java/54463 glewis Apparent bug in jdk13 f [2003/07/16] kern/54549 panic on install on Dell 600sc o [2003/07/18] kern/54616 thomas System hangs writing CD-Rs with "atapicam o [2003/07/18] kern/54626 imp Some PC Cards cause NEWCARD to panic on c f [2003/07/22] ports/54753 ports-bugs print/lyx core dump o [2003/07/29] kern/55028 The broken FAT12 filesystem causes system o [2003/07/30] ports/55039 sada Japanese fonts are not visible with mozil o [2003/08/01] ports/55147 openoffice Openoffice build failure o [2003/08/01] ports/55173 ports-bugs VMware3 hangs as normal user o [2003/08/14] kern/55587 joe null dereference in usbdi.c: usb_transfer o [2003/08/25] kern/55975 thomas ATAPICAM- READ_6(0x08) fails for ATAPI ta o [2003/09/01] ports/56268 ports-bugs mail/kavmilter exits with signal 11 o [2003/09/03] kern/56381 panic: page fault in fifo_close() ... f [2003/09/05] java/56499 phantom jdk14 compile error (source 2 sep) o [2003/09/05] bin/56502 initstate() causes memory corruption on L f [2003/09/07] kern/56572 sos ATAng sees zero sized disk... causes div- o [2003/09/07] kern/56583 sos panic at writting DVD-RAM after ATAng o [2003/09/09] kern/56659 ACPI trouble on IBM ThinkPad X31 o [2003/09/14] kern/56873 qa system hangs on boot at Buslogic device o [2003/09/16] i386/56933 i386 kernel panic vm_page_remove o [2003/09/16] i386/56937 i386 system panic during high network load o [2003/09/18] kern/56973 SCSI errors from on-board Adaptec (AIC7xx o [2003/09/20] kern/57036 No media detected by 3c905b-tx on 4.9-rel o [2003/09/20] i386/57043 i386 ar driver with 2 port PCI card locks up w o [2003/09/22] i386/57097 i386 Promise Ultra 100 TX2 causes lockup on SM o [2003/09/24] kern/57156 GEOM-related panic while boot on latest - o [2003/09/28] bin/57315 so Safe.pm security hole in 4.x base system' o [2003/09/28] bin/57321 markm CGI.pm in 4.x base system has a cross-sit o [2003/09/28] ports/57336 mbr FrontPage publishing failure with mod_fro o [2003/09/29] kern/57344 bms KMEM exhaustion from cloned routes o [2003/09/29] kern/57369 sos 4.9-PRERELEASE panic during ata probe o [2003/09/30] i386/57398 i386 Current fails to install on mly(4) based o [2003/09/30] ports/57427 ports-bugs Errors building static tk80 library o [2003/10/01] kern/57453 if_kue hangs boot after warm boot if firm o [2003/10/01] i386/57480 i386 Removing very large files using rm doesn' o [2003/10/02] ports/57514 kde Make appropriate changes to misc/kde-i18n f [2003/10/02] ports/57516 ports-bugs Arabic category koffice-i18n meta-port de o [2003/10/04] ports/57566 znerd Resin cannot start at system boot o [2003/10/05] kern/57603 alex new bktr driver: freeze on SMP machine o [2003/10/05] kern/57606 ATAng: Can't write CD media on 5.1-CURREN o [2003/10/05] i386/57632 i386 Dell PowerEdge 4300 is allergic to FreeBS o [2003/10/07] kern/57730 darrenr ipl.ko should be compiled with IPv6 funct o [2003/10/08] ports/57731 perky lang/python port build failure on RELENG_ p [2003/10/08] conf/57733 gshapiro WorkAroundBrokenAAAA is required in submi o [2003/10/08] kern/57736 darrenr IP Filter IPv6 accounting bug o [2003/10/08] bin/57738 darrenr [PATCH] ipmon IPv6 packet total size mis- o [2003/10/10] kern/57829 acpi-jp ACPI problems (Battery, Mouse probe) o [2003/10/10] kern/57832 softdep_deallocate_dependencies: dangling o [2003/10/12] i386/57881 i386 ripping audio CDs causes kernel panic o [2003/10/15] kern/58107 sos -CURRENT fails to detect ATA devices o [2003/10/16] ports/58131 ports-bugs Checksum error on libmcrypt port o [2003/10/16] kern/58139 -CURRENT panics on Thinkpad A31p while co o [2003/10/18] ports/58197 ports-bugs jrtplib port doesn't compile on AMD64 - f o [2003/10/18] kern/58228 sos atacontrol rebuild always panics o [2003/10/18] kern/58230 sos ata raid crashes in g_down o [2003/10/20] ports/58279 ports-bugs Fix net/libnids build on -CURRENT o [2003/10/20] ports/58285 ports-bugs Fix sysutils/prips build on 5.X 245 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/19] kern/2768 ktrace(1) -i dumps corrupted trace data 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 hm sl_compress_init() will fail if called an o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio 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/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/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/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 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 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 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 threads libc_r does not honor socket timeouts o [2000/08/28] gnu/20912 mp gdb does not recognise old executables. o [2000/08/30] bin/20952 des 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 kan libI77 is unable to handle files >2Gbytes a [2000/09/15] kern/21304 mbr dc0 watchdog timeouts on NetGear FA310TX s [2000/09/18] misc/21384 greid pcm driver has static in recorded audio o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites p [2000/09/20] gnu/21433 kan 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 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 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/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 o [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 threads 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 threads libc_r delicate deviation from libc in ha o [2001/01/25] misc/24641 threads pthread_rwlock_rdlock can deadlock 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 o [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/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 qa 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 joe Linksys (rev 3) USB 100TX NIC causes infi 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 threads 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 sendto() syscall returns EINVAL in jail e 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 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 p [2001/05/21] kern/27522 des linprocfs:/proc/stat does not handle SMP s [2001/05/22] kern/27543 pirzyk /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] 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 ports-bugs 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 yar ftpd doesn't honor invalid shelll in logi o [2001/06/20] bin/28311 des ftpd and sshd do not honor expired pw ent o [2001/06/24] ports/28398 mita japanese/dvi2ps cannot find tex.pro p [2001/06/25] kern/28417 bms arplookup uses potentially unprotected st o [2001/06/26] bin/28424 mtree fails to report directory hierarchy 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 joe 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/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 pb traceroute -s option allows any IP addres o [2001/07/18] i386/29067 sound Yamaha OPL3Sa2 pcm/pnp bug o [2001/07/19] ports/29098 jedgar p5-Mysql port references wrong directory f [2001/07/23] kern/29170 ru ARP request fails after "bad gateway valu o [2001/07/26] bin/29253 ru natd forgets about udp connections o [2001/08/01] i386/29375 qa the disk editor used by /stand/sysinstall o [2001/08/01] i386/29377 imp pccard hangs during probe when returning o [2001/08/03] kern/29421 Update a file with mmap will cause mtime/ o [2001/08/04] kern/29465 sound Can't probe NeoMagic 256AX audio chip. f [2001/08/11] kern/29626 ifconfig causes kernel panic in 4.4-PRERE o [2001/08/13] kern/29686 jlemon kevent EV_ADD EVFILT_WRITE does the wrong o [2001/08/14] ports/29704 bp Imagemagick Identify utility crashes when o [2001/08/15] bin/29725 dwmalone [PATCH] Fixed segmentation fault in simpl o [2001/08/16] docs/29767 incorrect description of 'standart-supfil o [2001/08/17] bin/29808 ypserv dumps core in yp_find_db o [2001/08/17] i386/29809 imp pb Xircom Eth Card with Freebsd 4.4RC1 : o [2001/08/19] i386/29882 peter stable 4.3 kernel compile fails for multi o [2001/08/20] bin/29903 ypbind loses connection to NIS master and o [2001/08/23] kern/29983 imp Problem with "TI PCI-1250 PCI-CardBus Bri o [2001/08/24] kern/30049 imp [f: 4.4] Bad iomem assigned in some cases o [2001/08/27] kern/30125 btx/bootloader dumps very often if serial o [2001/08/30] kern/30223 Using /usr/share/examples/kld/cdev, testc o [2001/08/30] kern/30230 md cannot o [2001/08/31] bin/30235 /usr/sbin/portmap cannot listen to localh o [2001/08/31] kern/30241 gibbs System crash w/err: AHC0; AHC_INTR - refe o [2001/09/02] i386/30276 CPUTYPE=486 built on a CPUTYPE=p3 WORLD b o [2001/09/04] bin/30310 top does not show CPU usage o [2001/09/06] conf/30399 Have Fortran use the CPUTYPE variable o [2001/09/10] kern/30482 calcru calls printf while holding a spin o [2001/09/10] alpha/30486 alpha AlphaServer DS10 floppy access is broken o [2001/09/10] alpha/30487 alpha Floppy access on AlphaServer DS20 solid l o [2001/09/10] ports/30490 sobomax yacc in world does NOT fully respect TMPD o [2001/09/10] kern/30502 joe panics if logitech joystick usb attached 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/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 qa Sysinstall doesn't set the schg flag on t o [2001/09/30] kern/30948 ls'ing mounted brand new floppy locks up 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 o [2001/10/02] ports/30993 iedowse xxgdb cannot open source file o [2001/10/04] bin/31045 routed dumps core s [2001/10/04] kern/31047 Linux programs do not dump core in linux o [2001/10/07] kern/31102 wpaul lge + Pentium III data transmission probl 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 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. a [2001/10/31] kern/31659 joe USB controller driver will die after some o [2001/10/31] bin/31661 threads pthread_kill signal handler doesn't get s o [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 s [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 o [2001/11/26] bin/32295 threads 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/29] bin/32374 vi -r doesn't work, file contained unexpe 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 ports-bugs net/arla: inode changes for large o [2001/12/11] kern/32716 joe system hangs when running vid (usb webcam o [2001/12/11] bin/32717 brian ppp(8) change mss to wrong size 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/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] misc/33370 qa 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 o [2002/01/09] kern/33738 argv == NULL is not handled correctly by o [2002/01/13] kern/33833 luigi 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] docs/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] 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 s [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 njl detect USB memory device, But can not use 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 fenner 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 threads accept() blocks other threads o [2002/02/01] kern/34544 joe 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 o [2002/02/11] misc/34842 VmWare port + NIS causes "broadcast storm o [2002/02/17] kern/35061 joe After printing to HP Deskjet 656c USB pri o [2002/02/19] misc/35116 keyinfo reports root's keyinfo o [2002/02/20] kern/35136 luigi VLAN & bridging & MTU o [2002/02/22] bin/35214 obrien dump program hangs while exiting o [2002/02/25] bin/35307 standards standard include files are not standard c o [2002/02/25] misc/35310 des 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/26] misc/35350 Can't boot on ASUS TXP4 o [2002/02/26] kern/35351 sound 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/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 threads sigaltstack is missing in libc_r o [2002/03/07] ports/35631 archie 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] kern/35756 joe 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 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 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 f [2002/03/22] kern/36220 panic: sched_sync: fsync failded vp 0xcf4 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 qa installation floppy bug (See description) o [2002/03/29] i386/36517 sis driver can't map ports/memory for Net o [2002/03/31] kern/36566 System reboot with dead smb mount and umo o [2002/04/05] kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo o [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d 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 qa 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/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/14] kern/37057 Problem with rlimits on filesystem mounte o [2002/04/15] kern/37109 Kernel refuses to assign unused IP to tun p [2002/04/16] bin/37159 ru more then one natd use running use the sa 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 njl gphoto2 fails to find supported USB digit 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] 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/26] i386/37482 sound 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/29] misc/37585 qa System hangs on install at probing device o [2002/04/30] misc/37586 qa newfs failing in 5.0-DP1 initial install o [2002/04/30] kern/37589 imp Kernel panics upon resume from zzz on my o [2002/05/01] kern/37635 joe USB ufm driver using major 200, although a [2002/05/01] kern/37656 robert Linux emulator 'Invalid Argument' error i o [2002/05/03] misc/37710 murray LAN interface in wrong state after attemp 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] kern/38011 imp Fatal Trap 12 using Xircom CE2 in IBM 760 a [2002/05/12] java/38018 znerd ports/www/jakarta-tomcat4: make passing o a [2002/05/12] java/38020 znerd ports/www/jakarta-tomcat4: stop tomcat vi o [2002/05/14] kern/38095 bp vlan not supported with fxp f [2002/05/16] kern/38166 gad ipv6_gateway_enable="YES" breaks lpd o [2002/05/17] ports/38212 knu XFree86-4 and portupgrade get dependencie f [2002/05/18] misc/38241 mount_cd9660 doesn't mount/read multisess f [2002/05/23] ports/38460 ports-bugs core dumps with print/ghostscript-gnu 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 threads the procces compiled whith pthread stoppe o [2002/05/25] kern/38554 changing interface ipaddress doesn't seem f [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 f [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 imp Loss of connection with wi cards o [2002/05/30] i386/38731 Freebsd doesn't support ( pdc20276 / Raid f [2002/05/30] kern/38736 joe kernel panic during memory stick removal o [2002/05/30] kern/38752 rn_walktree_from not halting at the right o [2002/05/31] bin/38765 peter CVS Daemon Vulnerability in 1.11.1p1 o [2002/06/01] kern/38794 sound ESS Solo driver truncates output o [2002/06/01] kern/38795 sound kldunload of snd_ess, snd_sb16, snd_sb8 p f [2002/06/02] misc/38835 qa sysinstall always installs crypto o [2002/06/04] kern/38894 Dell PowerEdge 4600 PCI Bus scan problems o [2002/06/04] kern/38906 calcru: negative time of o [2002/06/05] bin/38918 edquota breaks silently when quota-marked o [2002/06/07] kern/38983 Kernel fails to access disk o [2002/06/10] misc/39104 sos 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 trevor acroread5 install fails o [2002/06/11] kern/39185 core dump binary in single user mode o [2002/06/13] kern/39233 NonConforming IPsec implementation from F o [2002/06/13] kern/39252 Syscons doesn't support 8-bit control cha o [2002/06/13] kern/39260 sound 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 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 s [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] 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 f [2002/06/24] kern/39805 joe 4.6R install panics with umass0 device co o [2002/06/25] bin/39849 /sbin/restore fails to overwrite files wi 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 f [2002/06/27] bin/39918 brian Userland PPP - CHAP and PAP are swaped o [2002/06/27] bin/39922 threads [PATCH?] Threaded applications executed w o [2002/06/27] kern/39928 imp 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 imp Xircom Realport Ether doesn't work in Tos o [2002/07/02] kern/40122 sound Device pcm stopps booting Kernel 4.6 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] misc/40206 Can not assign alias to any POINTOPOINT i o [2002/07/05] bin/40219 [apm] apm breaks removable media o [2002/07/05] bin/40227 CVS client doesn't upload new files creat o [2002/07/06] misc/40260 qa sysinstall hangs up detecting devices (No 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 a [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 sound 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 imp NEWCARD freeses system while card inserti o [2002/07/19] kern/40787 page fault while in kernel mode o [2002/07/19] kern/40792 joe 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/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/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 threads Pthread library open sets O_NONBLOCK flag 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 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/16] kern/41720 if_nge_load=YES make system not bootable o [2002/08/16] kern/41740 grog vinum issues: page fault while rebuilding o [2002/08/18] i386/41757 qa sysinstall 4.6.x unstable 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 qa sysinstall fails to create root filesyste 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 o [2002/08/24] kern/41966 audio/play: sblive, can cause "Device bu o [2002/08/25] bin/42004 quota and rpc.statd are still IPv4 only, o [2002/08/27] kern/42089 phk 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] kern/42120 bms arp(8) fails due to ioctl SIOCGIFNETMASK p [2002/08/30] kern/42216 rwatson simultaneous multiple server network fail 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/04] bin/42407 ppp(8) IPV6CP fails o [2002/09/05] kern/42457 Hack to allow Linux Matlab to exit o [2002/09/06] bin/42484 jmallett ps: uprocp documented but not implemented 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] kern/42564 sound record bug with emu10k1 driver o [2002/09/08] kern/42578 Using PCI serial cards (puc) in SMP machi o [2002/09/09] kern/42621 imp Dell Inspiron 5000e hangs when using Orin f [2002/09/10] kern/42629 panic in nfs_get o [2002/09/10] kern/42638 sound CS4326/4327 (MSS) buggy output playing 11 f [2002/09/10] ports/42647 linimon port misc/pybliographer does not configur o [2002/09/11] kern/42652 error deleting r/o (by windows) files on o [2002/09/11] bin/42658 markm recompile /usr/src/libexec/telnetd and lo o [2002/09/12] ports/42713 wjv biology/emboss : problems building EMBASS o [2002/09/13] gnu/42726 cvs 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 joe 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 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 imp pcmcia 16bit network card removal locks a o [2002/09/15] misc/42801 FreeBSD freezes when opening cuaa0 with a o [2002/09/15] i386/42806 VLANs do not work with fxp + catalyst as f [2002/09/16] misc/42849 MBR is scribbled on by by freebsd o [2002/09/20] kern/42983 imp wi0 sporadically freezes the system for 1 o [2002/09/20] kern/43151 Panic 20 seconds after resume o [2002/09/21] kern/43175 joe uvisor.c table error o [2002/09/21] i386/43222 sos setrootbyname panic in 4.6 o [2002/09/21] bin/43223 pirzyk getnetby{name|addr} broken for DNS lookup o [2002/09/23] ports/43301 steve mwm confused by mouse events following up f [2002/09/23] kern/43314 kernel panic "clist reservation botch" o [2002/09/24] bin/43337 des fetch: -s fails if -4 or possibly other o o [2002/09/25] kern/43352 luigi ipfw aborts processing file/pipe when del f [2002/09/25] i386/43366 joe Cannot format media in USB floppy devices o [2002/09/28] www/43454 www Packages hard to find, often missing o [2002/09/28] kern/43462 joe copying files from olympus C-4040 digital o [2002/09/29] bin/43501 getpwnam, getpwuid fail when linking agai p [2002/10/01] alpha/43567 robert strtod() core dumps f [2002/10/02] kern/43580 njl QUIRK: PhotoClip USB Camera 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/04] misc/43674 Able to bypass expired password o [2002/10/07] kern/43808 njl usb kernel panics o [2002/10/08] i386/43814 closed 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/43847 ports-bugs new ports: babytrans,gsfv,mmail,tetradraw 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 threads 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] kern/43984 rp driver does not support multiple PCI c o [2002/10/12] bin/43993 joe /usr/sbin/usbd does not handle an usb eve a [2002/10/13] kern/44030 VNode/Swap troubles o [2002/10/15] kern/44087 fatal kernel trap when ifconfig a inet6 i o [2002/10/15] kern/44126 lnc network hungup at large traffics on V o [2002/10/16] kern/44130 Enabled apm hangs up FreeBSD kernel on i8 s [2002/10/16] misc/44148 installworld in 4.7-STABLE does not insta f [2002/10/17] i386/44178 sound kldload of snd_emu10k1 locks system o [2002/10/17] kern/44185 bms Problem adding route with -interface opti f [2002/10/17] ports/44192 edwin joe o [2002/10/18] kern/44202 -stable rp driver does not work with mult o [2002/10/19] conf/44263 imp 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/44295 ports-bugs New port: MLton, an optimizing Standard M 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/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 sound 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 yar ftpd does not show OPIE OTP challenge o [2002/10/27] bin/44519 yar ftpd.conf(5) contains references to ftpd( o [2002/10/27] kern/44542 sound Locking issues with pcm o [2002/10/28] gnu/44564 peter [PATCH] Aborted cvs session causes an end o [2002/10/28] bin/44567 darrenr ipfstat does not show IPv6 accounting inf o [2002/10/28] misc/44578 getnetgrent fails to read NIS netgroup ma o [2002/11/02] ports/44835 knu portupgrade vs. docproj dependencies 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 emulators/l 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/17] kern/45373 mckusick 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/20] i386/45525 imp Dell Inspiron 7000 does not recognize PC- o [2002/11/20] bin/45529 hexdump core-dumps with certain args [PAT 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 joe Panic from USB stack after device detach 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] ports/45757 trevor mail/xc-mail: update to current (2.2) & c 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] ports/45805 ports-bugs security/sfs does not build on Alpha a [2002/11/29] docs/45833 trhodes nsmb.conf man page o [2002/12/02] kern/45913 imp WaveLan driver problems with latest -CURR o [2002/12/03] ports/45972 tobez Perl system() calls will hang if the proc o [2002/12/04] bin/45990 dwmalone top dumps core if specific errors in pass o [2002/12/04] bin/45995 markm 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 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/09] java/46151 phantom Sound Capture works only one time o [2002/12/09] kern/46152 Panic in adw dumping to tape o [2002/12/10] kern/46176 joe umass causes kernel panic if device remov 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] kern/46226 darrenr 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 sound AC'97 is not supported on ABIT BW7 o [2002/12/17] ports/46322 tobez lang/perl5 - string '0' (zero) is not con o [2002/12/17] ports/46338 ports-bugs security/cyrus-sasl 1.5.27_7 mysql_verify o [2002/12/18] bin/46352 Open file descriptors and signal handling o [2002/12/19] i386/46371 joe USB controller cannot be initialized on I o [2002/12/20] conf/46401 dougb [PATCH] /etc/rc.d/named doesn't create ch o [2002/12/21] ports/46443 ports-bugs lang/jgnat compilation failure o [2002/12/22] i386/46484 System panics upon configuration of bge N o [2002/12/25] ports/46530 ports-bugs x11-toolkits/gtkada links against unexist o [2002/12/26] kern/46551 cbb driver hangs on Sony Vaio 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] kern/46576 FreeBSD 4.6 broke linux emulation install o [2002/12/29] kern/46618 joe USB (UHCI/ICH3) PALM connect/disconnect/c f [2002/12/29] kern/46619 acpi-jp Installation hangs on IBM Thinkpad T23 f [2002/12/31] i386/46646 sound 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 imp Getting DUP packets when in Promiscous mo o [2003/01/03] kern/46736 sound 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] bin/46761 hmp buffer overflow by strcpy() in natd's arg s [2003/01/07] ports/46846 lioux livecd: Running fails due to old patches f [2003/01/08] kern/46872 alex Make sound work on TV-cards with MSDP3415 p [2003/01/09] misc/46902 tjr Error with mount_smbfs and 15 Char Netbio o [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 - o [2003/01/12] kern/47005 joe OHCI USB not noticing device detachments s [2003/01/14] ports/47061 ports-bugs Conflicting system headers by build of gr o [2003/01/16] kern/47152 pseudo-device ef in kernel does not creat o [2003/01/19] i386/47236 Console missing during bootup on Sony Pic o [2003/01/19] i386/47243 sound 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] kern/47279 IBM 370 hangs on reboot o [2003/01/20] kern/47286 device probing not verbose when using boo o [2003/01/21] ports/47303 wjv Update biology/p5-bioperl to latest relea o [2003/01/22] kern/47352 sound pcm/ac'97, dsp device busy f [2003/01/23] ports/47405 lev scribus could not save russian letters an o [2003/01/24] i386/47449 Thinkpad 755CD floppy boot fails f [2003/01/24] kern/47451 qa 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/28] kern/47586 [PATCH] fix information-leak (mounts) in 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 f [2003/01/31] ports/47713 lioux multimedia/ffmpeg - "make deinstall reins f [2003/01/31] ports/47768 ports-bugs print/ghostscript-afpl gv (3.5.8_1) can't 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] kern/47813 bms pseudo-device gre doesn't appear to work o [2003/02/03] ports/47842 cy security/tripwire fails to build under CU o [2003/02/04] kern/47920 if ng_pppoe switches to nonstandard mode o [2003/02/04] kern/47937 hw.ncpu and kern.smp.cpus duplicate same o [2003/02/05] kern/47939 5.0-Current freezes when bktr device is o o [2003/02/05] ports/47942 lioux qmail-tls MASTER_SITES and naming convent o [2003/02/05] i386/47951 rtld in ld.so will livelock in some circu o [2003/02/05] alpha/47952 alpha DEFPA causes machine check with V5.0-rele o [2003/02/07] kern/48033 FFS superblock flags are being ignored? o [2003/02/07] kern/48062 mckusick mount -o snapshot doesn't work on +100GB f [2003/02/09] kern/48109 njl relaxed AML checking o [2003/02/09] kern/48116 Support for Synaptics touchpad o [2003/02/09] kern/48117 SMP machine hang during boot related to i o [2003/02/09] ports/48130 kris games/falconseye can't save games or bone a [2003/02/10] kern/48156 Bug in procfs(5) closed in jail. o [2003/02/11] gnu/48183 [patch] gdb on a corefile from a threaded o [2003/02/11] kern/48198 Non-jailed users can kill processes owned o [2003/02/13] bin/48271 bug with find's -delete option f [2003/02/14] kern/48279 Brooktre878 (bktr) may cause freeze o [2003/02/15] kern/48316 File size limit on NTFS filesystems o [2003/02/16] misc/48325 /etc/periodic/security/100.chksetuid does o [2003/02/16] kern/48338 sound pcm audio driver hogs /dev/dsp?.? f [2003/02/16] ports/48343 nbm Several issues with the www/zope port o [2003/02/16] ports/48346 dwcjr samba-devel port thinks 5-CURRENT is SVR5 o [2003/02/16] kern/48359 joe SiS 5597/8 USB + uscanner breakage o [2003/02/17] bin/48378 brian [PATCH] User-PPP MTU/MRU - LCP Problem o [2003/02/17] kern/48393 mckusick ufs2 snapshot code bugs p [2003/02/18] bin/48424 Integer overflow in cksum(1) and sum(1) f o [2003/02/18] kern/48425 Tape drive EOT handling problems in 4.7 o [2003/02/19] misc/48461 murray $EDITOR on the fixit CD is wrong. f [2003/02/19] docs/48472 doc Documentation unreadable. o [2003/02/22] kern/48560 Panic in if_vlan.c on CURRENT o [2003/02/23] kern/48614 VESA VGA modes for syscons lock up machin o [2003/02/24] bin/48648 des FreeBSD 5/PAM: incorrect handling of spac o [2003/02/26] kern/48715 thomas atacontrol detach panics system when ATAP o [2003/02/26] bin/48730 sos burncd does not handle signals and causes o [2003/02/26] java/48737 znerd java/jdk13-doc - 5572 files missing from o [2003/02/27] kern/48741 darrenr ipnat corrupts packets on gre interface w o [2003/02/27] kern/48752 freeze when installing 5.0 Release f [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 f [2003/03/01] ports/48805 kde `Segmentation fault' for games/nethack34- o [2003/03/02] bin/48856 threads 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 joe uscanner0 hangs o [2003/03/05] bin/48958 standards The type 'bool' has different sizes for C 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/49056 trevor Festival fixes for newer GCCs [PATCH] o [2003/03/10] bin/49087 threads Signals lost in programs linked with libc o [2003/03/11] kern/49102 julian Resident set size calculation broken in 5 o [2003/03/13] misc/49984 des openSSH crashes while password based auth o [2003/03/13] ports/49995 phantom Native JDK1.4.1 build fails if WRKDIRPREF o [2003/03/15] ports/50042 mbr ports/www/mod_frontpage causes Bad System 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] i386/50099 jhb [PATCH] AP initialization fails on some S o [2003/03/18] ports/50104 nbm Zope package does not set sticky bit on v o [2003/03/20] kern/50149 joe Using Alcatel SpeedTouch results in "usb0 o [2003/03/25] kern/50298 unlimited usage of AGP memory make system o [2003/03/27] kern/50348 joe 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 www/mozilla-firebird does not respect /us o [2003/03/29] ports/50418 phoenix www/mozilla-firebird file "unix.js" links o [2003/04/02] kern/50541 scottl raidframe does not work o [2003/04/03] kern/50574 mbr dc driver incorrectly detects ADMtek chip o [2003/04/05] kern/50621 panic while TCP6 bind() o [2003/04/07] kern/50683 fxp broken o [2003/04/07] ports/50694 lioux mail/qmail-ldap edit mismatch causes CLEA a [2003/04/08] bin/50733 threads buildworld won't build, because of linkin o [2003/04/08] kern/50741 scottl "wiring down SCSI devices" as described i p [2003/04/10] bin/50770 tjr popen in libc_r not threadsafe o [2003/04/10] ports/50795 ports-bugs misc/solfege does not function o [2003/04/11] kern/50827 [PATCH] no sane record locking on *nix. s [2003/04/11] ports/50844 ports-bugs MPlayer fails to build on Alpha s [2003/04/12] kern/50856 kernel panic if mounting /tmp as mfs with o [2003/04/12] i386/50887 MBR on kern.flp fails Compaq MBR validati o [2003/04/13] bin/50912 dwmalone Small syslogd & postfix incompatibility a o [2003/04/14] kern/50943 kernel panic to initialize NIC (Intel Pro o [2003/04/14] kern/50947 darrenr BUG: port eq 25 does not work anymore (po o [2003/04/15] ports/51007 dirk sysutils/cdrtools: cdda2wav rips glitches o [2003/04/16] ports/51069 wjv [PATCH] p5-XML-Twig does not correctly de p [2003/04/17] misc/51085 ache FreeBSD is missing ja_JP.eucJP locale. o [2003/04/17] ports/51089 lioux net/dctc refuses to connect to any hub o [2003/04/18] ports/51128 ports-bugs It is not possible to build security/drwe o [2003/04/18] www/51135 www Problems with the mailing-lists search in o [2003/04/18] ports/51140 jedgar No documentation for the port databases/d o [2003/04/18] kern/51145 sound Audio Slows during Heavy I/O o [2003/04/18] misc/51146 qa Incorrect error message when configuring o [2003/04/19] bin/51171 /bin/sh has only 32-bit arithmetics that o [2003/04/21] standards/51209standards [PATCH] add a64l()/l64a/l64a_r functions o [2003/04/21] kern/51243 Deadlock via syscons o [2003/04/21] bin/51253 dwmalone syslogd crashes. o [2003/04/22] kern/51274 ipfw ipfw2 create dynamic rules with parent nu o [2003/04/22] ports/51281 tobez broken way of upgrading perl5.6.x to 5.8 o [2003/04/23] kern/51308 sound Creative SB32 doesn't work under CURRENT o [2003/04/23] kern/51309 rl driver problem on large file transfers o [2003/04/23] ports/51324 knu lang/ruby-devel fails to remove lib/ruby/ o [2003/04/23] kern/51332 njl QUIRK: BNCHMARK DLT1 requires SA_QUIRK_1F o [2003/04/23] ports/51334 edwin [New Port] Zend Optimizer 2.1.0a f [2003/04/24] kern/51341 ipfw ipfw rule 'deny icmp from any to any icmp o [2003/04/24] kern/51352 panic: malloc(M_WAITOK) in interrupt cont o [2003/04/25] misc/51409 us.emacs.kbd doesn't have 'boot' o [2003/04/27] ports/51455 billf core dump when exiting ethereal o [2003/04/28] ports/51539 tobez dual perl installation breakage? o [2003/04/29] kern/51583 tjr [PATCH] allow to work with devices and so o [2003/05/02] kern/51685 Unbounded inode allocation causes kernel 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/05] ports/51807 ports-bugs lang/gcc295 (g++) can't parse header file f [2003/05/05] ports/51813 ports-bugs wrong mod_perl dependencies o [2003/05/05] bin/51827 getaddrinfo() is broken with numeric serv s [2003/05/06] bin/51892 des can't ssh after su to different local use o [2003/05/07] bin/51927 routed(8) fails to use multicast with IFF o [2003/05/07] ports/51946 jedgar grub port looking for /dev/rfd0 o [2003/05/07] bin/51949 threads thread in accept cannot be cancelled o [2003/05/08] kern/51982 sio1: interrupt-level buffer overflows o [2003/05/11] ports/52067 anholt Machine reboots when loading X after cold a [2003/05/11] ports/52068 openoffice portupgrade of editors/openoffice .org-1. o [2003/05/11] ports/52079 bms vmware3 hangs when nmdm(4) is used as COM a [2003/05/11] ports/52087 openoffice error while building japanese/openoffice s [2003/05/12] kern/52110 FS corruption when using unionfs o [2003/05/12] kern/52128 Unable to floppy install on Toshiba Libre o [2003/05/14] kern/52260 sys/net/if.c:if_detach in FreeBSD4 forget o [2003/05/15] java/52302 phantom jdk14 runnaway processes o [2003/05/16] kern/52331 groudier 4.7 to 4.8-REL upgrade: SCSI disks on sym o [2003/05/16] bin/52343 NIS login problem on the server o [2003/05/18] i386/52392 i386 Password lengths over 8 chracters are ign o [2003/05/19] bin/52433 lines in /etc/group longer than 1024 char o [2003/05/19] kern/52445 Kernel panics when mounting floppy on MFS o [2003/05/20] kern/52490 ^T'ing a zombie causes 'calcru: negative o [2003/05/21] i386/52556 i386 Syskonnect SK9843SX, sk driver, MII not d o [2003/05/22] kern/52561 5.1-BETA install fails on Dell PowerEdge o [2003/05/22] i386/52581 i386 Boot loaders reading more than one sector o [2003/05/23] ports/52602 ports-bugs security/ident2 port segfaults when retur o [2003/05/23] i386/52610 i386 MSI "655 max" (MS-6730, SiS 655/963) MB A o [2003/05/24] i386/52638 i386 SCSI U320 on SMP server won't run faster o [2003/05/24] kern/52648 bonnie gives kernel panic in SMP but not o [2003/05/27] i386/52724 njl crashes apparently due to a ACPI problem f [2003/05/27] kern/52729 panic: ufs_dirbad: bad dir o [2003/05/27] bin/52743 /etc/ppp/ppp.linkup instability issues o [2003/05/28] kern/52756 4.8 RELEASE installer(generic kernel) sta o [2003/05/30] kern/52817 threads top(1) shows garbage for threaded process o [2003/05/30] kern/52818 vm_fault() calls vput() on shared-locked o [2003/05/31] i386/52822 i386 5.1-BETA2 problems with named/syslogd/if_ o [2003/06/02] kern/52868 NFS v3 shows a negative size with volumes o [2003/06/04] kern/52935 occasional panic in ip_input with IPSEC o [2003/06/04] kern/52936 Huge writes to nfs exported FAT filesyste o [2003/06/05] kern/52962 imp discrepancy between ifconfig and wicontro p [2003/06/05] standards/52972standards /bin/sh arithmetic not POSIX compliant o [2003/06/05] i386/52975 i386 CPUTYPE=k7 results in non-functional /boo a [2003/06/06] kern/52988 mbr [patch] if_dc with ADMTek AN983B corrupts o [2003/06/07] kern/53008 [PATCH] genwakecode generates errornously o [2003/06/10] i386/53137 i386 background fscking causing ffs_valloc pan o [2003/06/11] bin/53201 re buildworld 5.1-RELEASE on 4.8-STABLE fail f [2003/06/11] ports/53214 ports-bugs emulators/vmware3 tries to install emulat o [2003/06/13] ports/53290 lioux Adds russian charsets to `mail/spamoracle o [2003/06/15] kern/53334 o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian o [2003/06/17] ports/53414 ports-bugs port security/amavis-perl open filedescri o [2003/06/17] bin/53434 pw disallow a password including space. o [2003/06/18] kern/53447 poll(2) semantics differ from susV3/POSIX f [2003/06/18] ports/53458 ports-bugs irc/tr-ircd breaks on non-IPv6 kernels o [2003/06/18] kern/53481 bms 5.1R does not recognise xl0 at every star o [2003/06/19] ports/53504 knu pkgdb -F causes ruby to fail (can not all s [2003/06/19] ports/53508 lofi security/newpg: gpgsm dumps core (while i o [2003/06/20] standards/53554standards interval timers not cleared in fork() o [2003/06/20] kern/53566 IBM Eserver (245 || 345) + ServeRaid 5i i o [2003/06/21] bin/53606 roberto ntpdate seems to hang system o [2003/06/24] sparc64/53670sparc64 pthreads implementation on 5.1-Release sp f [2003/06/25] kern/53712 anholt drm/DRI broken (out of DMA buffers?) for o [2003/06/27] bin/53839 qa sysinstall disklabel editor fails on post o [2003/06/27] kern/53847 software hang o [2003/06/27] www/53862 ports-bugs -CURRENT ports symlink busted o [2003/06/30] kern/53920 sluggish TCP connection o [2003/06/30] kern/53927 imp wi0: device timeout problem with PRISM 2. o [2003/06/30] kern/53940 imp Some WiFi devices cannot connect to hosta o [2003/06/30] i386/53948 i386 console="comconsole" in loader.conf cause o [2003/07/01] kern/53987 smbfs can't access to files with symbol ¿ o [2003/07/02] i386/54033 i386 Disk lockup. o [2003/07/02] kern/54049 sound Sound driver reports device busy and show f [2003/07/03] bin/54066 njl ACPI repeating error messages at boot tim o [2003/07/03] ports/54067 mbr www/mod_auth_mysql_another fails to build o [2003/07/04] bin/54097 Non-local yppasswd -d broken in 5.1-CURRE o [2003/07/06] ports/54156 dougb Add foomatic and cups support to print/hp o [2003/07/07] kern/54188 [PATCH] touchpad doesn't work on some Ace o [2003/07/07] misc/54189 DNS resolver should resolve hostnames wit o [2003/07/08] ports/54234 ports-bugs gnu-radius fails to build on 4.8-STABLE o [2003/07/09] kern/54248 nge/vlan: kernel panic o [2003/07/09] ports/54256 mita japanese/vflib: fix dependency on japanes o [2003/07/09] kern/54295 [PATCH] ng_rfc1490(4) does not support Ci o [2003/07/10] kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o [2003/07/10] gnu/54317 sobomax tar with very large packages and portinst f [2003/07/10] kern/54331 robert shutdown() on a socket registered in a kq o [2003/07/11] bin/54401 [patch] pppstats prints 0 for absolute va o [2003/07/12] standards/54410standards one-true-awk not POSIX compliant (no exte o [2003/07/12] ports/54412 ade USE_LIBTOOL_VER overwrites autoconf-PATH o [2003/07/12] ports/54424 knu portupgrade ignores ALT_PKGDEP o [2003/07/13] ports/54435 lioux [PATCH] multimedia/libdvdread dvdcss_crac o [2003/07/13] bin/54446 pkg_delete doesn't honour symlinks, portu o [2003/07/15] kern/54495 njl ACPI problem on Compaq Evo N620c o [2003/07/15] i386/54501 i386 Promise Ultra133 TX2 does not work proper o [2003/07/15] bin/54517 mbr dhclient core dumps on negative ip addres o [2003/07/16] kern/54539 devinfo/devstat lists too many if_tun res o [2003/07/16] ports/54546 openoffice OpenOffice-1.0.3_2 build fails: autoconf. o [2003/07/17] ports/54588 knu databases/ruby-bdb WITH_BDB41 actually us o [2003/07/19] ports/54647 ports-bugs Updated gsfonts 6.0 disables printing in o [2003/07/20] kern/54673 'stli' driver requires unavailable COMPAT o [2003/07/21] kern/54705 sound codec timeout during read of register 26 o [2003/07/21] ports/54727 adrian [PATCH] update to STABLE3 and request mai o [2003/07/22] i386/54756 i386 ACPI suspend/resume problem on CF-W2 lapt o [2003/07/23] i386/54781 i386 ACPI prevents psm to detect on Compaq Evo o [2003/07/23] ports/54783 mbr [PATCH] ftp/proftpd: fix for mysql41, MOD o [2003/07/25] www/54838 phantom [PATCH] www/ru update o [2003/07/25] ports/54848 ports-bugs print/ghostscript-gnu fails building whil o [2003/07/25] bin/54854 cvs pserver sig11 crash on 4.8-R o [2003/07/25] ports/54855 lioux PATCH: fix mjpegtools divx tools segfault o [2003/07/26] kern/54881 njl New device/vendor ID and quirks for iRive p [2003/07/27] bin/54959 tr utility has a bug in ISO8859-2 locale o [2003/07/28] bin/54969 rcp '-r' option patch or MFC request o [2003/07/28] ports/54970 ports-bugs emulators/linux_base Port Makefile "dange o [2003/07/28] conf/54971 mtm /etc/rc.d/mountcritermote requires ldconf o [2003/07/28] ports/54972 ports-bugs net/simicq compilation error o [2003/07/28] www/54976 www [PATCH] www/ru/news update o [2003/07/29] kern/55018 [patch] Digiboard PC/Xem fails to initial o [2003/07/30] ports/55036 lioux [Update] Port: mail/qmail (add Maildir++ o [2003/07/30] kern/55081 contigmalloc API semantics inadequate --- o [2003/07/31] ports/55136 lioux qmail-ldap uses old qmail-ldap patch, por f [2003/08/01] ports/55164 openoffice openoffice fails to compile o [2003/08/01] kern/55175 alfred LOR in select and poll f [2003/08/02] ports/55186 kde Doxygen 1.3.1 build fails on Alpha o [2003/08/03] ports/55216 ade devel/{automake,autoconf}: Wrong code in o [2003/08/04] ports/55252 ports-bugs databases/db4: Berkley DB crashes on Serv o [2003/08/05] gnu/55278 Externs on implicit declarations o [2003/08/05] kern/55279 miibus/if_ed static/dynamic confusion o [2003/08/05] i386/55290 i386 please MFC the PR:22971 (LinuxEmu; Implem o [2003/08/05] kern/55297 kernel panic after running XFree86 o [2003/08/05] kern/55299 sos Promise ATA controller can't handle UDMA o [2003/08/06] ports/55325 portmgr [PATCH] ports/Mk/bsd.port.mk handles auto o [2003/08/06] ports/55331 portmgr Port security check (`security-check' tar o [2003/08/07] bin/55346 /bin/sh eats memory and CPU infinitely o [2003/08/07] bin/55349 Amd mixes up symlinks in it's virtual fil o [2003/08/08] bin/55366 grog [patch] vinum makes /dev/vinum with wrong f [2003/08/08] ports/55372 nork www/mod_php4 port ignores PREFIX o [2003/08/08] kern/55379 kernel crashes randomly o [2003/08/10] ports/55439 ports-bugs Change in tcsetattr in 5.1-RELEASE breaks o [2003/08/10] bin/55448 dbm_nextkey() misbehaves after dbm_store( o [2003/08/10] gnu/55452 gzip doesn't handle large files o [2003/08/11] bin/55457 GDB gets confused debugging libc_r thread o [2003/08/12] ports/55493 portmgr Add ability to automatically install *.in o [2003/08/12] ports/55507 ports-bugs lang/php4 compiles with unexcpected libs o [2003/08/13] docs/55526 blackend Update the branches pic and ascii art for o [2003/08/13] kern/55542 [patch] discard oversize frame (ether typ o [2003/08/13] i386/55555 i386 system freezes with access to /dev/ums0 o [2003/08/13] i386/55561 i386 SMbus and I2C don't attach when loaded as f [2003/08/13] ports/55563 openoffice openoffice doesnot build on both stable a o [2003/08/15] i386/55603 unable to reboot when system runs from My o [2003/08/15] ports/55611 ports-bugs Clamav port package build fails on 5.x wh o [2003/08/15] i386/55614 i386 machine freezes - goes on after key press o [2003/08/15] i386/55615 i386 machine freezes - goes on after key press o [2003/08/15] kern/55617 ports-bugs Accessing an nsmb-mounted drive via a smb o [2003/08/16] bin/55634 Add IGNORE_PRINTCAP option to mergemaster o [2003/08/16] ports/55638 ports-bugs [PATCH] www/rt2 marked broken o [2003/08/16] ports/55650 obrien update vim to tcl/tk 8.4 o [2003/08/17] i386/55661 njl ACPI suspend/resume problem on ARMADA M70 o [2003/08/17] ports/55673 ports-bugs Xsane crashes when doing preview o [2003/08/18] kern/55702 Kernel panic on NTFS o [2003/08/20] kern/55727 rl(4) not working in recent 4.8-STABLE: w o [2003/08/20] ports/55740 ports-bugs port already installed check fails on 4.6 o [2003/08/20] sparc64/55773jake Conversion from long to long double is br o [2003/08/20] kern/55784 Kernel Panic [with trace] in using netgra o [2003/08/20] i386/55793 Flaky behavior of DC when initializing a o [2003/08/20] kern/55810 Error: bundle_Create: ioctl(TUNSIFMODE): o [2003/08/20] kern/55822 No ACPI power off with SMP kernel o [2003/08/20] misc/55823 em(4) interfaces (Intel Gigabit) are mute o [2003/08/20] bin/55829 __stderrp not defined in libc.so.3 (compa o [2003/08/21] ports/55844 mharo PATCH: fix analog crash by linking agains o [2003/08/21] bin/55846 and conflict p [2003/08/21] misc/55853 [patch]Fix ascii compatible problem in zh f [2003/08/22] ports/55881 portmgr make install fails for ports o [2003/08/23] kern/55890 Error: bundle_Create: ioctl(TUNSIFMODE): o [2003/08/23] ports/55894 ports-bugs print/lyx: configure aborts if WITH_QT is o [2003/08/23] i386/55908 i386 perl process stuck in pipewr (no pipe bei o [2003/08/24] i386/55930 i386 partly configured serial port freezes sys o [2003/08/24] kern/55934 grog kernel panics while restoring into vinum o [2003/08/24] misc/55945 Typo in share/misc/pci_vendors file o [2003/08/24] bin/55947 printf(1) mishandles \0 o [2003/08/24] ports/55948 ports-bugs install of ports/emulators/linux_base fil o [2003/08/25] bin/55956 passwd chat script not backward compatibl o [2003/08/25] kern/55960 IO to PATA drives on Promise SATA150 TX2p o [2003/08/25] conf/55964 sshd: HostBasedAuthentication does not se o [2003/08/25] bin/55965 sshd: problems with HostBasedAuthenticati o [2003/08/25] kern/55986 kernel panic in 4.8-STABLE o [2003/08/26] conf/55991 sshd: problems with HostBasedAuthenticati o [2003/08/26] kern/55993 getcwd() breaks on unionfs mounted direct o [2003/08/26] kern/56008 scottl ps shows L flag erroneously with certain o [2003/08/26] ports/56011 ports-bugs bonnie++ doesn't do large files o [2003/08/26] kern/56024 njl ACPI suspend drains battery while in S3 o [2003/08/27] conf/56031 luigi ipfw hangs on every invocation o [2003/08/28] ports/56101 tobez devel/p5-IPC-RUN checks for IO/Handle.pm o [2003/08/29] bin/56147 FreeBSD/NetBSD /bin/sh mishandles positio o [2003/08/29] ports/56157 ports-bugs [patch] x11/nvidia-driver build broken o [2003/08/29] bin/56166 /usr/bin/script exits prematurely if STDI o [2003/08/30] ports/56205 nork www/mod_php4 won't install o [2003/08/30] ports/56222 ports-bugs [patch] Fix compiler error in www/php-scr o [2003/08/31] kern/56233 IPsec tunnel (ESP) over IPv6: MTU computa o [2003/09/01] ports/56263 ports-bugs New port: comms/gammu [FIXED] (supersedes o [2003/09/02] ports/56329 petef Update: mail/maildrop to 1.6.0 + LDAP mak o [2003/09/02] kern/56339 select() call (poll() too) hangs, yet cal f [2003/09/02] kern/56353 Kernel panic by vrele: negative ref cnt o [2003/09/02] ports/56359 ports-bugs new port: www/adzap2squirm a [2003/09/03] ports/56363 perky The graphics/py-opengl port is broken o [2003/09/03] misc/56372 njl acpi don't work on TYAN tiger100 M/B o [2003/09/03] kern/56394 njl ACPI sleep delay causes system reboot on o [2003/09/04] ports/56410 ports-bugs Mailman broken o [2003/09/04] docs/56456 blackend Initial import of the ro_RO.ISO889-2 doc/ o [2003/09/04] kern/56461 FreeBSD client rpc.lockd incompatible wit o [2003/09/05] ports/56487 anholt Upgrading Xfree86-clients from ports over o [2003/09/05] bin/56500 rpc.lockd needs to use reserved ports o [2003/09/05] ports/56511 mharo ProFTPd port does not install docs for op o [2003/09/07] ports/56567 ports-bugs mail/spamass-milter fails in configure st o [2003/09/08] kern/56605 da driver can reference a NULL pointer o [2003/09/09] kern/56632 MTIO incorrect mt_fileno status after MTE o [2003/09/09] ports/56660 ports-bugs new slave port mod_jk-apache2 o [2003/09/09] ports/56661 ports-bugs modify port mod_jk2 to build mod_jk2 2.x o [2003/09/09] ports/56662 ports-bugs new slave port mod_jk2-apache2 o [2003/09/10] kern/56675 Syncer "giving up" on buffers and ext2 fi o [2003/09/11] ports/56694 gioria fix port: misc/p5-Locale-Msgcat o [2003/09/11] ports/56710 fanf Update sysutils/cfengine2 to 2.0.8p1 o [2003/09/11] ports/56716 kuriyama net-snmp 5.0.9 won't build package o [2003/09/11] ports/56724 roam [Update] Port: mail/qmailadmin o [2003/09/12] bin/56732 ifconfig fails if interfaces are being cr o [2003/09/13] ports/56744 jim ports/x11/aterm Makefile breaks DELETE an o [2003/09/13] ports/56747 ports-bugs vmware3 port cant fetch distfile o [2003/09/13] bin/56748 [PATCH] rc.subr: jail devfs handling brok o [2003/09/13] kern/56759 System freezes when writing CD Advansys S o [2003/09/13] kern/56760 System hangs at boot with adaptec 1542 o [2003/09/14] kern/56871 dd can't write variable length data block o [2003/09/15] ports/56884 ports-bugs Problems with pgaccess & tcltk 8.4 o [2003/09/15] kern/56889 MODE_SENSE_BIG timeout hanging boot if CD o [2003/09/15] ports/56893 ports-bugs Fix for lang/sisc (currently broken) o [2003/09/15] docs/56894 doc umass man page: "mount -t msdos" instead o [2003/09/15] standards/56906standards Several math(3) functions fail to set err o [2003/09/16] ports/56912 ports-bugs www/sarg coredumps on big logs o [2003/09/16] kern/56924 sos [Patch] ATA controller seems to have wron o [2003/09/16] ports/56926 adrian [PATCH] www/squid: update to 2.5 o [2003/09/17] kern/56944 4.8 cannot boot on Intel Server Board SE7 f [2003/09/17] ports/56955 jdp /usr/ports/lang/ezm3 broken big/little en s [2003/09/18] kern/56988 system panic with doubled up unionfs o [2003/09/19] ports/57013 ports-bugs devel/boost does not build o [2003/09/19] kern/57015 [patch] Asus wl-100 (pcmcia wifi) support o [2003/09/20] i386/57040 ar driver with PCI card locks up when run o [2003/09/20] kern/57044 sysctl -a panics, kern.disks shows detach a [2003/09/20] ports/57047 portmgr Ports fail to detect threads libraries on o [2003/09/21] kern/57051 sound snd_cmi -> snd_emu10k1 hang o [2003/09/21] ports/57056 ports-bugs libsm and libsmutil not installed -> fail o [2003/09/22] kern/57085 umass0 problems, with Sony Vio/USB memory o [2003/09/22] kern/57100 disable hardware checksums when using bri o [2003/09/22] kern/57119 joe USB hangs at startup o [2003/09/23] ports/57126 ports-bugs molden port broken a [2003/09/23] ports/57130 cy Xalarm port does not compile under -CURRE o [2003/09/23] ports/57134 tobez BSDPAN can't be disabled o [2003/09/24] kern/57174 sos 4.9-PRERELEASE panic: ata_dmasetup: trans o [2003/09/24] www/57177 www [patch] search/search.sgml: update link o [2003/09/24] kern/57195 mount_mfs -i 512 => panic? o [2003/09/25] kern/57206 softdep_lock locks against itself, causin a [2003/09/26] java/57235 znerd Fix pkg_add permission problem in tomcatX o [2003/09/26] bin/57255 joe usbd and multi-function devices o [2003/09/26] i386/57258 i386 4.9Beta won't boot if a USB mouse is conn o [2003/09/27] kern/57273 PATCH, fix usb keyboard repeat problem o [2003/09/29] kern/57348 imp Inserting PC-CARD hangs laptop o [2003/09/29] kern/57380 Connections are reset by the kernel witho o [2003/09/30] bin/57401 amd sets wrong permissions on mount point o [2003/09/30] bin/57414 /usr/bin/script fails silently if stdin i o [2003/09/30] ports/57415 knu portupgrade can't be run in the backgroun o [2003/10/01] bin/57456 Telnet encryption gets out of sync o [2003/10/01] ports/57461 ports-bugs typo in ports/emulators/vmware3/files/con o [2003/10/01] ports/57465 emulation kldunload rtc.ko causes a panic; yet it's o [2003/10/01] misc/57466 dialog(1) does not read stdin, breaks sub o [2003/10/01] ports/57470 fanf [SECURITY] port sysutils/cfengine2: remot o [2003/10/01] i386/57479 i386 FreeBSD Not in compliance with RFC 1122, o [2003/10/01] bin/57484 routed not ignoring cloned routes f [2003/10/02] kern/57492 bms Firewall can be disabled in securelevel 3 o [2003/10/03] ports/57552 ports-bugs pkg_create: only one package name allowed o [2003/10/03] bin/57554 sh(1) incorrect handling of quoted parame o [2003/10/04] docs/57568 kensmith errors in FreeBSD Architecture Handbook o [2003/10/04] i386/57578 njl ACPI problems on IBM T20 GE86 o [2003/10/05] ports/57600 roger [PATCH] net/gnomemeeting depends on wrong o [2003/10/05] ports/57601 ports-bugs [PATCH] Fix port bug found by Oliver Eikm o [2003/10/05] kern/57631 Boot failing for ALi chipsets, patch atta f [2003/10/06] ports/57644 ports-bugs [PATCH] changing CFLAGS and CPUTYPE respe o [2003/10/06] conf/57659 dougb Exit status from /etc/rc.d/mountcritlocal o [2003/10/06] i386/57673 i386 Odd/dangerous disklabel behaviour on 5.0 o [2003/10/06] ports/57685 ports-bugs New Port: geepee32 o [2003/10/07] ports/57698 portmgr Add USE_APACHE knob to bsd.port.mk. o [2003/10/07] kern/57722 uidinfo list corruption o [2003/10/07] ports/57725 archie build jikes to support encoding o [2003/10/08] kern/57760 IPsec policy on inbound trafic is not enf o [2003/10/08] ports/57761 ports-bugs grip port segment faults on CURRENT syste o [2003/10/08] ports/57774 portmgr update Mk/bsd.port.mk: set dev_acver=257 o [2003/10/09] ports/57790 ports-bugs cdparanoia triggers kernel panic o [2003/10/09] ports/57793 ports-bugs New port: Netgraf network statistic o [2003/10/09] sparc64/57800sparc64 Probable non-64bit-cleanness of unrar o [2003/10/09] kern/57818 4.9-RC panics when kernel is built with a o [2003/10/10] kern/57827 Connections are reset by the kernel witho o [2003/10/10] bin/57833 PATCH: ps cannot change title for keyword o [2003/10/10] ports/57843 jeh misc/amanda-client still depends on gtar o [2003/10/10] ports/57854 des Port java/jboss3 is dependent on but does o [2003/10/11] ports/57864 ports-bugs [Patch]: textproc/glimpse-4.12.6 compilat o [2003/10/11] ports/57870 portmgr Missing +INSTALL/+DEINSTALL scripts with o [2003/10/12] ports/57897 ports-bugs Portupgrade of mplayer to latest version o [2003/10/12] java/57901 java java/jdk14 (jdk-1.4.1p4) fails to build o [2003/10/12] kern/57908 darrenr 'return-rst' does not work for ipv6 in ip o [2003/10/13] kern/57945 [patch] Add locking to kqueue to make it o [2003/10/13] ports/57956 ports-bugs New port: pmd eclipse-plugin o [2003/10/13] ports/57957 mat maintainer update: sysutils/flexbackup ne o [2003/10/13] kern/57961 kmem_malloc(65536): kmem_map too small: 2 o [2003/10/13] misc/57973 KDE freezes on startup with ATI RADEON 90 o [2003/10/13] bin/57975 include/xmmintrin.h defines __v4si twice o [2003/10/13] kern/57985 [patch] Missing splx in ether_output_fram o [2003/10/14] ports/58059 ports-bugs This ports Need GCC 3.x to complie and av o [2003/10/15] kern/58060 fsck_ufs -B lockup any writes on filesyst o [2003/10/15] ports/58090 adrian [PATCH] www/squid: update to 2.5-STABLE4 o [2003/10/15] ports/58095 ports-bugs Fix building audio/yammi without KDE o [2003/10/16] ports/58120 ports-bugs Update [maintainer]: print/lilypond UNBRE o [2003/10/16] kern/58154 mckusick Snapshots prevent disk sync on shutdown o [2003/10/17] ports/58168 ports-bugs [PATCH] update devel/boost (it's labelled o [2003/10/17] kern/58169 panic: vnode_pager_getpages: unexpected m o [2003/10/17] ports/58175 ports-bugs lang/gcc33 - patching fails o [2003/10/18] bin/58195 /bin/sh sometimes run endless loop inside o [2003/10/18] ports/58213 ports-bugs Can not install any packages from ports o [2003/10/19] ports/58245 ports-bugs pear-PEAR port cannot install o [2003/10/20] ports/58270 ports-bugs ports/mail/popd returns broken line o [2003/10/20] ports/58277 ports-bugs Maintainer update: zonecheck 2.0.0b8 o [2003/10/20] ports/58284 ports-bugs [non-maintainer][security update] mail/fe o [2003/10/20] ports/58286 ports-bugs pstoedit port will not build with gcc-3.3 o [2003/10/20] kern/58287 ipnat map protocol specification broken 1207 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 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 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 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/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). o [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 f [1998/09/16] misc/7946 ccdconfig gives confusing error when give o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re 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 s [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 o [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/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 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 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 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 imp Enhancement to ed driver for Linksys 10/1 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/25] bin/12801 nvi infinite recursion with options "left 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 o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for /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 o [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 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 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/17] conf/32067 Problems with spanish keyboard in console 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/26] conf/32288 qa After install: /etc/rc complains if crypt a [2001/11/29] conf/32375 murray sysinstall doesn't respect User generated a [2001/11/30] bin/32411 shutdown's absolute-time handling could b 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/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 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/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 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 hmp 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/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 trevor print/acroread5 does not install the Nets o [2001/12/31] conf/33395 imp better way to use more than one pccard ne 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 f [2002/01/08] kern/33696 mbr 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/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] ports/33906 ports-bugs [PATCH] tic program as a port for easier 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 o [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/21] bin/34146 newfs defaults and vfs.usermount=1 tug at o [2002/01/22] misc/34171 yar 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] docs/34239 trhodes tunefs(8) man page doesn't describe argum 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/34412 maxim 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 f [2002/02/02] ports/34550 ports-bugs ghostscript-gnu-nox11 portversion 6.51 fa f [2002/02/02] ports/34565 ports-bugs graphics/blender port is broke o [2002/02/03] kern/34591 ICMP bandwidth limiting does not indicate 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] 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 njl Please add USB floppy entry o [2002/02/09] bin/34759 Phantasia does not accept [enter] key o [2002/02/09] conf/34776 rc.diskless1 creates insufficiently sized o [2002/02/10] misc/34788 dwmalone dmesg issues with console output o [2002/02/10] ports/34796 jmz wrong path in /etc/XF86Config (purely cos 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] bin/34843 fenner `tcpdump port echo' filters for port 4 in o [2002/02/11] kern/34854 sound /src/sys/dev/sound doesn't work correctly o [2002/02/12] bin/34874 Netstat output to small s [2002/02/12] ports/34878 chern sysinstall o [2002/02/12] kern/34880 luigi Impossibility of grouping IP into a pipe p [2002/02/14] misc/34935 New locale (Cyrillic Windows Codepage 125 o [2002/02/14] kern/34942 sound Attempt to play -> "pcm0: play interrupt o [2002/02/14] kern/34952 joe 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 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] 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/21] misc/35172 Please update am-utils(amd) into newer ve o [2002/02/21] kern/35175 obrien ptrace(PT_DETACH, ....) doesn't do signal 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 f [2002/02/23] kern/35269 kris 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 qa sysinstall could improve manipulation of o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy 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/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 $? 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/35652 trhodes 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/09] docs/35711 doc the "gnats page" should move to its own s o [2002/03/09] bin/35717 which(1) returns wrong exit status for m o [2002/03/09] misc/35727 man(1) program should not display (old) d o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an f [2002/03/11] misc/35764 nork 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 imp timeout in wi_cmd 11, machine hangs for a 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/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 o [2002/03/17] ports/36020 jmz Update port: print/musixtex T.98 -> T.104 o [2002/03/17] java/36024 ports-bugs 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/19] misc/36110 dmesg output corrupt if /dev/console is b f [2002/03/19] ports/36112 portmgr [PATCH] New feature for whole ports tree: 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 simon Getting USB mouse to work: usbd and mouse o [2002/03/21] kern/36170 an(4) does an_init() even if interface is 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] misc/36359 fxp driver and Intel Pro/100 S NIC (0002B o [2002/03/27] bin/36374 Patch (against core dumps) and improvemet o [2002/03/27] kern/36381 sos 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] 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 p [2002/03/28] docs/36459 simon tftp(1) manual's "get" syntax/description s [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 databases/libio 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/36560 rse bug fix for the eperl package f [2002/03/31] kern/36569 njl umass fails when RiteLink Pocket Disk is o [2002/04/01] bin/36626 login_cap(3) incorrectly claims that all 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] 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 a [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/06] ports/36832 kuriyama apache13-* coredumps when using XML::Pars o [2002/04/07] ports/36849 cy FVWM-Themes fails to switch themes 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] misc/36916 qa DOS active partition flag lost in libdisk 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] 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 f [2002/04/16] i386/37137 qa 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 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 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/27] ports/37518 grog gmat port CATALOG needs updating o [2002/04/29] kern/37554 jmg [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 Incorrect information in /usr/share/examp o [2002/04/29] misc/37569 [PATCH] Extend fstab(5) format to allow f o [2002/04/30] ports/37596 shige EMACS_PORT_NAME=xemacs21 forks make infin o [2002/04/30] kern/37600 sound [Partial PATCH] t4dwave drive doesn't rec o [2002/04/30] conf/37611 proposed /etc/rc.jails for jail(8) manage s [2002/05/01] ports/37654 arved Update textproc/xml4j to 4.0.1 o [2002/05/01] kern/37657 sound /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 threads libc_r: msgsnd(), msgrcv(), pread(), pwri o [2002/05/03] java/37711 znerd New port: Beacon-agent 0.6.3 (Multicast B o [2002/05/03] java/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 joe 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 net process exits but socket is still ESTABLI s [2002/05/05] java/37771 znerd New Port: audio/jmax s [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/09] java/37904 znerd New Port: database/isql-viewer (a JDBC 2. o [2002/05/09] conf/37909 dougb make distribution DESTDIR=/path -DNO_MAKE o [2002/05/09] gnu/37910 PATCH: make send-pr(1) respect &'s in /et 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 qa "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 ade 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 o [2002/05/18] docs/38225 doc change "CDROM" to "CD-ROM" o [2002/05/18] www/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/19] ports/38301 kiri upgrade www/w3-4 to 4.0.47 p [2002/05/19] bin/38303 billf tftpd -c patch o [2002/05/20] misc/38347 new library function abs2rel and rel2abs. 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 joe add name "CanoScanN676U" in uscanner 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 joe Logitech USB iFeel: device_probe_and_atta o [2002/05/23] misc/38468 imp 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] misc/38583 qa sysinstall installs crypto sources when / o [2002/05/26] ports/38593 portmgr Third level ports o [2002/05/27] bin/38610 qa Sysinstall should be able to mount ISO im o [2002/05/27] docs/38620 doc Committers Guide and CVS o [2002/05/27] kern/38626 luigi dummynet/traffic shaper: RED: max_th and o [2002/05/29] misc/38727 mptable should complain about garbage arg o [2002/05/29] kern/38730 mikeh Memorex scrollpro mouse is not fully func o [2002/05/30] kern/38749 murray Diskless booting fails with some DHCP ser o [2002/05/31] docs/38772 doc firewall_type feature not mentioned on Ha f [2002/06/01] ports/38800 ports-bugs update www/roxen to Roxen WebServer 2.2.2 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 qa Resetting the sysinstall during setup cau f [2002/06/03] kern/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 p [2002/06/06] ports/38965 kde [PATCH] kapptemplate fails on FreeBSD o [2002/06/06] kern/38967 sound 4/22/02 pcm driver merge appears to break o [2002/06/07] docs/38982 doc developers-hanbook/Jail fix 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 p [2002/06/10] bin/39116 tjr /usr/bin/printf o [2002/06/12] conf/39192 sound [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] docs/39213 doc No rc(4) man page o [2002/06/13] standards/39256standards [v]snprintf aren't POSIX-conformant for s o [2002/06/14] conf/39306 The /etc/rc file should know if is runnin 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 qa 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 s [2002/06/18] ports/39476 ports-bugs profxp will run but when you fxp a file i f [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 s [2002/06/20] conf/39580 insecure default settings o [2002/06/20] java/39600 znerd New port: jdictionary-ger-hun 1.4 - Germa o [2002/06/20] java/39603 znerd New port: jdictionary-eng-ger 1.4 - Engli o [2002/06/21] ports/39634 jim Port pclock unaligned access on alpha 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] 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] bin/39893 setusercontext library call differs umask o [2002/06/26] bin/39905 johan cleaning sbin/restore code from warnings o [2002/06/28] conf/39976 vi recovery halting boot process o [2002/06/29] ports/40002 wjv py-4suite: XSLT import error 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 p [2002/06/30] misc/40057 ceri send-pr -a flag does not work with -f o [2002/06/30] kern/40058 imp lockup on 5.0 DP1 - Xircom X3201 (RealPor o [2002/07/01] misc/40081 sound 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/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/40163 cy screen w/o suid and locale 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 f [2002/07/06] misc/40273 dougb some more fortunes o [2002/07/06] misc/40280 joe 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] 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 imp sysinstall with PCCARD<->ISA bridge gets 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) o [2002/07/12] kern/40516 ti driver has no buadrate set o [2002/07/13] ports/40525 kiri [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 o [2002/07/16] misc/40657 joe Logitech iFeel usb mouse will not attach o [2002/07/16] ports/40659 dirk php3 and GD problem o [2002/07/16] misc/40671 threads pthread_cancel doesn't remove thread from o [2002/07/17] misc/40693 the system reboot alone with no reason a [2002/07/17] ports/40699 portmgr allow exclude patterns in `make search` o [2002/07/17] kern/40711 sound CT5880-C sometimes fails to output sound o [2002/07/18] kern/40745 Inconsistency between net/if.c and struct 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/21] docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "C o [2002/07/21] conf/40855 murray psuedo-device bpf need note in LINT and G a [2002/07/21] ports/40866 jkoshy sml-nj port CM autoloading compilation pr 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] kern/40926 qa After Upgrading or Clean Installing 4.6, o [2002/07/23] kern/40927 sound sound dies with pcm:play:0 play interrupt o [2002/07/24] kern/40948 joe USB HP CDW8200 does not work o [2002/07/24] bin/40958 apm on Acer TravelMate 351 could not resu o [2002/07/25] ports/40975 knu 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] 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/30] bin/41159 new sed -c option to allow ; as a separat 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/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 qa problems with FreeBSD installation on a d o [2002/08/01] conf/41241 murray sysinstall build uses kbdcontrol keymaps o [2002/08/01] misc/41243 joe 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/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 ru libalias: logging of links lifecycle (add o [2002/08/04] misc/41309 brian security check scripts do not delete temp o [2002/08/04] www/41312 cvs RCS IDs are off-by-one in the NetBSD cvsw o [2002/08/04] kern/41317 trhodes reflect kernel building user for sudo-ers o [2002/08/05] i386/41364 imp pccard: NewMedia "Bus Toaster" SCSI card o [2002/08/06] misc/41379 Cannot browse directory tree on FreeBSD m o [2002/08/07] ports/41400 benno sgmltools-lite update to 3.0.3 o [2002/08/07] kern/41415 joe 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 o [2002/08/09] misc/41490 sound C-Media 8738 sound card static 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 o [2002/08/11] misc/41566 obrien file(1) out of date p [2002/08/12] standards/41576standards POSIX compliance of ln(1) a [2002/08/12] bin/41583 assorted mtree bugs (+fixes) o [2002/08/13] kern/41631 PATCH to add sysctl knob to disable clone o [2002/08/14] misc/41674 ken iostat column formatting overlaps o [2002/08/17] i386/41743 sound 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] 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] 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] docs/41919 blackend MINI kernel for bootfloppy (Handbook p.34 a [2002/08/23] ports/41945 ade bsd.port.mk: does not run ACLOCAL 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/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] misc/42084 luigi PicoBSD's 'netstat -i' reports negative I o [2002/08/28] ports/42134 ports-bugs linux-gtk PORTREVISION contaminates other o [2002/08/28] gnu/42154 kan [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] docs/42210 gioria doc/en_US.ISO8859-1/articles/releng/branc f [2002/08/30] bin/42213 joe moused(8) seems to delay some mouse event o [2002/08/30] bin/42217 libdisk segfaults with 1024 bytes/sector 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/09/01] ports/42281 ports-bugs lang/rexx-imc - addition of UPPER patch 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 imp pccard_ether should run ipf -y if ipfilte o [2002/09/03] misc/42373 mtm Update to rc scripts to make interface al 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 p [2002/09/04] kern/42404 TIOCSCTTY not implemented in linuxulator o [2002/09/04] bin/42419 syslog enhancement for the nologin shell 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] 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 s [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 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 p [2002/09/07] ports/42503 kde kuser tries to create the wrong Mailbox o [2002/09/08] misc/42558 www http://www.freebsd.org/search produces in o [2002/09/09] bin/42609 pkg_info -qg doesn't handle missing files 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] 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/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 small many problems in src/usr.sbin/ppp/* afte o [2002/09/13] bin/42732 semenu Seg fault in mount_nfs 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/15] bin/42803 tconv, tic, captoinfo binaries missing fr o [2002/09/15] conf/42807 imp /etc/netstart doesn't run /etc/defaults/p o [2002/09/16] ports/42839 roam New Port: Weedns o [2002/09/18] misc/42934 qa installation procedure on install floppie o [2002/09/19] misc/42956 dlclose gives "invalid shared object hand o [2002/09/19] bin/42974 [patch] ISO 8601 date format option o [2002/09/19] kern/42977 qa 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] bin/43139 /sbin/route -host option doesn't always s 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 f [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/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 p [2002/09/27] kern/43426 bms mlockall and munlockall system calls are o [2002/09/29] misc/43470 blackend 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 murray dhcp.* values not set in kenv by bootp cl f [2002/09/29] ports/43484 ports-bugs Update port net/arla to 0.35.9 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] 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 jhb cdboot does not handle 'relaxed' ISO9660 o [2002/10/01] alpha/43561 jhb kern_shutdown.c uses time_t as 'long int' o [2002/10/01] java/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] 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] java/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] bin/43675 tjr uniq prints last, not first of the identi f [2002/10/04] java/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 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] conf/43800 imp Belkin 10/100 Base-TX PCMCIA card not rec o [2002/10/07] conf/43805 imp Asante' FriendlyNet AeroLAN AL1011 802.11 o [2002/10/08] bin/43819 changed truss output for utrace calls o [2002/10/08] docs/43823 simon [PATCH] update to environ(7) manpage o [2002/10/08] misc/43825 qa please remove object files in source (src o [2002/10/09] bin/43857 hm conflicting types in /usr/src/usr.sbin/i4 o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol man page o [2002/10/09] ports/43880 ports-bugs Names of Emacs ports are misleading o [2002/10/10] misc/43886 markm local exploitable overflow in rogue s [2002/10/10] i386/43896 Missing "syscall fstat64" in linux emulat o [2002/10/10] misc/43905 kqueues: EV_SET(kevp++, ...) is non-int 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/43929 java linux-ibm-jdk core dumps without System.e o [2002/10/11] bin/43938 roberto ntpd binds to local aliases o [2002/10/11] docs/43941 doc Rationale for Upgrade Sequence 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] docs/43980 darrenr ipf(5) missing "gre" keyword f [2002/10/13] ports/43997 dinoex 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] 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 sound 4.7-R Freezes half the times snd.ko is lo 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] kern/44098 RealTec-based NIC initialization problem 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/16] misc/44150 Diskless kernel may crash, depends on the 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 qa 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] 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 tanimura Problems with nrp driver o [2002/10/19] kern/44267 One more modem PNP id for /usr/src/sys/is f [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] bin/44277 devinfo is not C++ safe o [2002/10/19] misc/44286 roberto /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] misc/44307 UTF-8 locales support o [2002/10/20] bin/44310 make ppp(8) add clients MAC address to al o [2002/10/21] bin/44329 wish for systat p [2002/10/21] kern/44333 mikeh [PATCH] make A4-tech RFSW-35 mouse's whee 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 roberto some kernel options prevent NTP clock syn o [2002/10/22] misc/44379 libutil: property.c, properties_read() ba 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] 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] kern/44439 puc doesn't find all 4 ports on SIIG Cybe o [2002/10/24] kern/44450 joe USB support FAILURE for device that was s o [2002/10/26] misc/44500 AC1001 Gigabit NIC Worked o [2002/10/28] kern/44580 NFS updates file access time when file is o [2002/10/29] misc/44587 dev/dpt/dpt.h is missing defines required 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] i386/44762 sound sound (ie, not system beeps) stop working o [2002/11/04] kern/44872 dgb driver update o [2002/11/04] misc/44894 markm as a local non-root user and remote it's o [2002/11/04] misc/44915 qa 'choose installation media' choose CD-ROM o [2002/11/04] java/44922 java JVM crash 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/08] gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messa o [2002/11/09] www/45169 www suggested update for ports index page on o [2002/11/09] kern/45182 sound fm801.c does not recognize a FM801 based o [2002/11/10] bin/45193 [PATCH] truss can't truss itself 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 mtm 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 sobomax tar --listed-incremental fails for Solari o [2002/11/12] misc/45254 qa Sysinstall installs things it should not o [2002/11/13] misc/45273 contrib/smbfs: error in examples/dot.nsmb 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/45293 kevent denies to observe /dev/tty 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/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/45414 portmgr make update in /usr/ports missing default o [2002/11/19] bin/45486 Support for human readble (-h/-H) output f [2002/11/20] ports/45526 edwin New port: math/maxima -- symbolic compute s [2002/11/20] bin/45547 sos a patch to make burncd handle .wav files. o [2002/11/21] www/45560 www russian FAQ trouble on www.FreeBSD.org 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 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] bin/45701 markm spelling error in rogue o [2002/11/25] misc/45704 [PATCH] request to change cp866b to cp866 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 f [2002/11/26] ports/45771 ports-bugs OffiX printer doesn't find printer 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/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/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] kern/45968 des linprocfs is missing maps o [2002/12/05] ports/46005 ports-bugs New port: ginsu - a client for the gale s f [2002/12/06] ports/46034 gioria new ports: mantis o [2002/12/07] conf/46062 kris Remove skel from BSD.root.dist. f [2002/12/07] ports/46077 kbyanc [patch] fix fetch for emulators/gsnes9x o [2002/12/07] kern/46080 ipfw [PATCH] logamount in ipfw2 does not defau 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 tomsoft 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/10] kern/46159 ipfw ipfw dynamic rules lifetime feature o [2002/12/10] misc/46163 gad lpc problem. Only root can modify despit o [2002/12/11] docs/46181 doc "make fetch-recursive" target description 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/13] conf/46235 rwatson Sysinstall NTP servers for Finland requir o [2002/12/13] i386/46238 dds [code] Driver for the PCL-724 ISA card o [2002/12/13] kern/46250 sound Sound driver not working correctly on SON f [2002/12/14] i386/46258 PLT code causes skewed return hint stack 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 f [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] kern/46368 MAXDEP in isa/pnpparse.c is too small o [2002/12/19] bin/46379 customize home-directory permissions in p s [2002/12/19] bin/46382 ps(1) could use a "repeat" mode o [2002/12/20] misc/46409 Certain periodic scripts check broken NFS 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] i386/46453 [INTERLATIONALIZATION] cons25l2, ISO8859- f [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 f [2002/12/23] ports/46487 edwin New port: cbind - Translator for "thin" A o [2002/12/23] kern/46488 joe usb driver do not send detach events on S o [2002/12/23] standards/46504standards Warnings in headers o [2002/12/23] ports/46510 ports-bugs security/ssh does not correctly store the o [2002/12/25] ports/46522 sobomax xtraceroute-0.9.0 fails with "OpenGL not o [2002/12/27] misc/46555 enhancements for libradius o [2002/12/27] kern/46564 ipfw IPFilter and IPFW processing order is not o [2002/12/27] ports/46570 jhb E-Fancylauncher core dump as receiving mo o [2002/12/28] ports/46608 ports-bugs [NEW PORT] latest development track of ep f [2002/12/29] ports/46615 gioria new-port: mail/sympa - an electronic mail o [2002/12/30] conf/46645 [PATCH] rc.shutdown state table saving ha o [2002/12/31] ports/46655 dwcjr net/samba beauty fix o [2003/01/01] misc/46670 qa 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 joe Wrong vendor and device defines in ng_ubt o [2003/01/02] docs/46709 doc tables in terminfo.5 are broken o [2003/01/03] kern/46734 joystick driver doesn't allow for anythin o [2003/01/03] conf/46746 No way to set link addresses through rc.c o [2003/01/04] misc/46758 moused enhancements o [2003/01/04] kern/46773 sos I want IDE HD go into standby mode. p [2003/01/05] docs/46787 trhodes compress(1) manpage missing BUGS; other c o [2003/01/05] docs/46793 doc DEVICE_POLLING can not be used with SMP, o [2003/01/06] ports/46810 edwin [Patch] pkg_tree additional switches o [2003/01/07] bin/46830 Make pkg_add respect prefix for dependanc o [2003/01/09] bin/46888 gad Add script run hook to newsyslog(8) o [2003/01/09] ports/46904 ports-bugs new port: mail/vqregister o [2003/01/09] bin/46905 qa FreeBSD 5.x cannot be installed from mult o [2003/01/09] i386/46912 johan chflags nonodump fails o [2003/01/09] conf/46913 darrenr 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/10] bin/46925 sysctl -a goes into an infinite loop... 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/12] misc/46998 small [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/47018 sf Teach ftp/wget new very useful feature - o [2003/01/13] misc/47029 sound Static and popping with Hercules GameThea o [2003/01/13] ports/47036 portmgr bsd.port.mk has bad comments WRT dependen 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/15] ports/47098 ports-bugs New port: Senken, a city simulation game o [2003/01/15] ports/47128 ports-bugs New port: hybserv (irc services for ircd- 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 o [2003/01/18] kern/47200 joe USB port is disabled when Kodak DX4900 is o [2003/01/18] ports/47203 ade upgrade of automake to try on the cluster o [2003/01/18] conf/47204 qa base + XFree86 install fails -- crypto di o [2003/01/19] ports/47218 ports-bugs PostgreSQL client has problems when libbi o [2003/01/19] i386/47223 hm [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/20] kern/47274 joe umodem update to support motorola v66 pho o [2003/01/21] kern/47311 mdodd [PATCH] Kernel support for NVIDIA nForce2 o [2003/01/21] misc/47314 qa Install requires a swap partition. 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 dd panic after kldunload snp o [2003/01/22] i386/47376 hm [PATCH], pcvt(4), COLOR_KERNEL_FG, 2nd ch o [2003/01/22] bin/47387 [PATCH] gprof -K still requires "a.out" a o [2003/01/24] java/47448 phantom linux-blackdown-jdk-1.4.1: syscall mmap2 o [2003/01/27] bin/47540 ru Make natd configurable in running state w o [2003/01/27] bin/47560 tar 'z' option gzip'd output has extra ga o [2003/01/27] bin/47566 grog Suggested patch: vinum status verificatio 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 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/29] ports/47651 ports-bugs unPERLify ports/audio 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/30] kern/47675 njl usb/umass problems 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] kern/47731 reboot goes panic each time o [2003/02/01] kern/47791 imp Idea for what to do on insert 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] ports/47834 dirk mysql-server-3.23.55 upgrade should be mo o [2003/02/03] sparc64/47845sparc64 4 second daily clock drift f [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 p [2003/02/04] misc/47906 murray options screen not return previous screen o [2003/02/04] misc/47908 qa /stand/sysinstall can't display document o [2003/02/04] ports/47913 ume idled.8 man page conflict in ports mail/c f [2003/02/04] kern/47935 panic on disk full a [2003/02/05] ports/47957 seanc ruby-snmp is broken o [2003/02/05] docs/47991 trhodes Handbook section on upgrading kernel says o [2003/02/06] i386/48014 joe moused fails to correctly identify usb mo 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 f [2003/02/07] kern/48081 Enabling mutex profiling panics the kerne o [2003/02/08] ports/48097 ports-bugs Manual for graphics/camediaplay falsely d o [2003/02/08] docs/48101 brueffer There's no documentation on the fixit dis 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 f [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/10] misc/48133 improvied vi recovery notification o [2003/02/10] ports/48140 andreas Update Port: print/apsfilter (conditional o [2003/02/11] kern/48172 ipfw ipfw does not log size and flags o [2003/02/11] conf/48195 /var/db/mounttab error on diskless boot 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/13] ports/48235 ports-bugs New Port: anomy mail sanitizer - removing 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 f [2003/02/13] ports/48257 ports-bugs New Port: portdowngrade: a tool to set a o [2003/02/14] ports/48273 des 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/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 joe [PATCH] usbd dynamic device list. o [2003/02/17] ports/48377 portmgr Randomizing MASTER_SITES o [2003/02/17] ports/48397 jmz malformed make file in /usr/ports/comms/m o [2003/02/17] bin/48399 Can't put URL in GECOS phone field 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/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] f [2003/02/20] kern/48494 njl BP6 ACPI errors - AML incorrect o [2003/02/22] conf/48566 [PATCH] /etc/defaults/make.conf stales af a [2003/02/22] conf/48569 trhodes make.conf misses comments on some options o [2003/02/22] www/48575 kuriyama f [2003/03/28] docs/50391 doc Incorrect information in a man o [2003/03/30] bin/50461 ctm cannot handle the large files current o [2003/03/30] ports/50466 grog The benchmarks/rawio port does not seem t o [2003/03/31] ports/50473 ports-bugs amavis-perl is no longer supported (super o [2003/03/31] ports/50476 ports-bugs New port: math/libmath++ o [2003/03/31] ports/50478 ports-bugs New port: games/monopd o [2003/04/01] kern/50526 Update to #! line termination o [2003/04/03] bin/50569 /bin/sh doesn't handles ${HOME}/.profile o [2003/04/03] docs/50573 doc return values for res_query/res_search/re a [2003/04/03] ports/50578 trevor pktrace has been renamed to mftrace by th o [2003/04/04] bin/50613 [PATCH] pppd(8) incorrect CBCP response f o [2003/04/06] kern/50644 [PATCH] Update xe driver: multicast, hard 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 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/08] bin/50724 ports-bugs [PATCH] pkg_fetch saves full filename o [2003/04/08] java/50729 phantom java/jdk14: broken java.net.NetworkInterf 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/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/50799 yoichi Lisp Packages install directory should no o [2003/04/11] ports/50813 nork New port: japanese/mailman 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/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 roam Request for (optional) addition of tcplim f [2003/04/12] ports/50888 ports-bugs Updated fetchyahoo port, like fetchmail f f [2003/04/13] ports/50914 ports-bugs Port update: editors/fte o [2003/04/13] kern/50923 rfork(RFPROC|RFMEM, ...) fails unconditio p [2003/04/13] bin/50924 "vmstat -f" says "unimplemented" but data s [2003/04/14] i386/50929 AMD K6-2+ processor is identified incorre o [2003/04/14] ports/50931 krion Update net/silc-server o [2003/04/14] ports/50932 krion Update net/silc-doc f [2003/04/14] misc/50945 ru BUG: NOINSTALLLIB isn't honored in all Ma o [2003/04/14] kern/50948 darrenr 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 ru [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/50965 ports-bugs www/linux-flashplugin update to 6.0r79 o [2003/04/15] bin/50971 du(1) doesn't understand UF_NODUMP flag p [2003/04/15] misc/50979 tomsoft [PATCH] Some spelling corrections in sbin o [2003/04/15] bin/50988 [Patch] find -size -- express argument in 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/51005 ports-bugs New port of native window decoration for o [2003/04/15] kern/51009 Buggy aue driver fixed. o [2003/04/15] ports/51013 ports-bugs New Port: avidemux2 o [2003/04/16] ports/51036 ports-bugs New port: sysutils/clockspeed-conf - Supe o [2003/04/16] bin/51070 add -p option to pom [PATCH] o [2003/04/16] kern/51074 joe pointer arithmatic error in ugen.c o [2003/04/17] kern/51082 FEATURE: More descriptive message on drop o [2003/04/17] ports/51087 ports-bugs spamass-milter can not be built with send o [2003/04/17] bin/51091 fenner [FEATURE] Add -A (print ASCII) flag to tc o [2003/04/17] kern/51111 darrenr ipf doesn't allow outbound IPv6 packets u o [2003/04/17] kern/51120 MSGBUF_SIZE doesn't work in makefiles a [2003/04/18] docs/51133 murray RSH environmental variable not described s [2003/04/18] kern/51137 config(8) should check if a scheduler is o [2003/04/18] bin/51148 Control the cache size for pwd_mkdb to sp 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] bin/51165 Login does not honor .hushlogin o [2003/04/19] misc/51167 dougb [PATCH] Makefile for /etc/namedb. o [2003/04/20] kern/51186 imp pointer arithmatic error in ugen.c o [2003/04/20] ports/51197 ports-bugs New Port: rendezvous (Apple's ZeroConf im o [2003/04/21] bin/51205 nectar 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/22] standards/51292standards [PATCH] add ecvt()/fcvt()/gcvt() function o [2003/04/22] bin/51296 calendar wrong for dates based on day+-nu o [2003/04/25] ports/51415 kevlo Port textproc/xerces-j should be updated o [2003/04/25] ports/51424 dirk www/httrack should be updated to lastest o [2003/04/26] ports/51446 trevor Update port: audio/fest* to last versions o [2003/04/27] ports/51456 ports-bugs new port: opencm o [2003/04/27] docs/51480 dds Multiple undefined references in the Free o [2003/04/28] bin/51488 Compat patch: more(1) allowed filename to p [2003/04/28] bin/51493 ls usage is missing a few options p [2003/04/28] misc/51504 ache New file: src/share/mklocale/zh_CN.GBK.sr o [2003/04/29] ports/51588 portmgr SITE_PERL defined too late in bsd.port.mk 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/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/05/01] ports/51651 kde KDE 3.1.1a: KProcess' stdout redirection o [2003/05/01] bin/51655 savecore needs ${dumpdev} as an argument a [2003/05/01] ports/51663 roam [PATCH] vpopmail-stable fix for using vmo o [2003/05/02] ports/51690 blackend Update devel/linux-runrev: 1.1.1 -> 2.0-B o [2003/05/02] ports/51693 cy [PATCH] Unbreak x11-wm/fvwm2-devel p [2003/05/03] misc/51729 ache A patch that can make freebsd support zh_ o [2003/05/04] ports/51757 edwin [REPOCOPY WAITING] Maintainer update: isc o [2003/05/04] ports/51760 ports-bugs Change-request: mail/tmda (ACTION_AUTO_RE o [2003/05/04] ports/51772 dirk Upgrade to version 0.52 of port net/nsc o [2003/05/05] ports/51791 tg Change-request: shell/pdksh (pdksh-5.2.14 o [2003/05/05] ports/51819 ports-bugs New port: Provides a static mod_perl with o [2003/05/06] conf/51830 trhodes new entries in termcap o [2003/05/06] docs/51845 hmp [PATCH] catch up getfsstat.2 and statfs.2 o [2003/05/06] kern/51874 Apacer HandySteno should have DA_Q_NO_6_B o [2003/05/06] docs/51875 doc atkbd(4) adjustment o [2003/05/06] docs/51891 doc DIAGNOSTICS in ed driver manpage don't ma o [2003/05/06] ports/51900 trevor [Update Port]: audio/fest* to last versio o [2003/05/07] misc/51920 Collation for no_NO.ISO8859-1 o [2003/05/07] docs/51921 doc ls(1) manpage lacks some information abou o [2003/05/07] ports/51947 mharo Analog port does not include anlgform.htm o [2003/05/08] kern/51958 joe update for urio driver [PATCH] o [2003/05/09] docs/51999 wosch Missing MAN for ssh o [2003/05/09] ports/52006 ports-bugs rsync fails with protocol problems o [2003/05/09] ports/52016 ports-bugs New port: lang/harbour - A Clipper-compat o [2003/05/10] ports/52024 lioux port multimedia/libdv fails to build o [2003/05/10] kern/52026 joe umass driver support for InSystem ISD200 o [2003/05/10] bin/52032 markm Telnet option contra telnet protocol o [2003/05/10] ports/52037 ports-bugs port multimedia/avifile fails to build (I o [2003/05/11] docs/52071 doc [PATCH] Add more information about soft u o [2003/05/11] bin/52072 maxim Wrong behaviour of the ftpd when the OOB o [2003/05/12] www/52095 ceri Remove 404s from hardware.raw o [2003/05/12] www/52099 ceri Remove 404s from consulting.raw o [2003/05/12] www/52105 phantom Remove 404s from gallery.xml o [2003/05/12] ports/52106 phantom New port: java/javaws: Java Web Start 1.2 f [2003/05/12] ports/52113 ports-bugs mpg123 fails to play o [2003/05/12] ports/52125 ports-bugs New port: The devel branch of the ion win f [2003/05/12] ports/52130 ports-bugs New Port: sysutils/klineakconfig configur o [2003/05/12] ports/52132 ports-bugs New port: audio/prokyon3 Really nice mp3- o [2003/05/13] ports/52159 ports-bugs updates to pr:ports/52130 and pr:ports/52 s [2003/05/13] ports/52173 portmgr bsd.port.mk - Modify USE_GETOPT_LONG opti o [2003/05/13] bin/52190 [Patch] decode more syscalls in truss o [2003/05/14] i386/52249 i386 [PATCH] Bootmanager shows NTFS partitions o [2003/05/14] misc/52255 small picobsd build script fails under FreeBSD o [2003/05/14] misc/52256 small picobsd build script does not read in use o [2003/05/14] kern/52258 imp pccard non-functional, repeated "card ins o [2003/05/15] bin/52271 qa sysinstall panics in machine with no hard o [2003/05/15] ports/52272 cy Aide-0.9 complains of "@@end_db" s [2003/05/15] ports/52303 des [patch] add knob to databases/gnats to re o [2003/05/15] ports/52310 jedgar sysutils/grub does not send a dhcp option o [2003/05/16] ports/52311 patrick [ADD MAKE ARGS]:: WITH_GTK And WITH_THREA o [2003/05/16] ports/52319 patrick [NEW PORT]:: comms/qtpcr and fix to priv. o [2003/05/16] bin/52349 netstat -ni broken for vlan interfaces f [2003/05/17] ports/52380 ports-bugs Configure problem in libggi f [2003/05/18] ports/52393 ports-bugs New port: py-sourceview is a Python wrapp o [2003/05/18] i386/52401 i386 5.1-BETA syslogd not recording entries fr o [2003/05/18] i386/52408 i386 quitting gnome2-2.2.1_1 results in LOR o [2003/05/18] ports/52414 portmgr pkg_info improvement: get only package na o [2003/05/18] ports/52415 obrien missing files in bash2 ports collection o [2003/05/18] i386/52416 i386 Requesting ethernet driver for Broadcom 4 o [2003/05/18] ports/52420 mita japanese/xpdf installation terminated whe o [2003/05/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter f [2003/05/19] conf/52432 joe Install: drivers.flp won't load with USB f [2003/05/19] ports/52439 lioux Request: SMTP AUTH for qmail o [2003/05/19] docs/52448 simon [patch] Misc man page reference fixes o [2003/05/20] bin/52469 ppp: Multiple devices using UDP don't wor o [2003/05/20] bin/52489 [PATCH] ps tpt does not work o [2003/05/20] ports/52508 adrian Update port: www/squid (use MANn variable o [2003/05/20] docs/52514 hmp Handbook: new chapter about Bluetooth o [2003/05/21] bin/52517 New functionality for /usr/bin/Mail o [2003/05/21] i386/52555 i386 Large filesystem, df f [2003/05/22] ports/52600 lioux multimedia/mpeg4ip does not compile with f [2003/05/22] bin/52601 mbr [PATCH] rpc.yppasswdd fails if master.pas o [2003/05/23] kern/52623 Error in driver for the Intel EtherExpres o [2003/05/24] ports/52653 ports-bugs ports/net/gnu-radius no longer compatible o [2003/05/24] ports/52659 ports-bugs New port: news/xvnews Open Look-based new o [2003/05/25] docs/52672 doc Porter's Handbook: couple of corrections o [2003/05/26] ports/52706 portmgr bsd.port.mk issues warning if a site is e o [2003/05/27] kern/52725 [PATCH] installincludes for kmods o [2003/05/27] kern/52735 njl Add support for one more type of USB flas f [2003/05/27] bin/52746 tcsh fails to handle large arguements o [2003/05/28] ports/52747 ports-bugs port update - mail/p5-Mail-Ezmlm o [2003/05/28] kern/52752 [PATCH] SMBus controller on ICH4 not reco o [2003/05/28] kern/52764 Impossible to build kernel with COPTFLAGS a [2003/05/28] ports/52765 portmgr [PATCH] Uncompressing manual pages may fa o [2003/05/28] ports/52779 fenner please make rat and sdr use tcl/tk8.3 o [2003/05/29] bin/52782 user ppp dumps core when doing pppctl "sh o [2003/05/29] ports/52793 dwcjr Samba 2.2.8a printing woes o [2003/05/29] ports/52794 ports-bugs Xmaxima cannot start o [2003/05/29] kern/52795 joe uscanner for CanoScan N1220U o [2003/05/29] ports/52796 ports-bugs devel/apr is compiled without threads sup o [2003/05/29] ports/52797 lev devel/subversion does not install any too o [2003/05/30] ports/52811 ports-bugs [PATCH] net/unison: install documentation o [2003/05/31] ports/52825 lioux goggles-0.5.5 compile under 5.1-BETA2 fai s [2003/05/31] bin/52826 Feature Request: Adding Timestamps to pkg o [2003/06/02] ports/52857 ports-bugs New port: Scan detection and blocking dae o [2003/06/02] docs/52858 ceri Add the Bell System Technical Journal to o [2003/06/02] ports/52859 dwcjr Samba 2.2.8a (2.2.8)- broken support for o [2003/06/02] ports/52873 ports-bugs New port: kcmpureftpd, a PureFTP control f [2003/06/02] ports/52877 ports-bugs Non-Maintainer-Update: mail/postfix add s o [2003/06/02] docs/52878 doc [PATCH] security(7): small clairification o [2003/06/02] alpha/52882 alpha fpsetprec/fp_prec_t unsupported on alpha? o [2003/06/03] ports/52906 roger vid-1.0.1 from ports does not work with U o [2003/06/03] bin/52907 [PATCH] more malloc options for debugging f [2003/06/03] ports/52909 lioux [PATCH] ftp/twoftpd: chase devel/bglibs h s [2003/06/03] ports/52917 portmgr [PATCH] bsd.port.mk: update default value o [2003/06/04] ports/52923 ports-bugs New port: f-prot - the F-Prot virus scann o [2003/06/04] kern/52927 Intel Kinnereth-R NIC is not supported by o [2003/06/04] ports/52941 ports-bugs security/poc card-terminal problems o [2003/06/04] kern/52943 reproducable system stuck just brefore mu o [2003/06/04] ports/52946 lioux Add cdparanoia support to gstreamer-plugi o [2003/06/04] kern/52960 kbdcontrol macros don't work when len = 1 o [2003/06/05] i386/52971 i386 bad macro LIST_HEAD in /usr/include/sys/q o [2003/06/06] kern/52980 mbr [patch] dc(4) driver fails to init Intel o [2003/06/06] ports/52989 mat update archivers/libcomprex to 0.3.3 o [2003/06/06] kern/53005 njl USB IntelligentStick SCSI DA quirk o [2003/06/07] ports/53019 ports-bugs New Port: kvirc3 a irc client based on o [2003/06/07] kern/53025 joe [PATCH] ugen does not allow O_NONBLOCK fo o [2003/06/07] ports/53026 lioux 5.1-RC1 avifile0.7-0.7.34 compile fails w o [2003/06/07] kern/53027 imp [CHANGE-REQUEST] Better Entry for Intel P o [2003/06/08] bin/53063 [PATCH] Let mtree -U update mtime f [2003/06/08] kern/53067 njl Add support for the PQI USB Flash Disk o [2003/06/09] ports/53080 ports-bugs ARJ archiver with Russian localization o [2003/06/09] conf/53131 qa "ALL" could not turn check BOXes ON at pa f [2003/06/09] ports/53132 dbaker [patch] fix Makefile for devel/dnetc and a [2003/06/11] ports/53190 lev update to devel/subversion o [2003/06/11] ports/53193 ports-bugs [Patch] unbroke port: math/simpack fix co o [2003/06/11] conf/53197 re default tag of RELENG_5_1 standard-supfil o [2003/06/11] ports/53199 dbaker Port update: misc/dnetc o [2003/06/11] i386/53200 i386 5.1-RC1 SMP kernel boot gags at "APIC_IO: o [2003/06/11] ports/53206 ports-bugs Patch updates x11-wm/pekwm to version 0.1 o [2003/06/11] ports/53241 naddy graphics/xmms-goom port update o [2003/06/12] kern/53264 sound PCM interrupt not routed on Sony VAIO lap o [2003/06/12] kern/53265 imp Make Sierra A555 work in FreeBSD o [2003/06/13] docs/53271 hmp the bus_dma man page fails to document al f [2003/06/13] ports/53281 ports-bugs New port for LDAP servers access and KAdd o [2003/06/13] bin/53288 tail will sometimes display more lines th o [2003/06/13] docs/53303 doc mount(2) man page error o [2003/06/14] docs/53315 doc [PATCH] remove extraneous whitespace at t o [2003/06/14] docs/53316 blackend Small update/correction to multimedia/cha o [2003/06/14] ports/53320 ijliao centericq memory leaks under 5.x f [2003/06/14] ports/53321 ports-bugs Update: comms/plp o [2003/06/14] i386/53324 i386 pam_group problems (PAM_RUSER used instea p [2003/06/14] misc/53327 Important fix for Latin-american keymap o [2003/06/15] bin/53341 qa dump frequency in sysinstall is always th o [2003/06/15] ports/53346 ports-bugs xmms volume bar error o [2003/06/16] bin/53366 mtm rc.d/root is trying "mount /" while start o [2003/06/16] bin/53377 [PATCH] su does not return exit status of o [2003/06/16] kern/53383 adding Terratec TValue to bktr driver o [2003/06/17] ports/53401 lioux mail/qpopper: add knob WITHOUT_APOP, brin o [2003/06/17] kern/53417 sound Bad Recordings on AC97 onboard audio syst o [2003/06/17] docs/53421 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53422 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53424 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53425 ceri [patch] rework of parts of Porter's Handb o [2003/06/18] ports/53444 ports-bugs new port comms/hamfax - sending and recei o [2003/06/18] docs/53454 doc wrong sample code in manpage of wcwidth(3 o [2003/06/18] ports/53466 trevor [non-maintainer] delete port audio/spiral o [2003/06/18] ports/53469 sobomax [patch][non-maintainer] remove hardwiring o [2003/06/18] bin/53475 cp(1) copies files in reverse order to de o [2003/06/18] gnu/53476 kan [patch] gcc improperly handles GCC_EXEC_P o [2003/06/19] ports/53484 wjv [PATCH] for updating textproc/docbook-tdg o [2003/06/19] docs/53501 doc [PATCH] Handbook: update snapshots sectio o [2003/06/19] kern/53506 Support gzipped modules. (partial patch) o [2003/06/19] bin/53520 su to another user does not update utmp o [2003/06/19] www/53530 ceri [PATCH] query-pr.cgi doesn't work with ur o [2003/06/20] ports/53558 ports-bugs new port of Gerrit Pape's runit package o [2003/06/20] bin/53560 logging domain names in wtmp is retarded s [2003/06/20] ports/53564 perky [non-maintainer] lang/stackless_python fa o [2003/06/20] docs/53575 doc Change to Handbook Section 20.9 o [2003/06/21] ports/53588 ports-bugs [PATCH] devel/ac-archive: update to 0.5.5 o [2003/06/21] docs/53596 doc Updates to mt manual page o [2003/06/22] standards/53613standards FreeBSD doesn't define EPROTO o [2003/06/22] docs/53621 trhodes devname(3)'s man page needs an example o [2003/06/23] ports/53636 ports-bugs Suggestion for rc.d style startup scripts o [2003/06/23] ports/53657 tobez devel/p5-Parse-RecDescent - tutorial/* is o [2003/06/23] ports/53662 ports-bugs [CHANGE-REQUEST] Patch textproc/xlhtml so o [2003/06/24] ports/53671 ports-bugs NEW PORT: rude/crude UDP traffic generato o [2003/06/24] www/53676 simon [patch] Don't make people contact doc@ fo o [2003/06/24] bin/53682 standards [PATCH] add fuser(1) utitity o [2003/06/24] ports/53702 ports-bugs Port upgrade: devel/directfb o [2003/06/25] docs/53732 doc quota output and man page do not document o [2003/06/25] ports/53740 ports-bugs New port: Fluka - Linux Monte Carlo simul f [2003/06/25] ports/53746 ports-bugs New port: graphics/imgseek o [2003/06/26] docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ o [2003/06/26] ports/53785 veers Upgrade net/domtools from 1.5 to 1.6 o [2003/06/26] java/53790 znerd Let tomcat41ctl start java -server f [2003/06/26] ports/53791 kde Can't pass CPPFLAGS to configure when WIT f [2003/06/26] ports/53793 ports-bugs New port for sebeksniff o [2003/06/27] ports/53817 nik textproc/docbook should include textproc/ o [2003/06/27] ports/53848 tobez [PATCH] update of port devel/p5-IPC-Run t o [2003/06/28] bin/53870 C++ undeclares standard math functions li o [2003/06/28] ports/53877 ports-bugs p5-Data-FormValidator can be updated o [2003/06/28] ports/53878 des [Port Update]:: games/flightgear & devel/ o [2003/06/29] kern/53897 joe [PATCH] add EPoX Bluetooth USB dongle to o [2003/06/29] bin/53899 mktime gives wrong result in Central time o [2003/06/29] conf/53901 dd Suggest MFC of include keyword to config( o [2003/06/29] www/53906 www [patch] adds content to alpha plattform p o [2003/06/30] ports/53923 ports-bugs New Port: Sipsak is a SIP test command li o [2003/06/30] i386/53930 i386 showmount doesnot show nfs exportlist on o [2003/06/30] ports/53939 dwcjr [PATCH] Fix library dependencies in samba o [2003/06/30] kern/53941 sos [PATCH] ATAPI CD drives don't open the tr p [2003/06/30] misc/53944 [PATCH] ARMSCII-8 (Armenian) LOCALE and C o [2003/07/01] ports/53981 ports-bugs New Port: k3b 0.8.1, a kde cd recording g o [2003/07/01] ports/53983 ports-bugs New port: Zope Extensible User Folder o [2003/07/01] ports/53997 ports-bugs update py-psycopg from 1.0.13 to 1.1.5.1 a [2003/07/01] ports/53998 gnome Add a dependency xrender to fontconfig o [2003/07/02] ports/54002 lioux QMTPC patch for qmail-1.03 o [2003/07/02] docs/54009 trhodes Clarify the location of the splash image o [2003/07/02] bin/54026 [patch] Add support for non-standard port o [2003/07/02] ports/54041 ade libtool13 (as installed) doesn't recogniz o [2003/07/02] ports/54046 fenner fix to graphics/geomview o [2003/07/02] ports/54048 rse wml fails o [2003/07/03] ports/54059 ports-bugs New port: psycopg database adapter for zo o [2003/07/03] ports/54060 ports-bugs new port devel/aegis o [2003/07/03] kern/54078 sound Sound Plays ~10% Slow o [2003/07/03] ports/54079 ports-bugs New port: Formulator for Zope f [2003/07/03] ports/54080 ports-bugs Update port mail/minimalist to the latest o [2003/07/04] kern/54094 [patch] make signedness of kg_nice and ki o [2003/07/04] ports/54095 ports-bugs New port: ParsedXML for Zope o [2003/07/04] ports/54096 ports-bugs Plone port bundled formulator conflicts w o [2003/07/04] bin/54098 ken [patch] make camcontrol(8) work if plain f [2003/07/04] ports/54105 ports-bugs New port submission o [2003/07/05] bin/54123 [patch] fix assignments of getopt() retur o [2003/07/05] bin/54141 wrong behavour of cu(1) o [2003/07/06] ports/54146 ports-bugs UPDATE: www/eddie - fix build with Erlang o [2003/07/06] ports/54149 ports-bugs [UPDATE] net/rdesktop-devel: Add RDP5 sup a [2003/07/06] ports/54161 trevor security/mcrypt unbrake and update to 2.6 o [2003/07/06] kern/54163 Non-existing Jails in jls?! o [2003/07/07] conf/54170 error from weekly periodic script 330.cat o [2003/07/07] ports/54174 ports-bugs clean spaces behind variables out of port s [2003/07/07] bin/54185 rwatson UFS2 filesystem ACL flag not enforced a [2003/07/07] docs/54197 mheinen Mentioning of devfs is missing in the Ger o [2003/07/08] ports/54212 lioux Goggles-0.5.5 compile fails - dvdnav.o un o [2003/07/08] misc/54220 [PATCH] /usr/src/Makefile has wrong instr o [2003/07/08] misc/54229 Complete "See also" section for getipnode p [2003/07/08] docs/54235 ceri Error in ioctl(2)'s man page: Ioccon.h co o [2003/07/08] ports/54246 adrian [PATCH] www/squid: change obsolete config o [2003/07/09] ports/54250 ade [PATCH] for devel/automake17 o [2003/07/09] ports/54251 ports-bugs [NEW PORT] www/zope-xmlwidgets: XMLWidget o [2003/07/09] ports/54254 ade bsd.port.mk contains non-existing autocon o [2003/07/09] ports/54262 tobez port lang/perl5 doesn't deinstall /usr/bi o [2003/07/09] bin/54263 su/csh job control problem o [2003/07/09] ports/54271 ports-bugs New port: databases/pgbash o [2003/07/09] ports/54272 ports-bugs new port: misc/torrentsniff - BitTorrent o [2003/07/09] bin/54274 ru udp-proxy support is not implemented in l o [2003/07/09] bin/54276 pread/pwrite patches for libc db function o [2003/07/09] ports/54298 ports-bugs New port KVIrc 3.0.0 p [2003/07/10] conf/54334 Tip in freebsd-tips datfile for fortune i o [2003/07/10] ports/54335 ports-bugs new port: PPower4 - Post processor for PD o [2003/07/10] ports/54346 ports-bugs [NEW Port]:: x11/materm o [2003/07/10] ports/54351 marcus devel/portlint and /usr/ports/Mk/bsd.port o [2003/07/10] ports/54352 ports-bugs Conversion rc.d scripts to RC_NG o [2003/07/11] bin/54365 [PATCH] add -u option to install(1) for S o [2003/07/11] ports/54368 dburr update devel/p5-File-Spec o [2003/07/11] conf/54369 MFC /etc/services p [2003/07/11] conf/54371 bms Subversion IANA-assigned port number o [2003/07/11] ports/54372 ports-bugs new port: FoilTeX - a collection of LaTeX f [2003/07/11] ports/54373 petef [PATCH] mail/qmHandle: update to 1.1.1 o [2003/07/11] docs/54380 doc [PATCH] document additional perl variable o [2003/07/11] kern/54383 NFS root configurations without dynamic p f [2003/07/11] ports/54386 osa [PATCH] net/libnet: update to 1.1.0 o [2003/07/11] docs/54391 doc Document that glob(3) respects LC_COLLATE a [2003/07/11] ports/54406 portmgr [patch] add two more cases to ports/Tools f [2003/07/11] ports/54408 ports-bugs [new port] ftp/prozgui o [2003/07/12] ports/54414 ports-bugs New port: Dasher -- text entry system (fo o [2003/07/12] ports/54421 osa [PATCH] net/libnet: update to 1.1.1-RC-00 o [2003/07/13] kern/54439 Protecting sysctls variables by given mut o [2003/07/13] i386/54451 i386 [patch] i386_{get|set}_ldt manual page is o [2003/07/13] docs/54461 ceri Possible addition to Handbook o [2003/07/14] misc/54477 Thousands separator for Italian locale o [2003/07/15] ports/54498 anders gnokii port upgrade (maintainer not answe o [2003/07/16] ports/54550 ports-bugs [NEW PORT] www/zope-FileSystemSite: Enabl o [2003/07/16] ports/54553 ports-bugs New port: Growspd displays growth rate of o [2003/07/16] ports/54557 ports-bugs [NEW PORT] security/gnutls-devel: develop o [2003/07/16] ports/54563 maho new ports: Sun Grid Engine (Enterprise Ed o [2003/07/17] www/54570 www [patch] add 2 new press articles o [2003/07/17] www/54572 www [patch] unbreak b0rked www/en/ports/index o [2003/07/17] ports/54575 brian arpwatch.sh doesn't support multiple inte o [2003/07/17] bin/54594 Apply regexps to the entire variable -- a o [2003/07/17] i386/54595 i386 emu10k1 sound driver locks system o [2003/07/18] kern/54604 Made 'ps -e' procfs-independent [PATCH]. o [2003/07/18] docs/54610 blackend [patch] adds route(8) examples to routing o [2003/07/18] ports/54617 ports-bugs New port: lang/freetxl s [2003/07/18] ports/54624 ports-bugs Update: net/gtk-gnutella o [2003/07/18] kern/54625 [PATCH] IPv6 stealth forwarding o [2003/07/19] ports/54631 knu [PATCH] sysutils/portupgrade: fix pkgtool o [2003/07/19] bin/54633 whois queries with options for the whois- o [2003/07/19] ports/54636 ports-bugs misc/gtktalog: Remove PERL dependancy and o [2003/07/20] ports/54650 ports-bugs new port submission - misc/zidrav - file o [2003/07/20] kern/54654 njl Need SCSI CAM quirk for Rovershot digital o [2003/07/20] docs/54655 blackend [PATCH] update "Modifying Accounts" chapt o [2003/07/20] kern/54658 [patch] Several spelling and other minor o [2003/07/20] bin/54672 [PATCH] fix gcc 3.3 compiler warning for o [2003/07/20] docs/54678 doc [patch] add PACKAGESITE to packages chapt o [2003/07/20] www/54679 phantom [patch] add some .at companies to gallery o [2003/07/20] bin/54683 sh, redundant history o [2003/07/21] kern/54690 alc [PATCH] wrap swap_pager's swhash with a m o [2003/07/21] kern/54730 [patch] root can not set arbitrary proces p [2003/07/21] bin/54731 gshapiro [PATCH] bug in mail.local can cause unnec o [2003/07/21] ports/54732 ports-bugs New port: mod_auth_pam2 (mod_auth_pam for o [2003/07/21] ports/54733 anders PATCH o [2003/07/22] docs/54752 doc bus_dma explained in ISA section: should o [2003/07/22] ports/54754 wjv Update port: devel/arch to 1.0pre25 o [2003/07/22] ports/54760 billf ethereal 0.9.13 from ports fails to compi o [2003/07/22] docs/54769 doc [patch] updates to FAQ o [2003/07/23] bin/54784 find -ls wastes space o [2003/07/23] kern/54786 njl Kernel quirk for FreeDik USB Mini Data Dr o [2003/07/23] docs/54789 doc [PATCH] brush up the "New Users" article o [2003/07/24] docs/54806 doc [patch] adds fvwm2 to x11-wm o [2003/07/24] standards/54809standards pcvt deficits o [2003/07/24] ports/54811 ports-bugs ports/japanese/kappa20 maintainer update+ o [2003/07/24] ports/54812 ports-bugs New Port par2cmdline for verify/creation/ o [2003/07/24] ports/54814 ports-bugs New port: hungarian/hunspell version 0.9. o [2003/07/24] ports/54815 wjv ports/textproc/p5-XML-Twig dependancy fix o [2003/07/24] standards/54833standards more pcvt deficits o [2003/07/25] kern/54836 njl Casio QV Digital Camera problems o [2003/07/25] ports/54837 ports-bugs minor update to net/cdpd o [2003/07/25] standards/54839standards pcvt deficits o [2003/07/25] ports/54841 ports-bugs Checksum mismatch on Linux-Realplayer por o [2003/07/25] ports/54857 ports-bugs mod_perl2 does not activate module in the o [2003/07/25] www/54863 www [patch] add available JDKs to java/instal o [2003/07/25] ports/54866 lioux libgnugetopt incompatibility breaks mjpeg o [2003/07/25] ports/54875 andreas hpijs loops on fatal error o [2003/07/25] ports/54876 gnome [PATCH] lang/guile: Bug in a Makefile s [2003/07/25] bin/54878 incorrect divisor in /usr/bin/jot -r o [2003/07/25] docs/54879 doc man 1 jot, -r description o [2003/07/26] kern/54884 mckusick FreeBSD -stable and -current free space h o [2003/07/26] bin/54891 libalias/natd and exporting connection-in o [2003/07/27] bin/54897 [PATCH] -y flag for mount_mfs o [2003/07/27] conf/54910 mtm [PATCH] Add rc.conf option to disable vir f [2003/07/27] ports/54926 ports-bugs [PATCH] graphics/ImageMagick: enable choo o [2003/07/27] ports/54938 grog [PATCH] using www/squid as proxy (instead o [2003/07/27] i386/54963 i386 Left over/outdated comment in NOTES p [2003/07/27] misc/54967 ceri Spelling error in /usr/share/games/fortun o [2003/07/28] kern/54981 njl Add support for Lexar 256MB USB drive f [2003/07/28] kern/54982 jmg data corruption with usb umass da msdosfs o [2003/07/28] ports/54984 ports-bugs New port: mail/postfixadmin 5. f [2003/09/03] kern/56380 cdrecord panicks -CURRENT with ATAPI burn o [2003/09/03] kern/56384 njl ACPI problems on Thinkpad T20 o [2003/09/03] ports/56386 kde kdebase overwrites kdmrc when installing a [2003/09/03] docs/56388 dougb Add/change #include lines for libisc man a [2003/09/03] ports/56389 portmgr [PATCH] port sysutils/pkg_install: fix `m o [2003/09/03] ports/56392 portmgr bento reports "share/nls/en_US.US-ASCII" o [2003/09/03] ports/56393 nakai Update port: lang/slib to 2d6 (supersedes o [2003/09/03] bin/56398 new option for daemon(8) -- pidfile [patc o [2003/09/04] ports/56400 wjv text/py-csv - equivalent is included stan f [2003/09/04] ports/56403 ports-bugs update port: mail/grepmail o [2003/09/04] docs/56408 doc [PATCH] add around app-default o [2003/09/04] ports/56411 trevor [patch]unbreak ports/security/mcrypt o [2003/09/04] ports/56423 linimon delete port devel/amulet o [2003/09/04] kern/56441 bpf_tap() used incorrectly in bpf o [2003/09/04] bin/56447 Extend mt command for AIT-2 tape drives o [2003/09/04] kern/56451 /compat/linux/proc/cpuinfo gives wrong CP o [2003/09/04] docs/56452 doc [patch]Add EXTRACT_DEPENDS&PATCH_DEPENDS o [2003/09/04] ports/56455 ports-bugs New Port: audio/eawpats: Eric A. Welsh's o [2003/09/04] standards/56476standards cd9660 unicode support simple hack o [2003/09/04] ports/56478 linimon delete graphics/vterrain-sdk o [2003/09/05] bin/56480 mixer(8) -s does not list recording sourc f [2003/09/05] ports/56481 linimon [patch] fix plist and fetch problems for p [2003/09/05] bin/56492 schweikh [patch] Removal of stray semicolons after o [2003/09/05] ports/56493 ports-bugs New port: deskutils/superkaramba o [2003/09/05] kern/56496 joe Add support for minolta 5400 usb scanner o [2003/09/05] conf/56506 A wireless network card is missing in 4.8 o [2003/09/05] ports/56512 dburr x11amp bus error o [2003/09/06] kern/56513 panic in ugen w/ moused -p /dev/ugen0 o [2003/09/06] ports/56518 trevor [patch][non-maintainer] update checksums o [2003/09/06] ports/56533 portmgr update Mk/bsd.port.mk o [2003/09/06] ports/56536 ports-bugs New Port: CGI-Application-ValidateRM-1.06 o [2003/09/06] ports/56540 petef Update port: p5-CGI-Application from 2.3 o [2003/09/06] ports/56541 ports-bugs Update port: p5-Data-FormValidator from 1 f [2003/09/06] ports/56546 ports-bugs [maintainer update] sysutils/filelight to o [2003/09/06] bin/56549 [patch] rtld.c - give more info on missin o [2003/09/07] gnu/56554 re add Cc: maintainer feature to send-pr o [2003/09/07] bin/56558 [PATCH] locate(1) cannot be safely used w o [2003/09/07] ports/56562 anders [update] www/mod_sqlinclude: update to 1. o [2003/09/07] ports/56564 wjv [PATCH] textproc/p5-XML-Node: update to 0 o [2003/09/07] kern/56575 joe setting in uvisor.c for CLIE_40 is incorr o [2003/09/07] ports/56578 ports-bugs security/logcheck: /var/log/security shou o [2003/09/07] ports/56582 portmgr request for virtual category "pear" o [2003/09/08] docs/56584 hmp Updates for VOP_GETPAGES(9) and VOP_PUTPA o [2003/09/08] ports/56585 ports-bugs distfile problems with port sysutils/rc_s f [2003/09/08] bin/56595 rwatson sys/mac.h, sys/mac_policy.h cannot be use f [2003/09/08] ports/56596 ports-bugs mtxorbd port submission o [2003/09/08] ports/56597 ports-bugs bad startup perfomance of mpg123 with pcm o [2003/09/08] ports/56600 portmgr [PATCH] bsd.port.mk: work with -s flag, c o [2003/09/08] bin/56606 df cannot handle 2TB NFS volumes o [2003/09/08] kern/56617 Hang on boot w/neomagic audio on Dell Lat o [2003/09/09] bin/56622 jmg Wrong debug message in usbd p [2003/09/09] conf/56626 ru whatis(1) does not include ports o [2003/09/09] ports/56641 portmgr [PATCH] bsd.port.mk: support for SHA1 and o [2003/09/09] ports/56644 ports-bugs New Port: Urchin analyzes web traffic. o [2003/09/09] bin/56646 [patch] getgrouplist()/setgroups() argume o [2003/09/09] bin/56648 [PATCH] enable rcorder(8) to use a direct o [2003/09/09] bin/56649 [patch] More spurious semicolon removal o [2003/09/09] bin/56653 [patch] Removal of non-standard void * ar o [2003/09/09] ports/56654 ports-bugs Update of lang/expect with tcl84 and tk84 o [2003/09/09] ports/56658 ports-bugs Convert security/amavisd startup scripts o [2003/09/09] kern/56664 bad file# in MTIO status buffer after MTE o [2003/09/09] ports/56671 ports-bugs Update port devel/cmake to 1.6.7 o [2003/09/10] ports/56677 nbm qmailanalog port does not install to corr f [2003/09/10] ports/56685 ports-bugs Update port: chinese/qterm o [2003/09/11] bin/56696 atacontrol core dump (sscanf on unintiali o [2003/09/11] ports/56699 seanc net/openreg needs to move to dns category o [2003/09/11] misc/56715 darrenr ipmon starts too early and exits immediat o [2003/09/11] misc/56720 Resolver UNICODE support o [2003/09/11] ports/56721 lioux [patch, non-maintainer] multimedia/ffmpeg o [2003/09/11] kern/56726 [PATCH] patches for if_bfe (Broadcom BCM4 o [2003/09/12] conf/56736 [PATCH] rcNG: enable packages to particip o [2003/09/12] ports/56742 ports-bugs expect build fails with option WITHOUT_X1 o [2003/09/13] docs/56745 doc Some suggestions for the Bibliography cha o [2003/09/13] ports/56755 ports-bugs update for the port print/cdlabelgen f [2003/09/13] ports/56756 ports-bugs bogus patch on emulators/twin a [2003/09/14] ports/56859 portmgr [patch] minor fixes for ports/Tools/portb o [2003/09/14] ports/56864 ports-bugs sdl12 fails in joystick/bsd o [2003/09/14] ports/56866 ports-bugs ports/news/inn-stable ovdb support can't o [2003/09/14] ports/56870 ports-bugs New port: qtella 0.6.2 o [2003/09/14] docs/56872 doc [Patch] Talk about EVFILT_NETDEV in kqueu o [2003/09/14] ports/56877 petef [PATCH] textproc/p5-URI-Find: update to 0 o [2003/09/14] docs/56883 doc Inadequately-documented charter for freeb o [2003/09/15] docs/56901 doc [patch] articles/diskless-x: fix bad engl o [2003/09/15] docs/56903 doc [patch] articles/fonts: add application t o [2003/09/15] ports/56909 roger cannot compile openh323 o [2003/09/15] docs/56911 hmp Document for VOP_OPEN missing the last pa o [2003/09/16] bin/56914 ftpd ignores default umask settings o [2003/09/16] docs/56915 doc [patch] articles/fonts: update links o [2003/09/16] ports/56922 ports-bugs www/apache2: Apache-2.0.47 ab Utility doe o [2003/09/16] ports/56928 ports-bugs jce-aba port should install to $JAVA_HOME o [2003/09/16] docs/56932 doc [patch] articles/releng-packages: add "no o [2003/09/16] conf/56934 rc.firewall rules for natd expect an inte o [2003/09/16] docs/56936 doc [patch] articles/java-tomcat: add applica o [2003/09/17] conf/56940 pccard.conf entry for PCET10-CL causes sy o [2003/09/17] ports/56948 portmgr Maintainer Update: www/caudium-devel o [2003/09/17] ports/56950 roam dns/djbdns/Makefile uses, but doesn't set o [2003/09/17] ports/56951 roam [PATCH] add ignoreip2 patch o [2003/09/17] conf/56952 re Floppy install error o [2003/09/17] kern/56954 [PATCH] fix typo in comment of sys/cam/sc o [2003/09/17] conf/56956 xterm-ic from termcap is not included in o [2003/09/17] ports/56958 ports-bugs ports with non-conforming version numbers o [2003/09/17] ports/56960 portmgr [PATCH] bsd.port.mk: Don't accept PORTVER o [2003/09/17] bin/56961 [PATCH] pkg_install: match package versio o [2003/09/17] ports/56964 wjv port update: textproc/p5-XML-Twig build f f [2003/09/17] ports/56967 ports-bugs math pari update o [2003/09/17] ports/56969 ports-bugs New port: mail/mail-notification, a GNOME f [2003/09/18] ports/56977 mat net/p5-Net-Server assumes wrong setuid se o [2003/09/18] ports/56980 ports-bugs unprivileged user, extracting of tarballs o [2003/09/18] docs/56981 doc man terminfo(5) from libncurses does not o [2003/09/18] kern/56985 Fix for OEM Proxim Harmony PCMCIA wireles o [2003/09/18] bin/56989 [PATCH] pkg_install: -v doesn't work on p o [2003/09/19] bin/56991 rwatson getfacl long groupnames (Cannot allocate o [2003/09/19] misc/56999 FreeCom USB CD/RW problem on FreeBSD 5.1 o [2003/09/19] ports/57003 green Update port: emulators/snes9x to 1.41.1 o [2003/09/19] ports/57010 kris Update port: x11/wdm to 1.26 o [2003/09/19] ports/57016 ports-bugs sysutils/pkg_install: left over files in o [2003/09/19] bin/57018 [PATCH] convert growfs to use libufs(3) o [2003/09/19] ports/57019 brian [PATCH] arpwatch enhancements o [2003/09/19] bin/57024 a new option for xargs(1) -- only treat \ o [2003/09/19] bin/57026 [PATCH] Therer is no way to know the labe o [2003/09/19] bin/57029 [PATCH] pkg_install: make more robust aga o [2003/09/19] ports/57031 dougb upslog started with incorrect command lin o [2003/09/20] ports/57034 ports-bugs update net/binkd f [2003/09/20] ports/57039 marcus New port: x11/gtk2-theme-switch - A comma o [2003/09/20] ports/57041 ports-bugs Slight change to net/citadel to correct p o [2003/09/20] bin/57045 trpt(8) option -t was disabled on -curren o [2003/09/20] kern/57046 joe Add usb quirk for Sigmatel USB Flash MP3 o [2003/09/20] kern/57050 Add IBM USB Drive support o [2003/09/21] bin/57054 let test(1) compare the mtime of a file t o [2003/09/21] conf/57058 NO_MAILWRAPPER in make.conf not completel o [2003/09/21] ports/57060 ports-bugs www/smarty: better pkg-plist o [2003/09/21] kern/57065 jmg core dumps with NODUMP flag a [2003/09/21] ports/57067 portmgr add imake and pthread detection to Tools/ o [2003/09/21] ports/57074 ports-bugs mail/postfix pkg-message needs additional p [2003/09/21] conf/57075 gshapiro rc.sendmail needs to honour ${sendmail_ms o [2003/09/21] ports/57078 des [NEW PORT] databases/gnatsweb4 f [2003/09/21] ports/57079 ports-bugs Update to graphics/dynamechs f [2003/09/21] ports/57080 linimon [patch][non-maintainer] update finance/op o [2003/09/22] bin/57088 [PATCH] for a possible fd leak in libcam. o [2003/09/22] bin/57089 "w" does not honor the -n option f [2003/09/22] ports/57101 linimon [patch][non-maintainer] mark net/howl BRO o [2003/09/22] docs/57118 doc o [2003/09/23] ports/57122 obrien ncftp3: !command doesn't work p [2003/09/23] kern/57123 SMBFS incorrect LFN & 8.3 bad character h o [2003/09/23] i386/57125 i386 Comment to IPSEC_FILTERGIF in LINT is now o [2003/09/23] ports/57128 cy security/krb5: fix build on -stable, fix o [2003/09/23] i386/57131 i386 Device ID for Intel 82801DBM IDE Controll o [2003/09/23] i386/57133 i386 PCI device ID for Intel 82801DB/BAM/CAM a o [2003/09/23] ports/57143 ports-bugs modules in flash shell broken o [2003/09/24] ports/57151 tobez Port lang/perl5.8: use.perl fails to modi o [2003/09/24] ports/57152 ports-bugs pear-* ports: simplify path to devel/pear o [2003/09/24] docs/57153 doc S_IRWXU missing in fstat(2) man page? o [2003/09/24] ports/57155 ports-bugs make devel/pear-PEAR and other pear-* por o [2003/09/24] ports/57162 ports-bugs The latest stable release of DansGuardian o [2003/09/24] ports/57167 edwin [REPOCOPY WAITING] news/inn-current: Deve o [2003/09/24] ports/57169 ports-bugs new port: editors/mlview - a treebased xm o [2003/09/24] ports/57181 keith Update port: chinese/arphicttf o [2003/09/24] ports/57183 keith Removal port: chinese/abiword o [2003/09/24] java/57192 java linux-ibm-java1.4 freeze f [2003/09/24] ports/57198 ports-bugs multimedia/xmms fix to work with CDDA und o [2003/09/24] ports/57199 ports-bugs port update: www/slash, chinese/metalist o [2003/09/25] ports/57223 cy security/krb5 fails make package with no o [2003/09/25] ports/57224 ports-bugs [NEW PORT] port net/ldapc++: OpenLDAP C++ o [2003/09/25] ports/57226 ports-bugs audio/cdparanoia fix to work with cooked_ o [2003/09/25] ports/57227 ports-bugs audio/dagrab fix to work under -CURRENT o [2003/09/25] kern/57230 [patch] psm(4) incorrectly identifies an f [2003/09/25] bin/57231 usr.bin/uname -s value always placed in f o [2003/09/26] amd64/57250 amd64 Broken PTRACE_GETFPREGS and PTRACE_SETFPR f [2003/09/26] ports/57259 portmgr Building a port as root using an NFS-moun o [2003/09/26] ports/57272 portmgr [patch] COMMENT/COMMENTFILE checking is t o [2003/09/27] ports/57286 ports-bugs Update port: graphics/xzgv to 0.8 o [2003/09/27] ports/57289 ports-bugs teamspeak-server port is broken in 3 ways o [2003/09/27] standards/57295standards [patch] make does not include cmd line va o [2003/09/27] docs/57298 blackend Using compact flash cards a [2003/09/28] ports/57310 ports-bugs amavisd-new searches for SpamAssassin loc o [2003/09/28] ports/57319 nork archivers/lha has a newer version o [2003/09/28] kern/57328 [patch] -current loader uses wrong IP add o [2003/09/28] ports/57333 gnome gnomevfs2 will not build when bind84-base o [2003/09/29] ports/57349 knu [PATCH] port sysutils/portupgrade: typos o [2003/09/29] kern/57350 kernel panics when using old monocrome pr o [2003/09/29] ports/57357 ports-bugs Update port: graphics/gifsicle to 1.40 f [2003/09/29] ports/57359 ports-bugs Update port: textproc/wv to 1.0.0 o [2003/09/29] ports/57361 ports-bugs Update port: www/amaya to 8.1b o [2003/09/29] ports/57378 portmgr Use SU_CMD for deinstall and deinstall-al f [2003/09/29] ports/57379 dinoex [FIX] security/clamav 0.60 o [2003/09/29] ports/57382 ports-bugs [PATCH] security/amavisd-new 20030616.p5 o [2003/09/29] ports/57383 ports-bugs [PATCH] sysutils/idled 1.16 o [2003/09/29] ports/57384 dougb [PATCH] mail/p5-Mail-SpamAssassin 2.60 o [2003/09/29] ports/57385 mharo [PATCH] ftp/proftpd 1.2.8_1 s [2003/09/29] ports/57386 edwin [REPOCOPY WAITING] www/apache21: Add Apac o [2003/09/29] docs/57388 doc INSTALL.TXT enhancement: mention ok promp o [2003/09/30] ports/57394 smace net/libnet-devel: install doc and example o [2003/09/30] ports/57397 ports-bugs Update database/freetds to 0.61.2; fix di o [2003/09/30] ports/57403 portmgr [patch] create WWWOWN and WWWGRP o [2003/09/30] bin/57407 [patch] Better NTP support for dhclient(8 o [2003/09/30] ports/57408 ports-bugs linux_nwndata and linux_nwnclient ports p o [2003/09/30] ports/57409 wjv Update port: devel/py-twisted to 1.0.7 o [2003/09/30] ports/57416 ports-bugs ports/x11-toolkits/tk80 broken under Free o [2003/09/30] ports/57421 krion [NEW PORT] net/ifgraph: Simple grapher of o [2003/09/30] kern/57422 MT_TAG usage are not reported o [2003/09/30] kern/57428 a couple of new sysctl to toggle which IP f [2003/09/30] ports/57431 linimon [patch][non-maintainer] mark x11-fm/vide o [2003/09/30] ports/57435 dburr [patch][non-maintainer] update master sit o [2003/09/30] ports/57438 portmgr [PATCH] bsd.port.subdir.mk: fix INDEX bui o [2003/09/30] ports/57439 anders [PATCH] security/pam_mysql o [2003/09/30] ports/57442 jmz [patch][non-maintainer] mark print/tex as o [2003/09/30] ports/57443 nakai [patch][non-maintainer] mark games/xpuyo f [2003/10/01] ports/57448 ports-bugs new port: kkbswitch, a KDE keyboard layou p [2003/10/01] bin/57462 [patch]Update usage() of mount_msdos(8) i o [2003/10/01] misc/57464 Boot process: loader(8) seems to confuse o [2003/10/01] kern/57468 Quirk for Quantum LPS540S o [2003/10/01] kern/57469 Quirk for Conner CP3500 o [2003/10/01] ports/57475 ports-bugs devel/sdl12: upgrading to 1.2.6 + some fi o [2003/10/01] ports/57476 ports-bugs correcting paths in net/netsaint plugins o [2003/10/01] ports/57483 ports-bugs [MAINTAINER] sysutils/userneu: update to o [2003/10/01] ports/57485 ports-bugs ghostscript-gnu-7.07_3 portupgrade - unab o [2003/10/01] ports/57486 ports-bugs [patch] poppassd doesn't work o [2003/10/01] kern/57487 sound Sound stops working on my Thinkpad 560X a o [2003/10/01] ports/57488 portmgr bsd.port.mk: share/nls/C/C -> C o [2003/10/01] ports/57490 okazaki bus error troff running. need to version o [2003/10/02] ports/57496 portmgr [PATCH] bsd.port.mk: check for USE_* used o [2003/10/02] ports/57498 portmgr HEIMDAL_HOME should be defined in src or o [2003/10/02] ports/57502 ports-bugs ports that define USE_* too late o [2003/10/02] ports/57503 ports-bugs New Port Submission mod_auth_mysql41_ap2 f [2003/10/02] ports/57509 ports-bugs New arabic port: duali f [2003/10/02] ports/57511 ports-bugs New arabic port: katoob o [2003/10/02] ports/57513 ports-bugs Change category of kde-i18n-ar o [2003/10/02] ports/57515 ports-bugs Change category: koffice-i18n-ar o [2003/10/02] conf/57517 add parameter for /etc/periodic/daily/210 o [2003/10/02] ports/57519 kiri [patch] Upgrade of textproc/fop from 0.20 o [2003/10/02] ports/57521 ports-bugs New Port - databases/py-sybase o [2003/10/02] kern/57522 [PATCH] New PID allocater algorithm from o [2003/10/03] ports/57525 ports-bugs New port: katalog o [2003/10/03] ports/57529 portmgr [PATCH] bsd.port.mk: enable the use of US o [2003/10/03] ports/57535 kevlo Update port: textproc/source_highlight to o [2003/10/03] docs/57541 trhodes Some suggestions for the Basics chapter o o [2003/10/03] i386/57546 Adding VIA C3 capability printout in i386 o [2003/10/04] ports/57564 mbr [patch][non-maintainer] change master sit o [2003/10/04] docs/57569 doc error on gensetdefs(8) man page f [2003/10/04] ports/57576 ports-bugs Update port: audio/xmms-sndstretch to 0.7 o [2003/10/04] www/57580 blackend FreeBSD.ORG WWW Turkish Translation f [2003/10/04] ports/57589 ports-bugs [unbreak port] mail/mahogany to 0.65 and o [2003/10/05] ports/57620 linimon [patch] update x11-toolkits/fox-devel to o [2003/10/05] ports/57621 linimon delete port x11-toolkits/fox-xunicode o [2003/10/05] bin/57630 lptcontrol gives "device busy" if device o [2003/10/05] ports/57635 ports-bugs [UPDATE] net/rdesktop-devel: Add RDP5 Sup o [2003/10/05] ports/57637 lioux multimedia/mpeg4ip is broken on HEAD o [2003/10/06] bin/57641 [patch] missing option in mdmfs (mount_mf o [2003/10/06] ports/57645 erwin use USE_MYSQL in mail/tpop3d o [2003/10/06] ports/57652 ports-bugs [patch] www/apache-contrib: Let the user o [2003/10/06] ports/57661 naddy [new port] www/mod_log_data: Module for A o [2003/10/06] ports/57665 portmgr [PATCH] bsd.port.mk: LIB_DEPENDS should n o [2003/10/06] ports/57668 ports-bugs [new port] mail/mboxcheck-applet o [2003/10/06] docs/57669 doc IFMIB(4) man page uses sysctl(3) incorrec o [2003/10/06] ports/57674 erwin [NEW PORT] net/p5-Net-SNMP3: Net::SNMP fo o [2003/10/07] kern/57696 NFS client readdir terminates prematurely o [2003/10/07] ports/57705 ports-bugs Update port: print/lyx to 1.3.3 o [2003/10/07] bin/57715 tcopy enhancement f [2003/10/07] ports/57716 ports-bugs Update port: chinese/cce o [2003/10/07] kern/57721 sound Dell built in SB Live not detected (patch o [2003/10/07] ports/57726 trevor upgrade cvslines to 1.6.8 o [2003/10/07] ports/57727 ports-bugs repocopy request for OpenOffice.org o [2003/10/08] misc/57748 [patch] rc.network doesn't allow for -a i o [2003/10/08] ports/57749 roam ports using NOPORTSDOCS (instead of NOPOR o [2003/10/08] ports/57751 marcus [PATCH] port devel/portlint: check for NO o [2003/10/08] ports/57753 glewis new port: databases/mysql-connector-java o [2003/10/08] ports/57759 ports-bugs New port: A very function im client o [2003/10/08] ports/57765 ports-bugs [new port] polish/gnugadu2 - GTK2 based n o [2003/10/08] ports/57768 tobez [patch][non-maintainer] update devel/p5-C f [2003/10/08] ports/57769 linimon [patch][non-maintainer] update editors/te o [2003/10/08] ports/57772 mdodd [non-maintainer] mark games/scorched3d-de f [2003/10/08] ports/57775 linimon [non-maintainer] mark graphics/quat-gui a f [2003/10/08] ports/57776 linimon [non-maintainer] mark misc/libh as broken o [2003/10/08] ports/57778 portmgr [PATCH] bsd.port.mk: proposal for a PORTD f [2003/10/08] ports/57779 lev Update devel/subversion to 0.31, with per o [2003/10/08] ports/57782 ports-bugs update patch for graphics/xzgv from 0.7 t o [2003/10/08] i386/57783 i386 UINT32_MAX is missing from FreeBSD 4.X o [2003/10/09] ports/57789 ports-bugs New port of asr10 o [2003/10/09] bin/57791 dig option -x incorrectly produces ip6.ar o [2003/10/09] ports/57801 ports-bugs port update: math/R-letter 1.7.0 to 1.7.1 o [2003/10/09] ports/57803 ports-bugs Update port: games/gtetrinet to 0.7.5 o [2003/10/09] ports/57817 ports-bugs New port french/gibi + french/aster packa o [2003/10/09] ports/57823 kbyanc PATCH: obey portlint warnings o [2003/10/10] docs/57838 doc missing in docu: port Makefile target 'pa o [2003/10/10] sparc64/57856sparc64 sparc64: IDE Raid controller no detect di f [2003/10/10] ports/57858 ports-bugs New ports: graphics/vtk* 4.3.0 instead of o [2003/10/10] ports/57859 ports-bugs [patch] news/inn (inn-2.4.0_3) does not s o [2003/10/10] ports/57860 ports-bugs New port: science/ovt: Orbit Visualizatio o [2003/10/10] ports/57861 taoka [PATCH] ports/japanese/*fpw*: `make deins o [2003/10/11] ports/57863 keith Update port: lang/mmix to mmix-20030622 o [2003/10/11] ports/57865 ports-bugs New ports: www/mod_watch4 o [2003/10/11] ports/57871 ports-bugs NEW port: graphics/robot o [2003/10/11] ports/57872 ports-bugs [PATCH] games/ptkei: update to 1.18.1 o [2003/10/11] ports/57873 ports-bugs [PATCH] games/eif: update to 1.3.2 o [2003/10/11] ports/57874 ports-bugs Pure-FTPd is not configured for files >2G o [2003/10/11] ports/57876 ports-bugs new port:graphics/cinepaint o [2003/10/11] ports/57877 ports-bugs Update port: mail/mailman add option for f [2003/10/11] ports/57880 ports-bugs [patch]update irc/ircd-hybrid to 6.4.1 o [2003/10/12] ports/57883 edwin [REPOCOPY WAITING] Update port: deskutils o [2003/10/12] ports/57885 ports-bugs New port: devel/agide o [2003/10/12] ports/57902 ports-bugs New port: bbsmount - graphical disk mount o [2003/10/12] i386/57909 njl ACPI related slowness on an ASUS M2400N n o [2003/10/12] ports/57910 lioux [UPDATE] mail/py-spambayes to latest vers o [2003/10/12] standards/57911standards fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) o [2003/10/12] ports/57913 ports-bugs quagga port needs to be updated to refer o [2003/10/12] ports/57924 mat Update port: www/p5-Apache-Peek 0.9501 -> o [2003/10/12] ports/57925 mat Update ports: www/p5-CGI-SpeedyCGI o [2003/10/12] docs/57926 doc amd.conf.5 poorly format as it has both m o [2003/10/12] ports/57927 ports-bugs Fix port: www/udmsearch o [2003/10/12] ports/57928 portmgr Document package-recursive in bsd.ports.m o [2003/10/12] ports/57930 ports-bugs [patch] sysutils/xmbmon: enable ADM9240 h o [2003/10/12] ports/57931 reg Update port: databases/grass to 5.0.2 o [2003/10/12] ports/57932 ports-bugs Update port: devel/cvsadmin (dumps core) o [2003/10/13] ports/57937 ports-bugs fix cups-base package install, take maint o [2003/10/13] ports/57938 ports-bugs make cups-lpr installation more plug'n'pl o [2003/10/13] ports/57941 ports-bugs [patch] comms/libticables: fix build on n o [2003/10/13] ports/57943 ports-bugs isc-dhcp3 port broken with lots of interf o [2003/10/13] ports/57952 tobez Update port: p5-XML-DT from 0.20 to 0.26 o [2003/10/13] ports/57960 kjc Update port: x11-toolkits/blt o [2003/10/13] kern/57969 sos MFC request for new ata Intel PCI id o [2003/10/13] docs/57974 doc man page apropos for select macros (FD_SE o [2003/10/13] kern/57976 simple kernel DDB enhancement o [2003/10/13] docs/57978 doc Type miss of GPIB in Hardware Notes o [2003/10/13] ports/57979 petef Update port: p5-libwww from 5.69 to 5.70 o [2003/10/13] ports/57982 petef Update port: www/p5-HTML-Table from 1.15 o [2003/10/13] ports/57983 mat Update port: net/p5-Net-Netmask from 1.90 o [2003/10/14] ports/57987 tobez Update port: lang/p5-Scalar-List-Utils fr o [2003/10/14] ports/57988 mat Update port: www/p5-HTML-FromText to 2.05 o [2003/10/14] ports/57992 ports-bugs [PATCH] Utilize %%DOCSDIR%% macro o [2003/10/14] ports/57997 tobez Update port: astro/p5-Astro-Sunrise from o [2003/10/14] ports/58002 ports-bugs [patch] net/dcgui-0.2.19: fix for "Can't o [2003/10/14] misc/58008 sysinstall postfix installation problem o [2003/10/14] ports/58009 ports-bugs [MAINTAINER] lang/pike74: update to 7.4.3 o [2003/10/14] ports/58010 ports-bugs [MAINTAINER] www/caudium-devel: update to o [2003/10/14] ports/58011 portmgr Formalization of WITH_/WITHOUT_ Makefile o [2003/10/14] bin/58012 Multihomed tftpd enhancement o [2003/10/14] ports/58014 ports-bugs [MAINTAINER] devel/mico: update to 2.3.11 o [2003/10/14] ports/58015 ports-bugs [NEW PORT] www/apache-forrest: A tool for o [2003/10/14] conf/58016 [PATCH] Can't load speaker.ko kernel modu o [2003/10/14] ports/58025 ports-bugs [New port] x11/xterm: xterm built with 88 o [2003/10/14] ports/58026 ports-bugs [maintainer-update] update ports/x11-tool o [2003/10/14] www/58029 www [patch] news/press: correct capitalizatio o [2003/10/14] ports/58032 ports-bugs New Port: liblingoteach o [2003/10/14] ports/58034 ports-bugs french/facturier: upgrading to 2.1.1. o [2003/10/14] ports/58037 dinoex Update security/clamav o [2003/10/14] ports/58041 ports-bugs port math/R-letter: does not conform with o [2003/10/14] ports/58042 gnome Update port: editors/ghex2 2.4.0.1 -> 2.5 o [2003/10/14] kern/58045 [patch] to add PNY Attache Flash Drive to o [2003/10/14] ports/58049 petef Update: security/p5-Digest-MD5 2.27 -> 2. o [2003/10/14] ports/58050 ports-bugs New Port: textproc/p5-Filter-Simple 0.97 o [2003/10/14] ports/58051 ports-bugs New port: chinese/cdrtools o [2003/10/14] ports/58052 ports-bugs New port: chinese/chm2html o [2003/10/14] ports/58053 ports-bugs New port: chinese/ftpd o [2003/10/14] ports/58054 ports-bugs New port: chinese/kcdict o [2003/10/14] ports/58055 ports-bugs New port: chinese/ls o [2003/10/14] ports/58056 leeym New port: chinese/MT-zh_TW o [2003/10/14] ports/58057 ports-bugs New port: chinese/unzip o [2003/10/15] ports/58061 ports-bugs [maintainer] fix number of net/zabbix iss o [2003/10/15] ports/58064 ports-bugs Update port graphics/pstoedit to compile o [2003/10/15] ports/58066 kuriyama Update ports/mail/p5-MIME-Tools to 6.200. o [2003/10/15] ports/58071 tobez p5-Log-Dispatch portversion upgrade patch o [2003/10/15] ports/58074 erwin Update port: database/p5-BerkeleyDB o [2003/10/15] ports/58076 skv Update port: database/p5-Class-DBI-mysql o [2003/10/15] ports/58077 erwin Update port: database/p5-SQL-Abstract o [2003/10/15] ports/58078 tobez Update port: devel/p5-Sort-Versions o [2003/10/15] ports/58080 ports-bugs Update port: archivers/p5-Archive-Tar o [2003/10/15] ports/58081 petef Update port: mail/p5-Mail-ListDetector o [2003/10/15] ports/58085 ports-bugs New Port: S.M.A.R.T. disk monitoring tool o [2003/10/15] ports/58089 lioux Update of net/xmule from 1.6.0 to 1.6.1 o [2003/10/15] ports/58091 ports-bugs deskutils/kronolith: location of htpasswd o [2003/10/15] ports/58100 ports-bugs update ports/textproc/p5-Text-Shellwords o [2003/10/15] ports/58101 tobez update ports/textproc/p5-Text-Tmpl to 0.2 o [2003/10/15] ports/58102 ports-bugs Update port: lang/sisc to 1.8.5 o [2003/10/15] ports/58103 trevor Update: devel/cvsgraph 1.20 -> 1.40 and p o [2003/10/15] ports/58104 knu update ports/textproc/gdome2 to 0.8.0 o [2003/10/15] ports/58105 petef update ports/textproc/p5-URI-Find to 0.13 o [2003/10/15] ports/58106 ports-bugs [maintainer-update] update ports/textproc o [2003/10/16] ports/58108 ports-bugs Update port: textproc/xhtml-1.1 (use xmlc o [2003/10/16] ports/58109 kuriyama net/net-snmp add in WITHOUT_PERL support o [2003/10/16] ports/58110 ports-bugs [maintainer-update] update ports/x11-tool o [2003/10/16] docs/58111 doc Handbook 12.4.3 Rebuilding ATA RAID1 Arra o [2003/10/16] ports/58113 ports-bugs [maintainer-update] update ports/games/as o [2003/10/16] ports/58114 ports-bugs [maintainer update] Unbreak games/jfk o [2003/10/16] ports/58115 ports-bugs courier and pf, both want UID=62 fix eith o [2003/10/16] ports/58121 ports-bugs [new-port] Add ports/devel/openthreads o [2003/10/16] www/58122 www [patch] publish: update "BSD mit Methode" o [2003/10/16] ports/58123 kuriyama Update palm/palmos-sdk (non-maintainer) o [2003/10/16] ports/58127 ports-bugs Update port: editors/poedit to 1.2.3 o [2003/10/16] ports/58129 ports-bugs Update port: graphics/showimg to 0.8.0 o [2003/10/16] ports/58130 ports-bugs maintainer patch for biology/nab/Makefile o [2003/10/16] bin/58133 mdodd back port libmap.conf feature for 4-stabl o [2003/10/16] misc/58134 ntpdate documented as obsolete, and shoul o [2003/10/16] ports/58135 petef Update port: deskutils/dailystrips from 1 o [2003/10/16] ports/58137 ports-bugs Update port: sysutils/xfce4-battery-plugi o [2003/10/16] ports/58138 ports-bugs Update port: games/amy o [2003/10/16] ports/58141 ports-bugs New port: A tripwire like programme which o [2003/10/16] ports/58142 ports-bugs science/mpb shouldn't libdepend on math/b o [2003/10/16] ports/58146 anders [non maintainer update] www/mod_auth_exte o [2003/10/16] ports/58147 anders [non maintainer update] www/pound: update o [2003/10/16] ports/58149 portmgr [patch] Mk/bsd.port.mk: Make CONFLICTS co o [2003/10/17] ports/58158 nork replace install directory for ump.so o [2003/10/17] ports/58159 nakai [patch][non-maintainer] update fetch and o [2003/10/17] i386/58160 i386 puc driver doesn't recognize MOXA C104H/P o [2003/10/17] ports/58162 ports-bugs [maintainer-update] Update ports/graphics o [2003/10/17] i386/58163 i386 puc driver doesn't recognize MOXA C104H/P o [2003/10/17] ports/58165 ports-bugs [japanese/samba] smb.conf.5.html has many o [2003/10/17] ports/58166 ports-bugs Replce lib/perl5 stuffs to SITE_PERL for o [2003/10/17] ports/58170 ports-bugs [maintainer-update] update ports/net/amsn o [2003/10/17] ports/58171 ports-bugs [maintainer-update] update ports/graphics o [2003/10/17] ports/58172 ports-bugs Fix-up of GPSMan for tk84 o [2003/10/17] ports/58174 ports-bugs [maintainer update] update emulators/dosb o [2003/10/17] ports/58176 ports-bugs Resurrect port x11-toolkits/xview o [2003/10/17] ports/58177 ports-bugs fix x11-toolkits/xview-clients o [2003/10/17] ports/58178 ports-bugs Clean some ports out of CAD o [2003/10/17] ports/58179 ports-bugs [maintainer-update] update ports/www/xist o [2003/10/17] ports/58180 cjh port korean/hlatex-mffonts-wansung fails o [2003/10/17] ports/58181 ports-bugs New port: chinese/wenju o [2003/10/17] ports/58183 cjh [non-maintainer] port korean/imhangul-sta o [2003/10/17] ports/58184 linimon port textproc/latte installs latte.el in o [2003/10/17] ports/58185 skv update ports/textproc/p5-XML-Sablotron to o [2003/10/17] ports/58186 ports-bugs New port: databases/qdbm (quick database o [2003/10/17] ports/58187 linimon port textproc/tei-xsl-html fails to check o [2003/10/17] ports/58188 linimon [non-maintainer] port emulators/xpinmame o [2003/10/17] ports/58189 gioria [non-maintainer] port french/spip has a b o [2003/10/17] ports/58190 perky Update port: net/liferea 0.4.2 -> 0.4.3 o [2003/10/17] ports/58191 trevor [non-maintainer] an update is available f o [2003/10/18] ports/58192 linimon [patch][non-maintainer] distfile for shel o [2003/10/18] ports/58196 ports-bugs update ports/net/p5-Net-IPv6Addr to 0.2 o [2003/10/18] ports/58198 ports-bugs Maintainer update: cc65 port to version 2 o [2003/10/18] ports/58199 ports-bugs net/kopete: it is not possible to build k o [2003/10/18] ports/58200 ports-bugs [maintainer update] ftp/bsdftpd-ssl: bsdf o [2003/10/18] docs/58202 kensmith handbook doesn't mention kldload'ness of f [2003/10/18] ports/58203 ports-bugs New port: mail/kshowmail o [2003/10/18] ports/58204 ports-bugs [maintainer update] x11-toolkits/gnocl o [2003/10/18] ports/58205 ports-bugs new ports: textproc/p5-Text-MagicTemplate o [2003/10/18] bin/58206 [Patch] 460.status-mail-rejects incompati o [2003/10/18] ports/58207 ports-bugs New port: www/p5-HTML-TableTiler o [2003/10/18] ports/58208 ports-bugs New port: www/p5-HTML-MagicTemplate o [2003/10/18] ports/58209 greid upgrade ports/math/ccmath to 2.2.1 o [2003/10/18] ports/58212 kuriyama GnuPG port leaves some cruft on removal o [2003/10/18] kern/58214 [patch] Align smallbits properly in poll( o [2003/10/18] ports/58216 ports-bugs Update port: audio/sdl_sound to 1.0.1 o [2003/10/18] ports/58217 ports-bugs Update port: deskutils/genius to 0.5.6 o [2003/10/18] ports/58222 ports-bugs Update port: japanese/skkfep o [2003/10/18] ports/58223 ports-bugs Update port: math/rascal o [2003/10/18] ports/58226 ports-bugs [patch] ftp/kwebget: unbreak on 5.x o [2003/10/18] ports/58227 trevor patch to unbreak audio/sphinx port o [2003/10/18] ports/58232 portmgr [patch] creation of a new virtual categor o [2003/10/18] ports/58233 ports-bugs Update port: textproc/p5-XML-Writer o [2003/10/18] ports/58234 ports-bugs Slow memory allocation in python on 5.1-C o [2003/10/19] ports/58238 ports-bugs cad/cider: don't link with readline o [2003/10/19] ports/58239 ports-bugs [Maintainer Fix] lang/qscheme o [2003/10/19] ports/58246 ports-bugs Update graphics/gqview-devel to 1.3.2 o [2003/10/19] ports/58249 ports-bugs [new port] www/mod_ntlm: Implements NTLM o [2003/10/19] ports/58250 ports-bugs [new port] www/mod_ntlm2: Implements NTLM o [2003/10/19] ports/58251 ports-bugs [new port] www/mod_vdbh: Allows mass virt o [2003/10/19] ports/58252 ports-bugs [new port] www/mod_mya: Allows basic auth o [2003/10/19] ports/58253 ports-bugs [new port] www/mod_limitipconn: Allows yo o [2003/10/19] ports/58254 ports-bugs [new port] www/mod_limitipconn2: Allows y o [2003/10/19] ports/58255 ports-bugs [new port] www/mod_clamav: Scans content o [2003/10/19] ports/58256 ports-bugs [new port] www/mod_cfg_ldap: Allows you t o [2003/10/19] ports/58257 ports-bugs port update : net/pure-ftpd o [2003/10/19] kern/58258 Panic in knote_drop() o [2003/10/19] ports/58259 ports-bugs Fix port: devel/libukcprog o [2003/10/19] ports/58260 ports-bugs New Port: print/lilypond-devel o [2003/10/19] ports/58263 ports-bugs New port: misc/sonytv o [2003/10/19] ports/58266 ports-bugs Update port: net/gtk-gnutella to 0.92.1 o [2003/10/19] ports/58267 ports-bugs Update port: www/wiliki (broken on alpha o [2003/10/19] ports/58268 ports-bugs ports with a wrong PKGORIGIN o [2003/10/19] java/58269 java JDK 1.4 port fails to build on current o [2003/10/20] ports/58271 ports-bugs Maintainer update: net/adasockets o [2003/10/20] misc/58272 [patch] rc.d/diskless detection, dhcp reb o [2003/10/20] ports/58273 ports-bugs Update japanese/mozilla-jlp o [2003/10/20] ports/58274 ports-bugs [maintainer-update] security/clamav-devel o [2003/10/20] ports/58275 ports-bugs make package failure for mozilla-firebird o [2003/10/20] ports/58276 ports-bugs Update port: devel/global to 4.6.1 o [2003/10/20] ports/58278 ports-bugs [MAINTAINER] ports net/openldap2[012]-ser o [2003/10/20] ports/58280 ports-bugs [NEW PORT] mail/ja-squirrelmail: A webmai o [2003/10/20] ports/58281 ports-bugs maintainer update to www/bozohttpd to ver o [2003/10/20] ports/58283 ports-bugs [PATCH, SECURITY] port mail/fetchmail: up o [2003/10/20] ports/58288 ports-bugs maintainer update: www/mod_perl2 -> 1.99r o [2003/10/20] ports/58289 ports-bugs httrack-3.20-2 port fail with Floating po 2630 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 11:38: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 C21B016A4BF; Mon, 20 Oct 2003 11:38:05 -0700 (PDT) Received: from lifelesslap.robertcollins.net (dsl-3.7.240.220.lns02-kent-syd.dsl.comindico.com.au [220.240.7.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB91C43FD7; Mon, 20 Oct 2003 11:38:03 -0700 (PDT) (envelope-from robertc@squid-cache.org) Received: from localhost ([127.0.0.1] ident=robertc) by lifelesslap.robertcollins.net with esmtp (Exim 3.36 #1 (Debian)) id 1ABX1V-0000GY-00; Mon, 20 Oct 2003 20:12:25 +1000 From: Robert Collins To: Kris Kennaway In-Reply-To: <200310170621.h9H6LmGr068865@freefall.freebsd.org> References: <200310170621.h9H6LmGr068865@freefall.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-+gXuwH5be8QZZCB/8Kor" Message-Id: <1066644745.955.10.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Mon, 20 Oct 2003 20:12:25 +1000 cc: freebsd-bugs@FreeBSD.org Subject: Re: gnu/58099: g++ -fhuge-objects on ix86 coredumps upon use of std::ostringstream 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, 20 Oct 2003 18:38:05 -0000 --=-+gXuwH5be8QZZCB/8Kor Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2003-10-17 at 16:21, Kris Kennaway wrote: > Synopsis: g++ -fhuge-objects on ix86 coredumps upon use of std::ostringst= ream >=20 > State-Changed-From-To: open->closed > State-Changed-By: kris > State-Changed-When: Thu Oct 16 23:21:27 PDT 2003 > State-Changed-Why:=20 > Please take this up with the gcc developers: FreeBSD does not > separately maintain gcc. >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D58099 Who builds the binary packages for gcc on FreeBSD ? Whoever does that, is responsible, as this is not a source code bug AFAICT. Rob --=20 GPG key available at: . --=-+gXuwH5be8QZZCB/8Kor Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (GNU/Linux) iD8DBQA/k7UJI5+kQ8LJcoIRAlHNAJ41Uh5wgtQFTV4bPaG+z7vOIkXmIwCeIMAo 9wr9d7AkSvMUtjTruERPxKw= =HfJw -----END PGP SIGNATURE----- --=-+gXuwH5be8QZZCB/8Kor-- From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 11:43:35 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 93ABF16A4B3; Mon, 20 Oct 2003 11:43:35 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-63-207-60-234.dsl.lsan03.pacbell.net [63.207.60.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80BB643F3F; Mon, 20 Oct 2003 11:43:34 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id ED41266C9E; Mon, 20 Oct 2003 11:43:33 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id C668CCBF; Mon, 20 Oct 2003 11:43:33 -0700 (PDT) Date: Mon, 20 Oct 2003 11:43:33 -0700 From: Kris Kennaway To: Robert Collins Message-ID: <20031020184333.GA60464@rot13.obsecurity.org> References: <200310170621.h9H6LmGr068865@freefall.freebsd.org> <1066644745.955.10.camel@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline In-Reply-To: <1066644745.955.10.camel@localhost> User-Agent: Mutt/1.4.1i cc: Kris Kennaway cc: freebsd-bugs@FreeBSD.org Subject: Re: gnu/58099: g++ -fhuge-objects on ix86 coredumps upon use of std::ostringstream 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, 20 Oct 2003 18:43:35 -0000 --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 20, 2003 at 08:12:25PM +1000, Robert Collins wrote: > On Fri, 2003-10-17 at 16:21, Kris Kennaway wrote: > > Synopsis: g++ -fhuge-objects on ix86 coredumps upon use of std::ostring= stream > >=20 > > State-Changed-From-To: open->closed > > State-Changed-By: kris > > State-Changed-When: Thu Oct 16 23:21:27 PDT 2003 > > State-Changed-Why:=20 > > Please take this up with the gcc developers: FreeBSD does not > > separately maintain gcc. > >=20 > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D58099 >=20 > Who builds the binary packages for gcc on FreeBSD ? Whoever does that, > is responsible, as this is not a source code bug AFAICT. Which binary packages, the package for the gcc ports? Nothing special is done for package builds, beyond what is in the port. Can you be specific about why you think this is a port error? Kris --G4iJoqBmSsgzjUCe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/lCzVWry0BWjoQKURAuqqAKCyboB+EixGYqr5UAVniiqoAM2jJgCfTsYk RGPnU/esjhS0PsKbM9IKGBY= =Srix -----END PGP SIGNATURE----- --G4iJoqBmSsgzjUCe-- From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 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 807EF16A4C0 for ; Mon, 20 Oct 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 67BE043FE3 for ; Mon, 20 Oct 2003 12:00:31 -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 h9KJ0VFY007791 for ; Mon, 20 Oct 2003 12:00:31 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9KJ0VJK007790; Mon, 20 Oct 2003 12:00:31 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 20 Oct 2003 12:00:31 -0700 (PDT) Resent-Message-Id: <200310201900.h9KJ0VJK007790@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, mjanosi@uakron.edu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3821B16A4B3 for ; Mon, 20 Oct 2003 11:55:05 -0700 (PDT) Received: from correntosa.uakron.edu (correntosa.uakron.edu [130.101.81.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id D043243F3F for ; Mon, 20 Oct 2003 11:55:01 -0700 (PDT) (envelope-from mjanosi@uakron.edu) Received: from mulder.uakron.edu (mulder.cc.uakron.edu [130.101.5.50]) h9KIskCD023186 for ; Mon, 20 Oct 2003 14:54:46 -0400 Received: from uakron.edu (webteam3.cc.uakron.edu [130.101.181.56]) by mulder.uakron.edu (8.12.10/8.11.6) with ESMTP id h9KIsjME006249 for ; Mon, 20 Oct 2003 14:54:45 -0400 (EDT) Message-Id: <3F942F90.4C5A86D1@uakron.edu> Date: Mon, 20 Oct 2003 14:55:12 -0400 From: Miklos Janosi Sender: mjanosi@mulder.cc.uakron.edu To: FreeBSD-gnats-submit@FreeBSD.org Subject: bin/58293: vi replace with CR (ASCII 13) doesn't work X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: mjanosi@uakron.edu List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Oct 2003 19:00:33 -0000 >Number: 58293 >Category: bin >Synopsis: vi replace with CR (ASCII 13) doesn't work >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 20 12:00:30 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Miklos Janosi >Release: FreeBSD 4.7-RELEASE i386 >Organization: University of Akron >Environment: System: FreeBSD webteam3.cc.uakron.edu 4.7-RELEASE FreeBSD 4.7-RELEASE #1: Wed Feb 26 09:29:28 EST 2003 mjanosi@webteam5.cc.uakron.edu:/usr/src/sys/compile/MIKI i386 >Description: The vi command :s/X/\^M/ behaves just like :s/X/^M/ >How-To-Repeat: Edit a file that contains just 1 char, an "X" with vi. Enter the following command :s/X/\^M/ and keep in mind ^M is the key combination of ctrl-v and . It should replace the "X" with a carriage return (ASCII 13), but it replaces it with a newline (ASCII 10). >Fix: >Release-Note: >Audit-Trail: >Unformatted: X-send-pr-version: 3.113 X-GNATS-Notify: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 14:20: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 53E9C16A4B3 for ; Mon, 20 Oct 2003 14:20:17 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4820943F85 for ; Mon, 20 Oct 2003 14: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 h9KLKEFY024968 for ; Mon, 20 Oct 2003 14: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 h9KLKES0024967; Mon, 20 Oct 2003 14:20:14 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 20 Oct 2003 14:20:14 -0700 (PDT) Resent-Message-Id: <200310202120.h9KLKES0024967@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, Harold Gutch Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B80516A4C0 for ; Mon, 20 Oct 2003 14:11:21 -0700 (PDT) Received: from hub-r.franken.de (hub-r.franken.de [194.94.249.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id D570643F75 for ; Mon, 20 Oct 2003 14:11:14 -0700 (PDT) (envelope-from logix@foobar.franken.de) Received: from foobar.franken.de (foobar.franken.de [194.94.249.81]) by hub-r.franken.de (8.11.6/8.11.6) with ESMTP id h9KLBCo09319 for ; Mon, 20 Oct 2003 23:11:12 +0200 Received: from foobar.franken.de (localhost [127.0.0.1]) by foobar.franken.de (8.12.9/8.12.9) with ESMTP id h9KLBBlb011682 for ; Mon, 20 Oct 2003 23:11:11 +0200 (CEST) (envelope-from logix@foobar.franken.de) Received: (from logix@localhost) by foobar.franken.de (8.12.9p1/8.12.9/Submit) id h9KLAwmk011681; Mon, 20 Oct 2003 23:10:58 +0200 (CEST) (envelope-from logix) Message-Id: <200310202110.h9KLAwmk011681@foobar.franken.de> Date: Mon, 20 Oct 2003 23:10:58 +0200 (CEST) From: Harold Gutch To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/58305: WITNESS + INVARIANTS + "camcontrol devlist" = panic X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harold Gutch List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Oct 2003 21:20:17 -0000 >Number: 58305 >Category: kern >Synopsis: WITNESS + INVARIANTS + "camcontrol devlist" = panic >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 20 14:20:13 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Harold Gutch >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD outside.gutch.net 5.1-CURRENT FreeBSD 5.1-CURRENT #4: Mon Oct 20 22:19:12 CEST 2003 logix@outside.gutch.net:/usr/obj/usr/src/sys/OUTSIDE i386 No SCSI, one ATAPI CDRW, using atapicam. >Description: When running "camcontrol devlist" on a -CURRENT kernel from about 9 hours ago (Oct 20, ~12:00 UTC) with INVARIANT_SUPPORT, INVARIANTS, WITNESS and WITNESS_SKIPSKIN, I get a panic: panic: vmapbuf Debugger("panic") Stopped at Debugger+0x54: xchgl %ebx,in_Debugger.0 db> where Debugger(c068bbbe,c06ecec0,c0692054,caac07ec,100) at Debugger+0x54 panic(c0692054,1,c069185a,e6e,0) at panic+0xd5 vmapbuf(c28dc798,0,c0676925,270,1) at vmapbuf+0x18e cam_periph_mapmem(c0df4c00,caac08a0,0,caac08a4,c051a0c3) at cam_periph_mapmem+0x291 xptioctl(c164de00,c2601502,c0df4c00,3,c1823130) at xptioctl+0x26a spec_ioctl(caac0b7c,caac0c28,c05590b1,caac0b7c,c04e977d) at spec_ioctl+0x19e spec_vnoperate(caac0b7c,c04e977d,c06ee5a0,1,c06d6560) at spec_vnoperate+0x18 vn_ioctl(c1692220,c2601502,c0df4c00,c164f800,c1823130) at vn_ioctl+0x1a1 ioctl(c1823130,caac0d10,c06a2c0a,3ed,3) at ioctl+0x475 syscall(2f,2f,2f,bfbff814,0) at syscall+0x2c0 Xint0x80_syscall() at Xint0x80_syscall+0x1d --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x805463b, esp = 0xbfbff5ec, ebp = 0xbfbff9e8 --- And then, in kgdb panic: vmapbuf panic: from debugger Uptime: 59s Dumping 64 MB 16 32 48 --- #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:240 240 dumping++; (kgdb) where #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:240 #1 0xc04f308c in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:372 #2 0xc04f3417 in panic () at /usr/src/sys/kern/kern_shutdown.c:550 #3 0xc0440752 in db_panic () at /usr/src/sys/ddb/db_command.c:450 #4 0xc04406b2 in db_command (last_cmdp=0xc06d7cc0, cmd_table=0x0, aux_cmd_tablep=0xc06a79b0, aux_cmd_tablep_end=0xc06a79b4) at /usr/src/sys/ddb/db_command.c:346 #5 0xc04407f5 in db_command_loop () at /usr/src/sys/ddb/db_command.c:472 #6 0xc04437f5 in db_trap (type=3, code=0) at /usr/src/sys/ddb/db_trap.c:73 #7 0xc063d67c in kdb_trap (type=3, code=0, regs=0xca80f764) at /usr/src/sys/i386/i386/db_interface.c:171 #8 0xc064e4aa in trap (frame= #9 0xc063f068 in calltrap () at {standard input}:102 #10 0xc04f33a5 in panic (fmt=0xc0692054 "vmapbuf") at /usr/src/sys/kern/kern_shutdown.c:534 #11 0xc053fd0e in vmapbuf (bp=0xc28dc798) at /usr/src/sys/kern/vfs_bio.c:3729 #12 0xc042e221 in cam_periph_mapmem (ccb=0x0, mapinfo=0xca80f8a0) at /usr/src/sys/cam/cam_periph.c:652 #13 0xc04303da in xptioctl (dev=0x0, cmd=3244684288, addr=0xca80f8a0 "", flag=3, td=0xc1677be0) at /usr/src/sys/cam/cam_xpt.c:1132 #14 0xc04b86de in spec_ioctl (ap=0xca80fb7c) at /usr/src/sys/fs/specfs/spec_vnops.c:351 #15 0xc04b7cc8 in spec_vnoperate (ap=0x0) at /usr/src/sys/fs/specfs/spec_vnops.c:122 #16 0xc05590b1 in vn_ioctl (fp=0xc16933fc, com=3261076738, data=0xc165f400, active_cred=0xc1849b00, td=0xc1677be0) at vnode_if.h:503 #17 0xc051bdf5 in ioctl (td=0xc1677be0, uap=0xca80fd10) at /usr/src/sys/sys/file.h:261 #18 0xc064ee10 in syscall (frame= {tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = -1077938156, tf_esi = 0, tf_ebp = -1077937688, tf_isp = -897516172, tf_ebx = 134651066, tf_edx = 0, tf_ecx = 0, tf_eax = 54, tf_trapno = 12, tf_err = 2, tf_eip = 134563387, tf_cs = 31, tf_eflags = 518, tf_esp = -1077938708, tf_ss = 47}) at /usr/src/sys/i386/i386/trap.c:1009 #19 0xc063f0bd in Xint0x80_syscall () at {standard input}:144 ---Can't read userspace from dump, or kernel process--- (kgdb) up 11 #11 0xc053fd0e in vmapbuf (bp=0xc28dc798) at /usr/src/sys/kern/vfs_bio.c:3729 3729 panic("vmapbuf: mapped more than MAXPHYS"); (kgdb) list 3724 if (m == NULL) 3725 goto retry; 3726 bp->b_pages[pidx] = m; 3727 } 3728 if (pidx > btoc(MAXPHYS)) 3729 panic("vmapbuf: mapped more than MAXPHYS"); 3730 pmap_qenter((vm_offset_t)bp->b_saveaddr, bp->b_pages, pidx); 3731 3732 kva = bp->b_saveaddr; 3733 bp->b_npages = pidx; (kgdb) print pidx $1 = -897517408 (kgdb) print *bp $3 = {b_io = {bio_cmd = 1, bio_dev = 0xc162d600, bio_disk = 0x0, bio_offset = 30445568, bio_bcount = 12288, bio_data = 0x807b000---Can't read userspace from dump, or kernel process--- With INVARIANT_SUPPORT and INVARIANTS but without WITNESS, I don't get a panic, but rather a freeze when running "camcontrol devlist". A break on the serial console brings me to ddb then: panic: vmapbuf Debugger("panic") Stopped at Debugger+0x54: xchgl %ebx,in_Debugger.0 db> where Debugger(c06881b8,c06e7260,c068ce6f,ca80f7f4,100) at Debugger+0x54 panic(c068ce6f,1,c068c675,e6e,0) at panic+0xd5 vmapbuf(c28dc798,0,c0672f05,270,1) at vmapbuf+0x18e cam_periph_mapmem(c165f400,ca80f8a8,c1676be0,ca80f894,c0540228) at cam_periph_mapmem+0x291 xptioctl(c165ab00,c2601502,c165f400,3,c1676be0) at xptioctl+0x26a spec_ioctl(ca80fb7c,ca80fc28,c0555931,ca80fb7c,217) at spec_ioctl+0x14c spec_vnoperate(ca80fb7c,217,c06e55a0,3ac,c06d0900) at spec_vnoperate+0x18 vn_ioctl(c1693f24,c2601502,c165f400,c184aa80,c1676be0) at vn_ioctl+0x1a1 ioctl(c1676be0,ca80fd10,c069da52,3ed,3) at ioctl+0x475 syscall(2f,2f,2f,bfbff814,0) at syscall+0x2c0 Xint0x80_syscall() at Xint0x80_syscall+0x1d --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x805463b, esp = 0xbfbff5ec, ebp = 0xbfbff9e8 --- db> >How-To-Repeat: Add INVARIANT_SUPPORT, INVARIANTS, WITNESS and WITNESS_SKIPSKIN to your kernelconfig and run "camcontrol devlist". >Fix: None known. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 15:16:24 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 C03E916A4B3; Mon, 20 Oct 2003 15:16:24 -0700 (PDT) Received: from lifelesslap.robertcollins.net (dsl-3.7.240.220.lns02-kent-syd.dsl.comindico.com.au [220.240.7.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32BE143FAF; Mon, 20 Oct 2003 15:16:21 -0700 (PDT) (envelope-from robertc@squid-cache.org) Received: from localhost ([127.0.0.1] ident=robertc) by lifelesslap.robertcollins.net with esmtp (Exim 3.36 #1 (Debian)) id 1ABiJw-0001fw-00; Tue, 21 Oct 2003 08:16:12 +1000 From: Robert Collins To: Kris Kennaway In-Reply-To: <20031020184333.GA60464@rot13.obsecurity.org> References: <200310170621.h9H6LmGr068865@freefall.freebsd.org> <1066644745.955.10.camel@localhost> <20031020184333.GA60464@rot13.obsecurity.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-4br8Vh+M4AXFtWescGV+" Message-Id: <1066688170.6183.111.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Tue, 21 Oct 2003 08:16:10 +1000 cc: Kris Kennaway cc: freebsd-bugs@FreeBSD.org Subject: Re: gnu/58099: g++ -fhuge-objects on ix86 coredumps upon use of std::ostringstream 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, 20 Oct 2003 22:16:24 -0000 --=-4br8Vh+M4AXFtWescGV+ Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2003-10-21 at 04:43, Kris Kennaway wrote: > Which binary packages, the package for the gcc ports? Nothing special > is done for package builds, beyond what is in the port. Can you be > specific about why you think this is a port error? Because every c++ library in the distribution needs to be built with all permutations of ABI breaking options. The libstdc++ library is just the first one. If you don't want to face doing this, then having -fhuge-objects always on is a reasonable workaround. As -fhuge-objects doesn't exist anymore - it's been removed from g++ - getting an upstream fix for older g++'s is probably unlikely. Where can I get the ports recipe for g++ (I use freebsd when checking reported squid bugs, not as my primary platform). I'll happily give the port a quick check to see if I can offer a local workaround. Rob --=20 GPG key available at: . --=-4br8Vh+M4AXFtWescGV+ Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (GNU/Linux) iD8DBQA/lF6pI5+kQ8LJcoIRAic1AJ0dBsGTEf139qb02IAhBLWL6p1AMgCgt478 tJOPJCjpvQ+2dJ7djwZq8OQ= =z6mk -----END PGP SIGNATURE----- --=-4br8Vh+M4AXFtWescGV+-- From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 16:36: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 EF55816A4B3; Mon, 20 Oct 2003 16:36:23 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-63-207-60-234.dsl.lsan03.pacbell.net [63.207.60.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5BFE43FAF; Mon, 20 Oct 2003 16:36:22 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 77AAE66C9E; Mon, 20 Oct 2003 16:36:19 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 376CCDA6; Mon, 20 Oct 2003 16:36:19 -0700 (PDT) Date: Mon, 20 Oct 2003 16:36:19 -0700 From: Kris Kennaway To: Robert Collins Message-ID: <20031020233619.GB61627@rot13.obsecurity.org> References: <200310170621.h9H6LmGr068865@freefall.freebsd.org> <1066644745.955.10.camel@localhost> <20031020184333.GA60464@rot13.obsecurity.org> <1066688170.6183.111.camel@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TakKZr9L6Hm6aLOc" Content-Disposition: inline In-Reply-To: <1066688170.6183.111.camel@localhost> User-Agent: Mutt/1.4.1i cc: Kris Kennaway cc: freebsd-bugs@FreeBSD.org cc: Kris Kennaway Subject: Re: gnu/58099: g++ -fhuge-objects on ix86 coredumps upon use of std::ostringstream 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, 20 Oct 2003 23:36:24 -0000 --TakKZr9L6Hm6aLOc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 21, 2003 at 08:16:10AM +1000, Robert Collins wrote: > On Tue, 2003-10-21 at 04:43, Kris Kennaway wrote: >=20 > > Which binary packages, the package for the gcc ports? Nothing special > > is done for package builds, beyond what is in the port. Can you be > > specific about why you think this is a port error? >=20 > Because every c++ library in the distribution needs to be built with all > permutations of ABI breaking options. The libstdc++ library is just the > first one. If you don't want to face doing this, then having > -fhuge-objects always on is a reasonable workaround. Won't this break compatibility with all existing users of C++ packages? That would be a deal-breaker. > Where can I get the ports recipe for g++ (I use freebsd when checking > reported squid bugs, not as my primary platform). I'll happily give the > port a quick check to see if I can offer a local workaround. /usr/ports/lang/gcc* Kris --TakKZr9L6Hm6aLOc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/lHFwWry0BWjoQKURAqn8AKDLAnIHXQ9Qmck9d9jAxzI9gXpl0QCg5gn2 XFNWRkwV27RT74LZwdOpJHE= =/2YP -----END PGP SIGNATURE----- --TakKZr9L6Hm6aLOc-- From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 16:41:45 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 5F57516A4B3; Mon, 20 Oct 2003 16:41:45 -0700 (PDT) Received: from lifelesslap.robertcollins.net (dsl-3.7.240.220.lns02-kent-syd.dsl.comindico.com.au [220.240.7.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB53C43F85; Mon, 20 Oct 2003 16:41:43 -0700 (PDT) (envelope-from robertc@squid-cache.org) Received: from localhost ([127.0.0.1] ident=robertc) by lifelesslap.robertcollins.net with esmtp (Exim 3.36 #1 (Debian)) id 1ABjea-0001jO-00; Tue, 21 Oct 2003 09:41:36 +1000 From: Robert Collins To: Kris Kennaway In-Reply-To: <20031020233619.GB61627@rot13.obsecurity.org> References: <200310170621.h9H6LmGr068865@freefall.freebsd.org> <1066644745.955.10.camel@localhost> <20031020184333.GA60464@rot13.obsecurity.org> <1066688170.6183.111.camel@localhost> <20031020233619.GB61627@rot13.obsecurity.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-tqDKpH07B06231/5moPU" Message-Id: <1066693295.6189.125.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Tue, 21 Oct 2003 09:41:35 +1000 cc: Kris Kennaway cc: freebsd-bugs@FreeBSD.org Subject: Re: gnu/58099: g++ -fhuge-objects on ix86 coredumps upon use of std::ostringstream 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, 20 Oct 2003 23:41:45 -0000 --=-tqDKpH07B06231/5moPU Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2003-10-21 at 09:36, Kris Kennaway wrote: > On Tue, Oct 21, 2003 at 08:16:10AM +1000, Robert Collins wrote: > > On Tue, 2003-10-21 at 04:43, Kris Kennaway wrote: > >=20 > > > Which binary packages, the package for the gcc ports? Nothing specia= l > > > is done for package builds, beyond what is in the port. Can you be > > > specific about why you think this is a port error? > >=20 > > Because every c++ library in the distribution needs to be built with al= l > > permutations of ABI breaking options. The libstdc++ library is just the > > first one. If you don't want to face doing this, then having > > -fhuge-objects always on is a reasonable workaround. >=20 > Won't this break compatibility with all existing users of C++ > packages? That would be a deal-breaker. The workaround would. Doing the 'right thing', building a libstdc++ with -fhuge-objects, and editing the spec file to use it IFF -fhuge-objects was passed to g++ won't break anything. Rob --=20 GPG key available at: . --=-tqDKpH07B06231/5moPU Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (GNU/Linux) iD8DBQA/lHKvI5+kQ8LJcoIRAmVJAJkBr3+CJdHtdGD7s9zZkZDTBtemFwCeMHhX TjPwIGltOSvKHm0zsqEH9LQ= =mBOH -----END PGP SIGNATURE----- --=-tqDKpH07B06231/5moPU-- From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 16:49: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 4E46816A4C2; Mon, 20 Oct 2003 16:49:23 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-63-207-60-234.dsl.lsan03.pacbell.net [63.207.60.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8E5843F3F; Mon, 20 Oct 2003 16:49:21 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 7A2A766DA5; Mon, 20 Oct 2003 16:49:21 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 2DEDDCF4; Mon, 20 Oct 2003 16:49:21 -0700 (PDT) Date: Mon, 20 Oct 2003 16:49:21 -0700 From: Kris Kennaway To: Robert Collins Message-ID: <20031020234921.GA61811@rot13.obsecurity.org> References: <200310170621.h9H6LmGr068865@freefall.freebsd.org> <1066644745.955.10.camel@localhost> <20031020184333.GA60464@rot13.obsecurity.org> <1066688170.6183.111.camel@localhost> <20031020233619.GB61627@rot13.obsecurity.org> <1066693295.6189.125.camel@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: <1066693295.6189.125.camel@localhost> User-Agent: Mutt/1.4.1i cc: Kris Kennaway cc: freebsd-bugs@FreeBSD.org cc: Kris Kennaway Subject: Re: gnu/58099: g++ -fhuge-objects on ix86 coredumps upon use of std::ostringstream 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, 20 Oct 2003 23:49:23 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 21, 2003 at 09:41:35AM +1000, Robert Collins wrote: > On Tue, 2003-10-21 at 09:36, Kris Kennaway wrote: > > On Tue, Oct 21, 2003 at 08:16:10AM +1000, Robert Collins wrote: > > > On Tue, 2003-10-21 at 04:43, Kris Kennaway wrote: > > >=20 > > > > Which binary packages, the package for the gcc ports? Nothing spec= ial > > > > is done for package builds, beyond what is in the port. Can you be > > > > specific about why you think this is a port error? > > >=20 > > > Because every c++ library in the distribution needs to be built with = all > > > permutations of ABI breaking options. The libstdc++ library is just t= he > > > first one. If you don't want to face doing this, then having > > > -fhuge-objects always on is a reasonable workaround. > >=20 > > Won't this break compatibility with all existing users of C++ > > packages? That would be a deal-breaker. >=20 > The workaround would. Doing the 'right thing', building a libstdc++ with > -fhuge-objects, and editing the spec file to use it IFF -fhuge-objects > was passed to g++ won't break anything. Talk to kan@FreeBSD.org (maintainer of the base system gcc code). I'm not sure of your chances of getting two libstd++'s built - the likely answer is that if you want to compile ports with ABI-incompatible gcc options, you should also compile the base system (hence libstd++) with the same5D options. Kris --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/lHSAWry0BWjoQKURAp/jAJ0VwM6oWeLu3vcHLsw9RvfiDhydhQCfTLkq MTYAu0VlKvxl8Lp7hPZxIM0= =tlDl -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 17:10: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 E868616A4BF for ; Mon, 20 Oct 2003 17:10:20 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9E8C43FBD for ; Mon, 20 Oct 2003 17:10:19 -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 h9L0AJFY046244 for ; Mon, 20 Oct 2003 17:10:19 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9L0AJSW046243; Mon, 20 Oct 2003 17:10:19 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 20 Oct 2003 17:10:19 -0700 (PDT) Resent-Message-Id: <200310210010.h9L0AJSW046243@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, Brad Huntting Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B106116A4B3 for ; Mon, 20 Oct 2003 17:06:16 -0700 (PDT) Received: from misc.glarp.com (home-dhcp6-17.Colorado.EDU [198.11.22.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DCD943FCB for ; Mon, 20 Oct 2003 17:06:15 -0700 (PDT) (envelope-from huntting@misc.glarp.com) Received: (from huntting@localhost) by misc.glarp.com (8.12.9/8.12.9) id h9L06AaJ046644; Mon, 20 Oct 2003 18:06:10 -0600 (MDT) (envelope-from huntting) Message-Id: <200310210006.h9L06AaJ046644@misc.glarp.com> Date: Mon, 20 Oct 2003 18:06:10 -0600 (MDT) From: Brad Huntting To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/58312: amd(8) doesnt do ipv6 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Brad Huntting List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Oct 2003 00:10:21 -0000 >Number: 58312 >Category: bin >Synopsis: amd(8) doesnt do ipv6 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 20 17:10:19 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Brad Huntting >Release: FreeBSD 5.1-RELEASE i386 >Organization: >Environment: using 6to4 addrs System: FreeBSD misc.glarp.com 5.1-RELEASE FreeBSD 5.1-RELEASE #0: Sat Jul 19 17:28:33 MDT 2003 root@misc.glarp.com:/scratch/obj/MISC i386 Sony Vaio (nfsclient) and Dell Poweredge (nfsserver) both running FreeBSD5.1 >Description: Amd(8) does not appear to use ipv6 at all. When I try to mount my homedir from an ipv6 only host, amd chokes. It seems it's not even trying to lookup the ipv6 addresses of the host. >How-To-Repeat: Make an AAAA record for your file server with a special name (e.g. foo6.mydomain.com). Using the stock amd setup, ls -l /host/foo6.mydomain.com/some/exported/path/ & >Fix: Sorry. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 21 02:40: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 14A3616A4B3; Tue, 21 Oct 2003 02:40:56 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8618243FBD; Tue, 21 Oct 2003 02:40:55 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9L9etFY013955; Tue, 21 Oct 2003 02:40:55 -0700 (PDT) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9L9es7w013951; Tue, 21 Oct 2003 02:40:54 -0700 (PDT) (envelope-from dwmalone) Date: Tue, 21 Oct 2003 02:40:54 -0700 (PDT) From: David Malone Message-Id: <200310210940.h9L9es7w013951@freefall.freebsd.org> To: alexovch@ic.kharkov.ua, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/51016: kernel panic: ufsdirhash_lookup: bad offset in hash array 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, 21 Oct 2003 09:40:56 -0000 Synopsis: kernel panic: ufsdirhash_lookup: bad offset in hash array State-Changed-From-To: open->closed State-Changed-By: dwmalone State-Changed-When: Tue Oct 21 02:37:52 PDT 2003 State-Changed-Why: Based on the core file that I examined for Aleksey and some testing, we're now pretty cetrain that this problem was caused by ipfw2 writing to memory it had already freed. Upgrading to revieion 1.6.2.18 of ip_fw2.c seems to have fixed the problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=51016 From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 21 03: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 8720A16A4B3 for ; Tue, 21 Oct 2003 03:10:23 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93F5543FBF for ; Tue, 21 Oct 2003 03: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 h9LAALFY021600 for ; Tue, 21 Oct 2003 03: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 h9LAALmT021599; Tue, 21 Oct 2003 03:10:21 -0700 (PDT) (envelope-from gnats) Resent-Date: Tue, 21 Oct 2003 03:10:21 -0700 (PDT) Resent-Message-Id: <200310211010.h9LAALmT021599@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, Alex Deiter Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5ED6116A4B3 for ; Tue, 21 Oct 2003 03:07:56 -0700 (PDT) Received: from mandy.mts.ru (mandy.mts.ru [81.211.47.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76D9543F75 for ; Tue, 21 Oct 2003 03:07:54 -0700 (PDT) (envelope-from tiamat@komi.mts.ru) Received: from maeko.inside.mts.ru (maeko [192.168.10.3]) by mandy.mts.ru with SMTP id h9LA5aI16089 for ; Tue, 21 Oct 2003 14:05:36 +0400 (MSD) Received: from stella.komi.mts.ru ([10.50.1.1]) by maeko.inside.mts.ru (NAVGW 2.5.2.12) with SMTP id M2003102114075203095 for ; Tue, 21 Oct 2003 14:07:52 +0400 Received: from selma.komi.mts.ru (selma.komi.mts.ru [10.50.1.10]) by stella.komi.mts.ru (MTS Komi/Smtp) with ESMTP id h9LA7qFn084834 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Tue, 21 Oct 2003 14:07:52 +0400 (MSD) (envelope-from tiamat@selma.komi.mts.ru) Received: from selma.komi.mts.ru (localhost [127.0.0.1]) by selma.komi.mts.ru (8.12.10/8.12.10) with ESMTP id h9LA51cW008282 for ; Tue, 21 Oct 2003 14:05:01 +0400 (MSD) (envelope-from tiamat@selma.komi.mts.ru) Received: (from tiamat@localhost) by selma.komi.mts.ru (8.12.10/8.12.10/Submit) id h9LA51rA008281; Tue, 21 Oct 2003 14:05:01 +0400 (MSD) (envelope-from tiamat) Message-Id: <200310211005.h9LA51rA008281@selma.komi.mts.ru> Date: Tue, 21 Oct 2003 14:05:01 +0400 (MSD) From: Alex Deiter To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/58326: nss users cannot send mail via /usr/bin/mail or /usr/sbin/sendmail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alex Deiter List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Oct 2003 10:10:23 -0000 >Number: 58326 >Category: bin >Synopsis: nss users cannot send mail via /usr/bin/mail or /usr/sbin/sendmail >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 21 03:10:20 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Alex Deiter >Release: FreeBSD 5.1-CURRENT sparc64 >Organization: MTS Komi >Environment: System: FreeBSD selma.komi.mts.ru 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Wed Oct 15 13:53:52 MSD 2003 root@selma.komi.mts.ru:/home/obj/mnt/devel/ncvs/current/src/sys/MTS sparc64 >Description: After tranfer users from /etc/passwd to ldap directory my users cannot send a mail from command line via /usr/bin/mail or /usr/sbin/sendmail programs (if MSP use AUTH): ldap_user$ id uid=1000(test) gid=1000(test) groups=1000(test) ldap_user$ pw usershow test test:*:1000:1000::0:0:test:/tmp:/bin/sh ldap_user$ date | /usr/sbin/sendmail -v root root... Connecting to [127.0.0.1] via relay... 220 server.komi.mts.ru ESMTP Sendmail 8.12.10/8.12.10; Tue, 21 Oct 2003 13:44:57 +0400 (MSD) >How-To-Repeat: create user in ldap directory: dn: cn=test,dc=komi,dc=mts,dc=ru cn: test objectClass: posixAccount objectClass: account uid: test userPassword: test loginShell: /bin/sh homeDirectory: /home/test gecos: test description: test uidNumber: 1000 gidNumber: 1000 install ports/net/nss_ldap create /etc/nsswitch.conf: passwd: files ldap group: files ldap check it: # id test uid=1000(test) gid=1000(test) groups=1000(test) # pw usershow test test:*:1000:1000::0:0:test:/home/test:/bin/sh install ports/security/cyrus-sasl2 create /usr/local/lib/sasl2/Sendmail.conf: pwcheck_method: auxprop auxprop_plugin: sasldb add in /etc/make.conf: SENDMAIL_CFLAGS+= -I/usr/local/include -DSASL=2 SENDMAIL_LDFLAGS+= -L/usr/local/lib SENDMAIL_LDADD+= -lsasl2 and rebuild/reinstall sendmail create /etc/mail/submit.mc: divert(-1) divert(0)dnl VERSIONID(`$Id: submit.mc,v 8.6.2.7 2003/09/10 22:11:56 ca Exp $') define(`confCF_VERSION', `Submit')dnl define(`__OSTYPE__',`')dnl dirty hack to keep proto.m4 from complaining define(`_USE_DECNET_SYNTAX_', `1')dnl support DECnet define(`confTIME_ZONE', `USE_TZ')dnl define(`confDONT_INIT_GROUPS', `True')dnl define(`_REC_AUTH_', `_REC_FULL_AUTH_') define(`confLOG_LEVEL', 25) FEATURE(`authinfo', `hash -o /etc/mail/msp-authinfo') FEATURE(`msp', `[127.0.0.1]')dnl create /etc/mail/sendmail.mc: divert(-1) divert(0) VERSIONID(`$FreeBSD: mc,v 1.28 2003/04/18 01:25:41 gshapiro Exp $') OSTYPE(freebsd5) FEATURE(access_db, `hash -o -T /etc/mail/access') FEATURE(blacklist_recipients) FEATURE(local_lmtp) FEATURE(mailertable, `hash -o /etc/mail/mailertable') define(`confBIND_OPTS', `WorkAroundBrokenAAAA') define(`confNO_RCPT_ACTION', `add-to-undisclosed') define(`confPRIVACY_FLAGS', `authwarnings,noexpn,novrfy') define(`confLOG_LEVEL', 25) define(`_REC_AUTH_', `_REC_FULL_AUTH_') define(`confAUTH_MECHANISMS',`CRAM-MD5 DIGEST-MD5 NTLM LOGIN PLAIN') TRUST_AUTH_MECH(`CRAM-MD5 DIGEST-MD5 NTLM LOGIN PLAIN') MAILER(local) MAILER(smtp) LOCAL_RULESETS SLocal_trust_auth R$* $: $&{auth_authen} Rsmmsp $# OK rebuild sendmail.cf and submit.cf and restart sendmail create /etc/mail/msp-authinfo (mode 0640, owner root, group smmsp): AuthInfo:127.0.0.1 "U:smmsp" "P:smmsp" "M:PLAIN" rebuild it with makemap: # cd /etc/mail # /usr/sbin/makemap hash msp-authinfo.db < msp-authinfo # chown root:smmsp msp-authinfo.db msp-authinfo # chmod 0640 msp-authinfo.db msp-authinfo create records in /usr/local/etc/sasldb2: # echo smmsp | saslpasswd2 -p smmsp # echo test | saslpasswd2 -p test check it: # sasldblistusers2 smmsp@server.komi.mts.ru: userPassword test@server.komi.mts.ru: userPassword send mail via /usr/bin/sendmail as any user from /etc/passwd: $ date|/usr/sbin/sendmail -v root root... Connecting to [127.0.0.1] via relay... 220 server.komi.mts.ru ESMTP Sendmail 8.12.10/8.12.10; Tue, 21 Oct 2003 17:42:52 +0400 (MSD) >Fix: >Release-Note: >Audit-Trail: >Unformatted: >>> EHLO server.komi.mts.ru 250-server.komi.mts.ru Hello localhost [127.0.0.1], pleased to meet you 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-8BITMIME 250-SIZE 250-DSN 250-ETRN 250-AUTH CRAM-MD5 DIGEST-MD5 NTLM LOGIN PLAIN 250-DELIVERBY 250 HELP >>> QUIT 221 2.0.0 server.komi.mts.ru closing connection root... Deferred: Temporary AUTH failure Closing connection to [127.0.0.1] But any user from /etc/passwd can successfully send mail from command line via /usr/bin/mail or /usr/sbin/sendmail programs (if MSP use AUTH): $ id uid=70(pgsql) gid=70(pgsql) groups=70(pgsql) $ pw usershow pgsql pgsql:*:70:70::0:0:PostgreSQL Daemon:/usr/local/pgsql:/bin/sh $ date|/usr/sbin/sendmail -v root root... Connecting to [127.0.0.1] via relay... 220 server.komi.mts.ru ESMTP Sendmail 8.12.10/8.12.10; Tue, 21 Oct 2003 13:51:05 +0400 (MSD) >>> EHLO server.komi.mts.ru 250-server.komi.mts.ru Hello localhost [127.0.0.1], pleased to meet you 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-8BITMIME 250-SIZE 250-DSN 250-ETRN 250-AUTH CRAM-MD5 DIGEST-MD5 NTLM LOGIN PLAIN 250-DELIVERBY 250 HELP >>> AUTH PLAIN c21tc3AAc21tc3AAc21tc3A= 235 2.0.0 OK Authenticated >>> MAIL From: SIZE=29 AUTH=pgsql@server.komi.mts.ru 250 2.1.0 ... Sender ok >>> RCPT To: >>> DATA 250 2.1.5 ... Recipient ok 354 Enter mail, end with "." on a line by itself >>> . 250 2.0.0 h9L9p5XM000790 Message accepted for delivery root... Sent (h9L9p5XM000790 Message accepted for delivery) Closing connection to [127.0.0.1] >>> QUIT 221 2.0.0 server.komi.mts.ru closing connection AUTH PLAIN c21tc3AAc21tc3AAc21tc3A= - is authinfo for user smmsp (smmsp\0smmsp\0smmsp): # perl -e 'use MIME::Base64;print decode_base64("c21tc3AAc21tc3AAc21tc3A="), "\n";' smmspsmmspsmmsp >>> EHLO server.komi.mts.ru 250-server.komi.mts.ru Hello localhost [127.0.0.1], pleased to meet you 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-8BITMIME 250-SIZE 250-DSN 250-ETRN 250-AUTH CRAM-MD5 DIGEST-MD5 NTLM LOGIN PLAIN 250-DELIVERBY 250 HELP >>> AUTH PLAIN c21tc3AAc21tc3AAc21tc3A= 235 2.0.0 OK Authenticated >>> MAIL From: SIZE=29 AUTH=pgsql@server.komi.mts.ru 250 2.1.0 ... Sender ok >>> RCPT To: >>> DATA 250 2.1.5 ... Recipient ok 354 Enter mail, end with "." on a line by itself >>> . 250 2.0.0 h9LDgqRA001177 Message accepted for delivery root... Sent (h9LDgqRA001177 Message accepted for delivery) Closing connection to [127.0.0.1] >>> QUIT 221 2.0.0 server.komi.mts.ru closing connection Try to send mail via SMTP with SMTP AUTH as user test: $ perl -e 'use MIME::Base64; print encode_base64("test\0test\0test");' dGVzdAB0ZXN0AHRlc3Q= $ telnet localhost 25 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. 220 server.komi.mts.ru ESMTP Sendmail 8.12.10/8.12.10; Tue, 21 Oct 2003 17:48:58 +0400 (MSD) ehlo test 250-server.komi.mts.ru Hello localhost [127.0.0.1], pleased to meet you 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-8BITMIME 250-SIZE 250-DSN 250-ETRN 250-AUTH CRAM-MD5 DIGEST-MD5 NTLM LOGIN PLAIN 250-DELIVERBY 250 HELP AUTH PLAIN dGVzdAB0ZXN0AHRlc3Q= 235 2.0.0 OK Authenticated MAIL From:test@server.komi.mts.ru 250 2.1.0 test@server.komi.mts.ru... Sender ok RCPT To:root@server.komi.mts.ru 250 2.1.5 root@server.komi.mts.ru... Recipient ok DATA 354 Enter mail, end with "." on a line by itself test . 250 2.0.0 h9LDmwRA001214 Message accepted for delivery quit 221 2.0.0 server.komi.mts.ru closing connection Connection closed by foreign host. Work fine. Try to send mail via /usr/bin/mail or /usr/sbin/sendmail as user test: test$ id uid=1000(test) gid=1000(test) groups=1000(test) test$ date | /usr/sbin/sendmail -v root root... Connecting to [127.0.0.1] via relay... 220 server.komi.mts.ru ESMTP Sendmail 8.12.10/8.12.10; Tue, 21 Oct 2003 17:52:23 +0400 (MSD) >>> EHLO server.komi.mts.ru 250-server.komi.mts.ru Hello localhost [127.0.0.1], pleased to meet you 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-8BITMIME 250-SIZE 250-DSN 250-ETRN 250-AUTH CRAM-MD5 DIGEST-MD5 NTLM LOGIN PLAIN 250-DELIVERBY 250 HELP >>> QUIT 221 2.0.0 server.komi.mts.ru closing connection root... Deferred: Temporary AUTH failure Closing connection to [127.0.0.1] Thanks for your patience! From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 21 08:50: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 2673116A4B3 for ; Tue, 21 Oct 2003 08:50:21 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACC4143FE0 for ; Tue, 21 Oct 2003 08:50:17 -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 h9LFoHFY009854 for ; Tue, 21 Oct 2003 08:50:17 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9LFoHKr009853; Tue, 21 Oct 2003 08:50:17 -0700 (PDT) (envelope-from gnats) Resent-Date: Tue, 21 Oct 2003 08:50:17 -0700 (PDT) Resent-Message-Id: <200310211550.h9LFoHKr009853@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, darkmark Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24C3416A4B3 for ; Tue, 21 Oct 2003 08:45:39 -0700 (PDT) Received: from hellfire.filament.org (ip244.gte4.rb1.bel.nwlink.com [209.20.215.244]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAEC043FAF for ; Tue, 21 Oct 2003 08:45:35 -0700 (PDT) (envelope-from darkmark@hellfire.filament.org) Received: from hellfire.filament.org (localhost [127.0.0.1]) h9LFguFN065389 for ; Tue, 21 Oct 2003 08:42:56 -0700 (PDT) (envelope-from darkmark@hellfire.filament.org) Received: (from darkmark@localhost) by hellfire.filament.org (8.12.9p2/8.12.9/Submit) id h9LFgtRq065388; Tue, 21 Oct 2003 08:42:55 -0700 (PDT) (envelope-from darkmark) Message-Id: <200310211542.h9LFgtRq065388@hellfire.filament.org> Date: Tue, 21 Oct 2003 08:42:55 -0700 (PDT) From: darkmark To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/58336: pnpbios panic: Memory modified after free 0xc4758800(2044) val=c4756800 @ 0xc47589dc X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: darkmark List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Oct 2003 15:50:21 -0000 >Number: 58336 >Category: kern >Synopsis: pnpbios panic: Memory modified after free 0xc4758800(2044) val=c4756800 @ 0xc47589dc >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 21 08:50:17 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Mark Atkinson >Release: FreeBSD 5.1-CURRENT Mon Oct 20 >Organization: filament.org >Environment: System: FreeBSD fluke 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Mon Oct 20 14:47:36 PDT 2003 root@fluke:/usr/obj/usr/src/sys/FLUKE i386 = BIOS = ACPI disabled PNP OS set to NO. = KERNEL CONFIG = fluke# diff FLUKE GENERIC 22,23c22,23 < #cpu I486_CPU < #cpu I586_CPU --- > cpu I486_CPU > cpu I586_CPU 25c25 < ident FLUKE --- > ident GENERIC = pciconf -vl output (5.0-RELEASE) = fluke# pciconf -vl none0@pci1:0:0: class=0x020000 card=0x10018086 chip=0x10018086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' device = '82543 PRO/1000 F Gigabit Ethernet Adapter (Fiber)' class = network subclass = ethernet none1@pci1:2:0: class=0x0b4000 card=0x001014e4 chip=0x582014e4 rev=0x10 hdr=0x00 vendor = 'Broadcom Corporation' device = 'BCM 5820 Crypto Accelerator' class = processor hostb0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x00081166 rev=0x23 hdr=0x00 vendor = 'Reliance Computer Corp./ServerWorks' device = 'NB6536 (CNB20-HE) Hostbridge & MCH, bus/dev/func 0/0/0' class = bridge subclass = HOST-PCI hostb1@pci0:0:1: class=0x060000 card=0x00000000 chip=0x00081166 rev=0x01 hdr=0x00 vendor = 'Reliance Computer Corp./ServerWorks' device = 'NB6536 (CNB20-HE) Hostbridge & MCH, bus/dev/func 0/0/0' class = bridge subclass = HOST-PCI hostb2@pci0:0:2: class=0x060000 card=0x00000000 chip=0x00061166 rev=0x01 hdr=0x00 vendor = 'Reliance Computer Corp./ServerWorks' device = 'NB6536 (CNB20-HE) Host Bridge, function 2 and function 3' class = bridge subclass = HOST-PCI hostb3@pci0:0:3: class=0x060000 card=0x00000000 chip=0x00061166 rev=0x01 hdr=0x00 vendor = 'Reliance Computer Corp./ServerWorks' device = 'NB6536 (CNB20-HE) Host Bridge, function 2 and function 3' class = bridge subclass = HOST-PCI none2@pci0:3:0: class=0x028000 card=0x00000000 chip=0x560014e4 rev=0x03 hdr=0x00 vendor = 'Broadcom Corporation' class = network fxp0@pci0:7:0: class=0x020000 card=0x000c8086 chip=0x12298086 rev=0x08 hdr=0x00 vendor = 'Intel Corporation' device = '82557/8/9 EtherExpress PRO/100(B) Ethernet Adapter' class = network subclass = ethernet none3@pci0:11:0: class=0x028000 card=0x00000000 chip=0x568014e4 rev=0x02 hdr=0x00 vendor = 'Broadcom Corporation' class = network isab0@pci0:15:0: class=0x060100 card=0x02001166 chip=0x02001166 rev=0x51 hdr=0x00 vendor = 'Reliance Computer Corp./ServerWorks' device = 'OSB4 PCI to ISA Bridge' class = bridge subclass = PCI-ISA atapci0@pci0:15:1: class=0x01018a card=0x00000000 chip=0x02111166 rev=0x00 hdr=0x00 vendor = 'Reliance Computer Corp./ServerWorks' device = 'OSB4 PCI EIDE Controller' class = mass storage subclass = ATA ohci0@pci0:15:2: class=0x0c0310 card=0x02201166 chip=0x02201166 rev=0x04 hdr=0x00 vendor = 'Reliance Computer Corp./ServerWorks' device = 'OSB4 OpenHCI Compliant USB Controller' class = serial bus subclass = USB none4@pci2:1:0: class=0x020000 card=0x10018086 chip=0x10018086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' device = '82543 PRO/1000 F Gigabit Ethernet Adapter (Fiber)' class = network subclass = ethernet = pnpinfo output (5.0-RELEASE) = fluke# pnpinfo Checking for Plug-n-Play devices... No Plug-n-Play devices were found >Description: I apologize for some of the wrapping, as this is massive cut n' paste * Later in this description is the -CURRENT kernel output for the section in question. This is 50-release boot output for affected section: ex_isa_identify() pnpbios: 15 devices, largest 234 bytes pnpbios: handle 0 device ID PNP0c01 (010cd041) PNP0000: adding io range 0x20-0x21, size=0x2, align=0x1 PNP0000: adding io range 0xa0-0xa1, size=0x2, align=0x1 PNP0000: adding irq mask 0x4 pnpbios: handle 1 device ID PNP0000 (0000d041) PNP0200: adding dma mask 0x10 PNP0200: adding io range 0-0xf, size=0x10, align=0x1 PNP0200: adding io range 0x80-0x90, size=0x11, align=0x1 PNP0200: adding io range 0x94-0x9f, size=0xc, align=0x1 PNP0200: adding io range 0xc0-0xde, size=0x1f, align=0x1 pnpbios: handle 2 device ID PNP0200 (0002d041) PNP0100: adding irq mask 0x1 PNP0100: adding io range 0x40-0x43, size=0x4, align=0x1 pnpbios: handle 3 device ID PNP0100 (0001d041) PNP0b00: adding irq mask 0x100 PNP0b00: adding io range 0x70-0x71, size=0x2, align=0x1 pnpbios: handle 4 device ID PNP0b00 (000bd041) PNP0303: adding irq mask 0x2 PNP0303: adding io range 0x60-0x60, size=0x1, align=0x1 PNP0303: adding io range 0x64-0x64, size=0x1, align=0x1 pnpbios: handle 5 device ID PNP0303 (0303d041) PNP0800: adding io range 0x61-0x61, size=0x1, align=0x1 pnpbios: handle 6 device ID PNP0800 (0008d041) PNP0c04: adding irq mask 0x2000 PNP0c04: adding io range 0xf0-0xff, size=0x10, align=0x1 pnpbios: handle 7 device ID PNP0c04 (040cd041) PNP0c02: adding io range 0x4d0-0x4d1, size=0x2, align=0x1 PNP0c02: adding io range 0xcf8-0xcff, size=0x8, align=0x1 PNP0c02: adding io range 0x10-0x1f, size=0x10, align=0x1 PNP0c02: adding io range 0x40b-0x40b, size=0x1, align=0x1 PNP0c02: adding io range 0x4d6-0x4d6, size=0x1, align=0x1 PNP0c02: adding io range 0xc00-0xc01, size=0x2, align=0x1 PNP0c02: adding io range 0xc14-0xc14, size=0x1, align=0x1 PNP0c02: adding io range 0xc49-0xc4a, size=0x2, align=0x1 PNP0c02: adding io range 0xc52-0xc52, size=0x1, align=0x1 PNP0c02: adding io range 0xc6c-0xc6c, size=0x1, align=0x1 PNP0c02: adding io range 0xc6f-0xc6f, size=0x1, align=0x1 PNP0c02: adding io range 0xcd6-0xcd7, size=0x2, align=0x1 PNP0c02: adding io range 0xf50-0xf58, size=0x9, align=0x1 PNP0c02: adding io range 0x374-0x375, size=0x2, align=0x1 PNP0c02: adding io range 0x377-0x377, size=0x1, align=0x1 PNP0c02: adding fixed memory32 range 0xc9000-0xd3fff, size=0xb000 pnpbios: handle 8 device ID PNP0c02 (020cd041) PNP0c02: adding io range 0x580-0x58f, size=0x10, align=0x1 PNP0c02: adding io range 0x530-0x531, size=0x2, align=0x1 PNP0c02: adding io range 0x540-0x55f, size=0x20, align=0x1 PNP0c02: adding io range 0x500-0x51f, size=0x20, align=0x1 PNP0c02: adding io range 0xc98-0xc98, size=0x1, align=0x1 PNP0c02: adding io range 0x9ae8-0x9aeb, size=0x4, align=0x1 pnpbios: handle 9 device ID PNP0c02 (020cd041) pnpbios: handle 10 device ID PNP0a03 (030ad041) PNP0501: adding io range 0x3f8-0x3ff, size=0x8, align=0x8 PNP0501: adding irq mask 0x10 pnpbios: handle 11 device ID PNP0501 (0105d041) PNP0501: adding io range 0x2f8-0x2ff, size=0x8, align=0x8 PNP0501: adding irq mask 0x8 pnpbios: handle 12 device ID PNP0501 (0105d041) PNP0400: adding io range 0x278-0x27f, size=0x8, align=0x8 PNP0400: adding irq mask 0x80 pnpbios: handle 13 device ID PNP0400 (0004d041) PNP0700: adding io range 0x3f0-0x3f5, size=0x6, align=0x1 PNP0700: adding irq mask 0x40 PNP0700: adding dma mask 0x4 pnpbios: handle 14 device ID PNP0700 (0007d041) * OK here are two boots, one with ACPI and w/o. See pciconf and pnpinfo output in the environment section. I don't need any of the pnp devices in this hardware to succeed. However I do need it to boot current for the recent bge driver enhancements. /boot.config: -h..à.....æ...à.à.....æ...à.à.....æ...à.à.....æ...à.à.....æ...à.à. ....æ...à.à.....æ...à.à.....æ...à.à.....æ...à.à.....æ...à.à.....æ...à.à.....æ... à.à.....æ...à.à.....æ...à.à.....æ...à.à.....æ...à..½±. serial port BIOS drive A: is disk0 BIOS drive C: is disk1 BIOS drive D: is disk2 BIOS 639kB/523264kB available memory FreeBSD/i386 bootstrap loader, Revision 1.1 (root@fluke.whale-test.net, Fri Oct 17 20:56:34 PDT 2003) Loading /boot/defaults/loader.conf /boot/kernel/kernel text=0x45d4e8 data=0x76b24+0x83838 syms=[0x4+0x54520+0x4+0x6 6054] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel] in 9 seconds... Type '?' for a list of commands, 'help' for more detailed help. OK boot -v SMAP type=01 base=0000000000000000 len=000000000009fc00 SMAP type=02 base=000000000009fc00 len=0000000000000400 SMAP type=02 base=00000000000e0000 len=0000000000020000 SMAP type=01 base=0000000000100000 len=000000001ff00000 SMAP type=02 base=00000000fec00000 len=0000000000001000 SMAP type=02 base=00000000fec01000 len=0000000000001000 SMAP type=02 base=00000000fee00000 len=0000000000001000 SMAP type=02 base=00000000fff80000 len=0000000000080000 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.1-CURRENT #1: Mon Oct 20 10:40:30 PDT 2003 root@fluke.whale-test.net:/usr/obj/usr/src/sys/FLUKE Preloaded elf kernel "/boot/kernel/kernel" at 0xc0a14000. Calibrating clock(s) ... i8254 clock: 1193058 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 996598941 Hz CPU: Intel Pentium III (996.60-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x68a Stepping = 10 Features=0x387fbff real memory = 536870912 (512 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009efff, 647168 bytes (158 pages) 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) 0x0000000000c26000 - 0x000000001f6d9fff, 514539520 bytes (125620 pages) avail memory = 511942656 (488 MB) bios32: Found BIOS32 Service Directory header at 0xc00fdb90 bios32: Entry = 0xfdba0 (c00fdba0) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xf0000+0xdbc1 pnpbios: Found PnP BIOS data at 0xc00f4b00 pnpbios: Entry = f0000:3b84 Rev = 1.0 Other BIOS signatures found: wlan: <802.11 Link Layer> null: random: mem: Pentium Pro MTRR support enabled npx0: [FAST] npx0: on motherboard npx0: INT 16 interface pci_open(1): mode 1 addr port (0x0cf8) is 0x80000070 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=80] is there (id=00081166) pcibios: BIOS version 2.10 Using $PIR table, 13 entries at 0xc00f5070 PCI-Only Interrupts: none Location Bus Device Pin Link IRQs embedded 0 0 A 0x11 3 4 5 7 9 10 11 12 14 15 embedded 0 0 B 0x13 3 4 5 7 9 10 11 12 14 15 embedded 0 15 A 0x01 10 slot 1 0 1 A 0x1d 3 4 5 7 9 10 11 12 14 15 slot 1 0 1 B 0x1c 3 4 5 7 9 10 11 12 14 15 slot 1 0 1 C 0xff 3 4 5 7 9 10 11 12 14 15 slot 1 0 1 D 0xff 3 4 5 7 9 10 11 12 14 15 slot 2 0 4 A 0x10 5 slot 2 0 4 B 0x11 9 slot 2 0 4 C 0x12 10 slot 2 0 4 D 0x13 11 embedded 0 3 A 0x13 11 embedded 0 3 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 3 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 3 D 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 7 A 0x14 11 embedded 0 7 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 7 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 7 D 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 11 A 0x13 11 embedded 0 11 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 11 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 11 D 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 0 A 0x10 5 embedded 1 0 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 0 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 0 D 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 2 A 0x12 10 embedded 1 2 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 2 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 2 D 0xff 3 4 5 7 9 10 11 12 14 15 slot 3 1 5 A 0x11 9 slot 3 1 5 B 0x12 10 slot 3 1 5 C 0x13 11 slot 3 1 5 D 0x10 5 embedded 2 1 A 0x11 9 embedded 2 1 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 2 1 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 2 1 D 0xff 3 4 5 7 9 10 11 12 14 15 embedded 2 2 A 0x12 10 embedded 2 2 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 2 2 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 2 2 D 0xff 3 4 5 7 9 10 11 12 14 15 slot 4 2 6 A 0x12 10 slot 4 2 6 B 0x13 11 slot 4 2 6 C 0x10 5 slot 4 2 6 D 0x11 9 pcib1: at pcibus 1 on motherboard pci1: on pcib1 pci1: physical bus=1 map[10]: type 1, range 32, base feae0000, size 17, enabled pci_cfgintr_valid: BIOS irq 5 is valid pci_cfgintr: 1:0 INTA BIOS irq 5 found-> vendor=0x8086, dev=0x1001, revid=0x02 bus=1, slot=0, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0116, statreg=0x0220, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0xff (63750 ns), maxlat=0x00 (0 ns) intpin=a, irq=5 map[10]: type 1, range 32, base feab0000, size 16, enabled pci_cfgintr_valid: BIOS irq 10 is valid pci_cfgintr: 1:2 INTA BIOS irq 10 found-> vendor=0x14e4, dev=0x5820, revid=0x10 bus=1, slot=2, func=0 class=0b-40-00, hdrtype=0x00, mfdev=0 cmdreg=0x0116, statreg=0x02b0, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=10 powerspec 2 supports D0 D3 current D0 em0: mem 0xfeae0000-0xf eafffff irq 5 at device 0.0 on pci1 em0: [MPSAFE] em0: Hardware Initialization Failedem0: Unable to initialize the hardware device_probe_and_attach: em0 attach returned 5 pci1: at device 2.0 (no driver attached) pcib0: at pcibus 0 on motherboard pci0: on pcib0 pci0: physical bus=0 found-> vendor=0x1166, dev=0x0008, revid=0x23 bus=0, slot=0, func=0 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0000, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1166, dev=0x0008, revid=0x01 bus=0, slot=0, func=1 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x2200, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1166, dev=0x0006, revid=0x01 bus=0, slot=0, func=2 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0002, statreg=0x2200, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1166, dev=0x0006, revid=0x01 bus=0, slot=0, func=3 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0002, statreg=0x2200, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) map[10]: type 1, range 64, base fe9f0000, size 16, enabled pci_cfgintr_valid: BIOS irq 11 is valid pci_cfgintr: 0:3 INTA BIOS irq 11 found-> vendor=0x14e4, dev=0x5600, revid=0x03 bus=0, slot=3, func=0 class=02-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0117, statreg=0x02a0, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 map[10]: type 1, range 32, base fe9ef000, size 12, enabled map[14]: type 4, range 32, base 0000cf00, size 6, enabled map[18]: type 1, range 32, base fe800000, size 20, enabled pci_cfgintr_valid: BIOS irq 11 is valid pci_cfgintr: 0:7 INTA BIOS irq 11 found-> vendor=0x8086, dev=0x1229, revid=0x08 bus=0, slot=7, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0117, statreg=0x0290, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x08 (2000 ns), maxlat=0x38 (14000 ns) intpin=a, irq=11 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 1, range 64, base fe9d0000, size 16, enabled pci_cfgintr_valid: BIOS irq 11 is valid pci_cfgintr: 0:11 INTA BIOS irq 11 found-> vendor=0x14e4, dev=0x5680, revid=0x02 bus=0, slot=11, func=0 class=02-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0117, statreg=0x02a0, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 map[90]: type 4, range 32, base 00000580, size 4, enabled found-> vendor=0x1166, dev=0x0200, revid=0x51 bus=0, slot=15, func=0 class=06-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x0200, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) map[20]: type 4, range 32, base 0000ffa0, size 4, enabled found-> vendor=0x1166, dev=0x0211, revid=0x00 bus=0, slot=15, func=1 class=01-01-8a, hdrtype=0x00, mfdev=1 cmdreg=0x0005, statreg=0x0200, cachelnsz=0 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) map[10]: type 1, range 32, base fe9ee000, size 12, enabled pci_cfgintr_valid: BIOS irq 10 is valid pci_cfgintr: 0:15 INTA BIOS irq 10 found-> vendor=0x1166, dev=0x0220, revid=0x04 bus=0, slot=15, func=2 class=0c-03-10, hdrtype=0x00, mfdev=1 cmdreg=0x0117, statreg=0x0280, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x50 (20000 ns) intpin=a, irq=10 pci0: at device 3.0 (no driver attached) fxp0: port 0xcf00-0xcf3f mem 0xfe800000-0xfe8ffff f,0xfe9ef000-0xfe9effff irq 11 at device 7.0 on pci0 fxp0: using memory space register mapping fxp0: Ethernet address 00:01:d7:02:92:c0 fxp0: PCI IDs: 8086 1229 8086 000c 0008 fxp0: Dynamic Standby mode is disabled miibus0: on fxp0 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: bpf attached pci0: at device 11.0 (no driver attached) isab0: port 0x580-0x58f at device 15.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 15.1 on pci0 ata0: reset tp1 mask=03 ostat0=50 ostat1=50 ata0-master: stat=0x50 err=0x01 lsb=0x00 msb=0x00 ata0-slave: stat=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 mask=03 stat0=50 stat1=50 devices=0x3 ata0: at 0x1f0 irq 14 on atapci0 ata0: [MPSAFE] ata1: reset tp1 mask=03 ostat0=20 ostat1=30 ata1-master: stat=0x20 err=0x20 lsb=0x20 msb=0x20 ata1-slave: stat=0x30 err=0x30 lsb=0x30 msb=0x30 ata1: reset tp2 mask=03 stat0=20 stat1=30 devices=0x0 ata1: at 0x170 irq 15 on atapci0 ata1: [MPSAFE] ohci0: mem 0xfe9ee000-0xfe9eefff irq 10 at devic e 15.2 on pci0 ohci0: (New OHCI DeviceId=0x02201166) usb0: OHCI version 1.0, legacy support usb0: on ohci0 usb0: USB revision 1.0 uhub0: (0x1166) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 4 ports with 4 removable, self powered pcib2: at pcibus 2 on motherboard pci2: on pcib2 pci2: physical bus=2 map[10]: type 1, range 32, base febe0000, size 17, enabled pci_cfgintr_valid: BIOS irq 9 is valid pci_cfgintr: 2:1 INTA BIOS irq 9 found-> vendor=0x8086, dev=0x1001, revid=0x02 bus=2, slot=1, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0116, statreg=0x0220, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0xff (63750 ns), maxlat=0x00 (0 ns) intpin=a, irq=9 em0: mem 0xfebe0000-0xfebfffff irq 9 at device 1.0 on pci2 em0: [MPSAFE] em0: Hardware Initialization Failedem0: Unable to initialize the hardware device_probe_and_attach: em0 attach returned 5 ata: ata0 already exists; skipping it ata: ata1 already exists; skipping it Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 ex_isa_identify() pnpbios: 15 devices, largest 234 bytes pnpbios: handle 0 device ID PNP0c01 (010cd041) PNP0000: adding io range 0x20-0x21, size=0x2, align=0x1 PNP0000: adding io range 0xa0-0xa1, size=0x2, align=0x1 PNP0000: adding irq mask 0x4 Memory modified after free 0xc4758800(2044) val=c4756800 @ 0xc47589dc F1 FreeBSD F5 Drive 1 Default: F1 /boot.config: -h..à.....æ...à.à.....æ...à.à.....æ...à.à.....æ...à.à.....æ...à.à. ....æ...à.à.....æ...à.à.....æ...à.à.....æ...à.à.....æ...à.à.....æ...à.à.....æ... à.à.....æ...à.à.....æ...à.à.....æ...à.à.....æ...à..½±. serial port BIOS drive A: is disk0 BIOS drive C: is disk1 BIOS drive D: is disk2 BIOS 639kB/523264kB available memory FreeBSD/i386 bootstrap loader, Revision 1.1 (root@fluke.whale-test.net, Fri Oct 17 20:56:34 PDT 2003) Loading /boot/defaults/loader.conf /boot/kernel/kernel text=0x45d4e8 data=0x76b24+0x83838 syms=[0x4+0x54520+0x4+0x6 6054] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel] in 8 seconds... Type '?' for a list of commands, 'help' for more detailed help. OK show LINES=24 bootfile=kernel console=comconsole currdev=disk1s1a: hint.adv.0.at=isa hint.adv.0.disabled=1 hint.aha.0.at=isa hint.aha.0.disabled=1 hint.aic.0.at=isa hint.aic.0.disabled=1 hint.apm.0.disabled=1 hint.apm.0.flags=0x20 hint.ata.0.at=isa hint.ata.0.irq=14 hint.ata.0.port=0x1F0 hint.ata.1.at=isa hint.ata.1.irq=15 hint.ata.1.port=0x170 hint.atkbd.0.at=atkbdc hint.atkbd.0.flags=0x1 hint.atkbd.0.irq=1 hint.atkbdc.0.at=isa hint.atkbdc.0.port=0x060 hint.bt.0.at=isa hint.bt.0.disabled=1 hint.cs.0.at=isa hint.cs.0.disabled=1 hint.cs.0.port=0x300 hint.ed.0.at=isa hint.ed.0.disabled=1 hint.ed.0.irq=10 hint.ed.0.maddr=0xd8000 hint.ed.0.port=0x280 hint.fd.0.at=fdc0 hint.fd.0.drive=0 hint.fd.1.at=fdc0 hint.fd.1.drive=1 hint.fdc.0.at=isa hint.fdc.0.drq=2 hint.fdc.0.irq=6 hint.fdc.0.port=0x3F0 hint.fe.0.at=isa hint.fe.0.disabled=1 hint.fe.0.port=0x300 hint.ie.0.at=isa hint.ie.0.disabled=1 hint.ie.0.irq=10 hint.ie.0.maddr=0xd0000 hint.ie.0.port=0x300 hint.le.0.at=isa hint.le.0.disabled=1 hint.le.0.irq=5 hint.le.0.maddr=0xd0000 hint.le.0.port=0x300 hint.lnc.0.at=isa hint.lnc.0.disabled=1 hint.lnc.0.drq=0 hint.lnc.0.irq=10 hint.lnc.0.port=0x280 hint.pcic.0.at=isa hint.pcic.0.maddr=0xd0000 hint.pcic.0.port=0x3e0 hint.pcic.1.at=isa hint.pcic.1.disabled=1 hint.pcic.1.irq=11 hint.pcic.1.maddr=0xd4000 hint.pcic.1.port=0x3e2 hint.ppc.0.at=isa hint.ppc.0.irq=7 hint.psm.0.at=atkbdc hint.psm.0.irq=12 hint.sc.0.at=isa hint.sc.0.flags=0x100 hint.sio.0.at=isa hint.sio.0.flags=0x10 hint.sio.0.irq=4 hint.sio.0.port=0x3F8 hint.sio.1.at=isa hint.sio.1.irq=3 hint.sio.1.port=0x2F8 hint.sio.2.at=isa hint.sio.2.disabled=1 hint.sio.2.irq=5 hint.sio.2.port=0x3E8 hint.sio.3.at=isa hint.sio.3.disabled=1 hint.sio.3.irq=9 hint.sio.3.port=0x2E8 hint.sn.0.at=isa hint.sn.0.disabled=1 hint.sn.0.irq=10 hint.sn.0.port=0x300 hint.vga.0.at=isa hint.vt.0.at=isa hint.vt.0.disabled=1 interpret=OK kernel=kernel kernel_options= kernelname=/boot/kernel/kernel loaddev=disk1s1a: mac_ifoff=NO module_path=/boot/kernel;/boot/kernel;/boot/modules prompt=${interpret} OK help / help [topic [subtopic]] ? The help command displays help on commands and their usage. In command help, a term enclosed with <...> indicates a value as described by the term. A term enclosed with [...] is optional, and may not be required by all forms of the command. Some commands may not be available. Use the '?' command to list most available commands. If needed, disable the use of ACPI with: unset acpi_load $hint.acpi.0.disabled="1" OK unset acpi_load no such file or directory OK hint.acpi.0.disabled="1" hint.acpi.0.disabled="1" not found OK $hint.acpi.0.disabled="1" $hint.acpi.0.disabled="1" not found OK set hint.acpi.0.disabled="1" OK show LINES=24 bootfile=kernel console=comconsole currdev=disk1s1a: hint.acpi.0.disabled=1 hint.adv.0.at=isa hint.adv.0.disabled=1 hint.aha.0.at=isa hint.aha.0.disabled=1 hint.aic.0.at=isa hint.aic.0.disabled=1 hint.apm.0.disabled=1 hint.apm.0.flags=0x20 hint.ata.0.at=isa hint.ata.0.irq=14 hint.ata.0.port=0x1F0 hint.ata.1.at=isa hint.ata.1.irq=15 hint.ata.1.port=0x170 hint.atkbd.0.at=atkbdc hint.atkbd.0.flags=0x1 hint.atkbd.0.irq=1 hint.atkbdc.0.at=isa hint.atkbdc.0.port=0x060 hint.bt.0.at=isa hint.bt.0.disabled=1 hint.cs.0.at=isa hint.cs.0.disabled=1 hint.cs.0.port=0x300 hint.ed.0.at=isa hint.ed.0.disabled=1 hint.ed.0.irq=10 hint.ed.0.maddr=0xd8000 hint.ed.0.port=0x280 hint.fd.0.at=fdc0 hint.fd.0.drive=0 hint.fd.1.at=fdc0 hint.fd.1.drive=1 hint.fdc.0.at=isa hint.fdc.0.drq=2 hint.fdc.0.irq=6 hint.fdc.0.port=0x3F0 hint.fe.0.at=isa hint.fe.0.disabled=1 hint.fe.0.port=0x300 hint.ie.0.at=isa hint.ie.0.disabled=1 hint.ie.0.irq=10 hint.ie.0.maddr=0xd0000 hint.ie.0.port=0x300 hint.le.0.at=isa hint.le.0.disabled=1 hint.le.0.irq=5 hint.le.0.maddr=0xd0000 hint.le.0.port=0x300 hint.lnc.0.at=isa hint.lnc.0.disabled=1 hint.lnc.0.drq=0 hint.lnc.0.irq=10 hint.lnc.0.port=0x280 hint.pcic.0.at=isa hint.pcic.0.maddr=0xd0000 hint.pcic.0.port=0x3e0 hint.pcic.1.at=isa hint.pcic.1.disabled=1 hint.pcic.1.irq=11 hint.pcic.1.maddr=0xd4000 hint.pcic.1.port=0x3e2 hint.ppc.0.at=isa hint.ppc.0.irq=7 hint.psm.0.at=atkbdc hint.psm.0.irq=12 hint.sc.0.at=isa hint.sc.0.flags=0x100 hint.sio.0.at=isa hint.sio.0.flags=0x10 hint.sio.0.irq=4 hint.sio.0.port=0x3F8 hint.sio.1.at=isa hint.sio.1.irq=3 hint.sio.1.port=0x2F8 hint.sio.2.at=isa hint.sio.2.disabled=1 hint.sio.2.irq=5 hint.sio.2.port=0x3E8 hint.sio.3.at=isa hint.sio.3.disabled=1 hint.sio.3.irq=9 hint.sio.3.port=0x2E8 hint.sn.0.at=isa hint.sn.0.disabled=1 hint.sn.0.irq=10 hint.sn.0.port=0x300 hint.vga.0.at=isa hint.vt.0.at=isa hint.vt.0.disabled=1 interpret=OK kernel=kernel kernel_options= kernelname=/boot/kernel/kernel loaddev=disk1s1a: mac_ifoff=NO module_path=/boot/kernel;/boot/kernel;/boot/modules prompt=${interpret} OK boot -v SMAP type=01 base=0000000000000000 len=000000000009fc00 SMAP type=02 base=000000000009fc00 len=0000000000000400 SMAP type=02 base=00000000000e0000 len=0000000000020000 SMAP type=01 base=0000000000100000 len=000000001ff00000 SMAP type=02 base=00000000fec00000 len=0000000000001000 SMAP type=02 base=00000000fec01000 len=0000000000001000 SMAP type=02 base=00000000fee00000 len=0000000000001000 SMAP type=02 base=00000000fff80000 len=0000000000080000 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.1-CURRENT #1: Mon Oct 20 10:40:30 PDT 2003 root@fluke.whale-test.net:/usr/obj/usr/src/sys/FLUKE Preloaded elf kernel "/boot/kernel/kernel" at 0xc0a14000. Calibrating clock(s) ... i8254 clock: 1193058 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 996597691 Hz CPU: Intel Pentium III (996.60-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x68a Stepping = 10 Features=0x387fbff real memory = 536870912 (512 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009efff, 647168 bytes (158 pages) 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) 0x0000000000c26000 - 0x000000001f6d9fff, 514539520 bytes (125620 pages) avail memory = 511942656 (488 MB) bios32: Found BIOS32 Service Directory header at 0xc00fdb90 bios32: Entry = 0xfdba0 (c00fdba0) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xf0000+0xdbc1 pnpbios: Found PnP BIOS data at 0xc00f4b00 pnpbios: Entry = f0000:3b84 Rev = 1.0 Other BIOS signatures found: wlan: <802.11 Link Layer> null: random: mem: Pentium Pro MTRR support enabled npx0: [FAST] npx0: on motherboard npx0: INT 16 interface pci_open(1): mode 1 addr port (0x0cf8) is 0x80000070 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=80] is there (id=00081166) pcibios: BIOS version 2.10 Using $PIR table, 13 entries at 0xc00f5070 PCI-Only Interrupts: none Location Bus Device Pin Link IRQs embedded 0 0 A 0x11 3 4 5 7 9 10 11 12 14 15 embedded 0 0 B 0x13 3 4 5 7 9 10 11 12 14 15 embedded 0 15 A 0x01 10 slot 1 0 1 A 0x1d 3 4 5 7 9 10 11 12 14 15 slot 1 0 1 B 0x1c 3 4 5 7 9 10 11 12 14 15 slot 1 0 1 C 0xff 3 4 5 7 9 10 11 12 14 15 slot 1 0 1 D 0xff 3 4 5 7 9 10 11 12 14 15 slot 2 0 4 A 0x10 5 slot 2 0 4 B 0x11 9 slot 2 0 4 C 0x12 10 slot 2 0 4 D 0x13 11 embedded 0 3 A 0x13 11 embedded 0 3 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 3 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 3 D 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 7 A 0x14 11 embedded 0 7 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 7 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 7 D 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 11 A 0x13 11 embedded 0 11 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 11 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 0 11 D 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 0 A 0x10 5 embedded 1 0 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 0 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 0 D 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 2 A 0x12 10 embedded 1 2 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 2 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 1 2 D 0xff 3 4 5 7 9 10 11 12 14 15 slot 3 1 5 A 0x11 9 slot 3 1 5 B 0x12 10 slot 3 1 5 C 0x13 11 slot 3 1 5 D 0x10 5 embedded 2 1 A 0x11 9 embedded 2 1 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 2 1 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 2 1 D 0xff 3 4 5 7 9 10 11 12 14 15 embedded 2 2 A 0x12 10 embedded 2 2 B 0xff 3 4 5 7 9 10 11 12 14 15 embedded 2 2 C 0xff 3 4 5 7 9 10 11 12 14 15 embedded 2 2 D 0xff 3 4 5 7 9 10 11 12 14 15 slot 4 2 6 A 0x12 10 slot 4 2 6 B 0x13 11 slot 4 2 6 C 0x10 5 slot 4 2 6 D 0x11 9 pcib1: at pcibus 1 on motherboard pci1: on pcib1 pci1: physical bus=1 map[10]: type 1, range 32, base feae0000, size 17, enabled pci_cfgintr_valid: BIOS irq 5 is valid pci_cfgintr: 1:0 INTA BIOS irq 5 found-> vendor=0x8086, dev=0x1001, revid=0x02 bus=1, slot=0, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0116, statreg=0x0220, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0xff (63750 ns), maxlat=0x00 (0 ns) intpin=a, irq=5 map[10]: type 1, range 32, base feab0000, size 16, enabled pci_cfgintr_valid: BIOS irq 10 is valid pci_cfgintr: 1:2 INTA BIOS irq 10 found-> vendor=0x14e4, dev=0x5820, revid=0x10 bus=1, slot=2, func=0 class=0b-40-00, hdrtype=0x00, mfdev=0 cmdreg=0x0116, statreg=0x02b0, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=10 powerspec 2 supports D0 D3 current D0 em0: mem 0xfeae0000-0xfeafffff irq 5 at device 0.0 on pci1 em0: [MPSAFE] em0: Hardware Initialization Failedem0: Unable to initialize the hardware device_probe_and_attach: em0 attach returned 5 pci1: at device 2.0 (no driver attached) pcib0: at pcibus 0 on motherboard pci0: on pcib0 pci0: physical bus=0 found-> vendor=0x1166, dev=0x0008, revid=0x23 bus=0, slot=0, func=0 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0000, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1166, dev=0x0008, revid=0x01 bus=0, slot=0, func=1 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x2200, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1166, dev=0x0006, revid=0x01 bus=0, slot=0, func=2 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0002, statreg=0x2200, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1166, dev=0x0006, revid=0x01 bus=0, slot=0, func=3 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0002, statreg=0x2200, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) map[10]: type 1, range 64, base fe9f0000, size 16, enabled pci_cfgintr_valid: BIOS irq 11 is valid pci_cfgintr: 0:3 INTA BIOS irq 11 found-> vendor=0x14e4, dev=0x5600, revid=0x03 bus=0, slot=3, func=0 class=02-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0117, statreg=0x02a0, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 map[10]: type 1, range 32, base fe9ef000, size 12, enabled map[14]: type 4, range 32, base 0000cf00, size 6, enabled map[18]: type 1, range 32, base fe800000, size 20, enabled pci_cfgintr_valid: BIOS irq 11 is valid pci_cfgintr: 0:7 INTA BIOS irq 11 found-> vendor=0x8086, dev=0x1229, revid=0x08 bus=0, slot=7, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0117, statreg=0x0290, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x08 (2000 ns), maxlat=0x38 (14000 ns) intpin=a, irq=11 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 1, range 64, base fe9d0000, size 16, enabled pci_cfgintr_valid: BIOS irq 11 is valid pci_cfgintr: 0:11 INTA BIOS irq 11 found-> vendor=0x14e4, dev=0x5680, revid=0x02 bus=0, slot=11, func=0 class=02-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0117, statreg=0x02a0, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 map[90]: type 4, range 32, base 00000580, size 4, enabled found-> vendor=0x1166, dev=0x0200, revid=0x51 bus=0, slot=15, func=0 class=06-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x0200, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) map[20]: type 4, range 32, base 0000ffa0, size 4, enabled found-> vendor=0x1166, dev=0x0211, revid=0x00 bus=0, slot=15, func=1 class=01-01-8a, hdrtype=0x00, mfdev=1 cmdreg=0x0005, statreg=0x0200, cachelnsz=0 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) map[10]: type 1, range 32, base fe9ee000, size 12, enabled pci_cfgintr_valid: BIOS irq 10 is valid pci_cfgintr: 0:15 INTA BIOS irq 10 found-> vendor=0x1166, dev=0x0220, revid=0x04 bus=0, slot=15, func=2 class=0c-03-10, hdrtype=0x00, mfdev=1 cmdreg=0x0117, statreg=0x0280, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x50 (20000 ns) intpin=a, irq=10 pci0: at device 3.0 (no driver attached) fxp0: port 0xcf00-0xcf3f mem 0xfe800000-0xfe8fffff,0xfe9ef000-0xfe9effff irq 11 at device 7.0 on pci0 fxp0: using memory space register mapping fxp0: Ethernet address 00:01:d7:02:92:c0 fxp0: PCI IDs: 8086 1229 8086 000c 0008 fxp0: Dynamic Standby mode is disabled miibus0: on fxp0 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: bpf attached pci0: at device 11.0 (no driver attached) isab0: port 0x580-0x58f at device 15.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 15.1 on pci0 ata0: reset tp1 mask=03 ostat0=50 ostat1=50 ata0-master: stat=0x50 err=0x01 lsb=0x00 msb=0x00 ata0-slave: stat=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 mask=03 stat0=50 stat1=50 devices=0x3 ata0: at 0x1f0 irq 14 on atapci0 ata0: [MPSAFE] ata1: reset tp1 mask=03 ostat0=20 ostat1=30 ata1-master: stat=0x20 err=0x20 lsb=0x20 msb=0x20 ata1-slave: stat=0x30 err=0x30 lsb=0x30 msb=0x30 ata1: reset tp2 mask=03 stat0=20 stat1=30 devices=0x0 ata1: at 0x170 irq 15 on atapci0 ata1: [MPSAFE] ohci0: mem 0xfe9ee000-0xfe9eefff irq 10 at devic e 15.2 on pci0 ohci0: (New OHCI DeviceId=0x02201166) usb0: OHCI version 1.0, legacy support usb0: on ohci0 usb0: USB revision 1.0 uhub0: (0x1166) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 4 ports with 4 removable, self powered pcib2: at pcibus 2 on motherboard pci2: on pcib2 pci2: physical bus=2 map[10]: type 1, range 32, base febe0000, size 17, enabled pci_cfgintr_valid: BIOS irq 9 is valid pci_cfgintr: 2:1 INTA BIOS irq 9 found-> vendor=0x8086, dev=0x1001, revid=0x02 bus=2, slot=1, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0116, statreg=0x0220, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0xff (63750 ns), maxlat=0x00 (0 ns) intpin=a, irq=9 em0: mem 0xfebe0000-0xf ebfffff irq 9 at device 1.0 on pci2 em0: [MPSAFE] em0: Hardware Initialization Failedem0: Unable to initialize the hardware device_probe_and_attach: em0 attach returned 5 ata: ata0 already exists; skipping it ata: ata1 already exists; skipping it Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 ex_isa_identify() pnpbios: 15 devices, largest 234 bytes pnpbios: handle 0 device ID PNP0c01 (010cd041) PNP0000: adding io range 0x20-0x21, size=0x2, align=0x1 PNP0000: adding io range 0xa0-0xa1, size=0x2, align=0x1 PNP0000: adding irq mask 0x4 Memory modified after free 0xc4758800(2044) val=c4756800 @ 0xc47589dc panic: Most recently used by bus-sc Debugger("panic") Stopped at Debugger+0x54: xchgl %ebx,in_Debugger.0 db> where Debugger(c083c6e1,c08fe300,c0853cc0,c0c21b4c,100) at Debugger+0x54 panic(c0853cc0,c083dd01,7fc,c4756800,c47589dc) at panic+0xd5 mtrash_ctor(c4758800,800,0,583,c4758800) at mtrash_ctor+0x67 uma_zalloc_arg(c103ae40,0,1,2c21bbc,c0891040) at uma_zalloc_arg+0x1ce malloc(7ec,c0891040,1,c473dc80,c478f000) at malloc+0xd3 isa_add_config(c4765b00,c478d280,0,c478f000,c478f000) at isa_add_config+0x33 pnp_parse_resources(c478d280,c478e30e,19,0,c478e302) at pnp_parse_resources+0x3b8 pnpbios_identify(c08d0db4,c4765b00,c0863280,c085d008,c08caab0) at pnpbios_identify+0x43f bus_generic_probe(c4765b00,c0c21d5c,c064f78e,c1cfd180,c474904c) at bus_generic_probe+0x62 isa_probe_children(c4765b00,c08570dd,0,c0c21d98,c0610455) at isa_probe_children+0x14 configure(0,c1e000,c1ec00,c1e000,0) at configure+0x4b mi_startup() at mi_startup+0xb5 begin() at begin+0x2c db> x/ia mtrash_ctor+0x67 mtrash_ctor+0x67: decl %eax mtrash_ctor+0x68: db> mtrash_ctor+0x68: addl $0x4,%edx mtrash_ctor+0x6b: db> mtrash_ctor+0x6b: testl %eax,%eax mtrash_ctor+0x6d: db> mtrash_ctor+0x6d: jnle mtrash_ctor+0x20 mtrash_ctor+0x6f: pnp_parse_resources+0x3b8: movl $0xc0891040,0x4(%esp) pnp_parse_resources+0x3c0: db> >How-To-Repeat: boot -current from 10/20/2003 on this pc+custom hardware. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 21 11:19: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 22CE416A4B3 for ; Tue, 21 Oct 2003 11:19:59 -0700 (PDT) Received: from adsl-63-198-35-122.dsl.snfc21.pacbell.net (adsl-63-198-35-122.dsl.snfc21.pacbell.net [63.198.35.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41ACD43FBF for ; Tue, 21 Oct 2003 11:19:58 -0700 (PDT) (envelope-from j_guojun@lbl.gov) Received: from lbl.gov (localhost.pacbell.net [127.0.0.1]) ESMTP id h9LIK1bf000516 for ; Tue, 21 Oct 2003 11:20:01 -0700 (PDT) (envelope-from j_guojun@lbl.gov) Sender: jin@adsl-63-198-35-122.dsl.snfc21.pacbell.net Message-ID: <3F9578D1.36470223@lbl.gov> Date: Tue, 21 Oct 2003 11:20:01 -0700 From: "Jin Guojun [NCS]" X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.8-RELEASE i386) X-Accept-Language: zh, zh-CN, en-US, en MIME-Version: 1.0 To: freebsd-bugs@freebsd.org References: <200310162336.h9GNafBv000304@hal.ee.lbl.gov> <20031017072412.Y39762@unit.xs4all.nl> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: bin/58153: 4.9 default with vulnerable openssh 3.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: Tue, 21 Oct 2003 18:19:59 -0000 Daan van de Linde wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > > >Description: > > 4.9 (current RC2) is still distributing openssh 3.5p1 > > which is a vulnerable version of openssh. > > For 4.9-RELEASE, this needs to be changed to openssh-3.7p2 > > It should be changed to openssh 3.7.1p2. > I vaguely remember that the base-ssh (3.5) was patched for the > vurlnerability's. Can be checked by the freebsd admendum in the > sshd_config. > > - --Daan The 4.9-RC3 still has 3.5p1. It is hard to tell if it is patched. If it is patched, the banner should be changed at least. Otherwise, it is not very useful, because users have no idea if this is secure. Also, the security scan is based on the banner. Once they saw a such old version, they will simply block connections to 4.9 hosts. -Jin From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 21 13:40: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 6E19A16A4B3 for ; Tue, 21 Oct 2003 13:40:34 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E49C443FA3 for ; Tue, 21 Oct 2003 13:40:33 -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 h9LKeVFY042834 for ; Tue, 21 Oct 2003 13:40:31 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9LKeVg3042833; Tue, 21 Oct 2003 13:40:31 -0700 (PDT) (envelope-from gnats) Date: Tue, 21 Oct 2003 13:40:31 -0700 (PDT) Message-Id: <200310212040.h9LKeVg3042833@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Matt Peterson Subject: Re: misc/58272: [patch] rc.d/diskless detection, dhcp rebuild X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matt Peterson List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Oct 2003 20:40:34 -0000 The following reply was made to PR misc/58272; it has been noted by GNATS. From: Matt Peterson To: FreeBSD-gnats-submit@freebsd.org Cc: Dirk-Willem van Gulik , dougb@freebsd.org, phk@freebsd.org Subject: Re: misc/58272: [patch] rc.d/diskless detection, dhcp rebuild Date: Tue, 21 Oct 2003 13:25:05 -0700 Actually, we need to re-think this. In our situation (again, not PXE boot, but CF card mounted read-only), dhclient is currently run after the diskless script (thus it can't plum the system's resolv.conf, hostnamed and related). See below... Starting file system checks: /dev/ad0s1a: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s1a: clean, 78015 free (87 frags, 9741 blocks, 0.1% fragmentation) +++ mount_md of /var +++ populate /var using /etc/mtree/BSD.var.dist +++ create log files based on the contents of /etc/newsyslog.conf +++ create lastlog grep: /var/db/dhclient.leases: No such file or directory dhcp.host-name="" Hostname is Setting hostname: template.barwn.org. lo0: flags=8049 mtu 16384 inet 127.0.0.1 netmask 0xff000000 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x5 Starting dhclient. sis0: Applying short cable fix (reg=f5) sis0: Applying short cable fix (reg=f8) sis0: flags=8843 mtu 1500 inet6 fe80::200:24ff:fec0:5480%sis0 prefixlen 64 scopeid 0x2 inet 10.1.7.25 netmask 0xffffffe0 broadcast 10.1.7.31 ether 00:00:24:c0:54:80 media: Ethernet autoselect (100baseTX ) status: active How do you (rcNG folks) recommend we fix this? I guess we can break diskless up into two scripts? From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 21 14:00: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 A5E2C16A4BF for ; Tue, 21 Oct 2003 14:00:31 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 183F143F85 for ; Tue, 21 Oct 2003 14:00:31 -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 h9LL0UFY043995 for ; Tue, 21 Oct 2003 14: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 h9LL0UNI043994; Tue, 21 Oct 2003 14:00:30 -0700 (PDT) (envelope-from gnats) Date: Tue, 21 Oct 2003 14:00:30 -0700 (PDT) Message-Id: <200310212100.h9LL0UNI043994@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Dirk-Willem van Gulik Subject: Re: misc/58272: [patch] rc.d/diskless detection, dhcp rebuild X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dirk-Willem van Gulik List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Oct 2003 21:00:31 -0000 The following reply was made to PR misc/58272; it has been noted by GNATS. From: Dirk-Willem van Gulik To: Matt Peterson Cc: FreeBSD-gnats-submit@freebsd.org, dougb@freebsd.org, phk@freebsd.org Subject: Re: misc/58272: [patch] rc.d/diskless detection, dhcp rebuild Date: Tue, 21 Oct 2003 13:50:16 -0700 (PDT) > Actually, we need to re-think this. In our situation (again, not PXE > boot, but CF card mounted read-only), dhclient is currently run after > the diskless script (thus it can't plum the system's resolv.conf, > hostnamed and related). See below... dhclient wants contineous access - so it wil have to live on /var/* or in a /etc overlay which is RW. Our solution has been to let a /etc/resolv.conf be set up as a link from /etc/ - and modify dhclient-script in /sbin to cope with both symlinks and a normal /etc. Dw From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 21 14:30: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 4BEA516A55C for ; Tue, 21 Oct 2003 14:30:11 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 252C643FB1 for ; Tue, 21 Oct 2003 14: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 h9LLU9FY048909 for ; Tue, 21 Oct 2003 14: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 h9LLU9d9048908; Tue, 21 Oct 2003 14:30:09 -0700 (PDT) (envelope-from gnats) Resent-Date: Tue, 21 Oct 2003 14:30:09 -0700 (PDT) Resent-Message-Id: <200310212130.h9LLU9d9048908@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, Simun Mikecin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BAFA16A4B3 for ; Tue, 21 Oct 2003 14:23:52 -0700 (PDT) Received: from data.home.hr (zg06-044.dialin.iskon.hr [213.191.148.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77CB643FA3 for ; Tue, 21 Oct 2003 14:23:47 -0700 (PDT) (envelope-from sime@logos.hr) Received: by data.home.hr (Postfix, from userid 34062) id 9A5701B04A; Tue, 21 Oct 2003 23:21:29 +0200 (CEST) Message-Id: <20031021212129.9A5701B04A@data.home.hr> Date: Tue, 21 Oct 2003 23:21:29 +0200 (CEST) From: Simun Mikecin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/58353: Can't burn DVD media with Pioneer DVR-106 burner X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Simun Mikecin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Oct 2003 21:30:11 -0000 >Number: 58353 >Category: kern >Synopsis: Can't burn DVD media with Pioneer DVR-106 burner >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 21 14:30:08 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Simun Mikecin >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD data.home.hr 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Sun Oct 19 19:55:19 CEST 2003 root@data.home.hr:/usr/obj/usr/src/sys/DATA i386 Using 5.1-CURRENT as of Oct 19 2003 on Pentium4 machine. Kernel compiled with SMP+APIC and atapicam. Hyperthreading logical processors disabled (default). This is dmesg output: 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.1-CURRENT #0: Sun Oct 19 19:55:19 CEST 2003 root@data.home.hr:/usr/obj/usr/src/sys/DATA Preloaded elf kernel "/boot/kernel/kernel" at 0xc0842000. Preloaded elf module "/boot/kernel/agp.ko" at 0xc08421f4. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc084229c. Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Pentium(R) 4 CPU 2.40GHz (2411.60-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf29 Stepping = 9 Features=0xbfebfbff Hyperthreading: 2 logical CPUs real memory = 1073676288 (1023 MB) avail memory = 1033490432 (985 MB) Changing APIC ID for IO APIC #0 from 0 to 2 on chip 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: 0x00050014, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00050014, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00178020, at 0xfec00000 netsmb_dev: loaded Pentium Pro MTRR support enabled VESA: v3.0, 131072k memory, flags:0x1, mode table:0xc07563e2 (1000022) VESA: NVIDIA npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard pcibios: BIOS version 2.10 Using $PIR table, 15 entries at 0xc00fceb0 acpi0: Power Button (fixed) Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 acpi_cpu0: on acpi0 acpi_cpu1: on acpi0 acpi_button0: on acpi0 pcib0: port 0x1000-0x10bf,0xcf8-0xcff on acpi0 pci0: on pcib0 IOAPIC #0 intpin 16 -> irq 2 IOAPIC #0 intpin 19 -> irq 3 IOAPIC #0 intpin 18 -> irq 9 IOAPIC #0 intpin 23 -> irq 10 IOAPIC #0 intpin 17 -> irq 11 agp0: mem 0xe0000000-0xe7ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) pcib2: at device 3.0 on pci0 pcib2: could not get PCI interrupt routing table for \\_SB_.PCI0.CSAB - AE_NOT_FOUND pci2: on pcib2 em0: port 0xb000-0xb01f mem 0xf4000000-0xf401ffff irq 9 at device 1.0 on pci2 em0: [MPSAFE] em0: Speed:N/A Duplex:N/A uhci0: port 0xcc00-0xcc1f irq 2 at device 29.0 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 uhci1: port 0xc000-0xc01f irq 3 at device 29.1 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0xc400-0xc41f irq 9 at device 29.2 on pci0 usb2: on uhci2 usb2: USB revision 1.0 uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered uhci3: port 0xc800-0xc81f irq 2 at device 29.3 on pci0 usb3: on uhci3 usb3: USB revision 1.0 uhub3: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub3: 2 ports with 2 removable, self powered ehci0: mem 0xf4200000-0xf42003ff irq 10 at device 29.7 on pci0 ehci_pci_attach: companion usb0 ehci_pci_attach: companion usb1 ehci_pci_attach: companion usb2 ehci_pci_attach: companion usb3 usb4: EHCI version 1.0 usb4: companion controllers, 2 ports each: usb0 usb1 usb2 usb3 usb4: on ehci0 usb4: USB revision 2.0 uhub4: (0x8086) EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 uhub4: 8 ports with 8 removable, self powered pcib3: at device 30.0 on pci0 pci3: on pcib3 IOAPIC #0 intpin 21 -> irq 16 IOAPIC #0 intpin 22 -> irq 17 bktr0: mem 0xf4100000-0xf4100fff irq 16 at device 1.0 on pci3 bktr0: Hauppauge Model 44354 A321 bktr0: Detected a MSP3415D-B3 at 0x80 bktr0: Hauppauge WinCast/TV, Philips FR1216 PAL FM tuner, msp3400c stereo, remote control. pci3: at device 1.1 (no driver attached) pci3: at device 2.0 (no driver attached) pci3: