From linimon at lonesome.com Wed Feb 1 01:10:12 2012 From: linimon at lonesome.com (Mark Linimon) Date: Wed Feb 1 01:10:18 2012 Subject: kern/164674: vsprintf/vswprintf return error (EOF) on success if __SERR flag is already set on file Message-ID: <201202010110.q111ABFV050087@freefall.freebsd.org> The following reply was made to PR kern/164674; it has been noted by GNATS. From: Mark Linimon To: Matthew Story Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/164674: vsprintf/vswprintf return error (EOF) on success if __SERR flag is already set on file Date: Tue, 31 Jan 2012 18:47:13 -0600 On Tue, Jan 31, 2012 at 06:16:22PM -0500, Matthew Story wrote: > this synopsis should read "vfprintf/vfwprintf return ...", apologies for > the typo, can someone with appropriate edit privileges change this? done. mcl From linimon at FreeBSD.org Wed Feb 1 01:34:18 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Feb 1 01:34:24 2012 Subject: kern/164651: [cam] Disabling DMA in new Freebsd 9.0 CAM drivers does not work Message-ID: <201202010134.q111YIgi078578@freefall.freebsd.org> Old Synopsis: Disabling DMA in new Freebsd 9.0 CAM drivers does not work New Synopsis: [cam] Disabling DMA in new Freebsd 9.0 CAM drivers does not work Responsible-Changed-From-To: freebsd-bugs->ken Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 1 01:33:36 UTC 2012 Responsible-Changed-Why: Ken, is this your area of expertise? If not, please just assign it over to freebsd-scsi@. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=164651 From matthewstory at gmail.com Wed Feb 1 02:00:31 2012 From: matthewstory at gmail.com (Matthew Story) Date: Wed Feb 1 02:00:37 2012 Subject: kern/164674: vsprintf/vswprintf return error (EOF) on success if __SERR flag is already set on file Message-ID: <201202010200.q1120UBe096411@freefall.freebsd.org> The following reply was made to PR kern/164674; it has been noted by GNATS. From: Matthew Story To: Mark Linimon Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/164674: vsprintf/vswprintf return error (EOF) on success if __SERR flag is already set on file Date: Tue, 31 Jan 2012 20:52:20 -0500 --f46d0438936d80ad7204b7dd5444 Content-Type: text/plain; charset=ISO-8859-1 thanks! On Tue, Jan 31, 2012 at 7:47 PM, Mark Linimon wrote: > On Tue, Jan 31, 2012 at 06:16:22PM -0500, Matthew Story wrote: > > this synopsis should read "vfprintf/vfwprintf return ...", apologies for > > the typo, can someone with appropriate edit privileges change this? > > done. > > mcl > -- regards, matt --f46d0438936d80ad7204b7dd5444 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable thanks!

On Tue, Jan 31, 2012 at 7:47 PM, = Mark Linimon <= linimon@lonesome.com> wrote:
On Tue, Jan 31, 2012 at 06:16:22PM -0500, Matthew Story w= rote:
> this synopsis should read "vfprintf/vfwprintf return ...", a= pologies for
> the typo, can someone with appropriate edit privileges change this?
done.

mcl



--
regards,
= matt
--f46d0438936d80ad7204b7dd5444-- From dfilter at FreeBSD.ORG Wed Feb 1 03:00:25 2012 From: dfilter at FreeBSD.ORG (dfilter service) Date: Wed Feb 1 03:00:32 2012 Subject: kern/156567: commit references a PR Message-ID: <201202010300.q1130PDw051163@freefall.freebsd.org> The following reply was made to PR kern/156567; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/156567: commit references a PR Date: Wed, 1 Feb 2012 02:53:15 +0000 (UTC) Author: davidxu Date: Wed Feb 1 02:53:06 2012 New Revision: 230857 URL: http://svn.freebsd.org/changeset/base/230857 Log: If multiple threads call kevent() to get AIO events on same kqueue fd, it is possible that a single AIO event will be reported to multiple threads, it is not threading friendly, and the existing API can not control this behavior. Allocate a kevent flags field sigev_notify_kevent_flags for AIO event notification in sigevent, and allow user to pass EV_CLEAR, EV_DISPATCH or EV_ONESHOT to AIO kernel code, user can control whether the event should be cleared once it is retrieved by a thread. This change should be comptaible with existing application, because the field should have already been zero-filled, and no additional action will be taken by kernel. PR: kern/156567 Modified: head/sys/kern/vfs_aio.c head/sys/sys/signal.h Modified: head/sys/kern/vfs_aio.c ============================================================================== --- head/sys/kern/vfs_aio.c Wed Feb 1 02:16:15 2012 (r230856) +++ head/sys/kern/vfs_aio.c Wed Feb 1 02:53:06 2012 (r230857) @@ -1524,6 +1524,7 @@ aio_aqueue(struct thread *td, struct aio int error; int fd, kqfd; int jid; + u_short evflags; if (p->p_aioinfo == NULL) aio_init_aioinfo(p); @@ -1646,10 +1647,15 @@ aio_aqueue(struct thread *td, struct aio if (aiocbe->uaiocb.aio_sigevent.sigev_notify != SIGEV_KEVENT) goto no_kqueue; + evflags = aiocbe->uaiocb.aio_sigevent.sigev_notify_kevent_flags; + if ((evflags & ~(EV_CLEAR | EV_DISPATCH | EV_ONESHOT)) != 0) { + error = EINVAL; + goto aqueue_fail; + } kqfd = aiocbe->uaiocb.aio_sigevent.sigev_notify_kqueue; kev.ident = (uintptr_t)aiocbe->uuaiocb; kev.filter = EVFILT_AIO; - kev.flags = EV_ADD | EV_ENABLE | EV_FLAG1; + kev.flags = EV_ADD | EV_ENABLE | EV_FLAG1 | evflags; kev.data = (intptr_t)aiocbe; kev.udata = aiocbe->uaiocb.aio_sigevent.sigev_value.sival_ptr; error = kqfd_register(kqfd, &kev, td, 1); Modified: head/sys/sys/signal.h ============================================================================== --- head/sys/sys/signal.h Wed Feb 1 02:16:15 2012 (r230856) +++ head/sys/sys/signal.h Wed Feb 1 02:53:06 2012 (r230857) @@ -169,12 +169,14 @@ struct sigevent { void (*_function)(union sigval); void *_attribute; /* pthread_attr_t * */ } _sigev_thread; + unsigned short _kevent_flags; long __spare__[8]; } _sigev_un; }; #if __BSD_VISIBLE #define sigev_notify_kqueue sigev_signo +#define sigev_notify_kevent_flags _sigev_un._kevent_flags #define sigev_notify_thread_id _sigev_un._threadid #endif #define sigev_notify_function _sigev_un._sigev_thread._function _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From yuri.pankov at gmail.com Wed Feb 1 06:30:15 2012 From: yuri.pankov at gmail.com (Yuri Pankov) Date: Wed Feb 1 06:30:22 2012 Subject: kern/164684: [kern][patch] Zero out dynamically allocated sbufs Message-ID: <201202010626.q116QePw067371@sirius.xvoid.org> >Number: 164684 >Category: kern >Synopsis: [kern][patch] Zero out dynamically allocated sbufs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 01 06:30:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Yuri Pankov >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD sirius.xvoid.org 10.0-CURRENT FreeBSD 10.0-CURRENT #1 r230537: Wed Jan 25 16:28:58 MSK 2012 yuri@sirius.xvoid.org:/usr/obj/data/src/freebsd/head/sys/GENERIC amd64 >Description: Filing this against kernel (as the source is in sys/kern), but got the problem itself using libsbuf - sbuf_newbuf() and sbuf_extend() don't zero out the malloc'ed memory, leading to issues when malloc debugging is enabled. >How-To-Repeat: #include #include #include int main(void) { struct sbuf *sb = sbuf_new_auto(); sbuf_cat(sb, "TEST TEST"); printf("s_buf=%s\n", sbuf_data(sb)); return(0); } $ MALLOC_OPTIONS=J ./sbuf s_buf=TEST TEST▒▒▒▒▒▒▒ $ MALLOC_OPTIONS=j ./sbuf s_buf=TEST TEST >Fix: --- sbuf-dynamic.diff begins here --- Index: sys/kern/subr_sbuf.c =================================================================== --- sys/kern/subr_sbuf.c (revision 230853) +++ sys/kern/subr_sbuf.c (working copy) @@ -159,6 +159,7 @@ newbuf = SBMALLOC(newsize); if (newbuf == NULL) return (-1); + memset(newbuf, 0, newsize); memcpy(newbuf, s->s_buf, s->s_size); if (SBUF_ISDYNAMIC(s)) SBFREE(s->s_buf); @@ -197,6 +198,7 @@ s->s_buf = SBMALLOC(s->s_size); if (s->s_buf == NULL) return (NULL); + memset(s->s_buf, 0, s->s_size); SBUF_SETFLAG(s, SBUF_DYNAMIC); return (s); } --- sbuf-dynamic.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From yuri.pankov at gmail.com Wed Feb 1 07:20:10 2012 From: yuri.pankov at gmail.com (Yuri Pankov) Date: Wed Feb 1 07:20:16 2012 Subject: kern/164684: [kern][patch] Zero out dynamically allocated sbufs Message-ID: <201202010720.q117K9kl094945@freefall.freebsd.org> The following reply was made to PR kern/164684; it has been noted by GNATS. From: Yuri Pankov To: bug-followup@freebsd.org Cc: Subject: Re: kern/164684: [kern][patch] Zero out dynamically allocated sbufs Date: Wed, 1 Feb 2012 11:19:43 +0400 The test code is obviously missing sbuf_finish. Please close the PR. Yuri From ae at FreeBSD.org Wed Feb 1 07:30:01 2012 From: ae at FreeBSD.org (ae@FreeBSD.org) Date: Wed Feb 1 07:30:07 2012 Subject: kern/164684: [kern][patch] Zero out dynamically allocated sbufs Message-ID: <201202010730.q117U0lS020097@freefall.freebsd.org> Synopsis: [kern][patch] Zero out dynamically allocated sbufs State-Changed-From-To: open->closed State-Changed-By: ae State-Changed-When: Wed Feb 1 07:28:12 UTC 2012 State-Changed-Why: Not a bug. http://www.freebsd.org/cgi/query-pr.cgi?pr=164684 From fbsd at 50days.dax.nu Wed Feb 1 10:00:29 2012 From: fbsd at 50days.dax.nu (Bjorn Danielsson) Date: Wed Feb 1 10:00:45 2012 Subject: misc/164690: Request for ipv6 support in ipfw tables Message-ID: <201202010950.q119oSiG055614@red.freebsd.org> >Number: 164690 >Category: misc >Synopsis: Request for ipv6 support in ipfw tables >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 01 10:00:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Bjorn Danielsson >Release: 9.0 >Organization: >Environment: FreeBSD nine-pack 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 31 09:49:15 CET 2012 root@nine-pack:/usr/src/sys/amd64/compile/CUSTOM amd64 >Description: The lookup tables for address prefixes in ipfw only understand v4 addresses. This impacts the possibility to migrate systems that use this feature. I know this has been discussed on the freebsd-ipfw list, but I think it deserves its own PR also. >How-To-Repeat: ipfw table 0 add dead:beef::cafe/128 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From kib at FreeBSD.org Wed Feb 1 14:15:19 2012 From: kib at FreeBSD.org (kib@FreeBSD.org) Date: Wed Feb 1 14:15:25 2012 Subject: kern/156423: [kqueue] [patch] Please add kqueue support for /dev/klog Message-ID: <201202011415.q11EFIYV012645@freefall.freebsd.org> Synopsis: [kqueue] [patch] Please add kqueue support for /dev/klog Responsible-Changed-From-To: freebsd-bugs->grab Responsible-Changed-By: kib Responsible-Changed-When: Wed Feb 1 14:15:04 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=156423 From allen at gtf.org Wed Feb 1 19:20:10 2012 From: allen at gtf.org (Allen Belletti) Date: Wed Feb 1 19:20:21 2012 Subject: kern/164694: Regression in 3726 port multiplier support in 9.0 Message-ID: <201202011916.q11JG89O073767@red.freebsd.org> >Number: 164694 >Category: kern >Synopsis: Regression in 3726 port multiplier support in 9.0 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 01 19:20:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Allen Belletti >Release: 9.0-RELEASE >Organization: Georgia Tech ISyE >Environment: FreeBSD chimney 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 31 17:53:10 EST 2012 broot@chimney:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I've recently upgraded an amd64 disk-to-disk backup server from 8.2 to 9.0 and run into a serious problem. We have three SiI 3132 dual-port eSATA cards. Each of those six ports (two per card) connects to an SiI 3726 (possibly 4726, but detected as 3726) port multiplier, which in turn drives four disks. This worked brilliantly on 8.x with a total of 24 disks running reliably for quite some time. Upon upgrading to 9.0, the controllers are detected by the Siis driver, and it is aware that the port multipliers exist, but no disks are seen. I've also booted the 9.0 memstick image to verify that the same problem occurs, which it does. >How-To-Repeat: In our case, this problem occurs on every boot. The affected hardware is a SuperMicro board (model unknown but I'll check if this is needed) with a pair of Xeon E5504 CPUs. eSATA cards are SiI 3132, connected to KW-5556 port multipliers (the internal version.) Disks are connected four to a multiplier and are Samsung 750GB SATA units. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From allen at gtf.org Wed Feb 1 20:20:10 2012 From: allen at gtf.org (Allen Belletti) Date: Wed Feb 1 20:20:22 2012 Subject: kern/164694: Regression in 3726 port multiplier support in 9.0 Message-ID: <201202012020.q11KKAfn042668@freefall.freebsd.org> The following reply was made to PR kern/164694; it has been noted by GNATS. From: Allen Belletti To: bug-followup@freebsd.org Cc: Subject: Re: kern/164694: Regression in 3726 port multiplier support in 9.0 Date: Wed, 01 Feb 2012 14:49:45 -0500 This is a multi-part message in MIME format. --------------050202040600020906070504 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Here are two log files which may be of use to investigate this problem. The first, "verbose", is taken from dmesg after doing a verbose boot of the 9.0 GENERIC kernel. Unfortunately the start is cut off (presumably due to kernel buffer size) but presumably that is fixable if needed. The second log file, "lastboot82", is a (non-verbose, since I no longer have a way to boot it) log from the last time I booted with 8.2 GENERIC. Note that this machine has three types of disk controllers, so the log is quite lengthy. There are six devices on the motherboard (ahci) and many devices connected via the mpt driver. Those are all working fine. Thanks, Allen --------------050202040600020906070504 Content-Type: text/plain; name="verbose" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="verbose" Jan 31 18:24:11 chimney syslogd: kernel boot file is /boot/kernel/kernel Jan 31 18:24:11 chimney kernel: s) Jan 31 18:24:11 chimney kernel: intpin=a, irq=10 Jan 31 18:24:11 chimney kernel: powerspec 2 supports D0 D1 D2 D3 current D0 Jan 31 18:24:11 chimney kernel: MSI supports 1 message, 64 bit Jan 31 18:24:11 chimney kernel: MSI-X supports 1 message in map 0x14 Jan 31 18:24:11 chimney kernel: map[10]: type I/O Port, range 32, base 0xd000, size 8, enabled Jan 31 18:24:11 chimney kernel: pcib12: allocated I/O port range (0xd000-0xd0ff) for rid 10 of pci0:133:0:0 Jan 31 18:24:11 chimney kernel: map[14]: type Memory, range 64, base 0xf7bfc000, size 14, enabled Jan 31 18:24:11 chimney kernel: pcib12: allocated memory range (0xf7bfc000-0xf7bfffff) for rid 14 of pci0:133:0:0 Jan 31 18:24:11 chimney kernel: map[1c]: type Memory, range 64, base 0xf7be0000, size 16, enabled Jan 31 18:24:11 chimney kernel: pcib12: allocated memory range (0xf7be0000-0xf7beffff) for rid 1c of pci0:133:0:0 Jan 31 18:24:11 chimney kernel: pcib12: matched entry for 133.0.INTA Jan 31 18:24:11 chimney kernel: pcib12: slot 0 INTA hardwired to IRQ 54 Jan 31 18:24:11 chimney kernel: mpt1: port 0xd000-0xd0ff mem 0xf7bfc000-0xf7bfffff,0xf7be0000-0xf7beffff irq 54 at device 0.0 on pci133 Jan 31 18:24:11 chimney kernel: mpt1: attempting to allocate 1 MSI-X vectors (1 supported) Jan 31 18:24:11 chimney kernel: msi: routing MSI-X IRQ 285 to local APIC 0 vector 83 Jan 31 18:24:11 chimney kernel: mpt1: using IRQ 285 for MSI-X Jan 31 18:24:11 chimney kernel: mpt1: MPI Version=1.5.19.0 Jan 31 18:24:11 chimney kernel: mpt1: chain depth limited to 34 (from 2040) Jan 31 18:24:11 chimney kernel: mpt1: Maximum Segment Count: 306, Maximum CAM Segment Count: 33 Jan 31 18:24:11 chimney kernel: mpt1: MsgLength=20 IOCNumber = 0 Jan 31 18:24:11 chimney kernel: mpt1: IOCFACTS: GlobalCredits=478 BlockSize=8 bytes Request Frame Size 128 bytes Max Chain Depth 34 Jan 31 18:24:11 chimney kernel: mpt1: IOCFACTS: Num Ports 1, FWImageSize 0, Flags=0x2 Jan 31 18:24:11 chimney kernel: mpt1: No Handlers For Any Event Notify Frames. Event 0xa (ACK not required). Jan 31 18:24:11 chimney kernel: mpt1: No Handlers For Any Event Notify Frames. Event 0x16 (ACK not required). Jan 31 18:24:11 chimney kernel: mpt1: No Handlers For Any Event Notify Frames. Event 0x12 (ACK not required). Jan 31 18:24:11 chimney last message repeated 7 times Jan 31 18:24:11 chimney kernel: mpt1: No Handlers For Any Event Notify Frames. Event 0xf (ACK not required). Jan 31 18:24:11 chimney last message repeated 7 times Jan 31 18:24:11 chimney kernel: mpt1: No Handlers For Any Event Notify Frames. Event 0x16 (ACK not required). Jan 31 18:24:11 chimney kernel: mpt1: No Handlers For Any Event Notify Frames. Event 0xa (ACK not required). Jan 31 18:24:11 chimney kernel: pcib13: at device 9.0 on pci128 Jan 31 18:24:11 chimney kernel: pcib7: allocated type 4 (0xe000-0xefff) for rid 1c of pcib13 Jan 31 18:24:11 chimney kernel: pcib7: allocated type 3 (0xf7c00000-0xf7ffffff) for rid 20 of pcib13 Jan 31 18:24:11 chimney kernel: pcib13: domain 0 Jan 31 18:24:11 chimney kernel: pcib13: secondary bus 134 Jan 31 18:24:11 chimney kernel: pcib13: subordinate bus 134 Jan 31 18:24:11 chimney kernel: pcib13: I/O decode 0xe000-0xefff Jan 31 18:24:11 chimney kernel: pcib13: memory decode 0xf7c00000-0xf7ffffff Jan 31 18:24:11 chimney kernel: pcib13: no prefetched decode Jan 31 18:24:11 chimney kernel: pci134: on pcib13 Jan 31 18:24:11 chimney kernel: pci134: domain=0, physical bus=134 Jan 31 18:24:11 chimney kernel: found-> vendor=0x1000, dev=0x0058, revid=0x08 Jan 31 18:24:11 chimney kernel: domain=0, bus=134, slot=0, func=0 Jan 31 18:24:11 chimney kernel: class=01-00-00, hdrtype=0x00, mfdev=0 Jan 31 18:24:11 chimney kernel: cmdreg=0x0147, statreg=0x4010, cachelnsz=64 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: intpin=a, irq=10 Jan 31 18:24:11 chimney kernel: powerspec 2 supports D0 D1 D2 D3 current D0 Jan 31 18:24:11 chimney kernel: MSI supports 1 message, 64 bit Jan 31 18:24:11 chimney kernel: MSI-X supports 1 message in map 0x14 Jan 31 18:24:11 chimney kernel: map[10]: type I/O Port, range 32, base 0xe000, size 8, enabled Jan 31 18:24:11 chimney kernel: pcib13: allocated I/O port range (0xe000-0xe0ff) for rid 10 of pci0:134:0:0 Jan 31 18:24:11 chimney kernel: map[14]: type Memory, range 64, base 0xf7ffc000, size 14, enabled Jan 31 18:24:11 chimney kernel: pcib13: allocated memory range (0xf7ffc000-0xf7ffffff) for rid 14 of pci0:134:0:0 Jan 31 18:24:11 chimney kernel: map[1c]: type Memory, range 64, base 0xf7fe0000, size 16, enabled Jan 31 18:24:11 chimney kernel: pcib13: allocated memory range (0xf7fe0000-0xf7feffff) for rid 1c of pci0:134:0:0 Jan 31 18:24:11 chimney kernel: pcib13: matched entry for 134.0.INTA Jan 31 18:24:11 chimney kernel: pcib13: slot 0 INTA hardwired to IRQ 56 Jan 31 18:24:11 chimney kernel: mpt2: port 0xe000-0xe0ff mem 0xf7ffc000-0xf7ffffff,0xf7fe0000-0xf7feffff irq 56 at device 0.0 on pci134 Jan 31 18:24:11 chimney kernel: mpt2: attempting to allocate 1 MSI-X vectors (1 supported) Jan 31 18:24:11 chimney kernel: msi: routing MSI-X IRQ 286 to local APIC 0 vector 84 Jan 31 18:24:11 chimney kernel: mpt2: using IRQ 286 for MSI-X Jan 31 18:24:11 chimney kernel: mpt2: MPI Version=1.5.19.0 Jan 31 18:24:11 chimney kernel: mpt2: chain depth limited to 34 (from 2040) Jan 31 18:24:11 chimney kernel: mpt2: Maximum Segment Count: 306, Maximum CAM Segment Count: 33 Jan 31 18:24:11 chimney kernel: mpt2: MsgLength=20 IOCNumber = 0 Jan 31 18:24:11 chimney kernel: mpt2: IOCFACTS: GlobalCredits=478 BlockSize=8 bytes Request Frame Size 128 bytes Max Chain Depth 34 Jan 31 18:24:11 chimney kernel: mpt2: IOCFACTS: Num Ports 1, FWImageSize 0, Flags=0x2 Jan 31 18:24:11 chimney kernel: mpt2: No Handlers For Any Event Notify Frames. Event 0xa (ACK not required). Jan 31 18:24:11 chimney kernel: mpt2: No Handlers For Any Event Notify Frames. Event 0x16 (ACK not required). Jan 31 18:24:11 chimney kernel: mpt2: No Handlers For Any Event Notify Frames. Event 0x12 (ACK not required). Jan 31 18:24:11 chimney last message repeated 2 times Jan 31 18:24:11 chimney kernel: mpt2: No Handlers For Any Event Notify Frames. Event 0x16 (ACK not required). Jan 31 18:24:11 chimney kernel: mpt2: No Handlers For Any Event Notify Frames. Event 0x16 (ACK not required). Jan 31 18:24:11 chimney kernel: mpt2: No Handlers For Any Event Notify Frames. Event 0x12 (ACK not required). Jan 31 18:24:11 chimney last message repeated 2 times Jan 31 18:24:11 chimney kernel: mpt2: No Handlers For Any Event Notify Frames. Event 0xf (ACK not required). Jan 31 18:24:11 chimney last message repeated 5 times Jan 31 18:24:11 chimney kernel: mpt2: No Handlers For Any Event Notify Frames. Event 0x16 (ACK not required). Jan 31 18:24:11 chimney kernel: mpt2: No Handlers For Any Event Notify Frames. Event 0xa (ACK not required). Jan 31 18:24:11 chimney kernel: pci128: at device 16.0 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 16.1 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 17.0 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 17.1 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 20.0 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 20.1 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 20.2 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 20.3 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 22.0 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 22.1 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 22.2 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 22.3 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 22.4 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 22.5 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 22.6 (no driver attached) Jan 31 18:24:11 chimney kernel: pci128: at device 22.7 (no driver attached) Jan 31 18:24:11 chimney kernel: acpi_button0: on acpi0 Jan 31 18:24:11 chimney kernel: attimer0: port 0x40-0x43 irq 0 on acpi0 Jan 31 18:24:11 chimney kernel: Timecounter "i8254" frequency 1193182 Hz quality 0 Jan 31 18:24:11 chimney kernel: ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 0 vector 85 Jan 31 18:24:11 chimney kernel: Event timer "i8254" frequency 1193182 Hz quality 100 Jan 31 18:24:11 chimney kernel: atrtc0: port 0x70-0x71 irq 8 on acpi0 Jan 31 18:24:11 chimney kernel: atrtc0: registered as a time-of-day clock (resolution 1000000us, adjustment 0.500000000s) Jan 31 18:24:11 chimney kernel: ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 86 Jan 31 18:24:11 chimney kernel: Event timer "RTC" frequency 32768 Hz quality 0 Jan 31 18:24:11 chimney kernel: uart1: <16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 Jan 31 18:24:11 chimney kernel: ioapic0: routing intpin 3 (ISA IRQ 3) to lapic 0 vector 87 Jan 31 18:24:11 chimney kernel: uart1: fast interrupt Jan 31 18:24:11 chimney kernel: hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Jan 31 18:24:11 chimney kernel: hpet0: vendor 0x8086, rev 0x1, 14318180Hz 64bit, 4 timers, legacy route Jan 31 18:24:11 chimney kernel: hpet0: t0: irqs 0x00f00000 (0), 64bit, periodic Jan 31 18:24:11 chimney kernel: hpet0: t1: irqs 0x00f00000 (0) Jan 31 18:24:11 chimney kernel: hpet0: t2: irqs 0x00f00800 (0) Jan 31 18:24:11 chimney kernel: hpet0: t3: irqs 0x00f01000 (0) Jan 31 18:24:11 chimney kernel: Timecounter "HPET" frequency 14318180 Hz quality 950 Jan 31 18:24:11 chimney kernel: ioapic0: routing intpin 20 (PCI IRQ 20) to lapic 0 vector 88 Jan 31 18:24:11 chimney kernel: Event timer "HPET" frequency 14318180 Hz quality 450 Jan 31 18:24:11 chimney kernel: Event timer "HPET1" frequency 14318180 Hz quality 440 Jan 31 18:24:11 chimney kernel: Event timer "HPET2" frequency 14318180 Hz quality 440 Jan 31 18:24:11 chimney kernel: Event timer "HPET3" frequency 14318180 Hz quality 440 Jan 31 18:24:11 chimney kernel: qpi0: on motherboard Jan 31 18:24:11 chimney kernel: pcib14: pcibus 255 on qpi0 Jan 31 18:24:11 chimney kernel: pci255: on pcib14 Jan 31 18:24:11 chimney kernel: pci255: domain=0, physical bus=255 Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c40, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=0, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c01, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=0, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c10, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=2, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c11, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=2, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c14, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=2, func=4 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c15, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=2, func=5 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c18, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=3, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c19, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=3, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c1a, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=3, func=2 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c1c, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=3, func=4 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c20, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=4, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c21, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=4, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c22, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=4, func=2 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c23, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=4, func=3 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c28, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=5, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c29, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=5, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c2a, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=5, func=2 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c2b, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=5, func=3 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c30, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=6, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c31, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=6, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c32, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=6, func=2 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c33, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=255, slot=6, func=3 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: pcib15: pcibus 254 on qpi0 Jan 31 18:24:11 chimney kernel: pci254: on pcib15 Jan 31 18:24:11 chimney kernel: pci254: domain=0, physical bus=254 Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c40, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=0, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c01, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=0, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c10, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=2, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c11, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=2, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c14, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=2, func=4 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c15, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=2, func=5 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c18, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=3, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c19, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=3, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c1a, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=3, func=2 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c1c, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=3, func=4 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c20, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=4, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c21, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=4, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c22, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=4, func=2 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c23, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=4, func=3 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c28, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=5, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c29, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=5, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c2a, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=5, func=2 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c2b, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=5, func=3 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c30, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=6, func=0 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c31, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=6, func=1 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c32, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=6, func=2 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: found-> vendor=0x8086, dev=0x2c33, revid=0x05 Jan 31 18:24:11 chimney kernel: domain=0, bus=254, slot=6, func=3 Jan 31 18:24:11 chimney kernel: class=06-00-00, hdrtype=0x00, mfdev=1 Jan 31 18:24:11 chimney kernel: cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords) Jan 31 18:24:11 chimney kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) Jan 31 18:24:11 chimney kernel: acpi0: wakeup code va 0xffffff827502c000 pa 0x4000 Jan 31 18:24:11 chimney kernel: ex_isa_identify() Jan 31 18:24:11 chimney kernel: ahc_isa_probe 0: ioport 0xc00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 1: ioport 0x1c00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 2: ioport 0x2c00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 3: ioport 0x3c00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 4: ioport 0x4c00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 5: ioport 0x5c00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 6: ioport 0x6c00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 7: ioport 0x7c00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 8: ioport 0x8c00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 9: ioport 0x9c00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 10: ioport 0xac00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 11: ioport 0xbc00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 12: ioport 0xcc00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 13: ioport 0xdc00 alloc failed Jan 31 18:24:11 chimney kernel: ahc_isa_probe 14: ioport 0xec00 alloc failed Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa0000-0xa07ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa0800-0xa0fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa1000-0xa17ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa1800-0xa1fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa2000-0xa27ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa2800-0xa2fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa3000-0xa37ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa3800-0xa3fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa4000-0xa47ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa4800-0xa4fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa5000-0xa57ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa5800-0xa5fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa6000-0xa67ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa6800-0xa6fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa7000-0xa77ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa7800-0xa7fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa8000-0xa87ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa8800-0xa8fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa9000-0xa97ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa9800-0xa9fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xaa000-0xaa7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xaa800-0xaafff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xab000-0xab7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xab800-0xabfff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xac000-0xac7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xac800-0xacfff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xad000-0xad7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xad800-0xadfff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xae000-0xae7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xae800-0xaefff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xaf000-0xaf7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xaf800-0xaffff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb0000-0xb07ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb0800-0xb0fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb1000-0xb17ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb1800-0xb1fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb2000-0xb27ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb2800-0xb2fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb3000-0xb37ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb3800-0xb3fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb4000-0xb47ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb4800-0xb4fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb5000-0xb57ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb5800-0xb5fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb6000-0xb67ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb6800-0xb6fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb7000-0xb77ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb7800-0xb7fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb8000-0xb87ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb8800-0xb8fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb9000-0xb97ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xb9800-0xb9fff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xba000-0xba7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xba800-0xbafff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xbb000-0xbb7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xbb800-0xbbfff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xbc000-0xbc7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xbc800-0xbcfff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xbd000-0xbd7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xbd800-0xbdfff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xbe000-0xbe7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xbe800-0xbefff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xbf000-0xbf7ff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xbf800-0xbffff) for rid 0 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd0000-0xd07ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd0800-0xd0fff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd1000-0xd17ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd1800-0xd1fff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd2000-0xd27ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd2800-0xd2fff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd3000-0xd37ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd3800-0xd3fff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd4000-0xd47ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd4800-0xd4fff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd5000-0xd57ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd5800-0xd5fff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd6000-0xd67ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd6800-0xd6fff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd7000-0xd77ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd7800-0xd7fff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd8000-0xd87ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd8800-0xd8fff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd9000-0xd97ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xd9800-0xd9fff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xda000-0xda7ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xda800-0xdafff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xdb000-0xdb7ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xdb800-0xdbfff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xdc000-0xdc7ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xdc800-0xdcfff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xdd000-0xdd7ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xdd800-0xddfff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xde000-0xde7ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xde800-0xdefff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xdf000-0xdf7ff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xdf800-0xdffff) for rid 2 of orm0 Jan 31 18:24:11 chimney kernel: isa_probe_children: disabling PnP devices Jan 31 18:24:11 chimney kernel: atrtc: atrtc0 already exists; skipping it Jan 31 18:24:11 chimney kernel: attimer: attimer0 already exists; skipping it Jan 31 18:24:11 chimney kernel: sc: sc0 already exists; skipping it Jan 31 18:24:11 chimney kernel: uart: uart1 already exists; skipping it Jan 31 18:24:11 chimney kernel: isa_probe_children: probing non-PnP devices Jan 31 18:24:11 chimney kernel: orm0: at iomem 0xc0000-0xc7fff,0xcb000-0xcefff on isa0 Jan 31 18:24:11 chimney kernel: sc0: at flags 0x100 on isa0 Jan 31 18:24:11 chimney kernel: sc0: VGA <16 virtual consoles, flags=0x300> Jan 31 18:24:11 chimney kernel: sc0: fb0, kbd1, terminal emulator: scteken (teken terminal) Jan 31 18:24:11 chimney kernel: vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 4 (0x3c0-0x3df) for rid 0 of vga0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 3 (0xa0000-0xbffff) for rid 0 of vga0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 4 (0x60-0x60) for rid 0 of atkbdc0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 4 (0x64-0x64) for rid 1 of atkbdc0 Jan 31 18:24:11 chimney kernel: atkbdc0: at port 0x60,0x64 on isa0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 4 (0x60-0x60) for rid 0 of atkbdc0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 4 (0x64-0x64) for rid 1 of atkbdc0 Jan 31 18:24:11 chimney kernel: atkbd0: irq 1 on atkbdc0 Jan 31 18:24:11 chimney kernel: kbd0 at atkbd0 Jan 31 18:24:11 chimney kernel: kbd0: atkbd0, generic (0), config:0x0, flags:0x3f0000 Jan 31 18:24:11 chimney kernel: ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 0 vector 89 Jan 31 18:24:11 chimney kernel: atkbd0: [GIANT-LOCKED] Jan 31 18:24:11 chimney kernel: psm0: unable to allocate IRQ Jan 31 18:24:11 chimney kernel: pcib0: allocated type 4 (0x3f0-0x3f5) for rid 0 of fdc0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 4 (0x3f7-0x3f7) for rid 1 of fdc0 Jan 31 18:24:11 chimney kernel: fdc0 failed to probe at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 Jan 31 18:24:11 chimney kernel: ppc0: cannot reserve I/O port range Jan 31 18:24:11 chimney kernel: ppc0: failed to probe at irq 7 on isa0 Jan 31 18:24:11 chimney kernel: pcib0: allocated type 4 (0x3f8-0x3ff) for rid 0 of uart0 Jan 31 18:24:11 chimney kernel: uart0: failed to probe at port 0x3f8-0x3ff irq 4 on isa0 Jan 31 18:24:11 chimney kernel: isa_probe_children: probing PnP devices Jan 31 18:24:11 chimney kernel: est0: on cpu0 Jan 31 18:24:11 chimney kernel: p4tcc0: on cpu0 Jan 31 18:24:11 chimney kernel: est1: on cpu1 Jan 31 18:24:11 chimney kernel: p4tcc1: on cpu1 Jan 31 18:24:11 chimney kernel: est2: on cpu2 Jan 31 18:24:11 chimney kernel: p4tcc2: on cpu2 Jan 31 18:24:11 chimney kernel: est3: on cpu3 Jan 31 18:24:11 chimney kernel: p4tcc3: on cpu3 Jan 31 18:24:11 chimney kernel: est4: on cpu4 Jan 31 18:24:11 chimney kernel: p4tcc4: on cpu4 Jan 31 18:24:11 chimney kernel: est5: on cpu5 Jan 31 18:24:11 chimney kernel: p4tcc5: on cpu5 Jan 31 18:24:11 chimney kernel: est6: on cpu6 Jan 31 18:24:11 chimney kernel: p4tcc6: on cpu6 Jan 31 18:24:11 chimney kernel: est7: on cpu7 Jan 31 18:24:11 chimney kernel: p4tcc7: on cpu7 Jan 31 18:24:11 chimney kernel: Device configuration finished. Jan 31 18:24:11 chimney kernel: procfs registered Jan 31 18:24:11 chimney kernel: Timecounters tick every 1.000 msec Jan 31 18:24:11 chimney kernel: vlan: initialized, using hash tables with chaining Jan 31 18:24:11 chimney kernel: lo0: bpf attached Jan 31 18:24:11 chimney kernel: hptrr: no controller detected. Jan 31 18:24:11 chimney kernel: usbus0: 12Mbps Full Speed USB v1.0 Jan 31 18:24:11 chimney kernel: usbus1: 12Mbps Full Speed USB v1.0 Jan 31 18:24:11 chimney kernel: usbus2: 480Mbps High Speed USB v2.0 Jan 31 18:24:11 chimney kernel: siisch0: SIIS reset... Jan 31 18:24:11 chimney kernel: siisch0: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: siisch0: SIIS reset done: devices=00000001 Jan 31 18:24:11 chimney kernel: siisch1: SIIS reset... Jan 31 18:24:11 chimney kernel: siisch1: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: siisch1: SIIS reset done: devices=00000001 Jan 31 18:24:11 chimney kernel: siisch2: SIIS reset... Jan 31 18:24:11 chimney kernel: siisch2: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: siisch2: SIIS reset done: devices=00000001 Jan 31 18:24:11 chimney kernel: siisch3: SIIS reset... Jan 31 18:24:11 chimney kernel: siisch3: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: siisch3: SIIS reset done: devices=00000001 Jan 31 18:24:11 chimney kernel: ahcich0: AHCI reset... Jan 31 18:24:11 chimney kernel: ahcich0: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: ugen0.1: at usbus0 Jan 31 18:24:11 chimney kernel: uhub0: on usbus0 Jan 31 18:24:11 chimney kernel: ugen1.1: at usbus1 Jan 31 18:24:11 chimney kernel: uhub1: on usbus1 Jan 31 18:24:11 chimney kernel: ugen2.1: at usbus2 Jan 31 18:24:11 chimney kernel: uhub2: on usbus2 Jan 31 18:24:11 chimney kernel: ahcich0: AHCI reset: device found Jan 31 18:24:11 chimney kernel: ahcich0: AHCI reset: device ready after 0ms Jan 31 18:24:11 chimney kernel: (aprobe4:ahcich0:0:0:0): SIGNATURE: 0000 Jan 31 18:24:11 chimney kernel: ahcich1: AHCI reset... Jan 31 18:24:11 chimney kernel: ahcich1: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: ahcich1: AHCI reset: device found Jan 31 18:24:11 chimney kernel: ahcich1: AHCI reset: device ready after 0ms Jan 31 18:24:11 chimney kernel: (aprobe5:ahcich1:0:0:0): SIGNATURE: 0000 Jan 31 18:24:11 chimney kernel: ahcich2: AHCI reset... Jan 31 18:24:11 chimney kernel: ahcich2: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: ahcich2: AHCI reset: device found Jan 31 18:24:11 chimney kernel: ahcich3: AHCI reset... Jan 31 18:24:11 chimney kernel: ahcich3: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: ahcich3: AHCI reset: device found Jan 31 18:24:11 chimney kernel: ahcich4: AHCI reset... Jan 31 18:24:11 chimney kernel: ahcich4: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: ahcich4: AHCI reset: device found Jan 31 18:24:11 chimney kernel: ahcich5: AHCI reset... Jan 31 18:24:11 chimney kernel: ahcich5: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: ahcich5: AHCI reset: device found Jan 31 18:24:11 chimney kernel: siisch4: SIIS reset... Jan 31 18:24:11 chimney kernel: siisch4: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: siisch4: SIIS reset done: devices=00000001 Jan 31 18:24:11 chimney kernel: siisch5: SIIS reset... Jan 31 18:24:11 chimney kernel: siisch5: SATA connect time=100us status=00000123 Jan 31 18:24:11 chimney kernel: siisch5: SIIS reset done: devices=00000001 Jan 31 18:24:11 chimney kernel: ahcich2: AHCI reset: device ready after 100ms Jan 31 18:24:11 chimney kernel: (aprobe4:ahcich2:0:0:0): SIGNATURE: 0000 Jan 31 18:24:11 chimney kernel: ahcich3: AHCI reset: device ready after 100ms Jan 31 18:24:11 chimney kernel: (aprobe5:ahcich3:0:0:0): SIGNATURE: 0000 Jan 31 18:24:11 chimney kernel: ahcich4: AHCI reset: device ready after 100ms Jan 31 18:24:11 chimney kernel: (aprobe6:ahcich4:0:0:0): SIGNATURE: 0000 Jan 31 18:24:11 chimney kernel: ahcich5: AHCI reset: device ready after 100ms Jan 31 18:24:11 chimney kernel: (aprobe7:ahcich5:0:0:0): SIGNATURE: 0000 Jan 31 18:24:11 chimney kernel: uhub0: 2 ports with 2 removable, self powered Jan 31 18:24:11 chimney kernel: uhub1: 2 ports with 2 removable, self powered Jan 31 18:24:11 chimney kernel: uhub2: 4 ports with 4 removable, self powered Jan 31 18:24:11 chimney kernel: (probe253:mpt2:0:1:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe253:mpt2:0:1:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe253:mpt2:0:1:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe253:mpt2:0:1:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe253:mpt2:0:1:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe253:mpt2:0:1:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe2:mpt0:0:2:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe2:mpt0:0:2:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe2:mpt0:0:2:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe2:mpt0:0:2:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe2:mpt0:0:2:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe2:mpt0:0:2:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: ugen0.2: at usbus0 Jan 31 18:24:11 chimney kernel: (probe255:mpt2:0:3:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe255:mpt2:0:3:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe255:mpt2:0:3:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe255:mpt2:0:3:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe255:mpt2:0:3:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe255:mpt2:0:3:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe257:mpt2:0:5:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe257:mpt2:0:5:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe257:mpt2:0:5:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe257:mpt2:0:5:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe257:mpt2:0:5:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe257:mpt2:0:5:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe1:mpt0:0:1:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe1:mpt0:0:1:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe1:mpt0:0:1:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe1:mpt0:0:1:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe1:mpt0:0:1:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe1:mpt0:0:1:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe5:mpt0:0:5:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe5:mpt0:0:5:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe5:mpt0:0:5:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe5:mpt0:0:5:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe5:mpt0:0:5:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe5:mpt0:0:5:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe128:mpt1:0:2:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe128:mpt1:0:2:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe128:mpt1:0:2:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe128:mpt1:0:2:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe128:mpt1:0:2:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe128:mpt1:0:2:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe254:mpt2:0:2:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe254:mpt2:0:2:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe254:mpt2:0:2:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe254:mpt2:0:2:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe254:mpt2:0:2:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe254:mpt2:0:2:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe258:mpt2:0:6:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe258:mpt2:0:6:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe258:mpt2:0:6:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe258:mpt2:0:6:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe258:mpt2:0:6:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe258:mpt2:0:6:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe259:mpt2:0:7:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe259:mpt2:0:7:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe259:mpt2:0:7:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe259:mpt2:0:7:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe259:mpt2:0:7:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe259:mpt2:0:7:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe3:mpt0:0:3:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe3:mpt0:0:3:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe3:mpt0:0:3:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe3:mpt0:0:3:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe3:mpt0:0:3:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe3:mpt0:0:3:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe6:mpt0:0:6:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe6:mpt0:0:6:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe6:mpt0:0:6:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe6:mpt0:0:6:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe6:mpt0:0:6:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe6:mpt0:0:6:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe0:mpt0:0:0:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe0:mpt0:0:0:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe0:mpt0:0:0:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe0:mpt0:0:0:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe0:mpt0:0:0:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe0:mpt0:0:0:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe7:mpt0:0:7:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe7:mpt0:0:7:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe7:mpt0:0:7:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe7:mpt0:0:7:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe7:mpt0:0:7:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe7:mpt0:0:7:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe4:mpt0:0:4:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe4:mpt0:0:4:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe4:mpt0:0:4:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe4:mpt0:0:4:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe4:mpt0:0:4:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe4:mpt0:0:4:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe129:mpt1:0:3:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe129:mpt1:0:3:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe129:mpt1:0:3:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe129:mpt1:0:3:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe129:mpt1:0:3:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe129:mpt1:0:3:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe131:mpt1:0:5:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe131:mpt1:0:5:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe131:mpt1:0:5:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe131:mpt1:0:5:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe131:mpt1:0:5:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe131:mpt1:0:5:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe126:mpt1:0:0:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe126:mpt1:0:0:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe126:mpt1:0:0:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe126:mpt1:0:0:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe126:mpt1:0:0:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe126:mpt1:0:0:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe130:mpt1:0:4:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe130:mpt1:0:4:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe130:mpt1:0:4:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe130:mpt1:0:4:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe130:mpt1:0:4:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe130:mpt1:0:4:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe127:mpt1:0:1:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe127:mpt1:0:1:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe127:mpt1:0:1:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe127:mpt1:0:1:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe127:mpt1:0:1:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe127:mpt1:0:1:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe133:mpt1:0:7:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe133:mpt1:0:7:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe133:mpt1:0:7:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe133:mpt1:0:7:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe133:mpt1:0:7:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe133:mpt1:0:7:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: (probe132:mpt1:0:6:0): SCSI status error Jan 31 18:24:11 chimney kernel: (probe132:mpt1:0:6:0): MODE SENSE(6). CDB: 1a 0 a 0 14 0 Jan 31 18:24:11 chimney kernel: (probe132:mpt1:0:6:0): CAM status: SCSI Status Error Jan 31 18:24:11 chimney kernel: (probe132:mpt1:0:6:0): SCSI status: Check Condition Jan 31 18:24:11 chimney kernel: (probe132:mpt1:0:6:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Jan 31 18:24:11 chimney kernel: (probe132:mpt1:0:6:0): Retrying command (per sense data) Jan 31 18:24:11 chimney kernel: ukbd0: on usbus0 Jan 31 18:24:11 chimney kernel: kbd2 at ukbd0 Jan 31 18:24:11 chimney kernel: kbd2: ukbd0, generic (0), config:0x0, flags:0x3d0000 Jan 31 18:24:11 chimney kernel: uhid0: on usbus0 Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:15:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:15:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:15:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:15:0): ATA status: 50 (DRDY SERV ) Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:15:0): RES: 50 00 01 69 96 00 00 00 00 01 00 Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:15:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:15:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:15:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:15:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:15:0): ATA status: 50 (DRDY SERV ) Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:15:0): RES: 50 00 01 69 96 00 00 00 00 01 00 Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:15:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:15:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:15:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:15:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:15:0): ATA status: 50 (DRDY SERV ) Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:15:0): RES: 50 00 01 69 96 00 00 00 00 01 00 Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:15:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:15:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:15:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:15:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:15:0): ATA status: 50 (DRDY SERV ) Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:15:0): RES: 50 00 01 69 96 00 00 00 00 01 00 Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:15:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: (aprobe8:siisch4:0:15:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe8:siisch4:0:15:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe8:siisch4:0:15:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe8:siisch4:0:15:0): ATA status: 50 (DRDY SERV ) Jan 31 18:24:11 chimney kernel: (aprobe8:siisch4:0:15:0): RES: 50 00 01 69 96 00 00 00 00 01 00 Jan 31 18:24:11 chimney kernel: (aprobe8:siisch4:0:15:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: (aprobe9:siisch5:0:15:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe9:siisch5:0:15:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe9:siisch5:0:15:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe9:siisch5:0:15:0): ATA status: 50 (DRDY SERV ) Jan 31 18:24:11 chimney kernel: (aprobe9:siisch5:0:15:0): RES: 50 00 01 69 96 00 00 00 00 01 00 Jan 31 18:24:11 chimney kernel: (aprobe9:siisch5:0:15:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: siisch0: port is not ready (timeout 1000ms) status = 001f0000 Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:0:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:0:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:0:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:0:0): ATA status: 00 () Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:0:0): RES: 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe0:siisch0:0:0:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: siisch1: port is not ready (timeout 1000ms) status = 001f0000 Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:0:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:0:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:0:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:0:0): ATA status: 00 () Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:0:0): RES: 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe1:siisch1:0:0:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: siisch2: port is not ready (timeout 1000ms) status = 001f0000 Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:0:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:0:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:0:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:0:0): ATA status: 00 () Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:0:0): RES: 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe2:siisch2:0:0:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: siisch3: port is not ready (timeout 1000ms) status = 001f0000 Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:0:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:0:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:0:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:0:0): ATA status: 00 () Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:0:0): RES: 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe3:siisch3:0:0:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: siisch4: port is not ready (timeout 1000ms) status = 001f0000 Jan 31 18:24:11 chimney kernel: (aprobe4:siisch4:0:0:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe4:siisch4:0:0:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe4:siisch4:0:0:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe4:siisch4:0:0:0): ATA status: 00 () Jan 31 18:24:11 chimney kernel: (aprobe4:siisch4:0:0:0): RES: 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe4:siisch4:0:0:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: siisch5: port is not ready (timeout 1000ms) status = 001f0000 Jan 31 18:24:11 chimney kernel: (aprobe5:siisch5:0:0:0): ATA status error Jan 31 18:24:11 chimney kernel: (aprobe5:siisch5:0:0:0): SOFT_RESET. ACB: 00 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe5:siisch5:0:0:0): CAM status: ATA Status Error Jan 31 18:24:11 chimney kernel: (aprobe5:siisch5:0:0:0): ATA status: 00 () Jan 31 18:24:11 chimney kernel: (aprobe5:siisch5:0:0:0): RES: 00 00 00 00 00 00 00 00 00 00 00 Jan 31 18:24:11 chimney kernel: (aprobe5:siisch5:0:0:0): Error 5, Retries exhausted Jan 31 18:24:11 chimney kernel: pass0 at ahcich0 bus 0 scbus4 target 0 lun 0 Jan 31 18:24:11 chimney kernel: pass0: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: pass0: Serial Number UDEWGZT6U5Y88410Z35I Jan 31 18:24:11 chimney kernel: pass0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 512bytes) Jan 31 18:24:11 chimney kernel: pass0: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass1 at ahcich1 bus 0 scbus5 target 0 lun 0 Jan 31 18:24:11 chimney kernel: pass1: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: pass1: Serial Number K245ON857FXQCOSU40HX Jan 31 18:24:11 chimney kernel: pass1: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 512bytes) Jan 31 18:24:11 chimney kernel: pass1: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass2 at ahcich2 bus 0 scbus6 target 0 lun 0 Jan 31 18:24:11 chimney kernel: pass2: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: pass2: Serial Number 9VS1EXWL Jan 31 18:24:11 chimney kernel: pass2: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) Jan 31 18:24:11 chimney kernel: pass2: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass3 at ahcich3 bus 0 scbus7 target 0 lun 0 Jan 31 18:24:11 chimney kernel: pass3: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: pass3: Serial Number 9VS1EN7E Jan 31 18:24:11 chimney kernel: pass3: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) Jan 31 18:24:11 chimney kernel: pass3: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass4 at ahcich4 bus 0 scbus8 target 0 lun 0 Jan 31 18:24:11 chimney kernel: pass4: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: pass4: Serial Number 9VS1GS0H Jan 31 18:24:11 chimney kernel: pass4: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) Jan 31 18:24:11 chimney kernel: pass4: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass5 at ahcich5 bus 0 scbus9 target 0 lun 0 Jan 31 18:24:11 chimney kernel: pass5: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: pass5: Serial Number 9VS1GWA3 Jan 31 18:24:11 chimney kernel: pass5: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) Jan 31 18:24:11 chimney kernel: pass5: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass6 at mpt0 bus 0 scbus12 target 0 lun 0 Jan 31 18:24:11 chimney kernel: pass6: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass6: Serial Number 9VS1E2QD Jan 31 18:24:11 chimney kernel: pass6: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass6: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass7 at mpt0 bus 0 scbus12 target 1 lun 0 Jan 31 18:24:11 chimney kernel: pass7: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass7: Serial Number 9VS1HA2R Jan 31 18:24:11 chimney kernel: pass7: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass7: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass8 at mpt0 bus 0 scbus12 target 2 lun 0 Jan 31 18:24:11 chimney kernel: pass8: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass8: Serial Number 9VS1GZ1G Jan 31 18:24:11 chimney kernel: pass8: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass8: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass9 at mpt0 bus 0 scbus12 target 3 lun 0 Jan 31 18:24:11 chimney kernel: pass9: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass9: Serial Number 9VS1H8BQ Jan 31 18:24:11 chimney kernel: pass9: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass9: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass10 at mpt0 bus 0 scbus12 target 4 lun 0 Jan 31 18:24:11 chimney kernel: pass10: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass10: Serial Number 9VS1HBEM Jan 31 18:24:11 chimney kernel: pass10: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass10: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass11 at mpt0 bus 0 scbus12 target 5 lun 0 Jan 31 18:24:11 chimney kernel: pass11: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass11: Serial Number 9VS1J267 Jan 31 18:24:11 chimney kernel: pass11: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass11: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass12 at mpt0 bus 0 scbus12 target 6 lun 0 Jan 31 18:24:11 chimney kernel: pass12: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass12: Serial Number 9VS1HBDK Jan 31 18:24:11 chimney kernel: pass12: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass12: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass13 at mpt0 bus 0 scbus12 target 7 lun 0 Jan 31 18:24:11 chimney kernel: pass13: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass13: Serial Number 9VS1CY58 Jan 31 18:24:11 chimney kernel: pass13: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass13: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass14 at mpt1 bus 0 scbus13 target 0 lun 0 Jan 31 18:24:11 chimney kernel: pass14: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass14: Serial Number S13UJ1NQ217081 Jan 31 18:24:11 chimney kernel: pass14: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass14: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass15 at mpt1 bus 0 scbus13 target 1 lun 0 Jan 31 18:24:11 chimney kernel: pass15: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass15: Serial Number S13UJ1NQ217242 Jan 31 18:24:11 chimney kernel: pass15: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass15: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass16 at mpt1 bus 0 scbus13 target 2 lun 0 Jan 31 18:24:11 chimney kernel: pass16: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass16: Serial Number S13UJ1NQ217079 Jan 31 18:24:11 chimney kernel: pass16: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass16: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass17 at mpt1 bus 0 scbus13 target 3 lun 0 Jan 31 18:24:11 chimney kernel: pass17: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass17: Serial Number S13UJ1NQ217245 Jan 31 18:24:11 chimney kernel: pass17: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass17: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass18 at mpt1 bus 0 scbus13 target 4 lun 0 Jan 31 18:24:11 chimney kernel: pass18: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass18: Serial Number S13UJ1NQ217080 Jan 31 18:24:11 chimney kernel: pass18: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass18: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass19 at mpt1 bus 0 scbus13 target 5 lun 0 Jan 31 18:24:11 chimney kernel: pass19: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass19: Serial Number S13UJ1NQ217238 Jan 31 18:24:11 chimney kernel: pass19: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass19: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass20 at mpt1 bus 0 scbus13 target 6 lun 0 Jan 31 18:24:11 chimney kernel: pass20: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass20: Serial Number S13UJ1NQ217239 Jan 31 18:24:11 chimney kernel: pass20: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass20: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass21 at mpt1 bus 0 scbus13 target 7 lun 0 Jan 31 18:24:11 chimney kernel: pass21: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass21: Serial Number S13UJ1NQ217247 Jan 31 18:24:11 chimney kernel: pass21: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass21: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass22 at mpt2 bus 0 scbus14 target 1 lun 0 Jan 31 18:24:11 chimney kernel: pass22: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass22: Serial Number N7QHVJIM3O9N000D3B70 Jan 31 18:24:11 chimney kernel: pass22: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass22: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass23 at mpt2 bus 0 scbus14 target 2 lun 0 Jan 31 18:24:11 chimney kernel: pass23: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass23: Serial Number 9VS1EQJ7 Jan 31 18:24:11 chimney kernel: pass23: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass23: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass24 at mpt2 bus 0 scbus14 target 3 lun 0 Jan 31 18:24:11 chimney kernel: pass24: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass24: Serial Number 9VS1E1B8 Jan 31 18:24:11 chimney kernel: pass24: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass24: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass25 at mpt2 bus 0 scbus14 target 5 lun 0 Jan 31 18:24:11 chimney kernel: pass25: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass25: Serial Number G8F22NRWHE7O81093KR7 Jan 31 18:24:11 chimney kernel: pass25: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass25: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass26 at mpt2 bus 0 scbus14 target 6 lun 0 Jan 31 18:24:11 chimney kernel: pass26: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass26: Serial Number 9VS1FW12 Jan 31 18:24:11 chimney kernel: pass26: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass26: Command Queueing enabled Jan 31 18:24:11 chimney kernel: pass27 at mpt2 bus 0 scbus14 target 7 lun 0 Jan 31 18:24:11 chimney kernel: pass27: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: pass27: Serial Number 9VS1FWNS Jan 31 18:24:11 chimney kernel: pass27: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: pass27: Command Queueing enabled Jan 31 18:24:11 chimney kernel: ada0 at ahcich0 bus 0 scbus4 target 0 lun 0 Jan 31 18:24:11 chimney kernel: ada0: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: ada0: Serial Number UDEWGZT6U5Y88410Z35I Jan 31 18:24:11 chimney kernel: ada0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 512bytes) Jan 31 18:24:11 chimney kernel: ada0: Command Queueing enabled Jan 31 18:24:11 chimney kernel: ada0: 30533MB (62533296 512 byte sectors: 16H 63S/T 16383C) Jan 31 18:24:11 chimney kernel: ada0: Previously was known as ad12 Jan 31 18:24:11 chimney kernel: ada1 at ahcich1 bus 0 scbus5 target 0 lun 0 Jan 31 18:24:11 chimney kernel: ada1: GEOM: new disk ada0 Jan 31 18:24:11 chimney kernel: GEOM: new disk ada1 Jan 31 18:24:11 chimney kernel: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: ada1: Serial Number K245ON857FXQCOSU40HX Jan 31 18:24:11 chimney kernel: ada1: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 512bytes) Jan 31 18:24:11 chimney kernel: ada1: Command Queueing enabled Jan 31 18:24:11 chimney kernel: ada1: 30533MB (62533296 512 byte sectors: 16H 63S/T 16383C) Jan 31 18:24:11 chimney kernel: ada1: Previously was known as ad14 Jan 31 18:24:11 chimney kernel: ada2 at ahcich2 bus 0 scbus6 target 0 lun 0 Jan 31 18:24:11 chimney kernel: ada2: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: ada2: Serial Number 9VS1EXWL Jan 31 18:24:11 chimney kernel: ada2: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) Jan 31 18:24:11 chimney kernel: ada2: Command Queueing enabled Jan 31 18:24:11 chimney kernel: ada2: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) Jan 31 18:24:11 chimney kernel: ada2: Previously was known as ad16 Jan 31 18:24:11 chimney kernel: ada3 at ahcich3 bus 0 scbus7 target 0 lun 0 Jan 31 18:24:11 chimney kernel: ada3: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: ada3: Serial Number 9VS1EN7E Jan 31 18:24:11 chimney kernel: ada3: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) Jan 31 18:24:11 chimney kernel: ada3: Command Queueing enabled Jan 31 18:24:11 chimney kernel: ada3: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) Jan 31 18:24:11 chimney kernel: ada3: Previously was known as ad18 Jan 31 18:24:11 chimney kernel: ada4 at ahcich4 bus 0 scbus8 target 0 lun 0 Jan 31 18:24:11 chimney kernel: ada4: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: ada4: Serial Number 9VS1GS0H Jan 31 18:24:11 chimney kernel: ada4: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) Jan 31 18:24:11 chimney kernel: ada4: Command Queueing enabled Jan 31 18:24:11 chimney kernel: ada4: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) Jan 31 18:24:11 chimney kernel: ada4: Previously was known as ad20 Jan 31 18:24:11 chimney kernel: ada5 at ahcich5 bus 0 scbus9 target 0 lun 0 Jan 31 18:24:11 chimney kernel: ada5: ATA-8 SATA 2.x device Jan 31 18:24:11 chimney kernel: ada5: Serial Number 9VS1GWA3 Jan 31 18:24:11 chimney kernel: ada5: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) Jan 31 18:24:11 chimney kernel: ada5: Command Queueing enabled Jan 31 18:24:11 chimney kernel: ada5: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) Jan 31 18:24:11 chimney kernel: ada5: Previously was known as ad22 Jan 31 18:24:11 chimney kernel: da0 at mpt0 bus 0 scbus12 target 0 lun 0 Jan 31 18:24:11 chimney kernel: da0: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da0: Serial Number 9VS1E2QD Jan 31 18:24:11 chimney kernel: da0: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da0: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da0: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: da1 at mpt0 bus 0 scbus12 target 1 lun 0 Jan 31 18:24:11 chimney kernel: da1: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da1: Serial Number 9VS1HA2R Jan 31 18:24:11 chimney kernel: da1: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da1: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da1: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: da2 at mpt0 bus 0 scbus12 target 2 lun 0 Jan 31 18:24:11 chimney kernel: da2: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da2: Serial Number 9VS1GZ1G Jan 31 18:24:11 chimney kernel: da2: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da2: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da2: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: da3 at mpt0 bus 0 scbus12 target 3 lun 0 Jan 31 18:24:11 chimney kernel: da3: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da3: Serial Number 9VS1H8BQ Jan 31 18:24:11 chimney kernel: da3: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da3: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da3: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: da4 at mpt0 bus 0 scbus12 target 4 lun 0 Jan 31 18:24:11 chimney kernel: da4: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da4: Serial Number 9VS1HBEM Jan 31 18:24:11 chimney kernel: da4: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da4: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da4: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: da5 at mpt0 bus 0 scbus12 target 5 lun 0 Jan 31 18:24:11 chimney kernel: da5: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da5: Serial Number 9VS1J267 Jan 31 18:24:11 chimney kernel: da5: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da5: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da5: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: da6 at mpt0 bus 0 scbus12 target 6 lun 0 Jan 31 18:24:11 chimney kernel: da6: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da6: Serial Number 9VS1HBDK Jan 31 18:24:11 chimney kernel: da6: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da6: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da6: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: da7 at mpt0 bus 0 scbus12 target 7 lun 0 Jan 31 18:24:11 chimney kernel: da7: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da7: Serial Number 9VS1CY58 Jan 31 18:24:11 chimney kernel: da7: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da7: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da7: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: da8 at mpt1 bus 0 scbus13 target 0 lun 0 Jan 31 18:24:11 chimney kernel: da8: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da8: Serial Number S13UJ1NQ217081 Jan 31 18:24:11 chimney kernel: da8: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da8: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da8: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 31 18:24:11 chimney kernel: da9 at mpt1 bus 0 scbus13 target 1 lun 0 Jan 31 18:24:11 chimney kernel: da9: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da9: Serial Number S13UJ1NQ217242 Jan 31 18:24:11 chimney kernel: da9: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da9: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da9: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 31 18:24:11 chimney kernel: da10 at mpt1 bus 0 scbus13 target 2 lun 0 Jan 31 18:24:11 chimney kernel: da10: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da10: Serial Number S13UJ1NQ217079 Jan 31 18:24:11 chimney kernel: da10: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da10: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da10: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 31 18:24:11 chimney kernel: da11 at mpt1 bus 0 scbus13 target 3 lun 0 Jan 31 18:24:11 chimney kernel: da11: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da11: Serial Number S13UJ1NQ217245 Jan 31 18:24:11 chimney kernel: da11: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da11: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da11: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 31 18:24:11 chimney kernel: da12 at mpt1 bus 0 scbus13 target 4 lun 0 Jan 31 18:24:11 chimney kernel: da12: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da12: Serial Number S13UJ1NQ217080 Jan 31 18:24:11 chimney kernel: da12: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da12: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da12: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 31 18:24:11 chimney kernel: da13 at mpt1 bus 0 scbus13 target 5 lun 0 Jan 31 18:24:11 chimney kernel: da13: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da13: Serial Number S13UJ1NQ217238 Jan 31 18:24:11 chimney kernel: da13: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da13: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da13: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 31 18:24:11 chimney kernel: da14 at mpt1 bus 0 scbus13 target 6 lun 0 Jan 31 18:24:11 chimney kernel: da14: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da14: Serial Number S13UJ1NQ217239 Jan 31 18:24:11 chimney kernel: da14: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da14: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da14: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 31 18:24:11 chimney kernel: da15 at mpt1 bus 0 scbus13 target 7 lun 0 Jan 31 18:24:11 chimney kernel: da15: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da15: Serial Number S13UJ1NQ217247 Jan 31 18:24:11 chimney kernel: da15: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da15: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da15: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 31 18:24:11 chimney kernel: da16 at mpt2 bus 0 scbus14 target 1 lun 0 Jan 31 18:24:11 chimney kernel: da16: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da16: Serial Number N7QHVJIM3O9N000D3B70 Jan 31 18:24:11 chimney kernel: da16: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da16: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da16: 30533MB (62533296 512 byte sectors: 255H 63S/T 3892C) Jan 31 18:24:11 chimney kernel: da17 at mpt2 bus 0 scbus14 target 2 lun 0 Jan 31 18:24:11 chimney kernel: da17: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da17: Serial Number 9VS1EQJ7 Jan 31 18:24:11 chimney kernel: da17: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da17: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da17: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: da18 at mpt2 bus 0 scbus14 target 3 lun 0 Jan 31 18:24:11 chimney kernel: da18: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da18: Serial Number 9VS1E1B8 Jan 31 18:24:11 chimney kernel: da18: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da18: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da18: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: da19 at mpt2 bus 0 scbus14 target 5 lun 0 Jan 31 18:24:11 chimney kernel: da19: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da19: Serial Number G8F22NRWHE7O81093KR7 Jan 31 18:24:11 chimney kernel: da19: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da19: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da19: 30533MB (62533296 512 byte sectors: 255H 63S/T 3892C) Jan 31 18:24:11 chimney kernel: da20 at mpt2 bus 0 scbus14 target 6 lun 0 Jan 31 18:24:11 chimney kernel: da20: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da20: Serial Number 9VS1FW12 Jan 31 18:24:11 chimney kernel: da20: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da20: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da20: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: da21 at mpt2 bus 0 scbus14 target 7 lun 0 Jan 31 18:24:11 chimney kernel: da21: Fixed Direct Access SCSI-5 device Jan 31 18:24:11 chimney kernel: da21: Serial Number 9VS1FWNS Jan 31 18:24:11 chimney kernel: da21: 300.000MB/s transfers Jan 31 18:24:11 chimney kernel: da21: Command Queueing enabled Jan 31 18:24:11 chimney kernel: da21: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 31 18:24:11 chimney kernel: lapic2: CMCI unmasked Jan 31 18:24:11 chimney kernel: lapic4: CMCI unmasked Jan 31 18:24:11 chimney kernel: lapic6: CMCI unmasked Jan 31 18:24:11 chimney kernel: lapic20: CMCI unmasked Jan 31 18:24:11 chimney kernel: lapic18: CMCI unmasked Jan 31 18:24:11 chimney kernel: lapic16: CMCI unmasked Jan 31 18:24:11 chimney kernel: lapic22: CMCI unmasked Jan 31 18:24:11 chimney kernel: SMP: AP CPU #1 Launched! Jan 31 18:24:11 chimney kernel: cpu1 AP: Jan 31 18:24:11 chimney kernel: ID: 0x02000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff Jan 31 18:24:11 chimney kernel: lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff Jan 31 18:24:11 chimney kernel: timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 Jan 31 18:24:11 chimney kernel: cmci: 0x000000f2 Jan 31 18:24:11 chimney kernel: SMP: AP CPU #4 Launched! Jan 31 18:24:11 chimney kernel: cpu4 AP: Jan 31 18:24:11 chimney kernel: ID: 0x10000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff Jan 31 18:24:11 chimney kernel: lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff Jan 31 18:24:11 chimney kernel: timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 Jan 31 18:24:11 chimney kernel: cmci: 0x000000f2 Jan 31 18:24:11 chimney kernel: SMP: AP CPU #2 Launched! Jan 31 18:24:11 chimney kernel: cpu2 AP: Jan 31 18:24:11 chimney kernel: ID: 0x04000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff Jan 31 18:24:11 chimney kernel: lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff Jan 31 18:24:11 chimney kernel: timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 Jan 31 18:24:11 chimney kernel: cmci: 0x000000f2 Jan 31 18:24:11 chimney kernel: SMP: AP CPU #7 Launched! Jan 31 18:24:11 chimney kernel: cpu7 AP: Jan 31 18:24:11 chimney kernel: ID: 0x16000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff Jan 31 18:24:11 chimney kernel: lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff Jan 31 18:24:11 chimney kernel: timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 Jan 31 18:24:11 chimney kernel: cmci: 0x000000f2 Jan 31 18:24:11 chimney kernel: SMP: AP CPU #3 Launched! Jan 31 18:24:11 chimney kernel: cpu3 AP: Jan 31 18:24:11 chimney kernel: ID: 0x06000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff Jan 31 18:24:11 chimney kernel: lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff Jan 31 18:24:11 chimney kernel: timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 Jan 31 18:24:11 chimney kernel: cmci: 0x000000f2 Jan 31 18:24:11 chimney kernel: SMP: AP CPU #6 Launched! Jan 31 18:24:11 chimney kernel: cpu6 AP: Jan 31 18:24:11 chimney kernel: ID: 0x14000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff Jan 31 18:24:11 chimney kernel: lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff Jan 31 18:24:11 chimney kernel: timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 Jan 31 18:24:11 chimney kernel: cmci: 0x000000f2 Jan 31 18:24:11 chimney kernel: SMP: AP CPU #5 Launched! Jan 31 18:24:11 chimney kernel: cpu5 AP: Jan 31 18:24:11 chimney kernel: ID: 0x12000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff Jan 31 18:24:11 chimney kernel: lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff Jan 31 18:24:11 chimney kernel: timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 Jan 31 18:24:11 chimney kernel: cmci: 0x000000f2 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 257 to local APIC 2 vector 48 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 258 to local APIC 4 vector 48 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 259 to local APIC 6 vector 48 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 260 to local APIC 16 vector 48 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 261 to local APIC 18 vector 48 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 262 to local APIC 20 vector 48 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 263 to local APIC 22 vector 48 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 266 to local APIC 2 vector 49 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 267 to local APIC 4 vector 49 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 268 to local APIC 6 vector 49 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 269 to local APIC 16 vector 49 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 270 to local APIC 18 vector 49 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 271 to local APIC 20 vector 49 Jan 31 18:24:11 chimney kernel: msi: Assigning MSI-X IRQ 272 to local APIC 22 vector 49 Jan 31 18:24:11 chimney kernel: GEOM: new disk ada2 Jan 31 18:24:11 chimney kernel: GEOM: new disk ada3 Jan 31 18:24:11 chimney kernel: GEOM: new disk ada4 Jan 31 18:24:11 chimney kernel: SMP: failed TSC synchronization test Jan 31 18:24:11 chimney kernel: TSC timecounter discards lower 7 bit(s) Jan 31 18:24:11 chimney kernel: Timecounter "TSC-low" frequency 15586276 Hz quality -100 Jan 31 18:24:11 chimney kernel: GEOM: new disk ada5 Jan 31 18:24:11 chimney kernel: GEOM: new disk da0 Jan 31 18:24:11 chimney kernel: GEOM: new disk da1 Jan 31 18:24:11 chimney kernel: GEOM: new disk da2 Jan 31 18:24:11 chimney kernel: GEOM: new disk da3 Jan 31 18:24:11 chimney kernel: GEOM: new disk da4 Jan 31 18:24:11 chimney kernel: GEOM: new disk da5 Jan 31 18:24:11 chimney kernel: GEOM: new disk da6 Jan 31 18:24:11 chimney kernel: GEOM: new disk da7 Jan 31 18:24:11 chimney kernel: GEOM: new disk da8 Jan 31 18:24:11 chimney kernel: GEOM: new disk da9 Jan 31 18:24:11 chimney kernel: GEOM: new disk da10 Jan 31 18:24:11 chimney kernel: GEOM: new disk da11 Jan 31 18:24:11 chimney kernel: GEOM: new disk da12 Jan 31 18:24:11 chimney kernel: GEOM: new disk da13 Jan 31 18:24:11 chimney kernel: GEOM: new disk da14 Jan 31 18:24:11 chimney kernel: GEOM: new disk da15 Jan 31 18:24:11 chimney kernel: GEOM: new disk da16 Jan 31 18:24:11 chimney kernel: GEOM: new disk da17 Jan 31 18:24:11 chimney kernel: GEOM: new disk da18 Jan 31 18:24:11 chimney kernel: GEOM: new disk da19 Jan 31 18:24:11 chimney kernel: GEOM: new disk da20 Jan 31 18:24:11 chimney kernel: GEOM: new disk da21 Jan 31 18:24:11 chimney kernel: GEOM: ada2: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: ada3: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: ada4: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: ada5: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da0: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da1: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da2: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da3: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da4: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da5: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da6: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da7: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da17: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da18: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da20: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM: da21: the secondary GPT header is not in the last LBA. Jan 31 18:24:11 chimney kernel: GEOM_PART: partition 1 has end offset beyond last LBA: 62524979 > 62508914 Jan 31 18:24:11 chimney kernel: GEOM_PART: integrity check failed (da16s1, EBR) Jan 31 18:24:11 chimney kernel: GEOM_PART: partition 1 has end offset beyond last LBA: 62524979 > 62508914 Jan 31 18:24:11 chimney kernel: GEOM_PART: integrity check failed (da19s1, EBR) Jan 31 18:24:11 chimney kernel: Trying to mount root from ufs:/dev/ada0s1a [rw]... Jan 31 18:24:11 chimney kernel: start_init: trying /sbin/init Jan 31 18:24:11 chimney kernel: ZFS filesystem version 5 Jan 31 18:24:11 chimney kernel: ZFS storage pool version 28 Jan 31 18:24:11 chimney kernel: IP Filter: v4.1.28 initialized. Default = pass all, Logging = enabled --------------050202040600020906070504 Content-Type: text/plain; name="lastboot82" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="lastboot82" Jan 28 11:19:23 chimney syslogd: kernel boot file is /boot/kernel/kernel Jan 28 11:19:23 chimney kernel: Copyright (c) 1992-2011 The FreeBSD Project. Jan 28 11:19:23 chimney kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Jan 28 11:19:23 chimney kernel: The Regents of the University of California. All rights reserved. Jan 28 11:19:23 chimney kernel: FreeBSD is a registered trademark of The FreeBSD Foundation. Jan 28 11:19:23 chimney kernel: FreeBSD 8.2-RELEASE-p3 #0: Tue Sep 27 18:45:57 UTC 2011 Jan 28 11:19:23 chimney kernel: root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 Jan 28 11:19:23 chimney kernel: Timecounter "i8254" frequency 1193182 Hz quality 0 Jan 28 11:19:23 chimney kernel: CPU: Intel(R) Xeon(R) CPU E5504 @ 2.00GHz (2008.08-MHz K8-class CPU) Jan 28 11:19:23 chimney kernel: Origin = "GenuineIntel" Id = 0x106a5 Family = 6 Model = 1a Stepping = 5 Jan 28 11:19:23 chimney kernel: Features=0xbfebfbff Jan 28 11:19:23 chimney kernel: Features2=0x9ce3bd Jan 28 11:19:23 chimney kernel: AMD Features=0x28100800 Jan 28 11:19:23 chimney kernel: AMD Features2=0x1 Jan 28 11:19:23 chimney kernel: TSC: P-state invariant Jan 28 11:19:23 chimney kernel: real memory = 6446645248 (6148 MB) Jan 28 11:19:23 chimney kernel: avail memory = 6149832704 (5864 MB) Jan 28 11:19:23 chimney kernel: ACPI APIC Table: <081209 APIC2216> Jan 28 11:19:23 chimney kernel: FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs Jan 28 11:19:23 chimney kernel: FreeBSD/SMP: 2 package(s) x 4 core(s) Jan 28 11:19:23 chimney kernel: cpu0 (BSP): APIC ID: 0 Jan 28 11:19:23 chimney kernel: cpu1 (AP): APIC ID: 2 Jan 28 11:19:23 chimney kernel: cpu2 (AP): APIC ID: 4 Jan 28 11:19:23 chimney kernel: cpu3 (AP): APIC ID: 6 Jan 28 11:19:23 chimney kernel: cpu4 (AP): APIC ID: 16 Jan 28 11:19:23 chimney kernel: cpu5 (AP): APIC ID: 18 Jan 28 11:19:23 chimney kernel: cpu6 (AP): APIC ID: 20 Jan 28 11:19:23 chimney kernel: cpu7 (AP): APIC ID: 22 Jan 28 11:19:23 chimney kernel: ioapic0: Changing APIC ID to 1 Jan 28 11:19:23 chimney kernel: ioapic1: Changing APIC ID to 3 Jan 28 11:19:23 chimney kernel: ioapic2: Changing APIC ID to 5 Jan 28 11:19:23 chimney kernel: ioapic0 irqs 0-23 on motherboard Jan 28 11:19:23 chimney kernel: ioapic1 irqs 24-47 on motherboard Jan 28 11:19:23 chimney kernel: ioapic2 irqs 48-71 on motherboard Jan 28 11:19:23 chimney kernel: kbd1 at kbdmux0 Jan 28 11:19:23 chimney kernel: acpi0: on motherboard Jan 28 11:19:23 chimney kernel: acpi0: [ITHREAD] Jan 28 11:19:23 chimney kernel: acpi0: Power Button (fixed) Jan 28 11:19:23 chimney kernel: Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 Jan 28 11:19:23 chimney kernel: acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 Jan 28 11:19:23 chimney kernel: cpu0: on acpi0 Jan 28 11:19:23 chimney kernel: ACPI Warning: Incorrect checksum in table [OEMB] - 0x86, should be 0x84 (20101013/tbutils-354) Jan 28 11:19:23 chimney kernel: cpu1: on acpi0 Jan 28 11:19:23 chimney kernel: cpu2: on acpi0 Jan 28 11:19:23 chimney kernel: cpu3: on acpi0 Jan 28 11:19:23 chimney kernel: cpu4: on acpi0 Jan 28 11:19:23 chimney kernel: cpu5: on acpi0 Jan 28 11:19:23 chimney kernel: cpu6: on acpi0 Jan 28 11:19:23 chimney kernel: cpu7: on acpi0 Jan 28 11:19:23 chimney kernel: pcib0: port 0xcf8-0xcff iomem 0xfed40000-0xfed44fff on acpi0 Jan 28 11:19:23 chimney kernel: pci0: on pcib0 Jan 28 11:19:23 chimney kernel: pcib1: at device 1.0 on pci0 Jan 28 11:19:23 chimney kernel: pci1: on pcib1 Jan 28 11:19:23 chimney kernel: igb0: port 0x8c00-0x8c1f mem 0xf9ee0000-0xf9efffff,0xf9ec0000-0xf9edffff,0xf9ebc000-0xf9ebffff irq 28 at device 0.0 on pci1 Jan 28 11:19:23 chimney kernel: igb0: Using MSIX interrupts with 9 vectors Jan 28 11:19:23 chimney kernel: igb0: [ITHREAD] Jan 28 11:19:23 chimney last message repeated 8 times Jan 28 11:19:23 chimney kernel: igb0: Ethernet address: 00:30:48:9e:58:ec Jan 28 11:19:23 chimney kernel: igb1: port 0x8880-0x889f mem 0xf9e60000-0xf9e7ffff,0xf9e40000-0xf9e5ffff,0xf9e3c000-0xf9e3ffff irq 40 at device 0.1 on pci1 Jan 28 11:19:23 chimney kernel: igb1: Using MSIX interrupts with 9 vectors Jan 28 11:19:23 chimney kernel: igb1: [ITHREAD] Jan 28 11:19:23 chimney last message repeated 8 times Jan 28 11:19:23 chimney kernel: igb1: Ethernet address: 00:30:48:9e:58:ed Jan 28 11:19:23 chimney kernel: pcib2: at device 3.0 on pci0 Jan 28 11:19:23 chimney kernel: pci2: on pcib2 Jan 28 11:19:23 chimney kernel: cxgbc0: mem 0xfadfe000-0xfadfefff,0xfa000000-0xfa7fffff,0xf9ffe000-0xf9ffefff irq 24 at device 0.0 on pci2 Jan 28 11:19:23 chimney kernel: cxgbc0: using MSI-X interrupts (9 vectors) Jan 28 11:19:23 chimney kernel: cxgb0: on cxgbc0 Jan 28 11:19:23 chimney kernel: cxgb0: Ethernet address: 00:07:43:05:e1:a3 Jan 28 11:19:23 chimney kernel: cxgbc0: Firmware Version 7.8.0 Jan 28 11:19:23 chimney kernel: pcib3: at device 5.0 on pci0 Jan 28 11:19:23 chimney kernel: pci3: on pcib3 Jan 28 11:19:23 chimney kernel: siis0: port 0x9c00-0x9c7f mem 0xfaefe000-0xfaefe07f,0xfaef8000-0xfaefbfff irq 26 at device 0.0 on pci3 Jan 28 11:19:23 chimney kernel: siis0: [ITHREAD] Jan 28 11:19:23 chimney kernel: siisch0: at channel 0 on siis0 Jan 28 11:19:23 chimney kernel: siisch0: [ITHREAD] Jan 28 11:19:23 chimney kernel: siisch1: at channel 1 on siis0 Jan 28 11:19:23 chimney kernel: siisch1: [ITHREAD] Jan 28 11:19:23 chimney kernel: pcib4: at device 7.0 on pci0 Jan 28 11:19:23 chimney kernel: pci4: on pcib4 Jan 28 11:19:23 chimney kernel: siis1: port 0xac00-0xac7f mem 0xfaffe000-0xfaffe07f,0xfaff8000-0xfaffbfff irq 30 at device 0.0 on pci4 Jan 28 11:19:23 chimney kernel: siis1: [ITHREAD] Jan 28 11:19:23 chimney kernel: siisch2: at channel 0 on siis1 Jan 28 11:19:23 chimney kernel: siisch2: [ITHREAD] Jan 28 11:19:23 chimney kernel: siisch3: at channel 1 on siis1 Jan 28 11:19:23 chimney kernel: siisch3: [ITHREAD] Jan 28 11:19:23 chimney kernel: pcib5: at device 9.0 on pci0 Jan 28 11:19:23 chimney kernel: pci5: on pcib5 Jan 28 11:19:23 chimney kernel: pci0: at device 20.0 (no driver attached) Jan 28 11:19:23 chimney kernel: pci0: at device 20.1 (no driver attached) Jan 28 11:19:23 chimney kernel: pci0: at device 20.2 (no driver attached) Jan 28 11:19:23 chimney kernel: pci0: at device 20.3 (no driver attached) Jan 28 11:19:23 chimney kernel: pci0: at device 22.0 (no driver attached) Jan 28 11:19:23 chimney kernel: pci0: at device 22.1 (no driver attached) Jan 28 11:19:23 chimney kernel: pci0: at device 22.2 (no driver attached) Jan 28 11:19:23 chimney kernel: pci0: at device 22.3 (no driver attached) Jan 28 11:19:23 chimney kernel: pci0: at device 22.4 (no driver attached) Jan 28 11:19:23 chimney kernel: pci0: at device 22.5 (no driver attached) Jan 28 11:19:23 chimney kernel: pci0: at device 22.6 (no driver attached) Jan 28 11:19:23 chimney kernel: pci0: at device 22.7 (no driver attached) Jan 28 11:19:23 chimney kernel: uhci0: port 0x6c00-0x6c1f irq 23 at device 29.0 on pci0 Jan 28 11:19:23 chimney kernel: uhci0: [ITHREAD] Jan 28 11:19:23 chimney kernel: uhci0: LegSup = 0x2f00 Jan 28 11:19:23 chimney kernel: usbus0: on uhci0 Jan 28 11:19:23 chimney kernel: uhci1: port 0x6880-0x689f irq 19 at device 29.1 on pci0 Jan 28 11:19:23 chimney kernel: uhci1: [ITHREAD] Jan 28 11:19:23 chimney kernel: uhci1: LegSup = 0x2f00 Jan 28 11:19:23 chimney kernel: usbus1: on uhci1 Jan 28 11:19:23 chimney kernel: ehci0: mem 0xf9dfc000-0xf9dfc3ff irq 23 at device 29.7 on pci0 Jan 28 11:19:23 chimney kernel: ehci0: [ITHREAD] Jan 28 11:19:23 chimney kernel: usbus2: EHCI version 1.0 Jan 28 11:19:23 chimney kernel: usbus2: on ehci0 Jan 28 11:19:23 chimney kernel: pcib6: at device 30.0 on pci0 Jan 28 11:19:23 chimney kernel: pci6: on pcib6 Jan 28 11:19:23 chimney kernel: vgapci0: mem 0xf8000000-0xf8ffffff,0xfbefc000-0xfbefffff,0xfb000000-0xfb7fffff irq 16 at device 4.0 on pci6 Jan 28 11:19:23 chimney kernel: isab0: at device 31.0 on pci0 Jan 28 11:19:23 chimney kernel: isa0: on isab0 Jan 28 11:19:23 chimney kernel: atapci0: port 0x6800-0x6807,0x6480-0x6483,0x6400-0x6407,0x6080-0x6083,0x6000-0x601f mem 0xf9dd6000-0xf9dd67ff irq 19 at device 31.2 on pci0 Jan 28 11:19:23 chimney kernel: atapci0: [ITHREAD] Jan 28 11:19:23 chimney kernel: atapci0: AHCI called from vendor specific driver Jan 28 11:19:23 chimney kernel: atapci0: AHCI v1.20 controller with 6 3Gbps ports, PM not supported Jan 28 11:19:23 chimney kernel: ata2: on atapci0 Jan 28 11:19:23 chimney kernel: ata2: [ITHREAD] Jan 28 11:19:23 chimney kernel: ata3: on atapci0 Jan 28 11:19:23 chimney kernel: ata3: [ITHREAD] Jan 28 11:19:23 chimney kernel: ata4: on atapci0 Jan 28 11:19:23 chimney kernel: ata4: [ITHREAD] Jan 28 11:19:23 chimney kernel: ata5: on atapci0 Jan 28 11:19:23 chimney kernel: ata5: [ITHREAD] Jan 28 11:19:23 chimney kernel: ata6: on atapci0 Jan 28 11:19:23 chimney kernel: ata6: [ITHREAD] Jan 28 11:19:23 chimney kernel: ata7: on atapci0 Jan 28 11:19:23 chimney kernel: ata7: [ITHREAD] Jan 28 11:19:23 chimney kernel: pci0: at device 31.3 (no driver attached) Jan 28 11:19:23 chimney kernel: pcib7: on acpi0 Jan 28 11:19:23 chimney kernel: pci128: on pcib7 Jan 28 11:19:23 chimney kernel: pcib8: at device 0.0 on pci128 Jan 28 11:19:23 chimney kernel: pci129: on pcib8 Jan 28 11:19:23 chimney kernel: pcib9: at device 1.0 on pci128 Jan 28 11:19:23 chimney kernel: pci130: on pcib9 Jan 28 11:19:23 chimney kernel: pcib10: at device 3.0 on pci128 Jan 28 11:19:23 chimney kernel: pci131: on pcib10 Jan 28 11:19:23 chimney kernel: siis2: port 0xbc00-0xbc7f mem 0xf73fe000-0xf73fe07f,0xf73f8000-0xf73fbfff irq 48 at device 0.0 on pci131 Jan 28 11:19:23 chimney kernel: siis2: [ITHREAD] Jan 28 11:19:23 chimney kernel: siisch4: at channel 0 on siis2 Jan 28 11:19:23 chimney kernel: siisch4: [ITHREAD] Jan 28 11:19:23 chimney kernel: siisch5: at channel 1 on siis2 Jan 28 11:19:23 chimney kernel: siisch5: [ITHREAD] Jan 28 11:19:23 chimney kernel: pcib11: at device 5.0 on pci128 Jan 28 11:19:23 chimney kernel: pci132: on pcib11 Jan 28 11:19:23 chimney kernel: mpt0: port 0xc000-0xc0ff mem 0xf77fc000-0xf77fffff,0xf77e0000-0xf77effff irq 50 at device 0.0 on pci132 Jan 28 11:19:23 chimney kernel: mpt0: [ITHREAD] Jan 28 11:19:23 chimney kernel: mpt0: MPI Version=1.5.14.0 Jan 28 11:19:23 chimney kernel: pcib12: at device 7.0 on pci128 Jan 28 11:19:23 chimney kernel: pci133: on pcib12 Jan 28 11:19:23 chimney kernel: mpt1: port 0xd000-0xd0ff mem 0xf7bfc000-0xf7bfffff,0xf7be0000-0xf7beffff irq 54 at device 0.0 on pci133 Jan 28 11:19:23 chimney kernel: mpt1: [ITHREAD] Jan 28 11:19:23 chimney kernel: mpt1: MPI Version=1.5.19.0 Jan 28 11:19:23 chimney kernel: pcib13: at device 9.0 on pci128 Jan 28 11:19:23 chimney kernel: pci134: on pcib13 Jan 28 11:19:23 chimney kernel: mpt2: port 0xe000-0xe0ff mem 0xf7ffc000-0xf7ffffff,0xf7fe0000-0xf7feffff irq 56 at device 0.0 on pci134 Jan 28 11:19:23 chimney kernel: mpt2: [ITHREAD] Jan 28 11:19:23 chimney kernel: mpt2: MPI Version=1.5.19.0 Jan 28 11:19:23 chimney kernel: pci128: at device 16.0 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 16.1 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 17.0 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 17.1 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 20.0 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 20.1 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 20.2 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 20.3 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 22.0 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 22.1 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 22.2 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 22.3 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 22.4 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 22.5 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 22.6 (no driver attached) Jan 28 11:19:23 chimney kernel: pci128: at device 22.7 (no driver attached) Jan 28 11:19:23 chimney kernel: acpi_button0: on acpi0 Jan 28 11:19:23 chimney kernel: atrtc0: port 0x70-0x71 irq 8 on acpi0 Jan 28 11:19:23 chimney kernel: uart1: <16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 Jan 28 11:19:23 chimney kernel: uart1: [FILTER] Jan 28 11:19:23 chimney kernel: acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Jan 28 11:19:23 chimney kernel: Timecounter "HPET" frequency 14318180 Hz quality 900 Jan 28 11:19:23 chimney kernel: qpi0: on motherboard Jan 28 11:19:23 chimney kernel: pcib14: pcibus 255 on qpi0 Jan 28 11:19:23 chimney kernel: pci255: on pcib14 Jan 28 11:19:23 chimney kernel: pcib15: pcibus 254 on qpi0 Jan 28 11:19:23 chimney kernel: pci254: on pcib15 Jan 28 11:19:23 chimney kernel: orm0: at iomem 0xc0000-0xc7fff,0xcb000-0xcefff on isa0 Jan 28 11:19:23 chimney kernel: sc0: at flags 0x100 on isa0 Jan 28 11:19:23 chimney kernel: sc0: VGA <16 virtual consoles, flags=0x300> Jan 28 11:19:23 chimney kernel: vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Jan 28 11:19:23 chimney kernel: atkbdc0: at port 0x60,0x64 on isa0 Jan 28 11:19:23 chimney kernel: atkbd0: irq 1 on atkbdc0 Jan 28 11:19:23 chimney kernel: kbd0 at atkbd0 Jan 28 11:19:23 chimney kernel: atkbd0: [GIANT-LOCKED] Jan 28 11:19:23 chimney kernel: atkbd0: [ITHREAD] Jan 28 11:19:23 chimney kernel: ppc0: cannot reserve I/O port range Jan 28 11:19:23 chimney kernel: est0: on cpu0 Jan 28 11:19:23 chimney kernel: p4tcc0: on cpu0 Jan 28 11:19:23 chimney kernel: est1: on cpu1 Jan 28 11:19:23 chimney kernel: p4tcc1: on cpu1 Jan 28 11:19:23 chimney kernel: est2: on cpu2 Jan 28 11:19:23 chimney kernel: p4tcc2: on cpu2 Jan 28 11:19:23 chimney kernel: est3: on cpu3 Jan 28 11:19:23 chimney kernel: p4tcc3: on cpu3 Jan 28 11:19:23 chimney kernel: est4: on cpu4 Jan 28 11:19:23 chimney kernel: p4tcc4: on cpu4 Jan 28 11:19:23 chimney kernel: est5: on cpu5 Jan 28 11:19:23 chimney kernel: p4tcc5: on cpu5 Jan 28 11:19:23 chimney kernel: est6: on cpu6 Jan 28 11:19:23 chimney kernel: p4tcc6: on cpu6 Jan 28 11:19:23 chimney kernel: est7: on cpu7 Jan 28 11:19:23 chimney kernel: p4tcc7: on cpu7 Jan 28 11:19:23 chimney kernel: Timecounters tick every 1.000 msec Jan 28 11:19:23 chimney kernel: (noperiph:siisch4:0:-1:-1): rescan already queued Jan 28 11:19:23 chimney kernel: (noperiph:siisch5:0:-1:-1): rescan already queued Jan 28 11:19:23 chimney kernel: (noperiph:siisch0:0:-1:-1): rescan already queued Jan 28 11:19:23 chimney kernel: (noperiph:siisch1:0:-1:-1): rescan already queued Jan 28 11:19:23 chimney kernel: (noperiph:siisch2:0:-1:-1): rescan already queued Jan 28 11:19:23 chimney kernel: (noperiph:siisch3:0:-1:-1): rescan already queued Jan 28 11:19:23 chimney kernel: usbus0: 12Mbps Full Speed USB v1.0 Jan 28 11:19:23 chimney kernel: usbus1: 12Mbps Full Speed USB v1.0 Jan 28 11:19:23 chimney kernel: usbus2: 480Mbps High Speed USB v2.0 Jan 28 11:19:23 chimney kernel: ad4: 30533MB at ata2-master UDMA100 SATA 3Gb/s Jan 28 11:19:23 chimney kernel: ugen0.1: at usbus0 Jan 28 11:19:23 chimney kernel: uhub0: on usbus0 Jan 28 11:19:23 chimney kernel: ugen1.1: at usbus1 Jan 28 11:19:23 chimney kernel: uhub1: on usbus1 Jan 28 11:19:23 chimney kernel: ugen2.1: at usbus2 Jan 28 11:19:23 chimney kernel: uhub2: on usbus2 Jan 28 11:19:23 chimney kernel: ad6: 30533MB at ata3-master UDMA100 SATA 3Gb/s Jan 28 11:19:23 chimney kernel: GEOM_MIRROR: Device mirror/gm0 launched (2/2). Jan 28 11:19:23 chimney kernel: GEOM: mirror/gm0s1: geometry does not match label (16h,63s != 255h,63s). Jan 28 11:19:23 chimney kernel: ad8: 1430799MB at ata4-master UDMA100 SATA 3Gb/s Jan 28 11:19:23 chimney kernel: GEOM: ad8: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: ad10: 1430799MB at ata5-master UDMA100 SATA 3Gb/s Jan 28 11:19:23 chimney kernel: ad12: 1430799MB at ata6-master UDMA100 SATA 3Gb/s Jan 28 11:19:23 chimney kernel: GEOM: ad10: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: ad14: 1430799MB at ata7-master UDMA100 SATA 3Gb/s Jan 28 11:19:23 chimney kernel: pmp0 at siisch0 bus 0 scbus0 target 15 lun 0 Jan 28 11:19:23 chimney kernel: pmp0: ATA-0 device Jan 28 11:19:23 chimney kernel: pmp0: 300.000MB/s transfers (SATA 2.x, NONE, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: pmp0: 5 fan-out ports Jan 28 11:19:23 chimney kernel: pmp1 at siisch1 bus 0 scbus1 target 15 lun 0 Jan 28 11:19:23 chimney kernel: pmp1: ATA-0 device Jan 28 11:19:23 chimney kernel: pmp1: 300.000MB/s transfers (SATA 2.x, NONE, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: pmp1: 5 fan-out ports Jan 28 11:19:23 chimney kernel: pmp2 at siisch2 bus 0 scbus2 target 15 lun 0 Jan 28 11:19:23 chimney kernel: pmp2: ATA-0 device Jan 28 11:19:23 chimney kernel: pmp2: 300.000MB/s transfers (SATA 2.x, NONE, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: pmp2: 5 fan-out ports Jan 28 11:19:23 chimney kernel: pmp3 at siisch3 bus 0 scbus3 target 15 lun 0 Jan 28 11:19:23 chimney kernel: pmp3: ATA-0 device Jan 28 11:19:23 chimney kernel: pmp3: 300.000MB/s transfers (SATA 2.x, NONE, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: pmp3: 5 fan-out ports Jan 28 11:19:23 chimney kernel: pmp4 at siisch4 bus 0 scbus4 target 15 lun 0 Jan 28 11:19:23 chimney kernel: pmp4: ATA-0 device Jan 28 11:19:23 chimney kernel: pmp4: 300.000MB/s transfers (SATA 2.x, NONE, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: pmp4: 5 fan-out ports Jan 28 11:19:23 chimney kernel: pmp5 at siisch5 bus 0 scbus5 target 15 lun 0 Jan 28 11:19:23 chimney kernel: pmp5: ATA-0 device Jan 28 11:19:23 chimney kernel: pmp5: 300.000MB/s transfers (SATA 2.x, NONE, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: pmp5: 5 fan-out ports Jan 28 11:19:23 chimney kernel: GEOM: ad12: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: uhub0: 2 ports with 2 removable, self powered Jan 28 11:19:23 chimney kernel: uhub1: 2 ports with 2 removable, self powered Jan 28 11:19:23 chimney kernel: GEOM: ad14: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: uhub2: 4 ports with 4 removable, self powered Jan 28 11:19:23 chimney kernel: da0 at mpt0 bus 0 scbus6 target 0 lun 0 Jan 28 11:19:23 chimney kernel: da0: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da0: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da0: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da0: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: da1 at mpt0 bus 0 scbus6 target 1 lun 0 Jan 28 11:19:23 chimney kernel: da1: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da1: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da1: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da1: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: da2 at mpt0 bus 0 scbus6 target 2 lun 0 Jan 28 11:19:23 chimney kernel: da2: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da2: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da2: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da2: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: da3 at mpt0 bus 0 scbus6 target 3 lun 0 Jan 28 11:19:23 chimney kernel: da3: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da3: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da3: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da3: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: da4 at mpt0 bus 0 scbus6 target 4 lun 0 Jan 28 11:19:23 chimney kernel: da4: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da4: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da4: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da4: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: da8 at mpt1 bus 0 scbus7 target 0 lun 0 Jan 28 11:19:23 chimney kernel: da8: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da8: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da8: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da8: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 28 11:19:23 chimney kernel: da9 at mpt1 bus 0 scbus7 target 1 lun 0 Jan 28 11:19:23 chimney kernel: da9: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da9: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da9: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da9: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 28 11:19:23 chimney kernel: da10 at mpt1 bus 0 scbus7 target 2 lun 0 Jan 28 11:19:23 chimney kernel: da10: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da10: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da10: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da10: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 28 11:19:23 chimney kernel: da5 at mpt0 bus 0 scbus6 target 5 lun 0 Jan 28 11:19:23 chimney kernel: da5: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da5: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da5: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da5: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: da6 at mpt0 bus 0 scbus6 target 6 lun 0 Jan 28 11:19:23 chimney kernel: da6: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da6: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da6: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da6: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: da7 at mpt0 bus 0 scbus6 target 7 lun 0 Jan 28 11:19:23 chimney kernel: da7: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da7: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da7: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da7: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: da11 at mpt1 bus 0 scbus7 target 3 lun 0 Jan 28 11:19:23 chimney kernel: da11: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da11: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da11: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da11: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 28 11:19:23 chimney kernel: da12 at mpt1 bus 0 scbus7 target 4 lun 0 Jan 28 11:19:23 chimney kernel: da12: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da12: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da12: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da12: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 28 11:19:23 chimney kernel: da13 at mpt1 bus 0 scbus7 target 5 lun 0 Jan 28 11:19:23 chimney kernel: da13: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da13: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da13: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da13: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 28 11:19:23 chimney kernel: da14 at mpt1 bus 0 scbus7 target 6 lun 0 Jan 28 11:19:23 chimney kernel: da14: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da14: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da14: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da14: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 28 11:19:23 chimney kernel: da15 at mpt1 bus 0 scbus7 target 7 lun 0 Jan 28 11:19:23 chimney kernel: da15: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da15: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da15: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da15: 715404MB (1465149168 512 byte sectors: 255H 63S/T 91201C) Jan 28 11:19:23 chimney kernel: da16 at mpt2 bus 0 scbus8 target 1 lun 0 Jan 28 11:19:23 chimney kernel: da16: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da16: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da16: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da16: 30533MB (62533296 512 byte sectors: 255H 63S/T 3892C) Jan 28 11:19:23 chimney kernel: da17 at mpt2 bus 0 scbus8 target 2 lun 0 Jan 28 11:19:23 chimney kernel: da17: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da17: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da17: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da17: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: da18 at mpt2 bus 0 scbus8 target 3 lun 0 Jan 28 11:19:23 chimney kernel: da18: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da18: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da18: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da18: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: ada0 at siisch0 bus 0 scbus0 target 0 lun 0da19 at mpt2 bus 0 scbus8 target 5 lun 0 Jan 28 11:19:23 chimney kernel: da19: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da19: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da19: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da19: 30533MB (62533296 512 byte sectors: 255H 63S/T 3892C) Jan 28 11:19:23 chimney kernel: da20 at mpt2 bus 0 scbus8 target 6 lun 0 Jan 28 11:19:23 chimney kernel: da20: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da20: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da20: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da20: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: da21 at mpt2 bus 0 scbus8 target 7 lun 0 Jan 28 11:19:23 chimney kernel: da21: Fixed Direct Access SCSI-5 device Jan 28 11:19:23 chimney kernel: da21: 300.000MB/s transfers Jan 28 11:19:23 chimney kernel: da21: Command Queueing enabled Jan 28 11:19:23 chimney kernel: da21: 1430799MB (2930277168 512 byte sectors: 255H 63S/T 182401C) Jan 28 11:19:23 chimney kernel: Jan 28 11:19:23 chimney kernel: ada0: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada0: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada0: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada0: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada1 at siisch0 bus 0 scbus0 target 1 lun 0 Jan 28 11:19:23 chimney kernel: ada1: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada1: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada1: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada1: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada2 at siisch0 bus 0 scbus0 target 2 lun 0 Jan 28 11:19:23 chimney kernel: ada2: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada2: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada2: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada2: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada3 at siisch0 bus 0 scbus0 target 3 lun 0 Jan 28 11:19:23 chimney kernel: ada3: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada3: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada3: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada3: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada4 at siisch1 bus 0 scbus1 target 0 lun 0 Jan 28 11:19:23 chimney kernel: ada4: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada4: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada4: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada4: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada5 at siisch1 bus 0 scbus1 target 1 lun 0 Jan 28 11:19:23 chimney kernel: ada5: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada5: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada5: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada5: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada6 at siisch1 bus 0 scbus1 target 2 lun 0 Jan 28 11:19:23 chimney kernel: ada6: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada6: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada6: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada6: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada7 at siisch1 bus 0 scbus1 target 3 lun 0 Jan 28 11:19:23 chimney kernel: ada7: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada7: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada7: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada7: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada8 at siisch2 bus 0 scbus2 target 0 lun 0 Jan 28 11:19:23 chimney kernel: ada8: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada8: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada8: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada8: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada9 at siisch2 bus 0 scbus2 target 1 lun 0 Jan 28 11:19:23 chimney kernel: ada9: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada9: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada9: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada9: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada10 at siisch2 bus 0 scbus2 target 2 lun 0 Jan 28 11:19:23 chimney kernel: ada10: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada10: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada10: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada10: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada11 at siisch2 bus 0 scbus2 target 3 lun 0 Jan 28 11:19:23 chimney kernel: ada11: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada11: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada11: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada11: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada12 at siisch3 bus 0 scbus3 target 0 lun 0 Jan 28 11:19:23 chimney kernel: ada12: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada12: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada12: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada12: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada13 at siisch3 bus 0 scbus3 target 1 lun 0 Jan 28 11:19:23 chimney kernel: ada13: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada13: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada13: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada13: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada14 at siisch3 bus 0 scbus3 target 2 lun 0 Jan 28 11:19:23 chimney kernel: ada14: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada14: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada14: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada14: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada15 at siisch3 bus 0 scbus3 target 3 lun 0 Jan 28 11:19:23 chimney kernel: ada15: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada15: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada15: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada15: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada16 at siisch4 bus 0 scbus4 target 0 lun 0 Jan 28 11:19:23 chimney kernel: ada16: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada16: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada16: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada16: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada17 at siisch4 bus 0 scbus4 target 1 lun 0 Jan 28 11:19:23 chimney kernel: ada17: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada17: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada17: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada17: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada18 at siisch4 bus 0 scbus4 target 2 lun 0 Jan 28 11:19:23 chimney kernel: ada18: ATA-7 SATA 1.x deviceGEOM: da0: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: Jan 28 11:19:23 chimney kernel: ada18: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada18: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada18: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada19 at siisch4 bus 0 scbus4 target 3 lun 0 Jan 28 11:19:23 chimney kernel: ada19: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada19: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada19: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada19: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada20 at siisch5 bus 0 scbus5 target 0 lun 0 Jan 28 11:19:23 chimney kernel: ada20: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada20: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada20: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada20: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada21 at siisch5 bus 0 scbus5 target 1 lun 0 Jan 28 11:19:23 chimney kernel: ada21: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada21: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada21: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada21: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada22 at siisch5 bus 0 scbus5 target 2 lun 0 Jan 28 11:19:23 chimney kernel: ada22: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada22: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada22: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada22: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ada23 at siisch5 bus 0 scbus5 target 3 lun 0 Jan 28 11:19:23 chimney kernel: ada23: ATA-7 SATA 1.x device Jan 28 11:19:23 chimney kernel: ada23: 150.000MB/s transfers (SATA 1.x, UDMA6, PIO 8192bytes) Jan 28 11:19:23 chimney kernel: ada23: Command Queueing enabled Jan 28 11:19:23 chimney kernel: ada23: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) Jan 28 11:19:23 chimney kernel: ar0: writing of DDF metadata is NOT supported yet Jan 28 11:19:23 chimney kernel: ar0: 1429557MB status: READY Jan 28 11:19:23 chimney kernel: ar0: disk0 READY using ad8 at ata4-master Jan 28 11:19:23 chimney kernel: ar1: writing of DDF metadata is NOT supported yet Jan 28 11:19:23 chimney kernel: ar1: 1429557MB status: READY Jan 28 11:19:23 chimney kernel: ar1: disk0 READY using ad10 at ata5-master Jan 28 11:19:23 chimney kernel: ar2: writing of DDF metadata is NOT supported yet Jan 28 11:19:23 chimney kernel: ar2: 1429557MB status: READY Jan 28 11:19:23 chimney kernel: ar2: disk0 READY using ad12 at ata6-master Jan 28 11:19:23 chimney kernel: ar3: writing of DDF metadata is NOT supported yet Jan 28 11:19:23 chimney kernel: ar3: 1429557MB status: READY Jan 28 11:19:23 chimney kernel: ar3: disk0 READY using ad14 at ata7-master Jan 28 11:19:23 chimney kernel: SMP: AP CPU #1 Launched! Jan 28 11:19:23 chimney kernel: SMP: AP CPU #4 Launched! Jan 28 11:19:23 chimney kernel: SMP: AP CPU #3 Launched! Jan 28 11:19:23 chimney kernel: SMP: AP CPU #6 Launched! Jan 28 11:19:23 chimney kernel: SMP: AP CPU #2 Launched! Jan 28 11:19:23 chimney kernel: SMP: AP CPU #7 Launched! Jan 28 11:19:23 chimney kernel: SMP: AP CPU #5 Launched! Jan 28 11:19:23 chimney kernel: ugen0.2: at usbus0 Jan 28 11:19:23 chimney kernel: ukbd0: on usbus0 Jan 28 11:19:23 chimney kernel: kbd2 at ukbd0 Jan 28 11:19:23 chimney kernel: GEOM: da1: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: GEOM: da2: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: GEOM: da3: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: uhid0: on usbus0 Jan 28 11:19:23 chimney kernel: GEOM: da4: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: GEOM: da5: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: GEOM: da6: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: GEOM: da7: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: GEOM: da17: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: GEOM: da18: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: GEOM: da20: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: GEOM: da21: the secondary GPT header is not in the last LBA. Jan 28 11:19:23 chimney kernel: Trying to mount root from ufs:/dev/mirror/gm0s1a Jan 28 11:19:23 chimney kernel: ZFS filesystem version 4 Jan 28 11:19:23 chimney kernel: ZFS storage pool version 15 Jan 28 11:19:23 chimney kernel: IP Filter: v4.1.28 initialized. Default = pass all, Logging = enabled Jan 28 11:19:23 chimney kernel: cxgbc0: [ITHREAD] Jan 28 11:19:23 chimney last message repeated 8 times --------------050202040600020906070504-- From allen at gtf.org Wed Feb 1 21:00:27 2012 From: allen at gtf.org (Allen Belletti) Date: Wed Feb 1 21:00:35 2012 Subject: kern/164694: Regression in 3726 port multiplier support in 9.0 Message-ID: <201202012100.q11L0RNC079283@freefall.freebsd.org> The following reply was made to PR kern/164694; it has been noted by GNATS. From: Allen Belletti To: bug-followup@freebsd.org Cc: Subject: Re: kern/164694: Regression in 3726 port multiplier support in 9.0 Date: Wed, 01 Feb 2012 15:52:57 -0500 This is a multi-part message in MIME format. --------------080106030108000808020000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Progress! Per the discussion at http://forums.freebsd.org/showthread.php?t=29429, I've discovered that the siis driver does not have an interrupt properly registered, per vmstat -i: interrupt total rate irq21: hpet0 1745211 1837 irq23: uhci0 ehci0 438 0 irq275: cxgbc0 1959 2 irq276: cxgbc0 10 0 irq277: cxgbc0 819 0 irq278: cxgbc0 29 0 irq279: cxgbc0 43 0 irq280: cxgbc0 1757 1 irq281: cxgbc0 65 0 irq282: cxgbc0 23 0 irq283: ahci0 16362 17 irq284: mpt0 17409 18 irq285: mpt1 2352 2 irq286: mpt2 13714 14 Total 1800191 1894 This would seem to be the root of the problem, rather than anything to do with the port multipliers. Also, please find attached a full verbose boot log, with kern.msgbufsize raised. --------------080106030108000808020000 Content-Type: application/x-bzip; name="verbose-full.bz2" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="verbose-full.bz2" QlpoOTFBWSZTWWUyqfwAcBTfgH/weOf//3////q////wYE++8oHo8YJ6Y7HXnzreK7u7bG5Q 5NBqB3bqtmz27222r1q9d523vHO70e4q03e73PGdjHb3e9vO3t21bNjx17ent3V4nd4AD57i kd975774+d7wj3ddrzele3nvbec92uxe7c7Pe73nvcTZ11e7vd5yHOxooV8GHPpG2+2VtplF bSraxTNtTrttU3IymoO3cyXzs7bTbVgLFk8u13DCVFuz1xn3zwCXpibZUTI0QqhmzbNMiZaG LCKGtJFSlVQSSCaAaJkZTBNDUyGSnk9JNNGTRqaep+qGjJo9QyAaACI0ggTKPQKBmpkAGhoG gAAAAiY8qKqe9IRpHhQbUA/VHqNAZGQA00AAA0ASaSQiZNCaJip+mQmk8mkyekYg9R6mmgAa D1GQARKJoJkTAQm0I1Tym01U/0pP2mptKn4m1U/TVN5U/KjZTZqPUanqBEkQECYgCTCeqeNK eU8UanpPVPFN+qT2VPyo8iab1TaQ2Tmj+bCQCAMAQjBXWQhKLAkigwCkAQiRARUBEQGygDCk YMRAEQAoAyFAQhZLECgwCMRkEdaqCHqVBqKH7P7E8Kw97PenwSiJo+Qww2NGGGGxhhhhhhhm QmFKUTBNK7aX5dl+bhdb5mBiAqkkisAVZZIxQZRkg/emcBIYf2fISAHXpN/7hId+WBR68rC2 ktodMzroMZL0uu4Jby1mZmZmZmZmjf6AMA8DYBeoG+YB6wPMDW/Ln5Hlr0/spxapbjhl/wcM um4uibi6JuLom4uuLDRBQUQUQ0QVc3F34m/7txuNxuNxuNxuNxuNxuNxuNxuNxuNxubZp1pu NxuNxuNxuNxuNxuNxuNxuNxuNxuNxqHjuVZOaT0JMDA36H146cqwP/fSHJt3Laakc+74V4Mg WbviNYdTp+IjbWp2u7u7uGE53HeYGzNoiMATnOzvCGoQwDAEnIG5GgIHZl/3ZAVg3TuWb2nb jKP/DAvPyGlwP18Kw7tfEsPC95YeR+BYaOvRBJGMXx89+OR73W5E5vm5uJVXSuXKqqqqz5E4 3Tz8fiX2rmpmZmZmZq65tuLo6Kz19bvL2jflVVVVVVVVVVVskA7Kq9CrnKt/OBnizuznOXwK nxgZfAqvfVXhVXvqrxqvWyqqqoRfHXHZ2eqB+6Ih5VWXdtwQIPd4BCHAQytp4qa9F3uDFVVV UAHiU9PwuPLf5+6GPLly5W7u+9fy+PrHHq3RP43P2bXvpZbL3EWL9shV51fn/R9JVnK7wEbG QNQ1CHERAIQZAJB6SZl4BCTIng13IugKQb7vU+Gau7u7u68Lu7u7on596TMznbbp9C9ubDzb f3mpmZvMA7AB0gAAAAAAAAHLe7dqNGtAAXF3ewBwACAcgB5oHVe7drqAOoA5QDebbG8A3gG8 DsdG7GI9PJ0mMY8bj5Z6Z1PZnnnxZzXV9+t3dx26e/jAPRQAmWQ55y5U9CbIiJAy9pH8Y/mY ELi8b55CHZvmH5h+ceQUKFidvgRT5Ec4aIdhBJGGiHbpJLPDz3u0ySynfkViF74ACrOtxLpA CPuLhlNyN9hG7Kbkbn0M8x0GHSQEnSgPlbbeF0bmulZTTstJmJsLtLWZzJ2js/R3jxcO92D7 SeG7TVejc2ZmNVRTVVHRVZmaBFz3NSYscH4iKXzOucC6Bjp7edrH1eKohQU4gpQVEKH+/1fo A2Q5g1A3asN9eWm6St999b8lT6APgB/pAfMf3gO/UIMCJitbPTvp2F7XuDh4j9n3cgLiL/l1 ukBtOJ9nvx3C4QBwMbFDVUJ/bfqVgwHObiSX6wPcBX++IHSgBOicysl3gfAD+GecAgEA9giQ GgIinqGwASGeYWA3/XO/9IJ/DyW4TsRRD55PWdqBcSTWhKgVAlQGrQAtsCiiixhEixRYv3if WA8fbd3QA68pD8BoPTsbPt9vDE2uJkUrJmYyZRDLcrC5HDbhzl6qaV6YerBfIcMccvWX1tjV U1g/Md5rBuCJIAkkEIjIL9TPZ21393TMzN/Drvuq775mZvvvkqxI/6s6ilhasD12w82ja8uv WH8xe+Rxb1wMJa60ZZ/t9mif8QF18WgWugU+u3t+B6PSKfbSFCmBVsT0VANgoH/31hwAX5Oi jAkjE1/Il0EySc8PinsYsWLBX8JLIBBRRRRVID5xoBocA9/NHt/f58gDuGObFdfVH2Q7A27T AA0gB/6iBAgCe7eFH5Pv/x/gAtbbyJC6jQHrhi6HBFifJZYKih33q4KLI/FaqvZPtZ7nxfoc dhE+5n6c/HkvN7koqv+zJChMRRRRYsBYsU6NhISFiSUUG/iBT6+x8v6+m3jNQns9tE0HvUUF 4+TL+ftir6qzidp72PyAy8kH92R9YCtMUJWV9bbmyEwVWY4VPgMAndoBWRf5AJkqQJQfgPLy SSXS9jMU+0B3rdBwDIA0TZa/xAaiMKNur/Dsdm8rR3ChSJ4sXvqqfJrwHFIKJnYO/HBJmK6q AtyXtiJFqFjKXbbDmlhEowZ5qLIFWAHOu1fQqLT2GHT2TXuPMBV4QxsaaAca7gPiLp8uIxsG Zx7VddbqAWuYsALS/cOeNQ+ZDUuFmYphSLfFKQAkTGVimLg9M6cynydNOggXiq51AdpqHTp7 g2aYGRrxtjLtqq52Ks8ByEu7KS5rJQ3E5fnrjDdF7JI2/UAo4X/g+JANNuOiDZnWW6aU5uBk wzDwGsg7dZEC+nvdpnrtyLh55ag4DqbrbQd9dZ9wBCAdoWMZhKlR6daq3TdjPDb4gKW5raDI UC5VN5mQ76Ak2CDAAKI/fCJsGYZhvcK+nrm/QBUYGAsdoqjbbJmmAwFcWjCVEgkX7gHapMlV XTW5NoVvUd64doDfcKEawJ5sgQj03ej0AX0K0XX4GzvmbnaYnbjH6fiCt+XWnPPPyfJ7exuj M1LRaMGfokHzb65imsIJXU3Xfbpt5quMRP3HlBCQkOtuA+HIoCHyg+gU3gkdFBJZgb+0Qk8Q dmHAgfBREBvADpiKf9bgP4eC2qEYQhIEgQB8eAGfxsfXB+diAn2gPd6pJJJJJJOYA6hE4j5D 5DQEPuAy7PW9e8FOwDJ14PzFKPrhnrECivaIu0RdKnjMnZ7JJ23ecFLOoRagBfxdQi+s9gHp AweBYAxftAIBi+8Rb/EPN7J55zD2TqAOKzuA8Du7jORgSBCEhCCiiIoiRkOntOYdBBPjzMDE Bj8KavIcHbuA8vacw3kJP3LKpVqN7SpJL3vBJFKFgLP00MoBO9hl5j3/Ye3uEO0CvoxOG346 y+Hx5UlLTMG5jxCsQsc5OE5CQ5cU47uirVL0maKddHlKAOZXM1YF4i3CLHzgL5g3j70Prewc QFcCv9DuiXEfiAe9VeuThTA9vUBag6vZSgF+xzBuEbgOYBuAOD2g2B+HT3tgFNQU+gp/uNlD 17v7rC/050O8B94Gi+pQASzVWhrqBUC2CRoaefQDj9VNF5z9d/UDwyuNgLYPEjvKxgtVAs4q 4BsnAPyXg2tFWm3iXY/Gop4ofuQIP72+SSS4/fknFnIcRqDnir3gZoilZw7f7d3uPZhb39+4 fyFPzemJIZY5/y638nz4nQbj5mh8zD9YOySr8ZKLiuPolBUuYA4xDJ9bOLvFZq6urq6urq6u rq6urq6urq6zzJnA7evacYUi7UWgHcit3O8ptXOGmC39Bd7COQKYLEAkAYAnDhxtKzIwEjqY kIoskGKqqqSCkgqo9fwd4BkC5zkU6x4fjkqDwD5eYOr7WRgcisvSec5+QH3fs9BI3UnCW4Fu 0htPsDxowBMHC4DQ+jDMKKKKKPkQhfZ9XtYCqoqKqqyG0U2Kc0PqWlLI4PHiqD8AfEFNwCqA XmJG7P71BJVegJT2Arxa9+nfBDd8Y1gEx1oumHz248jd4XKEBeZ99FGii8i9V+HzAPEBwqcC yCn9aSiWembOPQ8+Ufds02K5JLz7ODmq7f2IinnH5Ca6oI+33+4oZCFH2FhsWLHHZOc5z+NB JpSlKUuy5JAuQBpsSDgvTIAh1YdIH7XpqZALZdMLUuV21/K4ygeiMkerHjYAMMgY3ewAoF07 QJhTC3IXikYgHU0lwy/Vj6r3AWA1KuyEhISEhISGlV8Ozw8Nnb2332ra1rXw7zJu7uzzMy8z MzDvBCIjtBEO8EXBERdCIgPIO2SEh8jvQ2hzIEAdFHq2GwXUKg/213pz7gUy4Cu5Tq3in+Yi 8sURQ1zGH0/H5GwvLxoADJIhPZ8v1ZjIYly2223MzMzKiimXMFVVVTNrPUeu739STv9qIb5y +PJoBAL6/eSbuBNysM4AY0METAATbNJJdeQp3iltQAeZWpn4TTtPf4KaKLBBFFFFGKiiIzqd D5gkQDoByfC1MzCVQvkg7aLzDS5ac0jmyrWB+4PNhTQcwPKK6D5oSQ5IrYeI+vbp9mO8wUW3 +Q4imQp9Q1GA0RR70RTrq4bNFE8wCzIA5AwFychTEUsBXiMRXH9guVaqg91N87qg/MfmDoKQ H9YNCkFOIPHeD0eric+D8VDUCERkyET51Qc/OeHcvd49/3/p/j8Pk4eOOOOOOHgtttttttqJ aWrS1XDna2np1cAcgBwGt+gLNgMgM+635G5MySLci8/MiHd3d3d5eXh4b+i7u7u7u7u7u7u7 uJlLampKoydbcG0BKmOkEIQMhJX6O+rsNHm4CtygoDMzOA3+p4SdDTblpuM4QUIEICEViWw5 osZ1d5DrjsLKPAWStZZ3bUqzyy2Gme/kfPpwbokj6xx+OrpHfeJ8kHnlRQQD+QpEADpwaA/W KhGAQQgA+e7+XAk9oQgf0P68VVRPb9SqqqqqqKqqqqqq6C/SQ9rD2p+Lz9X9XtA218vds9zw qqq994cCCBJuNo2WowRk0nD4GTeMh/09Sr9MVZCeg0q1YtQrFD7LZ/n8+i6LttKjtqGSLJAw LQkpTYPs+XPGvtrK07OOFWCoO8RcRSnMCAgQtWupsfXTZCMo3X8nclcyPdGlFqanPS9JVPBm X8QZildYBzAJJAIsWBVVHNRJIqyRgvA7nYarn69FUqwAcThtzAwvNvFaezZ45ZbbbodCm+7c RcpDg7IFScMFECRcH2QhuLDOUKooGxIIFCRJTAgTnmZmZmZGRVy5Vy5jDEgmV1vEFJF5Ayvc jrNodyUSpbZtVBoOQMREoqC3AJwAwB1QkeAkTgjHGuGESY5OsZpSyoriZrpMzymZlVM8Yu7x M3czOJmZkkynPuZ2mWbGMZQ7oXtt2LvG2zVuzb7b7od0YGyEQLuMjMAjOKMnxzu7vFeuO+eP bWZmkFzFVcxVUVVVVVDMuZirgc8xVVc1mKqqq5i6CQ5wTxIgoSgb45SV58achThkbQV+wSJV U3Od2G8xmnD0z/njh41ePe34v/x+oq76Dz7PGH4+X+tzjnV8LaoRjh2wkQ87MvMDhx2uNgwA 5gSc4VUvuzs9YNwKVKFLTybFAaU7cTp441XwaMDmMhUhshAUgCKi1KkAWRYpPeUatLVpxmLQ QxikQRMVpgmCCIJZVbmfb4dsOz28OnzPxhIXbgWLgDwSQK0PeLSWtTgXUPKf9gIJJBGy72es d/a3hK23GsA+y8/IXwASrYoekxiC84CRoISikrAX8NM/Q7OLK93Hve9Rjzg7nRGEYQhCLJUv fMsqqqgBTcAESSZIdUq0kiQzyTsxohmjoXD4hERES2GLaU5JkzngYCc6FKLgZWC172CoPyPj QDZDAwJVJ9D9fL6kA/QvuGBL+X7zNvun0bU7fIBKTvTfT/CRM2AJATFD2IgUeUCryAOdMlCq NwGu1DGKn/70WPfQesXU2Q9ooOY5+m2zNGQs/faTBUIQgEciyZJf6RhsjRY0puJDfuwqwxaV PgzMzu+3pOgSewljlfO/tJJCl7MSh6jb9fz5VVVXwt8rvhd8udeK8/NLz5+3tZ6em1SlNEh9 33ewtVV8CyyH0AN4qIa7ebGcuwaV/AU7hR2DuPPqzcIIIVQrOL8G5djqeECh8o/KNfo0AUv6 oHPkAmEivSuV+fqESt6YIYOaNAMVz8Ze/m8N3Lp34bTM6AH4lLdZnXTZVgEAMSh96IBFIgsg sIE2dSAGgMEVYCkVVYFhfFUp226wLALifo9XOqvoRBJq7XIcToxxxfIQRvys5p0VB8z3WvQG tmnpLwc8yjB6zFqIAQgrrrSimAB4JkcNc7WtaxVUpoYBJIKGAj1UKwFYAQNWri7zpY0xKchE RE86UJCHP1bZ2O20DAJML9NKpVFOKELvAgCgcl2AXAZfnMHeQwHEUEK2xsII1WHdcHO7AOio rOAEOsGYTRI/2EBzUUxzl2TJJAAsAAmCJo0GCJVVVVVVVWlqq/ElFVVVVVVXC1VYsiqqqqqq qqqsWQJsPkBJylAkAncdBnfqhmWGpJy5PBM2yo1hQryiIEIGDCIiJMEg5hem8cp3qs9md9+r jWta1rWtXrWtaYMDMMNa1rWta1rbbbWkCExtmkRCUKCXARGREQEwCCEIUZbIOnNK1rgBzAHP CSOuzW2COhtjfAejIjoUHDBcC6eRiD4CDcOLEAwYz2gFggIQaWNw51t9lOLggQB0wCIBOtrR QIF7QYC0AqPRMYCF8qoYihH/EhzAXIeRYVOIAWNwEPeEG64JmAFanGDvGzRUC5Hp1wRsXd2y yWNtALiBmkChgNJ8FwGDBjch2FweJXJcA62IJ2b6QOIgMBA7RLAQKm1kSC0OxPQVbKZ5Nql2 6bNoBdowKy2N+sylAQwCFsGAlhDNmvURFcLaaiN4DiNAJFriyiI8To3BZ76c7CrhN6KZxHKw GcI4TZlYC7VrAbNSsAsmLXXdcrC8StYAvsM1Ouut8ShCv/syczUAHmdKHXy1R5kjxgBVffYf QD6eWnKsLGaMa+v2x8Gz+3u86bODRhsx+5MbmNhEK7u5+x9n2EMQKjcjXKBVsZekSMCKCqhE QSWFAJEg0r/dziSUgQACXhXP7p0rKRCY48AIDJEECXdyARUdu7hq54ZFW9CqHVBR1bySBAIN 1IMAgrYKBIKMAiLG5QjTtKBowEIwQ8RqMBuOzyaLsnuPQdKgLLjaMyGEJmDhEaDjuCA4rkCo w0hF73xzyhtICNITyOhIBJoBYE/rZAVEUAL87AAoCARtCgkCLIsJBY22sAqxVgyQSEEFIWlj FihIMtCEap+B2yXHMP3HWmzbJjZkojg6uGXMFKY5hmZhmNEtLLSr+rLtJJB0hlLLQzWajo0m E1oo4qqqqqqqqqqqqqqq2UsVVVVUMuOKqqqqqqqqqqqqqqtlLFVVVskluqTJmm5NrVjM0lys VVVVVVVVVVVVVVW2qqqqqFLjcFjAlttttttttttt/Hc2ujK0NZmroytDWZq6MrQ1maujK2CU Sg20tLbbbbbbbbbbaqoqoKsoi6u4u5qJu7i6u4u5qILsoi6u4uLmoguyiLqaiC7KIupqIm7J IKLxFwyQgBiIDombxG/OttgnxPr7tO8xt93h7Pdns6y8pH1Qyj3RdePbizi+mBQbEn2NzFx+ EQVACvcLlGn9AoKJc6Q3sdYDxu/XDtdQbyigA8Dg8NWEgbIcncHcea4x1c6g2S7/PYPDDbeM ZpJ+x73veEDPjiBj8DPKEh4JE8r3mVaOAFEE3AFkez1Q7kxFz3gL8u7GUEktSIq8FsZCRHod CZwhGber8yChdjueB6yKOxyXKIDg3Av/aIJEFw4PgwBkU2ANg7eyVKkJTmQnI1VcjYOOLiI/ 4nPTC/SX3WAO8dw0aDlnKlSEpsQxty/qXdwpiA7ehHPTTYC0AYhlxAyQ9oPvB4+Q9OUySCBh A+AGxM322NE7E7+rWqNnAgxuQ3BAgzE6GABUXnAwCdHdUUZJwTKz+8MFkZxmMFmbq4cMYLG6 uHFRG0Y22mpqZiaakPaAaOKW6jffgAONqLQGIPI5Uym9lIgemD/f0IcULuQGecJpShMTtXal ACtqCZgY33nf2ABPWBlWGMJnVEv1AhK51xAncDKiOD72xY+bJ5H/B5jXo8TiWABACVjDbHOZ 470mGPwJgdRNgDpsbiKuny8cMtDWWQ5nrhm++ekDcJscDw1X1AOoZb0Nj2HHLzQOxxIY8uaK q/l79xVRX8IG23jttmVrGr/F7+1P7jujTi8XQ4JqezMCVo7R0qRZkRCKAdJOUWSQjBQYZFnG 5BjZICXgKp4xct4gENZCaN5JAhQQaESwHpWDAe7a+YAOv8CAnnIQX8CAfgAEGpCD/wAYYwUz zPKBBCeO4itfSyZzC9gDbs+fb7eiFqjhfwap7O+0TcoZcpP58bKdr+5xZ4+PWqszxKycIW7n 0RsbQoS0SKBIxfYxkEAFrKFEpeotcyIBV6shYpn1a3tAhv8AXUgCVlNFjgKxhJGLeLA+QBrr Jzo4k+i3HPJFyLyHQxIQYQhFuZJCSQpp6vz63L6MTUZQaFvfQqQciAlAHzznzrV1s67aVkUM ZYD6Hob7gMPPnw6rAf4kgHbNWd4FWIczsPVqv7YDXDu8ofsANGwiry72QMXUAvmcC4B0AH8P f+P0rUzh7AD/c5JqRY35uVBab+gUBHNhzB6v6AonFj8yDjzVIP36PtOprB/YOG65Qp+ouNXV gpYsNhTzwKGEGEG2IVJMYZwd8T5yDYOIy++4b4GEyaYAxIKRce7nEgAzLnqXPSShVTTTYKOl zmY4wclAjxdDQ8wpc7HYvEA3BdkXsHd76DmZmZmZ9Ahn60djb4r8Hb4aSj5e7EpMMOSlUob0 ZtAkiINABubOoFFDGuMaCscXhFwO+MjgEBYzMzVIUAQQEt4oiYFcWnicrSR7zqVQwND10pcO YIhh7tISHnxo6REJoSLHz2yPt3pFghG3F0nE8UPNb6YXjaQXJufLZVZdiTKR84fJ8bkviIRQ ACKmfyRbugAsaPjnwqHWjuZnl3HcgbIbgHXbe/XTfe+6zD2EH1Kql8dz3jgoIsWJnucUXw5F 5FAlDTjgf5HPAAklSgLTuIJZ3O0wL3kO05/i6tABiOpjkmoERp87CSzuPhwYdtvMMkPoyoqc G5TgGQQlzGPChrU4gBFWiVu+BXnfwr2YdfXUvtoX339o5mJhiGPH1ZWJJJJJqKSYU6V8OPlh d4TCY8vVa2EASDOGVgGZQyyZGDu+Atm9mlDxBAcWhmbUIWnsFAThOBd5l3CuMygAkHqbgSvA L+5DSBGK94k9PXTZKX8PfjJ3QyOroOgG4ypINKnj5dJ6+A8adjLuTG955j0ULXuZx3OREMnW CABW+Jy4/DUVM0HPSvZMenz8rWzK3IfUZFaUOGEGUXypTMwBq/PKxiXEDBAygHWh0USsBRiq GEmKpPaVNLdPm2UtRou5PL6o1wXIocBBtQL4JhuvLlzZtOUIQc5zJ1WZe6pXgtoG24Y/iMKr jlh6CygBzOZm2oVAPIu2FgCJEnn8HIRmKw4QbMrqwUGwApB7lIBfQOvXFEBUoBksUpSjAjaP AkBSdaRVEGaDuD+eHdLnElTw65xooyhQasZy6sAqBWFEeKxuGezoaIiozMzYgXoQ0GD93EDd rIPJsdnXYtW3d1f0A7AxBTRHFgG7KXs9cNcbRrn103MBlVzdjWRrTMkW19p0wfKQHfLezyvU 5gkY54oJ5W2Ds6OkkKzqnCrEcbyNokbClrKSrNXuekpd6RRs133VsAFmNVl6tiBAXygbQJvw NMbywQO6h1AJdiDgBoUQrEQx7bVFbmMhx4bKjU3bt3/GMtedThhhw68xILHAQaVCL22BgOZs nevl648pcT7PbpofCAIpzK9rhCrXcNNplkYCG9gxgwGDZHx5QVImFtHCRuN66nhZs0qO0ne3 Y6T3bo2GuUyNpk1Xe/bztiwDNJ2ZDmKIQcDIE7bRd3xjdW7s2OH2Ook4QpBmEwKZX30vvkMO 8Ut2vzA0VUs8yQkCqvja9gAOGFKLso0MjuScezC/dejj2Xe5x2IYrrqTowqxAsHCt9zAbAuk 4IDEL8lKAH2WS+iws4HpudPEDbRt03NnIzp4eFGKgAXWBkpmVGDIUQEBR6YBTZm/anf5QoiI 9PptSWlrErUvZhmVLuiJ1rgOHQIPtOrtDcOS/q6zK6rehxk+j5fy4Lm1DQhXkuzDefIqzLwF xf3b8MTXJ6ouzXI58+FV6TVjIMhNOw1LBA6yjbfaMEjDG+JJh9tElHdiBlw6+7XUdM/d1bC4 HEAlNyHXkBNaKfMhMwpafWAXfz0YwDfcBrWlIRwJiIgCMjoJNgRbmSZDgAKCL2b5MzrbrdAj GPd3vjFouc97qBBeMARfyEFru5KkV4uAfQce8cYgu3g42o2K1MmTk9HN91vDsuop6dmWd2/O c5znOc5znOc5znOc5znOc5znOc51MqKHQZo0OqZonCIEghrgj32TiE8+GGh30RMpvtMgo25j Kvj6DzkAEj0IbNekAoSj8dMGL1EiGALcVeERxcbmBnJd5497lZIfjwk9EXnQD8zsBnPC84a9 brVhigHjx4OxvTqZXSvonVZXlu002TnOc5znOc5znOc5znOc5znOc5zmdznAzdhKVEYpmRWM L8NmIvs92BtQB6eddeZmfzKFPwchwEhgwHw1L7YuBrTtZ2oo20LPQg8o6HZCBXWACqiwRq00 flS1rDERH1RRCqwNDGAdgdBk+iaNQrMAAoY2MzRcB7gMCY4TC1F/A/oUAcTEXBrLnZw4BK6W OJAwci4bPIsDoZzUiQTh+pSUkgKR12QILuzSS944tr85UzbbytZEGEqxI79hUmZKbIFrGzq3 61co8KR69ugHAx5Af1345FViQC28Ao11LwGrascKgPqjwQrSqmc5we970iFVgBEIUNtZ2Wub XMql66WB3k9pO8Ar3AHwP0E4ESBAgPM1gclz7UQrCMV+UiByCFSEHfmnTfn+EAfxYdcR4LPd 2eKu0LDOzMyIjxHHbVVSIlTMzMyiJNU9VS1RnVU9VS1RnVV9QDwFAGF9YveC9BPXqBaB/EDy AqgAf5gQA4AWAQAikwEHywwwwjllJ8pSlsplZMTfPYJGltESgRBQu222222/bVnd3d3d3d3d 3d3d3d3dmd3dmd3dqqq7xf1wVDILuBfVCRVRnOdvD2TXzGl3d8chIkTMoiTOZnalenp6aHZX dyiYZpWZepVat3uzZlU7u7upmZExBnV1VVV3ciZmZmZH7TKTHItKLEbSrvxz13M1qm937ttX WZmZtttRTcFVVVVVVUfaP6k225cuW22222222ttrW28l/DwAqDAGoHcveL5N9hA6sdWfCsp/ n9pmZmZmZmZmxcm5Tyd35AiCdrNMywh3d8Tnsqzu7u7u7M7u7u7ubtLu7tmZmu9FmkwY0ASD Kkm4Ii0fiTUCN4pET+3y0PYIg5yCIItIieSqveoGAYSlKFtLUBApOs479jbbz8/PoE5GCIey tzu7u3d3d35giFgAgHZpmVVXZ8SARkVdY6zjsd1XLZmO13iKraKDhwwo3EvKJYmqSEqrRGLo CIGnJNz+YBhjDLsyhQoUICQkDDebQAnQIhAQfFOOLXycTFRvMJhukRmPUAW4K+GqttuPOI50 q1VIdKiXr9Us06zd/HWTBl99PA1/ry8QrbYxrWtc7s7u2Zm5qQJhQARHczi/b2gEV7i7u730 Poz6iIilCoyMx4Z+kAHzGZRmRRyBgwYMGDBkOVeAmtSJ6ncYmcK/o/mQIiOaZBtqdU9/rvRB Qm/roGZeqqqIkSGZmZmZgwYpcu+2oEQ7uzQ7uhCTMimZl5mIzlUMq6jFxjM2NZzSus2aizUz E3eXOsxnKoZV1Gta1rWsxnKoZV1Gta1rWsxnKoZV1jFzMzMzEw1rV6uLu7u7mbuZu7u7MYxG ABVVVVWqpUJkBGJmZmZVVVSIZVVVVVVVVVVVRaqjRtttrIW22222222wLbbbbbbbbaqqqrbb a2tttttttttttttttttttttt+Y6Fmd1vKkCG8MW+Cqqqq+gkKBNaWySJ0p1jJMM8jCBUiJMp QQxMNZrmWVbF43jgOY4jeOI4jBg4jkOQ5DkOQOQ5DiOI4jiDiDmDmDmOI5jkO0Pkij4xE0iD 3wDZAAOG0FPxQcf2FHzKg2VgBVQQxWoADzFB4qKckVuyoILkH8rksDdEyUi2BTCBbJbFhErp vozCoCkig3xYqpjjhoCYioVrmUU//0dQYNhAgkuOKNUBP+7QHzgBrcVKcFKogoNI2Ayg/tYQ wygPhAJk5GjnE1Kv3qg+j0eP5+P7bOP/bTtz7TE+IQid4+VCRChAgFUSDh8wc3UGgCg64s+z 438ode/Q073rGqj5asldWAeNF+TIB36e46qlTIRx7fEiFDFZPvV7/pog/GPvSBICMYAvT3lA buoAw6H+h4g+GBj9Qb/EgP0EWg/P8BLgMAaPz/2pBvguwU+22QxQ/p++jnIiH76E6wCqXcrF Ab/7myprEzDzgBk8+Gs2MvgJYFqCmYNIEEX8hggh2rxBe6YBIFlMnLxThOAStb7RxmC4iRqZ iDs8MuRkxh/9vPrLzyHpfujIcUsb9DIAeEG7fQUKwhekJQezIekCoDheYgBSlTXptsRDYDjS o2+cY4LvHfAAijUCFBcBFt34aoBS1z+pQb3OCKccAF7gJ4RDpa8EAg172xLQOdVQkFbAAnDC /b6KRrgahtSBTbaOG2wB8ExWIQHUiAQAL9BIx3bBId2lQF5QHV4gdBtfcvWKUPQu+yc4IvuM OgowkTz7rIxWgzDI5/TcXixAy0g+a5p38a4LpVUP1GYC4wkJHASHACc84B/UC6ks8bCIFIq7 QFMp38goBMtpIC87gJCQI4JND2G6xi7qIdyHXlmB+psR6wdhiw7zdUVB2wjFCB7e1tQBoG5Y 7fzqAE//jgKQBYL0PcZ+kVSfaPzFOruXUBPWg+R1VPDUA3s+vCh9s3p3U+42lBF3QfVXCok3 bpT9Rh2ohwC0KAMoKUFKLQClFIVLWsClkYqhWIAafg2EdblABxgK+yNRG3vGInGIh+IEDQM1 HWcjJ/srerFixIkCKd67AaB9wpagBfqENycbfOvEUtuN7XT4Nf1AgGAn0QpGJ4mW4AniAVOh B9Jf8poIk5N4Fb1cZpb8L90u6kQpgdjrasx6uAH90dz632ZCfgxO92HumTD4kpQNeZiYgpy6 gdPqRH7AP0gGwLcmoPIBJw/M1j+jADE7OFWvth2sUAWz1Cky0EKiH9BSAjBSAWtLwD+1dNnM MFPpN1FUrEWKnA1FSp7Bo+F3iKHcXeQBqPIvFNt7wgq8LhSgu7JBQswBcoJL4gB5nyOQ+Aos sAkG0SGXJvkwXg57ABmIph3nTqK4lF9GveuP3NioGkWmmKUuuXIQ4fOEPaPkAYjwIMkIp6e/ 3jhFmgnvIgOxlRF2go5g1Nzj7ULNHpAMEAP0wTdu/LI97DowpEnEUoxYr7zwRBq94B7jqeB2 FikkVAJRIBUWBlzk77D3gdALAYgcQOtfsxVOzAflHntB8QdWZU9AAudXHzB8aF7S4H8yCDR3 8MgA0HjAZre77gXxMgDiAGiOA5IXKvWD8/saoHFA5bs1/OYAgHgPhgejup5dQpWtqajmKd8H iD+hHfDsAUipAUiqFx9AwHybFe9PP55IthPQbXa+TmbBC9Uid/dTH0HZRdAXAfI0AKAtzoVa HrafowVP4gQ9o0d1dJ2oXJ02jG+BBZiB704RyEiidHYAPKTinuvu0EYztgAfYbgclgKqqqrE IbQyALIgxWAhAGoBmKXsBYSW0+lQD0raOIoLWXg+PpaCWYKQiKPrYByJJyEA4n7ykM24B6wD EDEAsKchiB3NJlkLm4D2gNwaw2FYH1gBviBQmDE8jwNpe74kK2bRmIFIpoQF7jv73LMkyK7h ufrOi9gN59p2FF/9kVif36eXzPx0P/H0ys0Qalqtty0hXMVaQxVT09k7eYfAJ+j8U/x/1/Of V2VvAv/yl4h+IUuuNnxMR5ilBTr/0pVDQU/VX2XdkhlJnmfp74yNDb2euSm0/rb8tVwbebQs medkxkUhDwSSopCKRSS0sIv3MzESwltBjCKfkSxhFGJO+WjEnf33O4ptttm2ksFGMLecgWhV 3pjgHcJ0w/0p+/sb4WiwBAvWIngWVCKg93IA9aebpyuMPzKwX7qpZFhFhFhFgNpv8ADyhwm2 AGYIkFPitESCer1X1OjIehQ0/dQH0YHQkR/mvBXIYsIPfRQ1RQ1RQ1RQ1RQ12aomar2jFRZ7 e3sBG4DxQAoAf53c603AvF9X3ATBTE23wAR0lIrmfL+XM3cAIKh9gi5Ao2UeEoAudlBPDBTv kRhAjCJ8v4CobkO9+y9DTRV5nkqvbnr/Pl/47Bw8TYC5gXiwzGAUFO4RSmoUzHBFAiCvQvQB KKg4illXYB5gc+tqiKX5FcAIfzpfkeJElsLlQbrmApCqoPeFwihp8VvBeEt6wGEySBW22U4+ /4fFJg5+XSiGHtjDA0vcUIh36TXOJZEAjEQl6G1UisIN5LtARByjGGKw+vLGIRYxCKxhIxgM kYoFssbsS1rWs3JJGJE8XsFX+ILrxsGkDtkKJRPYkgEJaDSYoYxAt+TQoDRFdzVig7FFwL/y YgGuLV8ajs4VjJG/CWjMgv8Nh8w1X7f4VRC5tQecSRQQr0T+ge4OwG5c3xD7DK4Q/pfQASpF S8ToCkQgNEED0/pRUPEHxMOZEYIkHirZH5HqSjH65E59XgeaJWu/ov6Xzft777I8+OL3+Xz2 +TuVNtaYMFChhjb1atC3hGaWgBgzgkRBAcIFcyyPCx051j3dewMYRFRYMAMMhKACinKyh5eQ 5goKTVlCXsUuIvHl5W0Vu1ta3QdZDxA0d/BU+AKcoovYPvV/zLqg/UCOaBWVkVThQCzQD8QU uKc8EF6QUZEQ0pThKgY0Q4gphV48acbtMJ3oKgLIxYMBZGLBgLIxYKEixkSISLGRIhItbwX9 mhTBKqJmtAQDzv+K27uIxCSSMFgyMRWRBISQQ6wICqlCj2biCm6FDrCsk8vyVBoHrpUGrgsg sFLygYhIdKTiEMkPyDEYjEYjEYjEyuBXdC0BR5Cl4iUNuDWJiI3yyvXFEpKpVhBAJBAqLyAh QpNRQJFUfjvqBcAwEYosR90MIilUipCQiooUesOJa6oMD0neeFFPgdrT3J86cCa8GWI7xUtq lfShwu62SqeDVhvvmZmYBhto4k80AJ18NgLN9nz5JRRVxUtSKRSKRSKRSfRaREiJKmCiritq REjaKiqUSqKirUWqKiqVWqKiqUpESOm1hUl+E3CTRIcwL7Ng6H3lRvf51usDzARO4C2ydZD3 Ek1qCqdCO0RMMwMaMcLWxxaAOAV79qDSoMFQg64qIbAOLnmkkgGSUmymuTq0rLE1iGzeDEcF 0VDQUvcKCLq9dLKveqDBSgCOAHJUHtaNyr4Kg6AI6EVexUHaAY9o+b5UtlKoFKQ4AbAKX98I XokNwAyb1Ib0PlWSsqoqowDi0JOQbG+6siMCLKIJUCWMvqFVocUW17ql7QlwAlEMGmsc9DIA 8cueBhMEUrizhd0cgcNdRTCh2KGGYBEEnwBJ4BAEnRuhVQgi7TxZvfSoudZKPD28ea5MbtmE AgIdf7ow5QgQIEYlJSfgVM8oFIQOgUAP/WCKcrumyiqJTcFiQXSWL3L3uXEoDu+TrFPEbGJ2 qg8gejpzR1Rk3jl41Vy4LgAcBB94Xrdhk825ZCEbqKBqFJFVaBQETEF4jcim0H++woeIAl4L oXJfxE/MgKQqEM6UkERF0TMkAPFgaYlhpwLG28AyBSgOsC/W448swaIq5KN1XFlIiFloUzqy wFsIvZute3EK1B5HZm0wdqmIfiJ6APB++HexMheBkcr4Wvyo896t33vfdlapKqpoKg/cdW+w fxHmcvgesBap2dEaDugV1UujBY4HR8yoObMPAAvCZQ+EBSIpL25cfDNnoCzcggaxG+hqARsf De7AUzsIsHIRKCAa/ryVcsqfliOaHe4uoR5MEXmA2vkSE3UH7blIUBQDYb70WrzMA+OQp6hT HJHgZlKg/u0BogWdA7AW8TS8Iad4C9Pc2RbwCz2BR9PIDqIIFkTwAXYItNdn8GECbxE3FcfF yU5g2dIFhkGVAdBF5F4xVCApGgKUt0fADDBVeDmABwGA8NovLt7RAsB+RNAFw2jgqg6HKiAu URS5FHRFtUDZeIXfzDuNgqn2zxz+dkPcJ5Cn7CwQOpYY29s0i8PKm15YxwwlCQhY8wGZJJOE k2QR34oELUzGGBmYj+r/kD5noTwsnYKh9A3wLikuePrAjQzEyLx0QHWDEAihpWFmY0kwPRjj jrMOFsixe5czAU4teqyCdYp+3GrC62x001q98cOeTOoUKGDAxQ8PYREAVvAhQgQKEFEyqiJV kGjpyw0k0POAugtxROkDZSEnbOeV7HCU90tNKqqqqqqqqqiqqqqqqqqqtpHKRjIYqqqqqqqq qqqHbPOVNR9MQTYkIXXLv6/m4hRuclumW33f5fDjbbbbWta1rWta1rWta1pZyiIiIiIqlRxD VWtaxrWtaxjWtaG29r1mLTTkmDCOZye94Mjw5qynJMXM3VRJVhGwXU7Yu44OCKiqqXI9p0Dk fCKqPh5qD2KgwS5nD5Ty7TLYP1gaYqg5qLZABhuFQe58Gh62TdaECQCD15KI7EWhCO4NTP2l xTmquhugxl9HESwtKg0YrTYv5IQgcuEBUKZ97AxAppB2CDvB0RN2wlJJVVAgo3VBw/E0kQCr AGYpQKmsVBriC4I4gRzyxDLrArc4DWYB+EKWCQkjEkkWEUJEkRV7P5lAZop83CwE49IC7gJC XEFSjyo67mKk9hvbKuqB2qqGQo6GSIp87qg6gWPpBCkB+NL1F7zijYx/IoGYtiKo9tmIld7j /HdQXtCSCAEho49ByB3wJBJJAgnOh71Q8aVF1wVYdYPh2/bZHDQN3JjN1VVVWKqqqrCWPbpe RIfABawimYaLje6457FQdvPs7ToP+hwAaAD6Ks296J3WDeK3ISRYsaV4B4DgC4fYE94KfBV7 BF6ZIrjAH0oRdNoBGkxA6xLCg8/PVF7g19A3LfqChSJHteTuWomQpiRuU4HGXQVtvBTspYE8 WDGAhHI2Hr16AHU85poC3avEKLxNvZ1SiSjjGhrMDErwcvNgFx/jQtzEXCLAV4UUAClKQK19 bc8LDMQmGGITABlQCjveDOPm0U6lMM0UaiHWqDN3RUH0VwewCoKSZxQLCwEZFFg49EYg9gi3 www+zPknJCpdy+oCgDJujsDyqpqgwFByVB2x+x2K5AjEVTc85+bsqKAdGOob9d1WouAu6+GQ +d91gDByagwlKeCAN8ArWx97UUQuQwFQyFOaK4eIFUU5EVBzUXmBvQ6oqDHqBNC8GHKgqfd5 /IbwQDVMRFvUEI57SqoN3k7BUKscEVIMbFAG1F+gA0AUi0ANA0o0CF1+4G90UtiPm05EkwI6 Sw6gSMJQQGIvW1ZE0kh8hEowDIkEkECRtoAkAaVC8kLAK2Yqza43QQMsDyIDdUHJCLbsxUbD cUijAFzKbEER7WwLWAFCmCi4AI0OXWLpAYwG7TvRey8OrBABxFRioOD+gGNeItKBoaAUf+ta LwCAULog7fkiwFTfP0jERQ7sN4KQBcj0qg2FBNIt9QCw71QaNyBZKpgMI1hSKZIJQgZ9FX8h F7h+4RYq1gHVviLRBYpHb27b/aUaAnkhRxQFeHsqAAFBSpQD4z0Kv8saI9xggqeqHzaBq5sA PV4lEGQNqohmGYp7wFhQV4QXNUkEJAAJFh2UKdVrxnqMQXIUzGg0gNiEAIg5tQ5BMVZYgIHt RwiBkAVBglIK/qEWl37lS4tkRSGKoM0B9aoOkLwAemBdeKHq2KBIrACChGKrzRU6g+gO1V5B xEEgUVBlk7xF92g8AAioPGluQ9Q8nWPWOHSKsIpg7+J1XTgA8EU3j6RTycwIhzAqiuQlAkA6 HBkhmkksgAkgooooKRRQUgshCCRCMQjEIxCKoJCKRgMYDIkYDIoEiSJDvQVDqES3RT1ClhXm PcJ7niC3AHJH9SBIGsROSKZpptxxE+k6FCRhGQkFVVVRVgG4H2pIQsn1kIeZ09XMNRVMUfkr HmOIMFGAwRIDBisGLBiwZBgNWpbDeNkLq4CHNEALnIaL/PkWeAA9+56KjmZ0WimpUS4IAhA+ ewlGUoUJYoyBKhBkIIsFiwQkFCKkUILFSIikVJyKNgIhIytAEYBIqpBHmVQLv9CK6aKI4gLy eO8z1ibLOqGwGRUGABJoD5w2V5+kFNdUpVlClCLteoeu+A7QB3CCRFIiQTdqbMbnIRPOJiAX CLtCAodd7RFHAde1VYgsjVEUyOAhoL4F3Xei+0x1CvIpEAbgEhzgFWraByURZsQTiHbtDffg AJzuolbR3RUdgGJt3cgALnxkkkiqqqqqKqqqqqqqqqqqqqsJqyENCSDIyQBUJGSEgIFDCYBQ FEFUxyVBzRMT/XCpiASAxEwVYiBFT6vaW/qB4D7r7tQpMQaKgp6OADSWkJDCgf9bgL+j1EDv xRSrm1sWwbjwAq4iWEDMRe8NWRwBTnkLWIpRBAurQ84BgKb9M+6swdfkAuV018lXYqDBfRYJ VLlQC/5WGuodqSQI5x3F4Qn30hJ83ebHUZ5KtS0S/R+myGADBAGCEYSKukv53ByBD0NHGrzK SjBGCMEYJ2sKIfGUadwLQ5EEC9DQpWztOAXVDQc1QbmklUQygg2hCB9EEMxUwBTlUU8/rDtF L6gLBQZQVchSAsFOdVQf4aGwgiFQNt4C63HK2SKckDYLU0hIQfgDEgMSAxIDEgMSA7APSSdv UhrAyFWgXYBQQXooUAyHhRrwOjdd1ETXM5bByBSIoEYqDAU+0WHvP2lNwTtCgN37doALqD0h tSrUEB88VU1zHaqDZaLtobo+w37ELrwDDAIK4KkGBwBgFClCXHaMHIAyjQ3poLQQ6fWCmQA6 OLBDTZdRcnRGEBy0BoBbDM0DOjMYilxTAoLIYIAZTIGlzwTOnMUvWQBC4Y4A5BtyAMDgDe5p kJ1cQCYgGwF2wJLhSK2gjURCqgXHAHPGZK6Cg4KgygClxLWrcKZ4h3KhFVyAF9wgQQXhkH3g ai6Kv2Aa0icwWNzNMouFwA2sRELr0HAu142QMg4LlvQuHeLLcODR3n2WFNqpXWXsSPoaiByS Ae1sJrK6rCLlv0sLtGAbfmlEIAjCyAZQHcuwUsBC1rPImhOZahN2aCOjcUC5ehQz2op8ckFx VB6gaLiJsLhSra4prhEFL91Niahuc/RAkkVQNjhkBUVQ50L1cxBGyoOQA0mz2KV8JHcO4Hu1 /VAFyRfgAueYSMgnG4i2K+rs9p7nA4esvfpY9VFFt5gFz5qg4rmqgdxwsBVGcDfxA+nWKp1o niYtg7wAO8QSgEgpBA+ANfhFELAgRRgMBU+yCGsDtYRhAiGI/IbwfzqOcmFEU5WyunZvX9yJ mNBUGYuHZTfcAJLHor9SoPrBVsK4l0rCjiUCgFVSLcyvs30G4UDxVaLhUaqg3GCFtH5PiAz9 /YgqIahEHD/3nYES0REa4cEUsKIHMS4GwwIqDMvw/LftHa0mIkXsrUDkIv1iLZAsBiNA4k2R DKKXCKt4qWt8t44WRS/TCuFQlAHznnuL0FQyK+SB5Uk8FB+4WioM4iIeb0B//F3JFOFCQZTK p/A= --------------080106030108000808020000-- From james at mansionfamily.plus.com Wed Feb 1 22:00:28 2012 From: james at mansionfamily.plus.com (James Mansion) Date: Wed Feb 1 22:00:36 2012 Subject: kern/164258: [mfi] mfi does not work with PERC5/i in AMD M350 motherboard Message-ID: <201202012200.q11M0SiC034213@freefall.freebsd.org> The following reply was made to PR kern/164258; it has been noted by GNATS. From: James Mansion To: bug-followup@FreeBSD.org, james@mansionfamily.plus.com Cc: Subject: Re: kern/164258: [mfi] mfi does not work with PERC5/i in AMD M350 motherboard Date: Wed, 01 Feb 2012 21:53:26 +0000 This is a multi-part message in MIME format. --------------050403010509020201000401 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Looks like that's not as verbose as it could be. Looks like I need (as well): boot_verbose="YES" Sorry about that. Might be worth reordering boot/defaults/loader.conf to put verbose_loading and boot_verbose together, or perhaps update the comments so that they reference each other as 'see also'. Attached is a more verbose log. Not entirely comparable - I had a poke around and enabled the mini-PCI (enabling jme0) and disabled the Azalia sound, which I don't need. Its bigger; I've attached it, compressed with tar cJ: dmesg.boot.txz Symptoms with not allocating the interrupt are the same. I also tried with added: hw.mfi.msi="1" Seems similar to me, except for: 246c246 < intpin=b, irq=4 --- > intpin=b, irq=11 268c268 < intpin=b, irq=4 --- > intpin=b, irq=11 340c340 < intpin=b, irq=4 --- > intpin=b, irq=11 ... < intpin=a, irq=4 --- > intpin=a, irq=11 James --------------050403010509020201000401 Content-Type: application/octet-stream; name="dmesg.boot.txz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="dmesg.boot.txz" /Td6WFoAAATm1rRGAgAhARYAAAB0L+Wj4Rf/JiVdADIbSNSWY0J+NSVmQev7Nbjd7KU6FYYT n1/VqlKaRCln533ZPjFiRbhv7oPPditPFfKPv3ydc4oX6S/6iKpviV/c7GNm7xnwYBe4lLh0 9VNw9LaoxQfrR/kjBT+JK0wne832kTZ4E+AEFEvjgcKBNNeEA2DB+L9kQxKdpQP0qsDpJBGC s6O5io1awaHmqATS2YEWSg2baOmAmQsg9oqsNtOCACOc9+ZcfLPAtuVq/vIZC3Qf3Dgm9/Xd UVLW1X1Pbtn6Qo4TY4PWjA8gKUAM5XvYlk5B7mBBJPlltQXdWaZHc9CKHckCN4IoXnl0p/z3 buaJoQ4Y8QdYKy6j0teS30SYdI6NUs2b1QPGoIln8qHOg3cYy6e5+Dvzl/iSJ1CSRyCWqz+/ oAQd1qtvPvJbzsAzWGRGBtWzKw7GDPafUlVsSCRLJfBoyirIwGGR7fPRaAg/wx+TMUyLns2P CVa7bOrLIRSjEUohi9+Sj6HhLuG2N7fDcv0iez0XGFEVK2xreGILyc6ogtMufXAV7Ca/IKsH Yqq2BFaJuXx1kEdxsLu5BR88ALq/NE2l1ZCiyXJNK9OxH27fj7HoGv7VLUo3SN5QNwfu7qq3 eh4ji/xyGrRvMkOqPGZBMbqWHdvJdET23lYk5iube8TZtsDZED4CC/GVDV2CMKrd7rU8Wjot D71YLnG4Kt8FnGPuAy0GWEJO8L0N1XHF0g+GzqOFPWDAHRM6xYW8j7joOHGoNo/OX/4F9N16 5pNYfcC4ABI4iYFyfeBntllgiMiznqhBdRK2XA86yAfEe6ZWKJz7eWVPR3uoDdttudDMxiJz Bj7gV/tPjckthXfd5XH/ICJk9fut/nuVs1ICBDbd1VSo/4ctApusdpNEyu405sRegfQZtsiq 0oUTnoBaTjaZuOjaPJZcmiVETGc/OOW2qKcQUrtDjLtKqcJ+Gqm3sOiipI1kOkfK2pPMOJKi egF9rU8m86M5LVeHxu/OxhWRsB+b7N+/UQAIqq9jupGrlQ2mHHQa640PmpjK6sh8iLQ0ilke Qn4nuEGchO++e0jGnH5zjrUGWGK90V0WFdKQ31PdIPnRoHqnr8dYGyqmxFttQ+1CJFFsamHV tvHHvLtVFIapkCuGCpb6PdcEovymqzhFKRQHy4tDHIwHc5k0rJOfvBNLZ9Cak90IsblT1v1j g1rEd4jCsrVGzJFOB08sd/y4rmjwNQCC4++Nf6KbJxetAvDD8ZcFvcVmn6psFTJrSekfF+KS dizzojdRqt45aAQltTsvfSYDo+FBlrWGEyeoAQD7ptyDFmuwzZjUFnJOVtM5IvKa4GATojQz evq1kcfhVTZi66ylEAYN+ynEnDhLE/Uyy3M+2/D9Q2HR/8RXIJwPXsu2oOBH0BnjFEJEPLbh 42VPbd/diRGM3UrOBbrEeyDUM+ngrVaD0IX3nCt4Ptu0elkp4SiYKQgk9y7kR/Lfr1GfsHOM xXBd3UjlGV6HHYtwWnfzKxj21NEKOgar0ytaGn7T3dkKgqxSSJhwLQrVPPkaVtZZGJul03VN 7qLc81m5dFOkyz8Qcdh9qtPR8rIBTow3nYePGTvTMkgYjgXtUIXPXPDsX8EZAGitMchhLm8l g1inHlO9eOPSR1TOG+D0Zv6m/y8Dh4L8X0f/liP8kkensTR0P2andjQ4mGgVLmkNei3psuit BKhMQJRpXb3NZcrA4B6CyrM6lEulj2yKhFQpWtvxWU4kFLyMRdevQfvD1OJ0dA3kFcTqHJev +nkTa9VjOHNCRVj7C8iYwjelF67J1Vcic6bsSmoHb+x0W91Ff0/Fjpps3HIM8R5zQL6bRyaX EhKbO/7KGg6lNDEWKf7DMvXV7JIlIku7nq2XRf83rFCJwX3WnZ4MZSSg8Q7q7QaMyovytt+w VY3V9OMvYqbpJ9HdxDBk4NDqkBEGhxwlFIsQ8jKCyO0qUVnGxHpa4Kr6tzTn7Tu8iepJoojZ YNQqktawTJHc325RsFbJGpN/3LfViN6hxJjqvnsf+npWmTXngK4XQI+0VhXY7MVz2Ng/8luD js15ZS1jnnB13FiEXwsMLz4CopUVr+RKzXG6KU/CBBgt4Ganalq8jiJUfT2D6AAt/zzuSmC+ wJq9SVG9nTKOs8ErEszyrGf1WcxQOdUlw8MFo2XYUyaM+iiihJLnnONfW9bD8ESKF+RQ9qZj Fs6ots/B1jd9SnsQYgVACFYhxJGV+WFTEP6L4zbhtskrp8P6OJUrVIxAAhzTOjbiStg9XiCP ppt4g2Q5B5vBiawynTUuuNw2EFpDJ8arazjypFLnjZr+U81tvm0+GokSY0FhUJQl+ilSBiRI dOdmfmSLjebYJLnQ/cAZJrk3hQQiU+EmPIYKU0qv5Hy8pQJ74qDSWPQmX/ng9Kp5plORf4Aa xm2vcyVeGwm8ptYzl2yc4/KAWd5gAHlm1zrosSpvCyBYIgHX61DMZpjW3ReawYDqprjw9oQC VabUiDvNjeyTlVIalUd7WsreV7oZ1LaNScfTZQk2Ow2FTGPWGCcRuE6SkKthphUQ8JkRQ6Yg qfNeGRYpg2qgbqgpwfIDKR0fPwRPWjFL36lqQX6pchBn74tkBZrku30EVOlHlLIcZ94xuHVl xwOrtGcIM5+uqHK80TiuIdzwOKyMbmF1yEQKI0AJ/K4PowT0QxEH6RSKhCu5mjWSTyQqnVyU CoGsN9NzikOP2+rX8NIGZfISvk/8yb+gsIPj51HLY3iDPAlatxhPFNAU0xgPNsMtvdgB36cC ec8njXIdqgSjMDB0DTG7l1kyg0+4eviMclBbavwtoBtI5n8Xv5xxTq78HYhF7zbXGfizqFe8 4a36uYjkuop4LCbNme3UY5zGcRlC3c25J3JiU/E3vSoq+ITlMvsPz1jcmozFOjzUcNuNmPSA gATBE2wGQP0xgJ49XdsV2vTa6YbH43R4PT6PbASH2SwqQWfKaRODnL3XFkiITc7BVT+iIDj2 caP7dJlST2Jy4li7iupc/e443kOGxELxVRSoQL9W+1iP722J790rnB5aZ1WlHPUWeDjK1QTA bMlRDjpNBBrfYYFUI79x0C0eq7JnVQ0bYhdl/mJ9y+43E8TqO60EgfB8T2Qbv7iw8OdVp8UX uAw8CnEt3R2iho2FM7NFxiGew2ScIyn2820g6/gHmnFj7pOzThQxoIuuVju2nN6AbF097Kdj /EHjyDxWxyEQRCrMjIoyyYNHeFvLO508TjqBYs73LJNn3vV6XpEphXRImcAyqsxF1iBQ4duM Y+P/iveS/6i8VxEvNi8jpXGMdwLO74jFt4Irzx/jL2aDhs8XuYNt1SVrCzToRPZI/Il4I5fF argNd9P/xkel0IjbT+/To+nfH/+miahi0wtswFAnt7ONqHI7582MH4IqRrKMKaCuRroibtHk kCOk/iJi9atdDQ4c8L4oSMQN9qowfuB46jZLTs7lVcp1c9fSYfnrXah60GQC7FDEtpVhgXtT yUbO0y1veATubI7FbxRvNPGdluGgBnETssAyC56xTUX9UFlF3CDnP+eK2c9/KFlpWhmAsAHH d1GSPGxD/lLDbrBBVJuuoiJP+0TDXDjb0ld1wt3ze04EJB4kg03ktp3c0CcUng8PyJkdas19 MdM5XEBkaWZ86VLdU7L/N6HcaTu8SnE0ADEaGbJz5RdFUt9BXd83gdb8V4jkQx4DqdRYJfbA HWyRHJ56d4KXh29Uw+jTSd/tHL+Z6aK2LZtUwnfYiNbPtEY0TsRdFbPYLwGZ11VjsJXH5TIf ocGra8LR5ryTasgHfEMS074+yrJW8s80Wksvj/Scx3wioLuMaZto6+0RLZp6t7oK+q5m7kAO 3a6WrsytirMIzP9qCl2yJozR7Mqbhx37A/5Es2JAetPk7vnCU+hT9diAeF4i+8KCz4A97LZ3 quL9/U96zPAzqVPGRMv1Ymyzy2n/LdU/M8Gh9K9eN5+7tMZrHoB/F8Yv+DQDknkvhhHMwnn2 ELZo+WWwGXOvsPtt9KKBVeV0OOSAMVQ3Krhq8HZIJdqek1CmEaUrwC7xSxCo74R9IqgQU//v CkpTwuMb8SQnnK1CjtjXvj3A9/Arlj1jsBiN4xHHtHH9NqtNh5Sq9ygJQG5Tbn5sk2IyTVYP 90pII3mNa5qDKsrPrWt78WzohFy4JyM04hC64h3YmhJv/EHATOE8p1Ad8svWLNCnXlYAZg7o LfQF3bdgmzDPw4d7zRQEZDHj1XAua5gcUKNzwWlhZidALrm/iDBV70UbP84nbfGfgSExnrTR 48/Mu9j6zpjdlTmYq4HQJxWsvpQLiyVgr0KRm0V89E/XEq74myaZAjrEW0lAifdmdwON3+IO YIwthe/k4WfucVLHZ6bUBl+hLXuHLkYs63FTQvXS7CHj4xSf4v2tme8DgDsoZ8heqd1T+LrX LqszYi7dSAXDZtDZNS0NgTbvHwJ6EUSRe1hwVhvhWanIS8FeXKmTH6893EPRKSETJqFBQX3m HAtcCFPvhoPNzgb0mDn4EyZHs8ZD5AuTBbuTP65S2QkHD3go0Z5jwB5LA94Y2K2rw1oEefTi U7RcyQQmhzWChquYN3+1Refy/iI4jskv233ysc/OhLdvl61/0sWojvQOQVSjojAsl1BkKsdl uBt5IlpYBLNNRuK2E55hx9cRABiUtI1Ywc0yPTB1eyvl0YrCqAhf6dPje8MvnBycyK8NdIvJ 003NZNMzGki3o+B39WvagPyd0exbD77+qQkaF3E+dM0EzkAa8EnY1H92OPQJ924p1LKGnRtM /n6zniBsP/SRktbwO4DZc7Uz6pHKwRgAcUNa7b0URf+vr5r/I3MPom5eKmQ2gvKyYjKFbJYM LJZCeciX8FbYdZwSjys7Jr+dBNyRrMrrFXvYjoFYYd1bMNQt+cBCZ1U13oabOTrBuGsebi65 5gX5I8hVo33D8giJ7hhNAN5WvzFhARR3o/erIEoTrEOgb+j1ZbAK/z7vqQcvGOLUrK5pFCbr Nm+Y8yVOb2MMJXLzrODk0BMEOIHIaLQRb8TcBF2B/CfoH9pJw5twc56Y5SwO6O0XBz3Bs0aU 25ZWj+DC0CH+MAN4fwqZohPFiSa3R7/nKxOd5TLn8jO4mPy3JysJ10yaBebEEXDIbTOBojA6 +0ABmZhA9kadcgyQ/RsHhGOZP/TBYYY0dzE0lYqw7YoQRShOj89e7HK3dS7sGLSk4H+qTMpi /wGdH3rvD7bTK/mn1Wn2Knv/5cNvuh8jWv/h8R3aAtnGsIqX8vWH+vbSPUwhyZnmXTxCFewu 9Af6NHmjv7zOV6TPzbxz791P608RlmbDKZsA6TDHqL0nsKtM5QUmfUjszrP6/MKPe0TxxRBf OWgpUVhIwfjKTcvtqo7As+FVu7AdYK5S0Hei2I8MTJZdWh764DYgnHkLZbVTrqUUmkjFFpO+ RSlpB9EuKEDqTUzahGfTgsj9rG2+U8qoAjUBdrYipUnNpsxvahXguUlWgS7J/RXeHoK87/3K DnfVDkMb5YyxWC/sbU6nEDiEcPL8E/nGJiRZX06Er3dwGjixgwvr2R7m708s8uDM+aSDwQG9 R6M1jFW3+uMWoMD84HiHr/dBf2uSCHawcvh+xVEWDGnwij2d8HzKl4buMzuZrqJ713QVnnV1 T2AFY00dY08XmkqBFqFS62Cc+C4nDlL6S/azz46CLDnqdZsoQkVlJQnHfV+yldYCpmRHSbkj z1c7Sd7ZPSIMk+ireCo/02qR8MxxGVmde9T8WpcI4A4De91m7ySPetSQGDWEAkmBqcvUY+qC JK1wcBPmVG9Jotnf83Jc1PMxIsN1kfX4H39rRV7mQxe01PBOUHzyopZuIZT+Hs52IAocDJNB ujSabGvQnP99rKoPkYRyqepD+jGl6A9q7t0hIO605OyVa6ANAD27bmC2v9ELH+FhgCGFIoyB jwK45x8OMkfsAeO4HY9iSnTW/tdLxikXN91MuThjXDotMF3qNEo03hr2i0VwoEL1MvCPD+2u t13vjrkFLP8fUpIgqJwQu0obUuiuGs90a8x3T/UjKkMdq+XXZqGCi9YNSvrhVb5QXQ+l4k3T C2PG+x0rP446JxNI8DaP4ekXebLW3wgc7TreQBd663Jr5jd1jzVnOX+ZTvNmfXtvJvjxGJyp mpNd0uXG9uNbesVbzqIJ3/6MPsOnRQIP6pOaUyzyN0WxfSevwss5OKfuRiEK49YJ7MY3J2KJ ezmua2x3R9gliHLXnoyzEFIFqgPQ1TXHfzEqLWyaFZIoWLY2jkv2DdmLWx3M3pmhlTvSuIhD LabJriOqlw7ugxGbtPqhRTQzY74RI3vIV4hxP7BJ+h+/tKVMrVwFRVcc1POY5gQYUBmNtgtV x2UbxiPz6B48NcAsegBa/6X8NOsTjlt4Zx7AQvV7pARWwRw3y4iHEXEb4uzmvVNqXoZR1tk5 3R0DyWZlcnG23idEMgooEvIW8/gCZNK/v25FRYxHtbej4japJRwUzDJhB/J7RWuPvu9cNWg/ dv4tyCCc/zjbJmRdCHXjj0S5XnoZ1WIeRboM/XKG9p7MPXgOfygbRNmt/Kf8N8eJVWlxB78l ZGmc1rkhYr4dTAPFIaQV0c22kyPlursh/U+9NPoBPaj0+8YaDCraqIg0n2laSyRR+XOhKVjL v4xvLkxktvz+0lJMaxwJWoEZdAPrQL0wbpmUseTTxii+LGbIK1ZfwCtW7yR6aElRaKrnn0yQ ExxsqrK8WV/OyhyPOS7hWh74SpGXhhP8ZGBjxyccK7c2fAcFWEs/CmBSEkF3NRege85a0pI/ DkpUPw21yaGOjPUhDXm36tlSQoQuTaXidZxvqJlehFa6pw5qVmJqChiU6hkbQsiUJ4sDpQW+ GOzG6yA0w6XMQHta86nW8MLJ5B3XOnX36RAFx/1WuGhXXrbCKSMIORmOKaxncOZfgVSmlSIk tZMf3TBA1VcFAaXa9HpeRZ3pbDz9vd/EKG+8+y2rOAeQALI2cMHkJPOqD8OHfEqZOLB04vuw bMjX8Pmj3eYNyJWmDqobWRjculQ7bLq2ZSYjr+8b9Zj7ZLnod4N/QTdlHRIKRe9CTgfhenFK hGHBKd7TfD4PbG4p7fRdvLfU/G1Nz0WETooTbSm8h4fCp5SM7dzJrNtnCUwV6Ls3k+p/kr5V sQUlaX5Yw0Y1AwSQC0a/nlhq+2Fi6d7xVOdrN1A0tNA42TKpPKuEbQ1rNy6g/PzVfgFdQ2z6 lTqd+J8KylOnQEE2mcZ2dyzv95usyEE1AL4jdVSaMsb5Ux4i4vtXlNnNgxzKoCMLaQFYpIHI sx1ixY8aL7Pww1jzMkRjyePliN+XmE94Ny67qzvbHg3wZmv55o6vTzFZd+x8SVbXAG76abti mQhZu3wc8TWT+2i+bZ+cE3WmPDuhHVoTMdjBAla+bo21h/RhAWFQXmu5b8I0RdZSFEYeivTv RzATlXR8ahr8Z/cU+Bj0Byo6FM8G3/CLsyZkmI8Y+gqkNXVHzMycmhw5m2r0pLaqtzHPdKRz a9wmjczR3qsYnebhJpjH0X3I1fDigQeccprsRs+eIm8F9nXh7txdKsHs1+L5DhUo3Q9yp2+8 GX5mRlth2oyP9ltvg6LvFn3t1+011B+H3mQiWDODm2AA6O1mRcJ9tiwowjW57K2G8RAexn3Y UzK/1KKkSODuchSsAHgWyMEyxmJjqJEafAZXCxOwylcFEdLaZ2hjc58uBLMW8TlfC5Cqi3YH SKivPaYv6D0oF5v4ZJ5E117RX3qvbjbMgDaFbxf2zSt2jCGydGj+fWHQZmPBS/a7C9laOrj4 7S3r3YOBDS8wDsBOJ9u+S1FgynFnbXUNVEnQGnvnHSHmdQf83G/1NtXxrW81iJJ21SMfkohN TN2mr4bEbJxUCegnRvyQJsztHhZx5sdO/9Q7zb1uSsPQKlume+F9PJWyV7PnS+O0WmlDswlP lDKkQ56EbCsIXRuy8cD+3dG3IPJrkzhRQIPVwckVwQgTaR5x1xIviD8fql8rrcs8MVkWexZn xnbGRX/TAVzrVxX7Eh50O13vbvKmacZ1iuj1o4+aMe8C/K6I3EGXrcvRUfIVf8nDju4tdXHI RPQnV/9uiM8aW217tW4Xr0hHGlD7xeHVaGRdjIATnf17o6OGLVdLMXPpnM6Gb1cr/UVVmBfT kttqs/n8JvgBHviHd87bHm5EBEDnSRpHmocy1Zx8sycrRLfEL4qLuE861VSnodoxMSEJVVyS rV1MtgZ9nt2xyzzxUZi1QnYnEYYyQQP8ZwcyrbvEk+HtvvEqYoOFCprLF8SuK3lhhXje09sN hbHAHiBM0hnDtpVF3a7+1nq476iKUlzNImyBaszEyGaqewMBjI/cAoFXEo22eWfyjfHk7LNE wRNhaRxJOBaJfe6nhjm6ypvTbmXy2FqbfXTiBNX1yyu3JfbitHSmOHn869S4zVzFdqBCyzox 57MYt7zM58/+GMeeMWdP3ZJXb6Mmj2boQjAsONRCXVcvQNORW561Ktx/ufTHbrhLYc65FTNW wgqgCiSt7NOCz3sxiocVbnVkLhjBM4uF+vrd76mCLT8jPLtjYjTr5FOesBoJTvu+t6iydzfc oQBkHKr5+9kCm0sCfaRn9RQX9M7uNoyDDiR30P01hTxoQSu91MhcJ6Jp/FKTd2BoIGd1v22u TtDbsCkL5MFw6/vN3dpZSgM8SunzKtL1OZ9JvhGR//4t715e7kMPUkHCEJ3qYlU+cUzD4D5j 5zOGcT1eTXuAWyuU3IjLcxUBSZL2I5G8XNxEXEaVxEoiZ1dpnHUpSwUtu0t6fpqTerApxGVN kRfP0d++rNK4J7xozXXiuGPeXfnqGkxs5t7sYT7EcZUpur/NhMzKVNcSwGKwtLgrNaiUBhXv 4UjX/ydxs2Fiv55+RrodvxtDmfAQU/QK+n3WllWn2FmPaQfr2CtiP2j9z4WmDkAP7ygRwPGF iPGePe0/lTElKZTM4oTbXvDCGctHLAv1/IDnW8sqmyMKZg3lmfLvHhaEJhOpLAY/hcQahWig ctGWiw8siaAGEu0luI76n0P5RyUlwmEkXbEet6KXx9qLSeqxEi86BZyjMom9FYHPlOSAiOZW THd7lDL6FdwyGb28vJBK60ZWZPZsSVm4VYr/9qegNzQLt/zMBFXAbaSZVe4fz7Y+3nBQ+Qz7 gYoAbCRX72bYnNn0zO8mg8gwuv80tZSCiulzi7nWqliLW73NNJhX4WDHPMrvUiDpamwOj33+ GWn1gXMnb2pPP1lJIrDCcFA2VAtuo4DGA+SZoMlHOp0XN0UOXlhb7F+2MjWuj+eYZJRw0UXH UrWw1ABcBnxCCQUs9bqhFsDkvirTu9tOCxE5gv5jRcCLjBC3/Jz4NvAwRBFGHq/B5M4RVfOo nf07rVIKRwdMYHgauXwAGuzEw9xMNQo4hzDagV7KyKQws1thEeE7wHhrEjhakZDKYz0Aj7PY SX7Y+CRMsji4JvtSw0DjT9t7E917NKFHviRxHRKBfWPvPOcXJKqvSenxkfQugfsdBh522PSM SxxJJgvCabxllvOaowpt/YJrQHjjrcdjZDfEp+ct9lkvlMniSBQmidlioGVqYz5PT0/4+QOh C2Ijmb1/a7gFBlrqKg+1AHcKX8uC/om4p21Gj1ytlqVRvZR4+sm4A3t2fgR9mQ09FlAjoS66 NGXFllVQp3fqYamVUfjThvTrTvfslXws7KRXEE1PhLquq1B72NJFOAelNThqHE8Nf3iBHUPW WyTyNzFTW3RB3MTgJuZC9/qVmAmHdGLIkg4sur1FL76xEdWCqe/ieY90MTjXTpW1sJuSHFeS NPjxAq+ZGXfrL5aI69GcWb7k/Mk4ms9lvIyXPaHbIjiPdk2FuDmjVkzV291bBbo72bhVld9f b2jQOg3cOZaRhthISDkWhJ/c1bTTnanL9IiClMWaiouw03RIdOScM4YT+0gji8zYwr6UidYU R4DkSAw6km0R4UESvJi4ZYIYn9awRPhKaTmMAkBOzbjNcF+pNmtqPxu1vfwpstohLeUtL/F9 WM2FEM9d4KxRJIuIWQpJ8DXg6a8yJIsvXigYHHIHxw5OS7xt48P5PKGWj6pzkv4by9m/jvuS nzBkv1Gs7DXwz2MyK+Faqf6lHhyTBRyZnnuAi3ynrQ8PXBgzcrInvWPfo974SEKb4Y7cBNUr qo43l2UWRZn4TRKP/NuiCacVjkwGQLAm1OWoComNiW7M/abjjPf++eYSW2C53D9kOfDRfUqh vXLkcw3yHEbF/4p5IHXvksrv7oFJKPogtp5P0J/HGAXmVf8vtz70b/BAOeH6/pMzX0hzX6Cb jnoRQowLSkHNZs+6utujMX429CkdnsBMEI+hwqLmvX/0ntcxJb3BdhsV6YyATUB2BSWRlZdb WgZIrzu6sgLj+ccvMFQ2Xg5PX1ZBW4oUbaFwVyrwfv1+Sv4Hmq400xA4Go1B5fFPbFVLtRip rx/ALDIa9Wn6ArZoAfdNVqhNnSznmmKBGtrDfCc6LN0wMqyG+AJlJfe9RF55LNOO6pq0l5EM a67QcrMyTI4gdC4NeSCecTLBjCGGZI/xNx/u03fhMerygAoq63KX1mqBrYjLC3qMIEhU6a5/ nS2rk3VXBLm9iOWRZk6S2L8EXF5+U3+6Jzb9NpuGkksorQCg9svCh5KCn3pgDy+WteR6iwd2 MAA6nZf5NcEvk01e5ayw+ltOoiOzVjbPVjKQZLpHKmOneTB938R4FWNQClQj8Jjy26bh/eXg cTA7uRRWH5TnSTN5Jahx7euyL9BVFMNSSfCVO1LTXBwI7Z1Xp+bC1fuapEg3ylP5dwaWUphH PNvCU0NU+4aW3dyxsT/0cDFb2DJyJ2L0Lrhq7h16WxsAzmW/6jGTBlmHTUSmsnfKuA0amJ8p U77R7GCSfGE7PGy6s7BZhqvG5ovFvZH/KmjHUUez9EGFjjGlPT2ub59SBoHyxqTJXJ/+KwZL CkbIzbcLpT+gqZyrvP1W9oHcR9Q/wYozpQ9V2kTQHWH042BDJxgvkk2Jr8Ah+HoX0YKPKiE4 uM9wlMXgU6n6AF00yXYV4xqKpJTTn3pHMhbJXKzz5aF6TNK80AIbQHMGYDP4OWS0eKvkr0qF 9kgxPSDUgYo8IxOt+SJwBhgncmGEtiWM1qbapBQOmmbVhGz/j6Q3/fbbcl2T/syfI2EEzUf2 YuhRN/ZLSWmWYF+x1Utqdj7grA4MVApxGN2BXAOT6os4tt8OlHZKUYbkPJTLTb+MBgyuMwTE NHK1SPh9J4bhYlO6ETE/f9Wi46rtll3/gPmme4K37/Es31Jf84eGhRyROXxsO9fHiQ+KpORn xhi6WJHDPezGYkMgBVWn94OOvsNV+vVQEfA1aahUzJZNhCyjARrN7bxUYUC0RVuQJe62+Jl7 48q1/0oV1CVNSdx7At2GFkhcfwomiypNUYYXtWrQidmXVWpRyj+ptbN0/dWQh8I9/bxxhR/t 8mauf/72CilFZp2nmceGVlLc83d7075SuM6sUtg4OyY8Jr6Uccl1ToolESTjgpdZNhtmG27o WQcK8vLGlA9NMzfroUPC7BP/wWBSW0U4Tgnkp63Iibvx9SCe28iKEGcmEMbUxdpOj7BIXoYV bmqMPqhBGJkCYqNb1llv0eSkCJLP8Ytk7xYX/8mhd2738aCTwIcWXuCGED74FhSOuvWGaSCR emTuuAxWY1tIVtdDE925iL2nhPr/6ijzvhc/FfWDtXpAZHqa5knU8ojb1BoMf+4Ep7hbQkLA sh45fwODrKTEyzMUBZTyyz0a3VEBke1N18/MoeIF/RnXTYutvkcuGqhqztTyd6jMa54zp9Dh M1BnBpkAhF9dqyKThlzpxCAwlg3nRBLlyYmg/4F84ht1wXwgM76Zu/9eCAZqdJwfy04fz7iR JRRoRKID8AxFJ9sWxhXP3tel2FOZr6JCCE5r4mTs/bVUOntTpiJp8Zn9Y/3yZjg4udKzZcXd Mbm9fin1un+ASS5QqjWc2Xbd9YY7wP4GeT5KCnfKk9sQbCrsnk7SKibnBlnlYWuu7+/sg81n Vtmc7nEJ31FJBgq+acW5RLHAL8XwuMVY+Uk+Xn7aomq1cxtd7sU04GrQVmEgHTI+wo5AUbL8 1L3YGNB+lMDx0h0k31udu1KX607Em+rn6H5Hu2gsj0OhA4RCbKpFqNGGKbe6QRLbDOmLrq1J fh9CaI3EZPQxUTwuHX8nCuqoz1X3ZaZjYvVeUPSadhe265Ojz3Li9SYT7Wa2uVTWAA+u2cUj DfaY2nERz5bqIVji8Tqv/vHSwJBfRZnCGza2QRakmZemWN+oInUFnG2hUk1MNCn+CP1Eetxd tn5xn3H7WL6F/3XqcczO+wA6WdbGjWDV57SBGnX4wC59MJxn/2StfY886Sw2BnA2zMmjKGFk +KpQgQqLIvX2/8dBqHjV6O2tKf4rsnuoBc7QnJEOyarDqDBN7DEgg/oglxADL1pC4+hw+Hki UwR6RoaF4OPmf3Y+0krcxEDSjc+gl8egdHf9CM2AbF3hYS/cUue4C2sJv9hBMaXAKCn0Qocn VD9kq5wi8Ym1feQqHo7xamzrvhxHl4Xne9bsTdgFQ33fqW3q3Up1fxPwZfQHvjE6Nqhx2pUA RlwW7PYYAer/JPRb6d+t4PqZDS5yBXOmd8Gq9jGfK+l+cKrzFAw7dn6QvrZ+3a/ZZYfQfa6m VhbRbjLzefLOra1Lbxddkm6e1jA0Ps5MDWKnhr/4k9lac3S9VSQ5EwRKzPZgcfRa+0BclHbU p495gMo8DdvmtR15Wl3dKD0C1OTs7Pm7eiWqJ2D1/bhancyhT81Xw938sOZ/6rpMeugD2iPH OQw+gJT+fad93WEiyllFbMhppxSFDRpOurqCbDyfPUS3n+IzqfmCBLq9loeF+/mEahwBwvfu BTI+kY03dxShx4Gfd6FeeXN6WWSYkd7k9Sx1HQcQKlw4k0epTqS32d92oRPdXS0GhYQES+rg EQlVsOd1BA9XAoIgX3vkrTWzOibmAAAAAABGn0SRUWZXgQABwUyAsAQAqyGJyLHEZ/sCAAAA AARZWg== --------------050403010509020201000401-- From kes-kes at yandex.ru Wed Feb 1 22:20:11 2012 From: kes-kes at yandex.ru (=?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?=) Date: Wed Feb 1 22:20:18 2012 Subject: bin/164526: kill(1) can not kill process despite on -KILL Message-ID: <201202012220.q11MKBK2053012@freefall.freebsd.org> The following reply was made to PR bin/164526; it has been noted by GNATS. From: =?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?= To: Jilles Tjoelker Cc: bug-followup@FreeBSD.org, freeradius-users@lists.freeradius.org, Subject: Re[2]: bin/164526: kill(1) can not kill process despite on -KILL Date: Thu, 2 Feb 2012 00:16:39 +0200 , Jilles. 28 2012 ., 20:24:07: >> [stuck process cannot be killed, system hangs when reboot is >> attempted] JT> A signal cannot forcibly kill a process that is stuck in the kernel. JT> Allowing this would put the integrity of the kernel data structures at JT> risk and likely cause hangs, data corruption or panics later on. JT> If a process is stuck in the kernel for a long time, this can be things JT> like broken hardware, a non-responsive NFS server or a bug. JT> A state 'T' (stopped) probably means the process is multi-threaded and JT> is trying to suspend but one or more threads will not cooperate JT> (non-interruptible sleep or running in the kernel). JT> Useful commands to obtain more information (supposing pid is 45471): JT> ps Hl45471 JT> procstat -k 45471 JT> Of course, this does not help if you already rebooted. repeated again: bug is repeateable: 1. radiusd + mod_perl + example.pl(it is connects to FireBird) + FireBIrd 2. restart firebird 3. try to restart radiusd 4. process in fall into STOP state # ps awx | grep radi 9438 ?? TLs 5:10.12 /usr/local/sbin/radiusd 27603 2 S+ 0:00.00 grep radi # procstat -k 9438 PID TID COMM TDNAME KSTACK 9438 100080 radiusd - mi_switch sleepq_switch sleepq_wait _sx_xlock_hard _sx_xlock _vm_map_lock_upgrade vm_map_lookup vm_fault_hold vm_fault trap_pfault trap calltrap 9438 100195 radiusd - mi_switch sleepq_switch sleepq_wait __lockmgr_args ffs_lock VOP_LOCK1_APV _vn_lock vm_object_deallocate unlock_and_deallocate vm_fault_hold vm_fault trap_pfault trap calltrap 9438 101144 radiusd - mi_switch thread_suspend_switch thread_single exit1 sigexit postsig ast doreti_ast # ps wHl9438 UID PID PPID CPU PRI NI VSZ RSS MWCHAN STAT TT TIME COMMAND 133 9438 1 0 20 0 351124 322000 user m TLs ?? 0:03.65 /usr/local/sbin/radiusd 133 9438 1 0 20 0 351124 322000 ufs TLs ?? 0:00.00 /usr/local/sbin/radiusd 133 9438 1 0 20 0 351124 322000 - TLs ?? 0:05.28 /usr/local/sbin/radiusd #top last pid: 28497; load averages: 0.56, 2.34, 9.37 up 0+10:23:14 00:12:5 162 processes: 1 running, 158 sleeping, 3 stopped CPU: 1.9% user, 0.0% nice, 1.9% system, 5.3% interrupt, 90.8% idle Mem: 525M Active, 1259M Inact, 182M Wired, 41M Cache, 112M Buf, 1890M Free Swap: 4096M Total, 4096M Free PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND 6893 root 1 26 0 15392K 5580K select 0 21:17 6.10% snmpd 75797 bind 7 20 0 100M 77280K kqread 2 4:27 0.00% named 5553 root 7 20 0 53544K 39832K select 1 0:19 0.00% mpd5 77411 dhcpd 1 20 0 15032K 5360K select 3 0:18 0.00% dhcpd 3605 root 1 20 0 10460K 4004K select 3 0:11 0.00% zebra 5316 root 1 20 0 9616K 1244K select 1 0:10 0.00% syslogd 9438 freeradius 3 20 0 343M 314M STOP 0 0:09 0.00% radiusd 80843 mysql 26 20 0 402M 333M sbwait 0 0:05 0.00% mysqld 3611 root 1 20 0 14660K 5348K select 2 0:05 0.00% bgpd 80396 www 1 20 0 37908K 22876K lockf 1 0:01 0.00% httpd 26278 root 1 20 0 33812K 15608K select 2 0:01 0.00% httpd 10559 www 1 20 0 42004K 26768K lockf 1 0:01 0.00% httpd if I can supply another usefull debug info, answer as fast as you can, I can not wait too long. Thank you. -- , mailto:kes-kes@yandex.ru From A.L.M.Buxey at lboro.ac.uk Wed Feb 1 22:40:15 2012 From: A.L.M.Buxey at lboro.ac.uk (Alan Buxey) Date: Wed Feb 1 22:40:21 2012 Subject: bin/164526: kill(1) can not kill process despite on -KILL Message-ID: <201202012240.q11MeFVu071749@freefall.freebsd.org> The following reply was made to PR bin/164526; it has been noted by GNATS. From: Alan Buxey To: "kes-kes@yandex.ru" , "jilles@stack.nl" Cc: "firebird-devel@lists.sourceforge.net" , "bug-followup@freebsd.org" , "freeradius-users@lists.freeradius.org" Subject: Re: Re[2]: bin/164526: kill(1) can not kill process despite on -KILL Date: Wed, 1 Feb 2012 22:24:55 +0000 --_000_D8EC1E741BEA427983AEAD05C1996BD4lboroacuk_ Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 a2lsbCAtOSAgZG9lc24ndCB3YW50IHRvIHBsYXkgZWl0aGVyPw0KDQpSZWFkIHRoZSBkb2NzL2Rl YnVnZ2luZyBmaWxlLiBDb21waWxlIEZSIHdpdGggZGVidWdnaW5nL2RldmVsb3BlciBzdHVmZiBh bmQgcnVuIGl0IHVuZGVyIGdkYm0gY29udHJvbCBhbmQgZG8geW91ciBraWxsaW5nIG9mIGZpcmVi aXJkIGFnYWluLg0KDQpJdCdzIGxpa2VseSB0byBiZSB0aGUgUEVSTCBpbnRlZ3JhdGlvbiBhcyB0 aGF0cyB3aGF0IHdpbGwgZ2V0IGRvbmUgaW4gd2hlbiBmaXJlYmlyZCBpcyByZXN0YXJ0ZWQuIEFy ZSB5b3UgcGVybCB3aXRoIHRocmVhZGluZz8NCg0KTm90IHN1cmUgd2h5IHlvdXIgZ29pbmcgdGhy b3VnaCBob29wcyBmb3IgZmlyZWJpcmQgYWNjZXNzLCBJJ20gc3VyZSB0aGVyZSdzIGEgbmF0aXZl IG1vZHVsZS4uLi4NCg0KYWxhbg0KDQoNCg== --_000_D8EC1E741BEA427983AEAD05C1996BD4lboroacuk_ Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: base64 DQpraWxsIC05ICZuYnNwO2RvZXNuJiMzOTt0IHdhbnQgdG8gcGxheSBlaXRoZXI/PGJyPjxicj5S ZWFkIHRoZSBkb2NzL2RlYnVnZ2luZyBmaWxlLiBDb21waWxlIEZSIHdpdGggZGVidWdnaW5nL2Rl dmVsb3BlciBzdHVmZiBhbmQgcnVuIGl0IHVuZGVyIGdkYm0gY29udHJvbCBhbmQgZG8geW91ciBr aWxsaW5nIG9mIGZpcmViaXJkIGFnYWluLjxicj48YnI+SXQmIzM5O3MgbGlrZWx5IHRvIGJlIHRo ZSBQRVJMIGludGVncmF0aW9uIGFzIHRoYXRzIHdoYXQgd2lsbCBnZXQgZG9uZSBpbiB3aGVuIGZp cmViaXJkIGlzIHJlc3RhcnRlZC4gQXJlIHlvdSBwZXJsIHdpdGggdGhyZWFkaW5nPzxicj48YnI+ Tm90IHN1cmUgd2h5IHlvdXIgZ29pbmcgdGhyb3VnaCBob29wcyBmb3IgZmlyZWJpcmQgYWNjZXNz LCBJJiMzOTttIHN1cmUgdGhlcmUmIzM5O3MgYSBuYXRpdmUgbW9kdWxlLi4uLjxicj48YnI+YWxh bjxicj48YnI+PGJyPg0K --_000_D8EC1E741BEA427983AEAD05C1996BD4lboroacuk_-- From nvass at gmx.com Wed Feb 1 22:50:07 2012 From: nvass at gmx.com (Nikos Vassiliadis) Date: Wed Feb 1 22:50:17 2012 Subject: kern/164696: VIMAGE + carp panics the kernel Message-ID: <201202012240.q11MeZXL053613@red.freebsd.org> >Number: 164696 >Category: kern >Synopsis: VIMAGE + carp panics the kernel >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 01 22:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Nikos Vassiliadis >Release: FreeBSD 10.0-CURRENT >Organization: >Environment: FreeBSD lab.local 10.0-CURRENT FreeBSD 10.0-CURRENT #112 r230875: Wed Feb 1 21:40:59 EET 2012 root@lab.local:/usr/obj/usr/src/sys/LAB i386 >Description: Trying to use a carp interface in a VIMAGE enabled kernel, panics the kernel. #4 0xc051ce3d in db_trap (type=12, code=0) at /usr/src/sys/ddb/db_main.c:229 #5 0xc0a99226 in kdb_trap (type=12, code=0, tf=0xc49a3b18) at /usr/src/sys/kern/subr_kdb.c:629 #6 0xc0e1a30f in trap_fatal (frame=0xc49a3b18, eva=24) at /usr/src/sys/i386/i386/trap.c:966 #7 0xc0e1ada3 in trap (frame=0xc49a3b18) at /usr/src/sys/i386/i386/trap.c:352 #8 0xc0e03b0c in calltrap () at /usr/src/sys/i386/i386/exception.s:168 #9 0xc7abefd0 in carp_send_ad_locked (sc=0xc500a600) at /usr/src/sys/modules/carp/../../netinet/ip_carp.c:777 #10 0xc7abf984 in carp_master_down_locked (sc=0xc500a600) at /usr/src/sys/modules/carp/../../netinet/ip_carp.c:1119 #11 0xc7abfc4f in carp_master_down (v=0xc500a600) at /usr/src/sys/modules/carp/../../netinet/ip_carp.c:1104 #12 0xc0a78aa2 in softclock (arg=0xc119e5c0) at /usr/src/sys/kern/kern_timeout.c:571 #13 0xc0a382f5 in intr_event_execute_handlers (p=0xc4deb588, ie=0xc4e2d280) at /usr/src/sys/kern/kern_intr.c:1257 >How-To-Repeat: Build a VIMAGE kernel. Create and 'up' a carp address. >Fix: The attached patch fixes the panic. It doesn't virtualize carp(4), that is, only carp instances in vnet0 work. Patch attached with submission follows: Index: sys/netinet/ip_carp.c =================================================================== --- sys/netinet/ip_carp.c (revision 230875) +++ sys/netinet/ip_carp.c (working copy) @@ -734,6 +734,8 @@ struct mbuf *m; int len, advskew; + CURVNET_SET(sc->sc_carpdev->if_vnet); + CARP_LOCK_ASSERT(sc); advskew = DEMOTE_ADVSKEW(sc); @@ -761,6 +763,7 @@ /* XXX maybe less ? */ callout_reset(&sc->sc_ad_tmo, tvtohz(&tv), carp_send_ad, sc); + CURVNET_RESTORE(); return; } len = sizeof(*ip) + sizeof(ch); @@ -793,8 +796,10 @@ ch_ptr = (struct carp_header *)(&ip[1]); bcopy(&ch, ch_ptr, sizeof(ch)); - if (carp_prepare_ad(m, sc, ch_ptr)) + if (carp_prepare_ad(m, sc, ch_ptr)) { + CURVNET_RESTORE(); return; + } m->m_data += sizeof(*ip); ch_ptr->carp_cksum = carp_cksum(m, len - sizeof(*ip)); @@ -832,6 +837,7 @@ /* XXX maybe less ? */ callout_reset(&sc->sc_ad_tmo, tvtohz(&tv), carp_send_ad, sc); + CURVNET_RESTORE(); return; } len = sizeof(*ip6) + sizeof(ch); @@ -864,13 +870,16 @@ if (in6_setscope(&ip6->ip6_dst, sc->sc_carpdev, NULL) != 0) { m_freem(m); CARP_DEBUG("%s: in6_setscope failed\n", __func__); + CURVNET_RESTORE(); return; } ch_ptr = (struct carp_header *)(&ip6[1]); bcopy(&ch, ch_ptr, sizeof(ch)); - if (carp_prepare_ad(m, sc, ch_ptr)) + if (carp_prepare_ad(m, sc, ch_ptr)) { + CURVNET_RESTORE(); return; + } m->m_data += sizeof(*ip6); ch_ptr->carp_cksum = carp_cksum(m, len - sizeof(*ip6)); >Release-Note: >Audit-Trail: >Unformatted: From allen at gtf.org Wed Feb 1 23:10:09 2012 From: allen at gtf.org (Allen Belletti) Date: Wed Feb 1 23:10:22 2012 Subject: kern/164694: Regression in 3726 port multiplier support in 9.0 Message-ID: <201202012310.q11NA8Nk097657@freefall.freebsd.org> The following reply was made to PR kern/164694; it has been noted by GNATS. From: Allen Belletti To: bug-followup@freebsd.org Cc: Subject: Re: kern/164694: Regression in 3726 port multiplier support in 9.0 Date: Wed, 01 Feb 2012 18:02:14 -0500 This is a multi-part message in MIME format. --------------080505080002020005060604 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit One more piece of information. It appears that the irqs are being assigned as shown in dmesg, but no interrupts are being generated or received. Perhaps the 3132s aren't being configured properly to generate them? # vmstat -ia | grep -A1 siis irq26: siis0 0 0 stray irq26 0 0 -- irq30: siis1 0 0 stray irq30 0 0 -- irq48: siis2 0 0 stray irq48 0 0 --------------080505080002020005060604 Content-Type: application/x-bzip; name="verbose-full.bz2" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="verbose-full.bz2" QlpoOTFBWSZTWWUyqfwAcBTfgH/weOf//3////q////wYE++8oHo8YJ6Y7HXnzreK7u7bG5Q 5NBqB3bqtmz27222r1q9d523vHO70e4q03e73PGdjHb3e9vO3t21bNjx17ent3V4nd4AD57i kd975774+d7wj3ddrzele3nvbec92uxe7c7Pe73nvcTZ11e7vd5yHOxooV8GHPpG2+2VtplF bSraxTNtTrttU3IymoO3cyXzs7bTbVgLFk8u13DCVFuz1xn3zwCXpibZUTI0QqhmzbNMiZaG LCKGtJFSlVQSSCaAaJkZTBNDUyGSnk9JNNGTRqaep+qGjJo9QyAaACI0ggTKPQKBmpkAGhoG gAAAAiY8qKqe9IRpHhQbUA/VHqNAZGQA00AAA0ASaSQiZNCaJip+mQmk8mkyekYg9R6mmgAa D1GQARKJoJkTAQm0I1Tym01U/0pP2mptKn4m1U/TVN5U/KjZTZqPUanqBEkQECYgCTCeqeNK eU8UanpPVPFN+qT2VPyo8iab1TaQ2Tmj+bCQCAMAQjBXWQhKLAkigwCkAQiRARUBEQGygDCk YMRAEQAoAyFAQhZLECgwCMRkEdaqCHqVBqKH7P7E8Kw97PenwSiJo+Qww2NGGGGxhhhhhhhm QmFKUTBNK7aX5dl+bhdb5mBiAqkkisAVZZIxQZRkg/emcBIYf2fISAHXpN/7hId+WBR68rC2 ktodMzroMZL0uu4Jby1mZmZmZmZmjf6AMA8DYBeoG+YB6wPMDW/Ln5Hlr0/spxapbjhl/wcM um4uibi6JuLom4uuLDRBQUQUQ0QVc3F34m/7txuNxuNxuNxuNxuNxuNxuNxuNxuNxubZp1pu NxuNxuNxuNxuNxuNxuNxuNxuNxuNxqHjuVZOaT0JMDA36H146cqwP/fSHJt3Laakc+74V4Mg WbviNYdTp+IjbWp2u7u7uGE53HeYGzNoiMATnOzvCGoQwDAEnIG5GgIHZl/3ZAVg3TuWb2nb jKP/DAvPyGlwP18Kw7tfEsPC95YeR+BYaOvRBJGMXx89+OR73W5E5vm5uJVXSuXKqqqqz5E4 3Tz8fiX2rmpmZmZmZq65tuLo6Kz19bvL2jflVVVVVVVVVVVskA7Kq9CrnKt/OBnizuznOXwK nxgZfAqvfVXhVXvqrxqvWyqqqoRfHXHZ2eqB+6Ih5VWXdtwQIPd4BCHAQytp4qa9F3uDFVVV UAHiU9PwuPLf5+6GPLly5W7u+9fy+PrHHq3RP43P2bXvpZbL3EWL9shV51fn/R9JVnK7wEbG QNQ1CHERAIQZAJB6SZl4BCTIng13IugKQb7vU+Gau7u7u68Lu7u7on596TMznbbp9C9ubDzb f3mpmZvMA7AB0gAAAAAAAAHLe7dqNGtAAXF3ewBwACAcgB5oHVe7drqAOoA5QDebbG8A3gG8 DsdG7GI9PJ0mMY8bj5Z6Z1PZnnnxZzXV9+t3dx26e/jAPRQAmWQ55y5U9CbIiJAy9pH8Y/mY ELi8b55CHZvmH5h+ceQUKFidvgRT5Ec4aIdhBJGGiHbpJLPDz3u0ySynfkViF74ACrOtxLpA CPuLhlNyN9hG7Kbkbn0M8x0GHSQEnSgPlbbeF0bmulZTTstJmJsLtLWZzJ2js/R3jxcO92D7 SeG7TVejc2ZmNVRTVVHRVZmaBFz3NSYscH4iKXzOucC6Bjp7edrH1eKohQU4gpQVEKH+/1fo A2Q5g1A3asN9eWm6St999b8lT6APgB/pAfMf3gO/UIMCJitbPTvp2F7XuDh4j9n3cgLiL/l1 ukBtOJ9nvx3C4QBwMbFDVUJ/bfqVgwHObiSX6wPcBX++IHSgBOicysl3gfAD+GecAgEA9giQ GgIinqGwASGeYWA3/XO/9IJ/DyW4TsRRD55PWdqBcSTWhKgVAlQGrQAtsCiiixhEixRYv3if WA8fbd3QA68pD8BoPTsbPt9vDE2uJkUrJmYyZRDLcrC5HDbhzl6qaV6YerBfIcMccvWX1tjV U1g/Md5rBuCJIAkkEIjIL9TPZ21393TMzN/Drvuq775mZvvvkqxI/6s6ilhasD12w82ja8uv WH8xe+Rxb1wMJa60ZZ/t9mif8QF18WgWugU+u3t+B6PSKfbSFCmBVsT0VANgoH/31hwAX5Oi jAkjE1/Il0EySc8PinsYsWLBX8JLIBBRRRRVID5xoBocA9/NHt/f58gDuGObFdfVH2Q7A27T AA0gB/6iBAgCe7eFH5Pv/x/gAtbbyJC6jQHrhi6HBFifJZYKih33q4KLI/FaqvZPtZ7nxfoc dhE+5n6c/HkvN7koqv+zJChMRRRRYsBYsU6NhISFiSUUG/iBT6+x8v6+m3jNQns9tE0HvUUF 4+TL+ftir6qzidp72PyAy8kH92R9YCtMUJWV9bbmyEwVWY4VPgMAndoBWRf5AJkqQJQfgPLy SSXS9jMU+0B3rdBwDIA0TZa/xAaiMKNur/Dsdm8rR3ChSJ4sXvqqfJrwHFIKJnYO/HBJmK6q AtyXtiJFqFjKXbbDmlhEowZ5qLIFWAHOu1fQqLT2GHT2TXuPMBV4QxsaaAca7gPiLp8uIxsG Zx7VddbqAWuYsALS/cOeNQ+ZDUuFmYphSLfFKQAkTGVimLg9M6cynydNOggXiq51AdpqHTp7 g2aYGRrxtjLtqq52Ks8ByEu7KS5rJQ3E5fnrjDdF7JI2/UAo4X/g+JANNuOiDZnWW6aU5uBk wzDwGsg7dZEC+nvdpnrtyLh55ag4DqbrbQd9dZ9wBCAdoWMZhKlR6daq3TdjPDb4gKW5raDI UC5VN5mQ76Ak2CDAAKI/fCJsGYZhvcK+nrm/QBUYGAsdoqjbbJmmAwFcWjCVEgkX7gHapMlV XTW5NoVvUd64doDfcKEawJ5sgQj03ej0AX0K0XX4GzvmbnaYnbjH6fiCt+XWnPPPyfJ7exuj M1LRaMGfokHzb65imsIJXU3Xfbpt5quMRP3HlBCQkOtuA+HIoCHyg+gU3gkdFBJZgb+0Qk8Q dmHAgfBREBvADpiKf9bgP4eC2qEYQhIEgQB8eAGfxsfXB+diAn2gPd6pJJJJJJOYA6hE4j5D 5DQEPuAy7PW9e8FOwDJ14PzFKPrhnrECivaIu0RdKnjMnZ7JJ23ecFLOoRagBfxdQi+s9gHp AweBYAxftAIBi+8Rb/EPN7J55zD2TqAOKzuA8Du7jORgSBCEhCCiiIoiRkOntOYdBBPjzMDE Bj8KavIcHbuA8vacw3kJP3LKpVqN7SpJL3vBJFKFgLP00MoBO9hl5j3/Ye3uEO0CvoxOG346 y+Hx5UlLTMG5jxCsQsc5OE5CQ5cU47uirVL0maKddHlKAOZXM1YF4i3CLHzgL5g3j70Prewc QFcCv9DuiXEfiAe9VeuThTA9vUBag6vZSgF+xzBuEbgOYBuAOD2g2B+HT3tgFNQU+gp/uNlD 17v7rC/050O8B94Gi+pQASzVWhrqBUC2CRoaefQDj9VNF5z9d/UDwyuNgLYPEjvKxgtVAs4q 4BsnAPyXg2tFWm3iXY/Gop4ofuQIP72+SSS4/fknFnIcRqDnir3gZoilZw7f7d3uPZhb39+4 fyFPzemJIZY5/y638nz4nQbj5mh8zD9YOySr8ZKLiuPolBUuYA4xDJ9bOLvFZq6urq6urq6u rq6urq6urq6zzJnA7evacYUi7UWgHcit3O8ptXOGmC39Bd7COQKYLEAkAYAnDhxtKzIwEjqY kIoskGKqqqSCkgqo9fwd4BkC5zkU6x4fjkqDwD5eYOr7WRgcisvSec5+QH3fs9BI3UnCW4Fu 0htPsDxowBMHC4DQ+jDMKKKKKPkQhfZ9XtYCqoqKqqyG0U2Kc0PqWlLI4PHiqD8AfEFNwCqA XmJG7P71BJVegJT2Arxa9+nfBDd8Y1gEx1oumHz248jd4XKEBeZ99FGii8i9V+HzAPEBwqcC yCn9aSiWembOPQ8+Ufds02K5JLz7ODmq7f2IinnH5Ca6oI+33+4oZCFH2FhsWLHHZOc5z+NB JpSlKUuy5JAuQBpsSDgvTIAh1YdIH7XpqZALZdMLUuV21/K4ygeiMkerHjYAMMgY3ewAoF07 QJhTC3IXikYgHU0lwy/Vj6r3AWA1KuyEhISEhISGlV8Ozw8Nnb2332ra1rXw7zJu7uzzMy8z MzDvBCIjtBEO8EXBERdCIgPIO2SEh8jvQ2hzIEAdFHq2GwXUKg/213pz7gUy4Cu5Tq3in+Yi 8sURQ1zGH0/H5GwvLxoADJIhPZ8v1ZjIYly2223MzMzKiimXMFVVVTNrPUeu739STv9qIb5y +PJoBAL6/eSbuBNysM4AY0METAATbNJJdeQp3iltQAeZWpn4TTtPf4KaKLBBFFFFGKiiIzqd D5gkQDoByfC1MzCVQvkg7aLzDS5ac0jmyrWB+4PNhTQcwPKK6D5oSQ5IrYeI+vbp9mO8wUW3 +Q4imQp9Q1GA0RR70RTrq4bNFE8wCzIA5AwFychTEUsBXiMRXH9guVaqg91N87qg/MfmDoKQ H9YNCkFOIPHeD0eric+D8VDUCERkyET51Qc/OeHcvd49/3/p/j8Pk4eOOOOOOHgtttttttqJ aWrS1XDna2np1cAcgBwGt+gLNgMgM+635G5MySLci8/MiHd3d3d5eXh4b+i7u7u7u7u7u7u7 uJlLampKoydbcG0BKmOkEIQMhJX6O+rsNHm4CtygoDMzOA3+p4SdDTblpuM4QUIEICEViWw5 osZ1d5DrjsLKPAWStZZ3bUqzyy2Gme/kfPpwbokj6xx+OrpHfeJ8kHnlRQQD+QpEADpwaA/W KhGAQQgA+e7+XAk9oQgf0P68VVRPb9SqqqqqqKqqqqqq6C/SQ9rD2p+Lz9X9XtA218vds9zw qqq994cCCBJuNo2WowRk0nD4GTeMh/09Sr9MVZCeg0q1YtQrFD7LZ/n8+i6LttKjtqGSLJAw LQkpTYPs+XPGvtrK07OOFWCoO8RcRSnMCAgQtWupsfXTZCMo3X8nclcyPdGlFqanPS9JVPBm X8QZildYBzAJJAIsWBVVHNRJIqyRgvA7nYarn69FUqwAcThtzAwvNvFaezZ45ZbbbodCm+7c RcpDg7IFScMFECRcH2QhuLDOUKooGxIIFCRJTAgTnmZmZmZGRVy5Vy5jDEgmV1vEFJF5Ayvc jrNodyUSpbZtVBoOQMREoqC3AJwAwB1QkeAkTgjHGuGESY5OsZpSyoriZrpMzymZlVM8Yu7x M3czOJmZkkynPuZ2mWbGMZQ7oXtt2LvG2zVuzb7b7od0YGyEQLuMjMAjOKMnxzu7vFeuO+eP bWZmkFzFVcxVUVVVVVDMuZirgc8xVVc1mKqqq5i6CQ5wTxIgoSgb45SV58achThkbQV+wSJV U3Od2G8xmnD0z/njh41ePe34v/x+oq76Dz7PGH4+X+tzjnV8LaoRjh2wkQ87MvMDhx2uNgwA 5gSc4VUvuzs9YNwKVKFLTybFAaU7cTp441XwaMDmMhUhshAUgCKi1KkAWRYpPeUatLVpxmLQ QxikQRMVpgmCCIJZVbmfb4dsOz28OnzPxhIXbgWLgDwSQK0PeLSWtTgXUPKf9gIJJBGy72es d/a3hK23GsA+y8/IXwASrYoekxiC84CRoISikrAX8NM/Q7OLK93Hve9Rjzg7nRGEYQhCLJUv fMsqqqgBTcAESSZIdUq0kiQzyTsxohmjoXD4hERES2GLaU5JkzngYCc6FKLgZWC172CoPyPj QDZDAwJVJ9D9fL6kA/QvuGBL+X7zNvun0bU7fIBKTvTfT/CRM2AJATFD2IgUeUCryAOdMlCq NwGu1DGKn/70WPfQesXU2Q9ooOY5+m2zNGQs/faTBUIQgEciyZJf6RhsjRY0puJDfuwqwxaV PgzMzu+3pOgSewljlfO/tJJCl7MSh6jb9fz5VVVXwt8rvhd8udeK8/NLz5+3tZ6em1SlNEh9 33ewtVV8CyyH0AN4qIa7ebGcuwaV/AU7hR2DuPPqzcIIIVQrOL8G5djqeECh8o/KNfo0AUv6 oHPkAmEivSuV+fqESt6YIYOaNAMVz8Ze/m8N3Lp34bTM6AH4lLdZnXTZVgEAMSh96IBFIgsg sIE2dSAGgMEVYCkVVYFhfFUp226wLALifo9XOqvoRBJq7XIcToxxxfIQRvys5p0VB8z3WvQG tmnpLwc8yjB6zFqIAQgrrrSimAB4JkcNc7WtaxVUpoYBJIKGAj1UKwFYAQNWri7zpY0xKchE RE86UJCHP1bZ2O20DAJML9NKpVFOKELvAgCgcl2AXAZfnMHeQwHEUEK2xsII1WHdcHO7AOio rOAEOsGYTRI/2EBzUUxzl2TJJAAsAAmCJo0GCJVVVVVVVWlqq/ElFVVVVVVXC1VYsiqqqqqq qqqsWQJsPkBJylAkAncdBnfqhmWGpJy5PBM2yo1hQryiIEIGDCIiJMEg5hem8cp3qs9md9+r jWta1rWtXrWtaYMDMMNa1rWta1rbbbWkCExtmkRCUKCXARGREQEwCCEIUZbIOnNK1rgBzAHP CSOuzW2COhtjfAejIjoUHDBcC6eRiD4CDcOLEAwYz2gFggIQaWNw51t9lOLggQB0wCIBOtrR QIF7QYC0AqPRMYCF8qoYihH/EhzAXIeRYVOIAWNwEPeEG64JmAFanGDvGzRUC5Hp1wRsXd2y yWNtALiBmkChgNJ8FwGDBjch2FweJXJcA62IJ2b6QOIgMBA7RLAQKm1kSC0OxPQVbKZ5Nql2 6bNoBdowKy2N+sylAQwCFsGAlhDNmvURFcLaaiN4DiNAJFriyiI8To3BZ76c7CrhN6KZxHKw GcI4TZlYC7VrAbNSsAsmLXXdcrC8StYAvsM1Ouut8ShCv/syczUAHmdKHXy1R5kjxgBVffYf QD6eWnKsLGaMa+v2x8Gz+3u86bODRhsx+5MbmNhEK7u5+x9n2EMQKjcjXKBVsZekSMCKCqhE QSWFAJEg0r/dziSUgQACXhXP7p0rKRCY48AIDJEECXdyARUdu7hq54ZFW9CqHVBR1bySBAIN 1IMAgrYKBIKMAiLG5QjTtKBowEIwQ8RqMBuOzyaLsnuPQdKgLLjaMyGEJmDhEaDjuCA4rkCo w0hF73xzyhtICNITyOhIBJoBYE/rZAVEUAL87AAoCARtCgkCLIsJBY22sAqxVgyQSEEFIWlj FihIMtCEap+B2yXHMP3HWmzbJjZkojg6uGXMFKY5hmZhmNEtLLSr+rLtJJB0hlLLQzWajo0m E1oo4qqqqqqqqqqqqqqq2UsVVVVUMuOKqqqqqqqqqqqqqqtlLFVVVskluqTJmm5NrVjM0lys VVVVVVVVVVVVVVW2qqqqqFLjcFjAlttttttttttt/Hc2ujK0NZmroytDWZq6MrQ1maujK2CU Sg20tLbbbbbbbbbbaqoqoKsoi6u4u5qJu7i6u4u5qILsoi6u4uLmoguyiLqaiC7KIupqIm7J IKLxFwyQgBiIDombxG/OttgnxPr7tO8xt93h7Pdns6y8pH1Qyj3RdePbizi+mBQbEn2NzFx+ EQVACvcLlGn9AoKJc6Q3sdYDxu/XDtdQbyigA8Dg8NWEgbIcncHcea4x1c6g2S7/PYPDDbeM ZpJ+x73veEDPjiBj8DPKEh4JE8r3mVaOAFEE3AFkez1Q7kxFz3gL8u7GUEktSIq8FsZCRHod CZwhGber8yChdjueB6yKOxyXKIDg3Av/aIJEFw4PgwBkU2ANg7eyVKkJTmQnI1VcjYOOLiI/ 4nPTC/SX3WAO8dw0aDlnKlSEpsQxty/qXdwpiA7ehHPTTYC0AYhlxAyQ9oPvB4+Q9OUySCBh A+AGxM322NE7E7+rWqNnAgxuQ3BAgzE6GABUXnAwCdHdUUZJwTKz+8MFkZxmMFmbq4cMYLG6 uHFRG0Y22mpqZiaakPaAaOKW6jffgAONqLQGIPI5Uym9lIgemD/f0IcULuQGecJpShMTtXal ACtqCZgY33nf2ABPWBlWGMJnVEv1AhK51xAncDKiOD72xY+bJ5H/B5jXo8TiWABACVjDbHOZ 470mGPwJgdRNgDpsbiKuny8cMtDWWQ5nrhm++ekDcJscDw1X1AOoZb0Nj2HHLzQOxxIY8uaK q/l79xVRX8IG23jttmVrGr/F7+1P7jujTi8XQ4JqezMCVo7R0qRZkRCKAdJOUWSQjBQYZFnG 5BjZICXgKp4xct4gENZCaN5JAhQQaESwHpWDAe7a+YAOv8CAnnIQX8CAfgAEGpCD/wAYYwUz zPKBBCeO4itfSyZzC9gDbs+fb7eiFqjhfwap7O+0TcoZcpP58bKdr+5xZ4+PWqszxKycIW7n 0RsbQoS0SKBIxfYxkEAFrKFEpeotcyIBV6shYpn1a3tAhv8AXUgCVlNFjgKxhJGLeLA+QBrr Jzo4k+i3HPJFyLyHQxIQYQhFuZJCSQpp6vz63L6MTUZQaFvfQqQciAlAHzznzrV1s67aVkUM ZYD6Hob7gMPPnw6rAf4kgHbNWd4FWIczsPVqv7YDXDu8ofsANGwiry72QMXUAvmcC4B0AH8P f+P0rUzh7AD/c5JqRY35uVBab+gUBHNhzB6v6AonFj8yDjzVIP36PtOprB/YOG65Qp+ouNXV gpYsNhTzwKGEGEG2IVJMYZwd8T5yDYOIy++4b4GEyaYAxIKRce7nEgAzLnqXPSShVTTTYKOl zmY4wclAjxdDQ8wpc7HYvEA3BdkXsHd76DmZmZmZ9Ahn60djb4r8Hb4aSj5e7EpMMOSlUob0 ZtAkiINABubOoFFDGuMaCscXhFwO+MjgEBYzMzVIUAQQEt4oiYFcWnicrSR7zqVQwND10pcO YIhh7tISHnxo6REJoSLHz2yPt3pFghG3F0nE8UPNb6YXjaQXJufLZVZdiTKR84fJ8bkviIRQ ACKmfyRbugAsaPjnwqHWjuZnl3HcgbIbgHXbe/XTfe+6zD2EH1Kql8dz3jgoIsWJnucUXw5F 5FAlDTjgf5HPAAklSgLTuIJZ3O0wL3kO05/i6tABiOpjkmoERp87CSzuPhwYdtvMMkPoyoqc G5TgGQQlzGPChrU4gBFWiVu+BXnfwr2YdfXUvtoX339o5mJhiGPH1ZWJJJJJqKSYU6V8OPlh d4TCY8vVa2EASDOGVgGZQyyZGDu+Atm9mlDxBAcWhmbUIWnsFAThOBd5l3CuMygAkHqbgSvA L+5DSBGK94k9PXTZKX8PfjJ3QyOroOgG4ypINKnj5dJ6+A8adjLuTG955j0ULXuZx3OREMnW CABW+Jy4/DUVM0HPSvZMenz8rWzK3IfUZFaUOGEGUXypTMwBq/PKxiXEDBAygHWh0USsBRiq GEmKpPaVNLdPm2UtRou5PL6o1wXIocBBtQL4JhuvLlzZtOUIQc5zJ1WZe6pXgtoG24Y/iMKr jlh6CygBzOZm2oVAPIu2FgCJEnn8HIRmKw4QbMrqwUGwApB7lIBfQOvXFEBUoBksUpSjAjaP AkBSdaRVEGaDuD+eHdLnElTw65xooyhQasZy6sAqBWFEeKxuGezoaIiozMzYgXoQ0GD93EDd rIPJsdnXYtW3d1f0A7AxBTRHFgG7KXs9cNcbRrn103MBlVzdjWRrTMkW19p0wfKQHfLezyvU 5gkY54oJ5W2Ds6OkkKzqnCrEcbyNokbClrKSrNXuekpd6RRs133VsAFmNVl6tiBAXygbQJvw NMbywQO6h1AJdiDgBoUQrEQx7bVFbmMhx4bKjU3bt3/GMtedThhhw68xILHAQaVCL22BgOZs nevl648pcT7PbpofCAIpzK9rhCrXcNNplkYCG9gxgwGDZHx5QVImFtHCRuN66nhZs0qO0ne3 Y6T3bo2GuUyNpk1Xe/bztiwDNJ2ZDmKIQcDIE7bRd3xjdW7s2OH2Ook4QpBmEwKZX30vvkMO 8Ut2vzA0VUs8yQkCqvja9gAOGFKLso0MjuScezC/dejj2Xe5x2IYrrqTowqxAsHCt9zAbAuk 4IDEL8lKAH2WS+iws4HpudPEDbRt03NnIzp4eFGKgAXWBkpmVGDIUQEBR6YBTZm/anf5QoiI 9PptSWlrErUvZhmVLuiJ1rgOHQIPtOrtDcOS/q6zK6rehxk+j5fy4Lm1DQhXkuzDefIqzLwF xf3b8MTXJ6ouzXI58+FV6TVjIMhNOw1LBA6yjbfaMEjDG+JJh9tElHdiBlw6+7XUdM/d1bC4 HEAlNyHXkBNaKfMhMwpafWAXfz0YwDfcBrWlIRwJiIgCMjoJNgRbmSZDgAKCL2b5MzrbrdAj GPd3vjFouc97qBBeMARfyEFru5KkV4uAfQce8cYgu3g42o2K1MmTk9HN91vDsuop6dmWd2/O c5znOc5znOc5znOc5znOc5znOc51MqKHQZo0OqZonCIEghrgj32TiE8+GGh30RMpvtMgo25j Kvj6DzkAEj0IbNekAoSj8dMGL1EiGALcVeERxcbmBnJd5497lZIfjwk9EXnQD8zsBnPC84a9 brVhigHjx4OxvTqZXSvonVZXlu002TnOc5znOc5znOc5znOc5znOc5zmdznAzdhKVEYpmRWM L8NmIvs92BtQB6eddeZmfzKFPwchwEhgwHw1L7YuBrTtZ2oo20LPQg8o6HZCBXWACqiwRq00 flS1rDERH1RRCqwNDGAdgdBk+iaNQrMAAoY2MzRcB7gMCY4TC1F/A/oUAcTEXBrLnZw4BK6W OJAwci4bPIsDoZzUiQTh+pSUkgKR12QILuzSS944tr85UzbbytZEGEqxI79hUmZKbIFrGzq3 61co8KR69ugHAx5Af1345FViQC28Ao11LwGrascKgPqjwQrSqmc5we970iFVgBEIUNtZ2Wub XMql66WB3k9pO8Ar3AHwP0E4ESBAgPM1gclz7UQrCMV+UiByCFSEHfmnTfn+EAfxYdcR4LPd 2eKu0LDOzMyIjxHHbVVSIlTMzMyiJNU9VS1RnVU9VS1RnVV9QDwFAGF9YveC9BPXqBaB/EDy AqgAf5gQA4AWAQAikwEHywwwwjllJ8pSlsplZMTfPYJGltESgRBQu222222/bVnd3d3d3d3d 3d3d3d3dmd3dmd3dqqq7xf1wVDILuBfVCRVRnOdvD2TXzGl3d8chIkTMoiTOZnalenp6aHZX dyiYZpWZepVat3uzZlU7u7upmZExBnV1VVV3ciZmZmZH7TKTHItKLEbSrvxz13M1qm937ttX WZmZtttRTcFVVVVVVUfaP6k225cuW22222222ttrW28l/DwAqDAGoHcveL5N9hA6sdWfCsp/ n9pmZmZmZmZmxcm5Tyd35AiCdrNMywh3d8Tnsqzu7u7u7M7u7u7ubtLu7tmZmu9FmkwY0ASD Kkm4Ii0fiTUCN4pET+3y0PYIg5yCIItIieSqveoGAYSlKFtLUBApOs479jbbz8/PoE5GCIey tzu7u3d3d35giFgAgHZpmVVXZ8SARkVdY6zjsd1XLZmO13iKraKDhwwo3EvKJYmqSEqrRGLo CIGnJNz+YBhjDLsyhQoUICQkDDebQAnQIhAQfFOOLXycTFRvMJhukRmPUAW4K+GqttuPOI50 q1VIdKiXr9Us06zd/HWTBl99PA1/ry8QrbYxrWtc7s7u2Zm5qQJhQARHczi/b2gEV7i7u730 Poz6iIilCoyMx4Z+kAHzGZRmRRyBgwYMGDBkOVeAmtSJ6ncYmcK/o/mQIiOaZBtqdU9/rvRB Qm/roGZeqqqIkSGZmZmZgwYpcu+2oEQ7uzQ7uhCTMimZl5mIzlUMq6jFxjM2NZzSus2aizUz E3eXOsxnKoZV1Gta1rWsxnKoZV1Gta1rWsxnKoZV1jFzMzMzEw1rV6uLu7u7mbuZu7u7MYxG ABVVVVWqpUJkBGJmZmZVVVSIZVVVVVVVVVVVRaqjRtttrIW22222222wLbbbbbbbbaqqqrbb a2tttttttttttttttttttttt+Y6Fmd1vKkCG8MW+Cqqqq+gkKBNaWySJ0p1jJMM8jCBUiJMp QQxMNZrmWVbF43jgOY4jeOI4jBg4jkOQ5DkOQOQ5DiOI4jiDiDmDmDmOI5jkO0Pkij4xE0iD 3wDZAAOG0FPxQcf2FHzKg2VgBVQQxWoADzFB4qKckVuyoILkH8rksDdEyUi2BTCBbJbFhErp vozCoCkig3xYqpjjhoCYioVrmUU//0dQYNhAgkuOKNUBP+7QHzgBrcVKcFKogoNI2Ayg/tYQ wygPhAJk5GjnE1Kv3qg+j0eP5+P7bOP/bTtz7TE+IQid4+VCRChAgFUSDh8wc3UGgCg64s+z 438ode/Q073rGqj5asldWAeNF+TIB36e46qlTIRx7fEiFDFZPvV7/pog/GPvSBICMYAvT3lA buoAw6H+h4g+GBj9Qb/EgP0EWg/P8BLgMAaPz/2pBvguwU+22QxQ/p++jnIiH76E6wCqXcrF Ab/7myprEzDzgBk8+Gs2MvgJYFqCmYNIEEX8hggh2rxBe6YBIFlMnLxThOAStb7RxmC4iRqZ iDs8MuRkxh/9vPrLzyHpfujIcUsb9DIAeEG7fQUKwhekJQezIekCoDheYgBSlTXptsRDYDjS o2+cY4LvHfAAijUCFBcBFt34aoBS1z+pQb3OCKccAF7gJ4RDpa8EAg172xLQOdVQkFbAAnDC /b6KRrgahtSBTbaOG2wB8ExWIQHUiAQAL9BIx3bBId2lQF5QHV4gdBtfcvWKUPQu+yc4IvuM OgowkTz7rIxWgzDI5/TcXixAy0g+a5p38a4LpVUP1GYC4wkJHASHACc84B/UC6ks8bCIFIq7 QFMp38goBMtpIC87gJCQI4JND2G6xi7qIdyHXlmB+psR6wdhiw7zdUVB2wjFCB7e1tQBoG5Y 7fzqAE//jgKQBYL0PcZ+kVSfaPzFOruXUBPWg+R1VPDUA3s+vCh9s3p3U+42lBF3QfVXCok3 bpT9Rh2ohwC0KAMoKUFKLQClFIVLWsClkYqhWIAafg2EdblABxgK+yNRG3vGInGIh+IEDQM1 HWcjJ/srerFixIkCKd67AaB9wpagBfqENycbfOvEUtuN7XT4Nf1AgGAn0QpGJ4mW4AniAVOh B9Jf8poIk5N4Fb1cZpb8L90u6kQpgdjrasx6uAH90dz632ZCfgxO92HumTD4kpQNeZiYgpy6 gdPqRH7AP0gGwLcmoPIBJw/M1j+jADE7OFWvth2sUAWz1Cky0EKiH9BSAjBSAWtLwD+1dNnM MFPpN1FUrEWKnA1FSp7Bo+F3iKHcXeQBqPIvFNt7wgq8LhSgu7JBQswBcoJL4gB5nyOQ+Aos sAkG0SGXJvkwXg57ABmIph3nTqK4lF9GveuP3NioGkWmmKUuuXIQ4fOEPaPkAYjwIMkIp6e/ 3jhFmgnvIgOxlRF2go5g1Nzj7ULNHpAMEAP0wTdu/LI97DowpEnEUoxYr7zwRBq94B7jqeB2 FikkVAJRIBUWBlzk77D3gdALAYgcQOtfsxVOzAflHntB8QdWZU9AAudXHzB8aF7S4H8yCDR3 8MgA0HjAZre77gXxMgDiAGiOA5IXKvWD8/saoHFA5bs1/OYAgHgPhgejup5dQpWtqajmKd8H iD+hHfDsAUipAUiqFx9AwHybFe9PP55IthPQbXa+TmbBC9Uid/dTH0HZRdAXAfI0AKAtzoVa HrafowVP4gQ9o0d1dJ2oXJ02jG+BBZiB704RyEiidHYAPKTinuvu0EYztgAfYbgclgKqqqrE IbQyALIgxWAhAGoBmKXsBYSW0+lQD0raOIoLWXg+PpaCWYKQiKPrYByJJyEA4n7ykM24B6wD EDEAsKchiB3NJlkLm4D2gNwaw2FYH1gBviBQmDE8jwNpe74kK2bRmIFIpoQF7jv73LMkyK7h ufrOi9gN59p2FF/9kVif36eXzPx0P/H0ys0Qalqtty0hXMVaQxVT09k7eYfAJ+j8U/x/1/Of V2VvAv/yl4h+IUuuNnxMR5ilBTr/0pVDQU/VX2XdkhlJnmfp74yNDb2euSm0/rb8tVwbebQs medkxkUhDwSSopCKRSS0sIv3MzESwltBjCKfkSxhFGJO+WjEnf33O4ptttm2ksFGMLecgWhV 3pjgHcJ0w/0p+/sb4WiwBAvWIngWVCKg93IA9aebpyuMPzKwX7qpZFhFhFhFgNpv8ADyhwm2 AGYIkFPitESCer1X1OjIehQ0/dQH0YHQkR/mvBXIYsIPfRQ1RQ1RQ1RQ1RQ12aomar2jFRZ7 e3sBG4DxQAoAf53c603AvF9X3ATBTE23wAR0lIrmfL+XM3cAIKh9gi5Ao2UeEoAudlBPDBTv kRhAjCJ8v4CobkO9+y9DTRV5nkqvbnr/Pl/47Bw8TYC5gXiwzGAUFO4RSmoUzHBFAiCvQvQB KKg4illXYB5gc+tqiKX5FcAIfzpfkeJElsLlQbrmApCqoPeFwihp8VvBeEt6wGEySBW22U4+ /4fFJg5+XSiGHtjDA0vcUIh36TXOJZEAjEQl6G1UisIN5LtARByjGGKw+vLGIRYxCKxhIxgM kYoFssbsS1rWs3JJGJE8XsFX+ILrxsGkDtkKJRPYkgEJaDSYoYxAt+TQoDRFdzVig7FFwL/y YgGuLV8ajs4VjJG/CWjMgv8Nh8w1X7f4VRC5tQecSRQQr0T+ge4OwG5c3xD7DK4Q/pfQASpF S8ToCkQgNEED0/pRUPEHxMOZEYIkHirZH5HqSjH65E59XgeaJWu/ov6Xzft777I8+OL3+Xz2 +TuVNtaYMFChhjb1atC3hGaWgBgzgkRBAcIFcyyPCx051j3dewMYRFRYMAMMhKACinKyh5eQ 5goKTVlCXsUuIvHl5W0Vu1ta3QdZDxA0d/BU+AKcoovYPvV/zLqg/UCOaBWVkVThQCzQD8QU uKc8EF6QUZEQ0pThKgY0Q4gphV48acbtMJ3oKgLIxYMBZGLBgLIxYKEixkSISLGRIhItbwX9 mhTBKqJmtAQDzv+K27uIxCSSMFgyMRWRBISQQ6wICqlCj2biCm6FDrCsk8vyVBoHrpUGrgsg sFLygYhIdKTiEMkPyDEYjEYjEYjEyuBXdC0BR5Cl4iUNuDWJiI3yyvXFEpKpVhBAJBAqLyAh QpNRQJFUfjvqBcAwEYosR90MIilUipCQiooUesOJa6oMD0neeFFPgdrT3J86cCa8GWI7xUtq lfShwu62SqeDVhvvmZmYBhto4k80AJ18NgLN9nz5JRRVxUtSKRSKRSKRSfRaREiJKmCiritq REjaKiqUSqKirUWqKiqVWqKiqUpESOm1hUl+E3CTRIcwL7Ng6H3lRvf51usDzARO4C2ydZD3 Ek1qCqdCO0RMMwMaMcLWxxaAOAV79qDSoMFQg64qIbAOLnmkkgGSUmymuTq0rLE1iGzeDEcF 0VDQUvcKCLq9dLKveqDBSgCOAHJUHtaNyr4Kg6AI6EVexUHaAY9o+b5UtlKoFKQ4AbAKX98I XokNwAyb1Ib0PlWSsqoqowDi0JOQbG+6siMCLKIJUCWMvqFVocUW17ql7QlwAlEMGmsc9DIA 8cueBhMEUrizhd0cgcNdRTCh2KGGYBEEnwBJ4BAEnRuhVQgi7TxZvfSoudZKPD28ea5MbtmE AgIdf7ow5QgQIEYlJSfgVM8oFIQOgUAP/WCKcrumyiqJTcFiQXSWL3L3uXEoDu+TrFPEbGJ2 qg8gejpzR1Rk3jl41Vy4LgAcBB94Xrdhk825ZCEbqKBqFJFVaBQETEF4jcim0H++woeIAl4L oXJfxE/MgKQqEM6UkERF0TMkAPFgaYlhpwLG28AyBSgOsC/W448swaIq5KN1XFlIiFloUzqy wFsIvZute3EK1B5HZm0wdqmIfiJ6APB++HexMheBkcr4Wvyo896t33vfdlapKqpoKg/cdW+w fxHmcvgesBap2dEaDugV1UujBY4HR8yoObMPAAvCZQ+EBSIpL25cfDNnoCzcggaxG+hqARsf De7AUzsIsHIRKCAa/ryVcsqfliOaHe4uoR5MEXmA2vkSE3UH7blIUBQDYb70WrzMA+OQp6hT HJHgZlKg/u0BogWdA7AW8TS8Iad4C9Pc2RbwCz2BR9PIDqIIFkTwAXYItNdn8GECbxE3FcfF yU5g2dIFhkGVAdBF5F4xVCApGgKUt0fADDBVeDmABwGA8NovLt7RAsB+RNAFw2jgqg6HKiAu URS5FHRFtUDZeIXfzDuNgqn2zxz+dkPcJ5Cn7CwQOpYY29s0i8PKm15YxwwlCQhY8wGZJJOE k2QR34oELUzGGBmYj+r/kD5noTwsnYKh9A3wLikuePrAjQzEyLx0QHWDEAihpWFmY0kwPRjj jrMOFsixe5czAU4teqyCdYp+3GrC62x001q98cOeTOoUKGDAxQ8PYREAVvAhQgQKEFEyqiJV kGjpyw0k0POAugtxROkDZSEnbOeV7HCU90tNKqqqqqqqqqiqqqqqqqqqtpHKRjIYqqqqqqqq qqqHbPOVNR9MQTYkIXXLv6/m4hRuclumW33f5fDjbbbbWta1rWta1rWta1pZyiIiIiIqlRxD VWtaxrWtaxjWtaG29r1mLTTkmDCOZye94Mjw5qynJMXM3VRJVhGwXU7Yu44OCKiqqXI9p0Dk fCKqPh5qD2KgwS5nD5Ty7TLYP1gaYqg5qLZABhuFQe58Gh62TdaECQCD15KI7EWhCO4NTP2l xTmquhugxl9HESwtKg0YrTYv5IQgcuEBUKZ97AxAppB2CDvB0RN2wlJJVVAgo3VBw/E0kQCr AGYpQKmsVBriC4I4gRzyxDLrArc4DWYB+EKWCQkjEkkWEUJEkRV7P5lAZop83CwE49IC7gJC XEFSjyo67mKk9hvbKuqB2qqGQo6GSIp87qg6gWPpBCkB+NL1F7zijYx/IoGYtiKo9tmIld7j /HdQXtCSCAEho49ByB3wJBJJAgnOh71Q8aVF1wVYdYPh2/bZHDQN3JjN1VVVWKqqqrCWPbpe RIfABawimYaLje6457FQdvPs7ToP+hwAaAD6Ks296J3WDeK3ISRYsaV4B4DgC4fYE94KfBV7 BF6ZIrjAH0oRdNoBGkxA6xLCg8/PVF7g19A3LfqChSJHteTuWomQpiRuU4HGXQVtvBTspYE8 WDGAhHI2Hr16AHU85poC3avEKLxNvZ1SiSjjGhrMDErwcvNgFx/jQtzEXCLAV4UUAClKQK19 bc8LDMQmGGITABlQCjveDOPm0U6lMM0UaiHWqDN3RUH0VwewCoKSZxQLCwEZFFg49EYg9gi3 www+zPknJCpdy+oCgDJujsDyqpqgwFByVB2x+x2K5AjEVTc85+bsqKAdGOob9d1WouAu6+GQ +d91gDByagwlKeCAN8ArWx97UUQuQwFQyFOaK4eIFUU5EVBzUXmBvQ6oqDHqBNC8GHKgqfd5 /IbwQDVMRFvUEI57SqoN3k7BUKscEVIMbFAG1F+gA0AUi0ANA0o0CF1+4G90UtiPm05EkwI6 Sw6gSMJQQGIvW1ZE0kh8hEowDIkEkECRtoAkAaVC8kLAK2Yqza43QQMsDyIDdUHJCLbsxUbD cUijAFzKbEER7WwLWAFCmCi4AI0OXWLpAYwG7TvRey8OrBABxFRioOD+gGNeItKBoaAUf+ta LwCAULog7fkiwFTfP0jERQ7sN4KQBcj0qg2FBNIt9QCw71QaNyBZKpgMI1hSKZIJQgZ9FX8h F7h+4RYq1gHVviLRBYpHb27b/aUaAnkhRxQFeHsqAAFBSpQD4z0Kv8saI9xggqeqHzaBq5sA PV4lEGQNqohmGYp7wFhQV4QXNUkEJAAJFh2UKdVrxnqMQXIUzGg0gNiEAIg5tQ5BMVZYgIHt RwiBkAVBglIK/qEWl37lS4tkRSGKoM0B9aoOkLwAemBdeKHq2KBIrACChGKrzRU6g+gO1V5B xEEgUVBlk7xF92g8AAioPGluQ9Q8nWPWOHSKsIpg7+J1XTgA8EU3j6RTycwIhzAqiuQlAkA6 HBkhmkksgAkgooooKRRQUgshCCRCMQjEIxCKoJCKRgMYDIkYDIoEiSJDvQVDqES3RT1ClhXm PcJ7niC3AHJH9SBIGsROSKZpptxxE+k6FCRhGQkFVVVRVgG4H2pIQsn1kIeZ09XMNRVMUfkr HmOIMFGAwRIDBisGLBiwZBgNWpbDeNkLq4CHNEALnIaL/PkWeAA9+56KjmZ0WimpUS4IAhA+ ewlGUoUJYoyBKhBkIIsFiwQkFCKkUILFSIikVJyKNgIhIytAEYBIqpBHmVQLv9CK6aKI4gLy eO8z1ibLOqGwGRUGABJoD5w2V5+kFNdUpVlClCLteoeu+A7QB3CCRFIiQTdqbMbnIRPOJiAX CLtCAodd7RFHAde1VYgsjVEUyOAhoL4F3Xei+0x1CvIpEAbgEhzgFWraByURZsQTiHbtDffg AJzuolbR3RUdgGJt3cgALnxkkkiqqqqqKqqqqqqqqqqqqqsJqyENCSDIyQBUJGSEgIFDCYBQ FEFUxyVBzRMT/XCpiASAxEwVYiBFT6vaW/qB4D7r7tQpMQaKgp6OADSWkJDCgf9bgL+j1EDv xRSrm1sWwbjwAq4iWEDMRe8NWRwBTnkLWIpRBAurQ84BgKb9M+6swdfkAuV018lXYqDBfRYJ VLlQC/5WGuodqSQI5x3F4Qn30hJ83ebHUZ5KtS0S/R+myGADBAGCEYSKukv53ByBD0NHGrzK SjBGCMEYJ2sKIfGUadwLQ5EEC9DQpWztOAXVDQc1QbmklUQygg2hCB9EEMxUwBTlUU8/rDtF L6gLBQZQVchSAsFOdVQf4aGwgiFQNt4C63HK2SKckDYLU0hIQfgDEgMSAxIDEgMSA7APSSdv UhrAyFWgXYBQQXooUAyHhRrwOjdd1ETXM5bByBSIoEYqDAU+0WHvP2lNwTtCgN37doALqD0h tSrUEB88VU1zHaqDZaLtobo+w37ELrwDDAIK4KkGBwBgFClCXHaMHIAyjQ3poLQQ6fWCmQA6 OLBDTZdRcnRGEBy0BoBbDM0DOjMYilxTAoLIYIAZTIGlzwTOnMUvWQBC4Y4A5BtyAMDgDe5p kJ1cQCYgGwF2wJLhSK2gjURCqgXHAHPGZK6Cg4KgygClxLWrcKZ4h3KhFVyAF9wgQQXhkH3g ai6Kv2Aa0icwWNzNMouFwA2sRELr0HAu142QMg4LlvQuHeLLcODR3n2WFNqpXWXsSPoaiByS Ae1sJrK6rCLlv0sLtGAbfmlEIAjCyAZQHcuwUsBC1rPImhOZahN2aCOjcUC5ehQz2op8ckFx VB6gaLiJsLhSra4prhEFL91Niahuc/RAkkVQNjhkBUVQ50L1cxBGyoOQA0mz2KV8JHcO4Hu1 /VAFyRfgAueYSMgnG4i2K+rs9p7nA4esvfpY9VFFt5gFz5qg4rmqgdxwsBVGcDfxA+nWKp1o niYtg7wAO8QSgEgpBA+ANfhFELAgRRgMBU+yCGsDtYRhAiGI/IbwfzqOcmFEU5WyunZvX9yJ mNBUGYuHZTfcAJLHor9SoPrBVsK4l0rCjiUCgFVSLcyvs30G4UDxVaLhUaqg3GCFtH5PiAz9 /YgqIahEHD/3nYES0REa4cEUsKIHMS4GwwIqDMvw/LftHa0mIkXsrUDkIv1iLZAsBiNA4k2R DKKXCKt4qWt8t44WRS/TCuFQlAHznnuL0FQyK+SB5Uk8FB+4WioM4iIeb0B//F3JFOFCQZTK p/A= --------------080505080002020005060604-- From kes-kes at yandex.ru Wed Feb 1 23:10:11 2012 From: kes-kes at yandex.ru (=?utf-8?B?0JrQvtC90YzQutC+0LIg0JXQstCz0LXQvdC40Lk=?=) Date: Wed Feb 1 23:10:22 2012 Subject: bin/164526: kill(1) can not kill process despite on -KILL Message-ID: <201202012310.q11NAAwB097665@freefall.freebsd.org> The following reply was made to PR bin/164526; it has been noted by GNATS. From: =?utf-8?B?0JrQvtC90YzQutC+0LIg0JXQstCz0LXQvdC40Lk=?= To: Alan Buxey Cc: "jilles@stack.nl" , "firebird-devel@lists.sourceforge.net" , "bug-followup@freebsd.org" , "freeradius-users@lists.freeradius.org" Subject: Re[4]: bin/164526: kill(1) can not kill process despite on -KILL Date: Thu, 2 Feb 2012 01:04:44 +0200 Re[4]: bin/164526: kill(1) can not kill process despite on -KILL

Здравствуйте, Alan.


Вы писали 2 февраля 2012 г., 0:24:55:


>

kill -9  doesn't want to play either?


Read the docs/debugging file. Compile FR with debugging/developer stuff and run it under gdbm control and do your killing of firebird again.


It's likely to be the PERL integration as thats what will get done in when firebird is restarted. Are you perl with threading?


Not sure why your going through hoops for firebird access, I'm sure there's a native module....


alan





# pkg_info | grep fire

firebird-client-2.5.1 Firebird-2 database client

firebird-server-2.5.1 Firebird-2 relational database (server)

# pkg_info | grep radi

freeradius-2.1.12   A free RADIUS server implementation


# perl -V

Summary of my perl5 (revision 5 version 14 subversion 1) configuration:


  Platform:

    osname=freebsd, osvers=9.0-current, archname=i386-freebsd-thread-multi-64int

    uname='freebsd flux 9.0-current freebsd 9.0-current #4: fri jun 10 01:30:12 utc 2011 adm@flux:usrobjusrsrcsyspae_kes i386 '

    config_args='-sde -Dprefix=/usr/local -Darchlib=/usr/local/lib/perl5/5.14.1/mach -Dprivlib=/usr/local/lib/perl5/5.14.1 -Dman3dir=/usr/local/lib/perl5/5.14.1/perl/man/man3 -Dman1dir=/usr/local/man/man1 -Dsitearch=/usr/local/lib/perl5/site_perl/5.14.1/mach -Dsitelib=/usr/local/lib/perl5/site_perl/5.14.1 -Dscriptdir=/usr/local/bin -Dsiteman3dir=/usr/local/lib/perl5/5.14.1/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dcc=cc -Duseshrplib -Dinc_version_lis t=none -Dccflags=-DAPPLLIB_EXP="/usr/local/lib/perl5/5.14.1/BSDPAN" -Doptimize=-O2 -pipe -fno-strict-aliasing -Ui_gdbm -Dusethreads=y -Dusemymalloc=n -Duse64bitint'

    hint=recommended, useposix=true, d_sigaction=define

    useithreads=define, usemultiplicity=define

    useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef

    use64bitint=define, use64bitall=undef, uselongdouble=undef

    usemymalloc=n, bincompat5005=undef

  Compiler:

    cc='cc', ccflags ='-DAPPLLIB_EXP="/usr/local/lib/perl5/5.14.1/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include',

    optimize='-O2 -pipe -fno-strict-aliasing',

    cppflags='-DAPPLLIB_EXP="/usr/local/lib/perl5/5.14.1/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include'

    ccversion='', gccversion='4.2.2 20070831 prerelease [FreeBSD]', gccosandvers=''

    intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=12345678

    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12

    ivtype='long long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8

    alignbytes=4, prototype=define

  Linker and Libraries:

    ld='cc', ldflags ='-pthread -Wl,-E  -fstack-protector -L/usr/local/lib'

    libpth=/usr/lib /usr/local/lib

    libs=-lgdbm -lm -lcrypt -lutil

    perllibs=-lm -lcrypt -lutil

    libc=, so=so, useshrplib=true, libperl=libperl.so

    gnulibc_version=''

  Dynamic Linking:

    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='  -Wl,-R/usr/local/lib/perl5/5.14.1/mach/CORE'

    cccdlflags='-DPIC -fPIC', lddlflags='-shared  -L/usr/local/lib -fstack-protector'



Characteristics of this binary (from libperl):

  Compile-time options: MULTIPLICITY PERL_DONT_CREATE_GVSV

                        PERL_IMPLICIT_CONTEXT PERL_MALLOC_WRAP

                        PERL_PRESERVE_IVUV USE_64_BIT_INT USE_ITHREADS

                        USE_LARGE_FILES USE_PERLIO USE_PERL_ATOF

                        USE_REENTRANT_API

  Built under freebsd

  Compiled at Dec  9 2011 03:57:41

  @INC:

    /usr/local/lib/perl5/5.14.1/BSDPAN

    /usr/local/lib/perl5/site_perl/5.14.1/mach

    /usr/local/lib/perl5/site_perl/5.14.1

    /usr/local/lib/perl5/5.14.1/mach

    /usr/local/lib/perl5/5.14.1

    .


firebird is restarted without any problem.

also if I ran after that 'radiusd -X' it is works fine too

# ps ax|grep rad

 9438  ??  TLs     5:10.12 /usr/local/sbin/radiusd

37170   3  I+      0:00.33 radiusd -X


but, as you see,  old 'radiusd' process is in state STOP and I can not do anything with them.

As I have said erlier, even when I '#reboot' server hangsup waiting 'radiusd' for die

Only hard reboot helps.


Maybe I do not understand correct, but it seems problem with a 'virtual memory' (vm_??):

  vm_map_lookup vm_fault_hold vm_fault trap_pfault trap calltrap


PS. in 'radiusd -X' mode bug is not repeatable.


-- 

С уважением,

 Коньков                          mailto:kes-kes@yandex.ru

From linimon at FreeBSD.org Wed Feb 1 23:41:08 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Feb 1 23:41:13 2012 Subject: kern/164690: [ipfw] Request for ipv6 support in ipfw tables Message-ID: <201202012341.q11Nf7PN033523@freefall.freebsd.org> Old Synopsis: Request for ipv6 support in ipfw tables New Synopsis: [ipfw] Request for ipv6 support in ipfw tables Responsible-Changed-From-To: freebsd-bugs->freebsd-ipfw Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 1 23:40:49 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=164690 From jilles at stack.nl Wed Feb 1 23:50:09 2012 From: jilles at stack.nl (Jilles Tjoelker) Date: Wed Feb 1 23:50:16 2012 Subject: bin/164526: kill(1) can not kill process despite on -KILL Message-ID: <201202012350.q11No9C3035509@freefall.freebsd.org> The following reply was made to PR bin/164526; it has been noted by GNATS. From: Jilles Tjoelker To: =?utf-8?B?0JrQvtC90YzQutC+0LIg0JXQstCz0LXQvdC40Lk=?= Cc: bug-followup@FreeBSD.org, freeradius-users@lists.freeradius.org, firebird-devel@lists.sourceforge.net Subject: Re: bin/164526: kill(1) can not kill process despite on -KILL Date: Thu, 2 Feb 2012 00:46:47 +0100 On Thu, Feb 02, 2012 at 12:16:39AM +0200, Коньков Евгений wrote: > repeated again: > bug is repeateable: > 1. radiusd + mod_perl + example.pl(it is connects to FireBird) + > FireBIrd > 2. restart firebird > 3. try to restart radiusd > 4. process in fall into STOP state > # ps awx | grep radi > 9438 ?? TLs 5:10.12 /usr/local/sbin/radiusd > 27603 2 S+ 0:00.00 grep radi > # procstat -k 9438 > PID TID COMM TDNAME KSTACK > 9438 100080 radiusd - mi_switch sleepq_switch sleepq_wait _sx_xlock_hard _sx_xlock _vm_map_lock_upgrade vm_map_lookup vm_fault_hold vm_fault trap_pfault trap calltrap > 9438 100195 radiusd - mi_switch sleepq_switch sleepq_wait __lockmgr_args ffs_lock VOP_LOCK1_APV _vn_lock vm_object_deallocate unlock_and_deallocate vm_fault_hold vm_fault trap_pfault trap calltrap > 9438 101144 radiusd - mi_switch thread_suspend_switch thread_single exit1 sigexit postsig ast doreti_ast > # ps wHl9438 > UID PID PPID CPU PRI NI VSZ RSS MWCHAN STAT TT TIME COMMAND > 133 9438 1 0 20 0 351124 322000 user m TLs ?? 0:03.65 /usr/local/sbin/radiusd > 133 9438 1 0 20 0 351124 322000 ufs TLs ?? 0:00.00 /usr/local/sbin/radiusd > 133 9438 1 0 20 0 351124 322000 - TLs ?? 0:05.28 /usr/local/sbin/radiusd > if I can supply another usefull debug info, answer as fast as you can, I can > not wait too long. Thank you. OK, this looks like it may be useful for someone who knows more about the VM system than I do. It is very likely a FreeBSD kernel bug though, so building freeradius and/or firebird with debug information is unlikely to be useful (apart from perturbing a race condition, if the problem is related to a race condition). My analysis: thread 101144 is attempting to shut down the process in response to a signal, but needs to wait for 100080 and 100195 to finish page fault processing. For thread 100195, page fault processing resulted in deallocating a VM object based on some sort of file, and it is blocked waiting on the vnode lock for the file. It may or may not hold a lock on a user map. Thread 100080 needs to lock a user map to continue processing (this means the fault is either a copy-on-write fault or the first write to anonymous memory). It seems that 100080 is not holding the vnode lock that 100195 needs. If you have DDB (kernel debugger) and witness compiled in, the DDB command show locks will show who owns these locks. This is probably The output of procstat -kka may be useful (like the previous procstat command but for all threads in the system and with offsets from each function). The output of procstat -v 9438 is the memory mappings of the process. It could be that this command gets stuck because of the locks. -- Jilles Tjoelker From linimon at FreeBSD.org Wed Feb 1 23:59:43 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Feb 1 23:59:48 2012 Subject: kern/164696: [netinet] [patch] VIMAGE + carp panics the kernel Message-ID: <201202012359.q11NxgnI043795@freefall.freebsd.org> Old Synopsis: VIMAGE + carp panics the kernel New Synopsis: [netinet] [patch] VIMAGE + carp panics the kernel Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 1 23:59:08 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=164696 From kes-kes at yandex.ru Thu Feb 2 00:18:33 2012 From: kes-kes at yandex.ru (=?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?=) Date: Thu Feb 2 00:18:41 2012 Subject: bin/164526: kill(1) can not kill process despite on -KILL In-Reply-To: <201202012350.q11No9C3035509@freefall.freebsd.org> References: <201202012350.q11No9C3035509@freefall.freebsd.org> Message-ID: <10217604.20120202021826@yandex.ru> ????????????, Jilles. ?? ?????? 2 ??????? 2012 ?., 1:50:09: JT> The following reply was made to PR bin/164526; it has been noted by GNATS. JT> From: Jilles Tjoelker JT> To: =?utf-8?B?0JrQvtC90YzQutC+0LIg0JXQstCz0LXQvdC40Lk=?= JT> Cc: bug-followup@FreeBSD.org, freeradius-users@lists.freeradius.org, JT> firebird-devel@lists.sourceforge.net JT> Subject: Re: bin/164526: kill(1) can not kill process despite on -KILL JT> Date: Thu, 2 Feb 2012 00:46:47 +0100 JT> On Thu, Feb 02, 2012 at 12:16:39AM +0200, ?????????????? ?????????????? wrote: >> repeated again: >> bug is repeateable: >> 1. radiusd + mod_perl + example.pl(it is connects to FireBird) + >> FireBIrd >> 2. restart firebird >> 3. try to restart radiusd >> 4. process in fall into STOP state JT> >> # ps awx | grep radi >> 9438 ?? TLs 5:10.12 /usr/local/sbin/radiusd >> 27603 2 S+ 0:00.00 grep radi >> # procstat -k 9438 >> PID TID COMM TDNAME KSTACK >> 9438 100080 radiusd - mi_switch sleepq_switch sleepq_wait _sx_xlock_hard _sx_xlock _vm_map_lock_upgrade vm_map_lookup vm_fault_hold vm_fault trap_pfault trap calltrap >> 9438 100195 radiusd - mi_switch sleepq_switch sleepq_wait __lockmgr_args ffs_lock VOP_LOCK1_APV _vn_lock vm_object_deallocate unlock_and_deallocate vm_fault_hold vm_fault trap_pfault trap calltrap >> 9438 101144 radiusd - mi_switch thread_suspend_switch thread_single exit1 sigexit postsig ast doreti_ast >> # ps wHl9438 >> UID PID PPID CPU PRI NI VSZ RSS MWCHAN STAT TT TIME COMMAND >> 133 9438 1 0 20 0 351124 322000 user m TLs ?? 0:03.65 /usr/local/sbin/radiusd >> 133 9438 1 0 20 0 351124 322000 ufs TLs ?? 0:00.00 /usr/local/sbin/radiusd >> 133 9438 1 0 20 0 351124 322000 - TLs ?? 0:05.28 /usr/local/sbin/radiusd JT> >> if I can supply another usefull debug info, answer as fast as you can, I can >> not wait too long. Thank you. JT> JT> OK, this looks like it may be useful for someone who knows more about JT> the VM system than I do. It is very likely a FreeBSD kernel bug though, JT> so building freeradius and/or firebird with debug information is JT> unlikely to be useful (apart from perturbing a race condition, if the JT> problem is related to a race condition). JT> JT> My analysis: thread 101144 is attempting to shut down the process in JT> response to a signal, but needs to wait for 100080 and 100195 to finish JT> page fault processing. For thread 100195, page fault processing resulted JT> in deallocating a VM object based on some sort of file, and it is JT> blocked waiting on the vnode lock for the file. It may or may not hold a JT> lock on a user map. Thread 100080 needs to lock a user map to continue JT> processing (this means the fault is either a copy-on-write fault or the JT> first write to anonymous memory). It seems that 100080 is not holding JT> the vnode lock that 100195 needs. JT> JT> If you have DDB (kernel debugger) and witness compiled in, the DDB JT> command JT> show locks JT> will show who owns these locks. This is probably #show locks show: Command not found. seems not compiled in JT> JT> The output of JT> procstat -kka JT> may be useful (like the previous procstat command but for all threads in JT> the system and with offsets from each function). in attach 123.txt JT> JT> The output of JT> procstat -v 9438 JT> is the memory mappings of the process. It could be that this command JT> gets stuck because of the locks. JT> # procstat -v 9438 PID START END PRT RES PRES REF SHD FL TP PATH 9438 0x8048000 0x8084000 r-x 48 0 4 2 CN vn /usr/local/sbin/radiusd 9438 0x8084000 0x8085000 rw- 1 0 1 0 C- vn /usr/local/sbin/radiusd 9438 0x8085000 0x8400000 rw- 43 0 1 0 C- df 9438 0x28084000 0x280b5000 r-x 28 0 245 116 CN vn /libexec/ld-elf.so.1 9438 0x280b5000 0x280b7000 rw- 2 0 1 0 C- vn /libexec/ld-elf.so.1 9438 0x280b7000 0x280ca000 rw- 13 0 1 0 C- df 9438 0x280ca000 0x280e7000 r-x 29 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/libfreeradius-radius-2.1.12.so 9438 0x280e7000 0x280e8000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/libfreeradius-radius-2.1.12.so 9438 0x280e8000 0x280e9000 rw- 1 0 1 0 C- df 9438 0x280e9000 0x280fd000 r-x 20 0 130 59 CN vn /lib/libcrypt.so.5 9438 0x280fd000 0x280fe000 rw- 1 0 1 0 CN vn /lib/libcrypt.so.5 9438 0x280fe000 0x2810f000 rw- 0 0 1 0 CN df 9438 0x2810f000 0x28116000 r-x 7 0 4 2 CN vn /usr/local/lib/libltdl.so.7 9438 0x28116000 0x28117000 rw- 1 0 1 0 C- vn /usr/local/lib/libltdl.so.7 9438 0x28117000 0x2815c000 r-x 38 0 60 25 CN vn /usr/lib/libssl.so.6 9438 0x2815c000 0x28160000 rw- 4 0 1 0 C- vn /usr/lib/libssl.so.6 9438 0x28160000 0x282a1000 r-x 215 0 1 0 CN vn /lib/libcrypto.so.6 9438 0x282a1000 0x282b9000 rw- 24 0 1 0 C- vn /lib/libcrypto.so.6 9438 0x282b9000 0x282bb000 rw- 2 0 1 0 C- df 9438 0x282bb000 0x282d1000 r-x 20 0 116 54 CN vn /lib/libthr.so.3 9438 0x282d1000 0x282d2000 rw- 1 0 1 0 C- vn /lib/libthr.so.3 9438 0x282d2000 0x282db000 rw- 9 0 1 0 C- df 9438 0x282db000 0x283df000 r-x 194 0 245 116 CN vn /lib/libc.so.7 9438 0x283df000 0x283e5000 rw- 6 0 1 0 C- vn /lib/libc.so.7 9438 0x283e5000 0x283fc000 rw- 16 0 1 0 C- df 9438 0x283fc000 0x28411000 rw- 19 0 1 0 CN df 9438 0x28411000 0x28413000 r-x 1 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_exec-2.1.12.so 9438 0x28413000 0x28414000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_exec-2.1.12.so 9438 0x28414000 0x28416000 r-x 2 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_expr-2.1.12.so 9438 0x28416000 0x28417000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_expr-2.1.12.so 9438 0x28417000 0x28418000 r-x 1 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_expiration-2.1.12.so 9438 0x28418000 0x28419000 rw- 1 0 1 0 CN vn /usr/local/lib/freeradius-2.1.12/rlm_expiration-2.1.12.so 9438 0x28419000 0x2841b000 r-x 1 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_logintime-2.1.12.so 9438 0x2841b000 0x2841c000 rw- 1 0 1 0 CN vn /usr/local/lib/freeradius-2.1.12/rlm_logintime-2.1.12.so 9438 0x2841c000 0x2841f000 r-x 2 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_pap-2.1.12.so 9438 0x2841f000 0x28420000 rw- 1 0 1 0 CN vn /usr/local/lib/freeradius-2.1.12/rlm_pap-2.1.12.so 9438 0x28420000 0x28421000 r-x 1 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_chap-2.1.12.so 9438 0x28421000 0x28422000 rw- 1 0 1 0 CN vn /usr/local/lib/freeradius-2.1.12/rlm_chap-2.1.12.so 9438 0x28422000 0x28428000 r-x 6 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_mschap-2.1.12.so 9438 0x28428000 0x28429000 rw- 1 0 1 0 CN vn /usr/local/lib/freeradius-2.1.12/rlm_mschap-2.1.12.so 9438 0x28429000 0x2842e000 r-x 5 0 1 0 CN vn /usr/local/lib/freeradius-2.1.12/rlm_perl-2.1.12.so 9438 0x2842e000 0x2842f000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_perl-2.1.12.so 9438 0x2842f000 0x28594000 r-x 305 0 40 20 CN vn /usr/local/lib/perl5/5.14.1/mach/CORE/libperl.so 9438 0x28594000 0x28599000 rw- 5 0 1 0 CN vn /usr/local/lib/perl5/5.14.1/mach/CORE/libperl.so 9438 0x28599000 0x285b2000 r-x 13 0 136 63 CN vn /lib/libm.so.5 9438 0x285b2000 0x285b3000 rw- 1 0 1 0 CN vn /lib/libm.so.5 9438 0x285b3000 0x285c2000 r-x 10 0 115 57 CN vn /lib/libutil.so.9 9438 0x285c2000 0x285c3000 rw- 1 0 1 0 CN vn /lib/libutil.so.9 9438 0x285c3000 0x285c4000 rw- 0 0 1 0 CN df 9438 0x285c4000 0x285cc000 r-x 8 0 4 2 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/Data/Dumper/Dumper.so 9438 0x285cc000 0x285cd000 rw- 1 0 1 0 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/Data/Dumper/Dumper.so 9438 0x285cd000 0x285d1000 r-x 4 0 4 2 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/List/Util/Util.so 9438 0x285d1000 0x285d2000 rw- 1 0 1 0 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/List/Util/Util.so 9438 0x285d2000 0x285d5000 r-x 3 0 4 2 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/Fcntl/Fcntl.so 9438 0x285d5000 0x285d6000 rw- 1 0 1 0 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/Fcntl/Fcntl.so 9438 0x285d6000 0x285e9000 r-x 4 0 4 2 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/POSIX/POSIX.so 9438 0x285e9000 0x285eb000 rw- 2 0 1 0 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/POSIX/POSIX.so 9438 0x285eb000 0x285f2000 r-x 5 0 4 2 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/Encode/Encode.so 9438 0x285f2000 0x285f3000 rw- 1 0 1 0 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/Encode/Encode.so 9438 0x285f3000 0x285f5000 r-x 2 0 4 2 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/Cwd/Cwd.so 9438 0x285f5000 0x285f6000 rw- 1 0 1 0 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/Cwd/Cwd.so 9438 0x285f6000 0x285ff000 rw- 9 0 1 0 C- df 9438 0x285ff000 0x28602000 r-x 3 0 4 2 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/IO/IO.so 9438 0x28602000 0x28603000 rw- 1 0 1 0 CN vn /usr/local/lib/perl5/5.14.1/mach/auto/IO/IO.so 9438 0x28603000 0x28620000 r-x 22 0 4 2 CN vn /usr/local/lib/perl5/site_perl/5.14.1/mach/auto/DBI/DBI.so 9438 0x28620000 0x28621000 rw- 1 0 1 0 CN vn /usr/local/lib/perl5/site_perl/5.14.1/mach/auto/DBI/DBI.so 9438 0x28621000 0x28627000 r-x 5 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_eap-2.1.12.so 9438 0x28627000 0x28628000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_eap-2.1.12.so 9438 0x28628000 0x28630000 r-x 3 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/libfreeradius-eap-2.1.12.so 9438 0x28630000 0x28631000 rw- 1 0 1 0 CN vn /usr/local/lib/freeradius-2.1.12/libfreeradius-eap-2.1.12.so 9438 0x2864e000 0x28650000 r-x 2 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_preprocess-2.1.12.so 9438 0x28650000 0x28651000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_preprocess-2.1.12.so 9438 0x28651000 0x28652000 r-x 1 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_acct_unique-2.1.12.so 9438 0x28652000 0x28653000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_acct_unique-2.1.12.so 9438 0x28653000 0x28655000 r-x 2 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_realm-2.1.12.so 9438 0x28655000 0x28656000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_realm-2.1.12.so 9438 0x28656000 0x28658000 r-x 2 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_files-2.1.12.so 9438 0x28658000 0x28659000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_files-2.1.12.so 9438 0x28659000 0x2865b000 r-x 2 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_detail-2.1.12.so 9438 0x2865b000 0x2865c000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_detail-2.1.12.so 9438 0x2865c000 0x2865e000 r-x 2 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_unix-2.1.12.so 9438 0x2865e000 0x2865f000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_unix-2.1.12.so 9438 0x2865f000 0x28661000 r-x 2 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_radutmp-2.1.12.so 9438 0x28661000 0x28662000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_radutmp-2.1.12.so 9438 0x28662000 0x28663000 r-x 1 0 4 2 CN vn /usr/local/lib/freeradius-2.1.12/rlm_attr_filter-2.1.12.so 9438 0x28663000 0x28664000 rw- 1 0 1 0 C- vn /usr/local/lib/freeradius-2.1.12/rlm_attr_filter-2.1.12.so 9438 0x28664000 0x28665000 rw- 1 0 1 0 CN df 9438 0x28665000 0x28681000 r-x 22 0 4 2 CN vn /usr/local/lib/perl5/site_perl/5.14.1/mach/auto/DBD/Firebird/Firebird.so 9438 0x28681000 0x28682000 rw- 1 0 1 0 C- vn /usr/local/lib/perl5/site_perl/5.14.1/mach/auto/DBD/Firebird/Firebird.so 9438 0x28682000 0x28733000 r-x 142 0 1 0 CN vn /usr/local/lib/libfbclient.so.2.5.1 9438 0x28733000 0x2873b000 rw- 8 0 1 0 C- vn /usr/local/lib/libfbclient.so.2.5.1 9438 0x2873b000 0x28744000 rw- 6 0 1 0 C- df 9438 0x28744000 0x28781000 r-x 22 0 78 34 CN vn /lib/libncurses.so.8 9438 0x28781000 0x28784000 rw- 3 0 1 0 C- vn /lib/libncurses.so.8 9438 0x287f4000 0x287fd000 rw- 4 0 1 0 CN df 9438 0x28800000 0x28c00000 rw- 1014 0 1 0 C- df 9438 0x28c00000 0x29000000 rw- 953 0 1 0 C- df 9438 0x29000000 0x29400000 rw- 987 0 1 0 C- df 9438 0x29400000 0x29c00000 rw- 2025 0 1 0 C- df 9438 0x29c00000 0x2a800000 rw- 3043 0 1 0 C- df 9438 0x2a800000 0x2b400000 rw- 3037 0 1 0 C- df 9438 0x2b400000 0x2c000000 rw- 3037 0 1 0 C- df 9438 0x2c000000 0x2c800000 rw- 2028 0 1 0 C- df 9438 0x2c800000 0x2cc00000 rw- 1015 0 1 0 C- df 9438 0x2cc00000 0x2d800000 rw- 3042 0 1 0 C- df 9438 0x2d800000 0x2e400000 rw- 3051 0 1 0 C- df 9438 0x2e400000 0x2e800000 rw- 1016 0 1 0 C- df 9438 0x2e800000 0x2f000000 rw- 2031 0 1 0 C- df 9438 0x2f000000 0x2f400000 rw- 1017 0 1 0 C- df 9438 0x2f400000 0x2fc00000 rw- 2038 0 1 0 C- df 9438 0x2fc00000 0x30000000 rw- 1016 0 1 0 C- df 9438 0x30000000 0x30c00000 rw- 3054 0 1 0 C- df 9438 0x31000000 0x31400000 rw- 1003 0 1 0 C- df 9438 0x31400000 0x31800000 rw- 1023 0 1 0 C- df 9438 0x31800000 0x31c00000 rw- 1023 0 1 0 C- df 9438 0x31c00000 0x32000000 rw- 1016 0 1 0 C- df 9438 0x32000000 0x32400000 rw- 1024 0 1 0 C- df 9438 0x32400000 0x32800000 rw- 1024 0 1 0 C- df 9438 0x32800000 0x32c00000 rw- 1022 0 1 0 CN df 9438 0x32c00000 0x33000000 rw- 1008 0 1 0 C- df 9438 0x33000000 0x33800000 rw- 2029 0 1 0 C- df 9438 0x33800000 0x34400000 rw- 3026 0 1 0 C- df 9438 0x34400000 0x34800000 rw- 988 0 1 0 C- df 9438 0x34800000 0x34c00000 rw- 1019 0 1 0 CN df 9438 0x34c00000 0x35000000 rw- 1020 0 1 0 C- df 9438 0x35000000 0x35400000 rw- 992 0 1 0 C- df 9438 0x35400000 0x35800000 rw- 1003 0 1 0 C- df 9438 0x35800000 0x35c00000 rw- 1011 0 1 0 C- df 9438 0x35c00000 0x36000000 rw- 1020 0 1 0 CN df 9438 0x36000000 0x36400000 rw- 947 0 1 0 C- df 9438 0x36400000 0x36c00000 rw- 2011 0 1 0 C- df 9438 0x36c00000 0x37000000 rw- 1004 0 1 0 C- df 9438 0x37000000 0x37c00000 rw- 2016 0 1 0 CN df 9438 0x37c00000 0x38000000 rw- 994 0 1 0 C- df 9438 0x38000000 0x39000000 rw- 3735 0 1 0 C- df 9438 0x39000000 0x39400000 rw- 1007 0 1 0 C- df 9438 0x39400000 0x3b400000 rw- 7270 0 1 0 C- df 9438 0x3b400000 0x3c800000 rw- 4848 0 1 0 C- df 9438 0x3c800000 0x3cc00000 rw- 184 0 1 0 CN df 9438 0x3cc00000 0x3d000000 rw- 786 0 1 0 C- df 9438 0xbb59f000 0xbb5bf000 rwx 6 0 1 0 C- df 9438 0xbb6a0000 0xbb6c0000 rwx 6 0 1 0 CN df 9438 0xbb7a1000 0xbb7c1000 rwx 6 0 1 0 CN df 9438 0xbb8a2000 0xbb8c2000 rwx 6 0 1 0 CN df 9438 0xbb9a3000 0xbb9c3000 rwx 6 0 1 0 CN df 9438 0xbbaa4000 0xbbac4000 rwx 6 0 1 0 CN df 9438 0xbbba5000 0xbbbc5000 rwx 6 0 1 0 CN df 9438 0xbbca6000 0xbbcc6000 rwx 6 0 1 0 CN df 9438 0xbbda7000 0xbbdc7000 rwx 6 0 1 0 CN df 9438 0xbbea8000 0xbbec8000 rwx 6 0 1 0 C- df 9438 0xbbfa9000 0xbbfc9000 rwx 6 0 1 0 CN df 9438 0xbc0aa000 0xbc0ca000 rwx 6 0 1 0 CN df 9438 0xbc1ab000 0xbc1cb000 rwx 6 0 1 0 CN df 9438 0xbc2ac000 0xbc2cc000 rwx 6 0 1 0 CN df 9438 0xbc3ad000 0xbc3cd000 rwx 6 0 1 0 CN df 9438 0xbc4ae000 0xbc4ce000 rwx 6 0 1 0 CN df 9438 0xbc5af000 0xbc5cf000 rwx 6 0 1 0 CN df 9438 0xbc6b0000 0xbc6d0000 rwx 6 0 1 0 CN df 9438 0xbc7b1000 0xbc7d1000 rwx 6 0 1 0 CN df 9438 0xbc8b2000 0xbc8d2000 rwx 6 0 1 0 CN df 9438 0xbc9b3000 0xbc9d3000 rwx 6 0 1 0 CN df 9438 0xbcab4000 0xbcad4000 rwx 6 0 1 0 CN df 9438 0xbcbb5000 0xbcbd5000 rwx 6 0 1 0 CN df 9438 0xbccb6000 0xbccd6000 rwx 6 0 1 0 CN df 9438 0xbcdb7000 0xbcdd7000 rwx 6 0 1 0 CN df 9438 0xbceb8000 0xbced8000 rwx 6 0 1 0 CN df 9438 0xbcfb9000 0xbcfd9000 rwx 6 0 1 0 CN df 9438 0xbd0ba000 0xbd0da000 rwx 6 0 1 0 CN df 9438 0xbd1bb000 0xbd1db000 rwx 6 0 1 0 CN df 9438 0xbd2bc000 0xbd2dc000 rwx 6 0 1 0 CN df 9438 0xbd3bd000 0xbd3dd000 rwx 6 0 1 0 CN df 9438 0xbd4be000 0xbd4de000 rwx 6 0 1 0 CN df 9438 0xbd5bf000 0xbd5df000 rwx 6 0 1 0 CN df 9438 0xbd6c0000 0xbd6e0000 rwx 6 0 1 0 CN df 9438 0xbd7c1000 0xbd7e1000 rwx 6 0 1 0 CN df 9438 0xbd8c2000 0xbd8e2000 rwx 6 0 1 0 CN df 9438 0xbd9c3000 0xbd9e3000 rwx 6 0 1 0 CN df 9438 0xbdac4000 0xbdae4000 rwx 6 0 1 0 CN df 9438 0xbdbc5000 0xbdbe5000 rwx 6 0 1 0 CN df 9438 0xbdcc6000 0xbdce6000 rwx 6 0 1 0 CN df 9438 0xbddc7000 0xbdde7000 rwx 6 0 1 0 CN df 9438 0xbdec8000 0xbdee8000 rwx 6 0 1 0 CN df 9438 0xbdfc9000 0xbdfe9000 rwx 6 0 1 0 CN df 9438 0xbe0ca000 0xbe0ea000 rwx 6 0 1 0 CN df 9438 0xbe1cb000 0xbe1eb000 rwx 6 0 1 0 CN df 9438 0xbe2cc000 0xbe2ec000 rwx 6 0 1 0 CN df 9438 0xbe3cd000 0xbe3ed000 rwx 6 0 1 0 CN df 9438 0xbe4ce000 0xbe4ee000 rwx 6 0 1 0 CN df 9438 0xbe5cf000 0xbe5ef000 rwx 6 0 1 0 CN df 9438 0xbe6d0000 0xbe6f0000 rwx 1 0 1 0 C- df 9438 0xbe7d1000 0xbe7f1000 rwx 6 0 1 0 CN df 9438 0xbe8d2000 0xbe8f2000 rwx 6 0 1 0 CN df 9438 0xbe9d3000 0xbe9f3000 rwx 6 0 1 0 CN df 9438 0xbead4000 0xbeaf4000 rwx 6 0 1 0 CN df 9438 0xbebd5000 0xbebf5000 rwx 6 0 1 0 CN df 9438 0xbecd6000 0xbecf6000 rwx 6 0 1 0 CN df 9438 0xbedd7000 0xbedf7000 rwx 6 0 1 0 CN df 9438 0xbeed8000 0xbeef8000 rwx 6 0 1 0 CN df 9438 0xbefd9000 0xbeff9000 rwx 6 0 1 0 CN df 9438 0xbf0da000 0xbf0fa000 rwx 6 0 1 0 CN df 9438 0xbf1db000 0xbf1fb000 rwx 6 0 1 0 CN df 9438 0xbf2dc000 0xbf2fc000 rwx 6 0 1 0 CN df 9438 0xbf3dd000 0xbf3fd000 rwx 6 0 1 0 CN df 9438 0xbf4de000 0xbf4fe000 rwx 6 0 1 0 CN df 9438 0xbf5df000 0xbf5ff000 rwx 6 0 1 0 CN df 9438 0xbf5ff000 0xbf600000 --- 0 0 0 0 -- -- 9438 0xbf7e0000 0xbf800000 rwx 18 0 1 0 C- df -- ? ?????????, ??????? mailto:kes-kes@yandex.ru -------------- next part -------------- PID TID COMM TDNAME KSTACK 0 100000 kernel swapper mi_switch+0xd6 sleepq_switch+0xb1 sleepq_timedwait+0x3e _sleep+0x321 scheduler+0x397 mi_startup+0x6e begin+0x2c 0 100020 kernel firmware taskq mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c taskqueue_thread_loop+0xd4 fork_exit+0x87 fork_trampoline+0x8 0 100024 kernel thread taskq mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c taskqueue_thread_loop+0xd4 fork_exit+0x87 fork_trampoline+0x8 0 100027 kernel kqueue taskq mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c taskqueue_thread_loop+0xd4 fork_exit+0x87 fork_trampoline+0x8 0 100028 kernel ffs_trim taskq mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c taskqueue_thread_loop+0xd4 fork_exit+0x87 fork_trampoline+0x8 0 100029 kernel acpi_task_0 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 msleep_spin+0x1b4 taskqueue_thread_loop+0x6d fork_exit+0x87 fork_trampoline+0x8 0 100030 kernel acpi_task_1 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 msleep_spin+0x1b4 taskqueue_thread_loop+0x6d fork_exit+0x87 fork_trampoline+0x8 0 100031 kernel acpi_task_2 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 msleep_spin+0x1b4 taskqueue_thread_loop+0x6d fork_exit+0x87 fork_trampoline+0x8 0 100049 kernel dummynet mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c taskqueue_thread_loop+0xd4 fork_exit+0x87 fork_trampoline+0x8 0 100062 kernel mca taskq mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c taskqueue_thread_loop+0xd4 fork_exit+0x87 fork_trampoline+0x8 1 100002 init - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_wait+0x6ef wait4+0x3b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 2 100048 sctp_iterator - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c sctp_iterator_thread+0x59 fork_exit+0x87 fork_trampoline+0x8 3 100050 xpt_thrd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c xpt_scanner_thread+0x12c fork_exit+0x87 fork_trampoline+0x8 4 100051 pagedaemon - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_timedwait+0x3e _sleep+0x321 vm_pageout+0x976 fork_exit+0x87 fork_trampoline+0x8 5 100052 vmdaemon - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c vm_daemon+0x5d fork_exit+0x87 fork_trampoline+0x8 6 100053 pagezero - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_timedwait+0x3e _sleep+0x321 vm_pagezero+0x7c fork_exit+0x87 fork_trampoline+0x8 7 100054 bufdaemon - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_timedwait+0x3e _sleep+0x321 buf_daemon+0x1ef fork_exit+0x87 fork_trampoline+0x8 8 100055 vnlru - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_timedwait+0x3e _sleep+0x321 vnlru_proc+0x671 fork_exit+0x87 fork_trampoline+0x8 9 100056 syncer - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_timedwait+0x3e _cv_timedwait+0x139 sched_sync+0x4f2 fork_exit+0x87 fork_trampoline+0x8 10 100001 audit - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _cv_wait+0x11b audit_worker+0x353 fork_exit+0x87 fork_trampoline+0x8 11 100003 idle idle: cpu3 11 100004 idle idle: cpu2 mi_switch+0xd6 critical_exit+0xa1 sched_idletd+0x23c fork_exit+0x87 fork_trampoline+0x8 11 100005 idle idle: cpu1 11 100006 idle idle: cpu0 12 100007 intr swi3: vm 12 100008 intr swi4: clock mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100009 intr swi4: clock mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100010 intr swi4: clock mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100011 intr swi4: clock mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100012 intr swi1: netisr 0 mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100022 intr swi2: cambio mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100023 intr swi5: + 12 100025 intr swi6: Giant task mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100026 intr swi6: task queue mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100032 intr irq16: ehci0 mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100037 intr irq256: re0 mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100038 intr irq23: ehci1 mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100043 intr irq14: ata0 mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100044 intr irq15: ata1 12 100045 intr irq19: atapci1 12 100047 intr irq1: atkbd0 12 100059 intr swi1: netisr 3 mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100060 intr swi1: netisr 2 mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 12 100061 intr swi1: netisr 1 mi_switch+0xd6 ithread_loop+0x1eb fork_exit+0x87 fork_trampoline+0x8 13 100013 ng_queue ng_queue0 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c ngthread+0x5d fork_exit+0x87 fork_trampoline+0x8 13 100014 ng_queue ng_queue1 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c ngthread+0x5d fork_exit+0x87 fork_trampoline+0x8 13 100015 ng_queue ng_queue2 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c ngthread+0x5d fork_exit+0x87 fork_trampoline+0x8 13 100016 ng_queue ng_queue3 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c ngthread+0x5d fork_exit+0x87 fork_trampoline+0x8 14 100017 geom g_event mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c g_run_events+0x47a fork_exit+0x87 fork_trampoline+0x8 14 100018 geom g_up mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c g_io_schedule_up+0xbc g_up_procbody+0x6d fork_exit+0x87 fork_trampoline+0x8 14 100019 geom g_down mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sleep+0x33c g_io_schedule_down+0x283 g_down_procbody+0x6d fork_exit+0x87 fork_trampoline+0x8 15 100021 yarrow - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_timedwait+0x3e _sleep+0x321 pause+0x30 random_kthread+0x1bc fork_exit+0x87 fork_trampoline+0x8 16 100033 usb usbus0 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _cv_wait+0x11b usb_process+0x15f fork_exit+0x87 fork_trampoline+0x8 16 100034 usb usbus0 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _cv_wait+0x11b usb_process+0x15f fork_exit+0x87 fork_trampoline+0x8 16 100035 usb usbus0 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _cv_wait+0x11b usb_process+0x15f fork_exit+0x87 fork_trampoline+0x8 16 100036 usb usbus0 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _cv_wait+0x11b usb_process+0x15f fork_exit+0x87 fork_trampoline+0x8 16 100039 usb usbus1 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _cv_wait+0x11b usb_process+0x15f fork_exit+0x87 fork_trampoline+0x8 16 100040 usb usbus1 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _cv_wait+0x11b usb_process+0x15f fork_exit+0x87 fork_trampoline+0x8 16 100041 usb usbus1 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _cv_wait+0x11b usb_process+0x15f fork_exit+0x87 fork_trampoline+0x8 16 100042 usb usbus1 mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _cv_wait+0x11b usb_process+0x15f fork_exit+0x87 fork_trampoline+0x8 17 100046 acpi_thermal - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_timedwait+0x3e _sleep+0x321 acpi_tz_thread+0x229 fork_exit+0x87 fork_trampoline+0x8 18 100057 softdepflush - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_timedwait+0x3e _sleep+0x321 softdep_flush+0x3de fork_exit+0x87 fork_trampoline+0x8 19 100058 flowcleaner - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_timedwait+0x3e _cv_timedwait+0x139 flowtable_cleaner+0x145 fork_exit+0x87 fork_trampoline+0x8 3605 100073 zebra - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 3611 100136 bgpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 4252 100121 devd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 5316 100156 syslogd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 5553 100171 mpd5 - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 poll+0x47f syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 5553 100172 mpd5 - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 poll+0x47f syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 6893 100155 snmpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 9438 100080 radiusd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 _sx_xlock_hard+0x2bb _sx_xlock+0x61 _vm_map_lock_upgrade+0x89 vm_map_lookup+0x261 vm_fault_hold+0xac vm_fault+0x2f trap_pfault+0xf6 trap+0x4a7 calltrap+0x6 9438 100195 radiusd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_wait+0x45 __lockmgr_args+0x6ef ffs_lock+0x92 VOP_LOCK1_APV+0x43 _vn_lock+0x3d vm_object_deallocate+0x4e7 unlock_and_deallocate+0x102 vm_fault_hold+0x18f4 vm_fault+0x2f trap_pfault+0xf6 trap+0x4a7 calltrap+0x6 9438 101144 radiusd - mi_switch+0xd6 thread_suspend_switch+0xcd thread_single+0x174 exit1+0x71 sigexit+0x5b postsig+0x3de ast+0x269 doreti_ast+0x17 10559 104442 httpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 lf_advlockasync+0x1125 lf_advlock+0x55 vop_stdadvlock+0xb5 flock+0x139 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 11331 100143 dovecot - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 kern_kevent+0x325 kevent+0x8b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 11334 100135 anvil initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 kern_kevent+0x325 kevent+0x8b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 11335 100115 log initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 kern_kevent+0x325 kevent+0x8b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 12764 105763 sshd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 12793 103021 sshd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 12794 107988 tcsh - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_sigsuspend+0xc2 sigsuspend+0x4f syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 12803 105030 su - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_wait+0x6ef wait4+0x3b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 12818 104221 csh - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_sigsuspend+0xc2 sigsuspend+0x4f syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 12908 106140 mc - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 12909 105975 csh - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_sigsuspend+0xc2 sigsuspend+0x4f syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 13511 100134 master - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 kern_kevent+0x325 kevent+0x8b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 14881 100108 git-daemon - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 poll+0x47f syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 25674 107999 sshd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 25682 106431 sshd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 25683 105726 tcsh - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_sigsuspend+0xc2 sigsuspend+0x4f syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 25687 105729 su - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_wait+0x6ef wait4+0x3b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 25692 107498 csh - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_sigsuspend+0xc2 sigsuspend+0x4f syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 26278 100206 httpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 30841 100244 sshd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 31468 100378 cron - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 kern_nanosleep+0xeb nanosleep+0x6c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 31890 100201 inetd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 33031 100200 getty - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 tty_wait+0x23 ttydisc_read+0x2b4 ttydev_read+0x10f devfs_read_f+0x7e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 33033 100110 getty - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 tty_wait+0x23 ttydisc_read+0x2b4 ttydev_read+0x10f devfs_read_f+0x7e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 33034 100404 getty - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 tty_wait+0x23 ttydisc_read+0x2b4 ttydev_read+0x10f devfs_read_f+0x7e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 33035 100139 getty - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 tty_wait+0x23 ttydisc_read+0x2b4 ttydev_read+0x10f devfs_read_f+0x7e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 33036 100077 getty - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 tty_wait+0x23 ttydisc_read+0x2b4 ttydev_read+0x10f devfs_read_f+0x7e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 33037 100205 getty - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 tty_wait+0x23 ttydisc_read+0x2b4 ttydev_read+0x10f devfs_read_f+0x7e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 33038 100414 getty - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 tty_wait+0x23 ttydisc_read+0x2b4 ttydev_read+0x10f devfs_read_f+0x7e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 33039 100118 getty - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 tty_wait+0x23 ttydisc_read+0x2b4 ttydev_read+0x10f devfs_read_f+0x7e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 37159 106019 screen - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 37160 105976 csh - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_sigsuspend+0xc2 sigsuspend+0x4f syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 40165 106181 fbguard - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_wait+0x6ef wait4+0x3b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 40166 105431 fb_smp_server initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 poll+0x47f syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 40166 106936 fb_smp_server - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 __umtx_op_sem_wait+0x7e1 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 40166 107518 fb_smp_server - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 __umtx_op_sem_wait+0x56a syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 40166 108535 fb_smp_server - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 semop+0x5ba syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 40166 108536 fb_smp_server - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 semop+0x5ba syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 40166 108708 fb_smp_server - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 __umtx_op_sem_wait+0x56a syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 40383 104980 radiusd initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 40383 108534 radiusd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 __umtx_op_sem_wait+0x7e1 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 44713 104824 httpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 lf_advlockasync+0x1125 lf_advlock+0x55 vop_stdadvlock+0xb5 flock+0x139 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 45996 105992 httpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 kern_kevent+0x325 kevent+0x8b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 46851 107994 pickup - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 kern_kevent+0x325 kevent+0x8b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 48614 106179 httpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 lf_advlockasync+0x1125 lf_advlock+0x55 vop_stdadvlock+0xb5 flock+0x139 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 50138 104901 httpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 lf_advlockasync+0x1125 lf_advlock+0x55 vop_stdadvlock+0xb5 flock+0x139 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 52657 104408 httpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 lf_advlockasync+0x1125 lf_advlock+0x55 vop_stdadvlock+0xb5 flock+0x139 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 55138 107971 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 55397 105603 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 55423 106086 mc - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 55424 106592 csh - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 tty_wait+0x23 ttydisc_read+0x2b4 ttydev_read+0x10f devfs_read_f+0x7e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 55676 106170 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 55926 106054 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 56178 104060 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 56444 105996 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 56474 106607 httpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 lf_advlockasync+0x1125 lf_advlock+0x55 vop_stdadvlock+0xb5 flock+0x139 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 56750 106583 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 57051 104333 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 57300 105728 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 57534 106007 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 57774 106137 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 57798 105306 httpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 lf_advlockasync+0x1125 lf_advlock+0x55 vop_stdadvlock+0xb5 flock+0x139 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 58024 105977 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 58290 105991 config initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 kern_kevent+0x325 kevent+0x8b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 58342 105322 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 58590 102685 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 58819 105505 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59017 104687 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59018 106150 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59019 105210 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59023 106171 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59024 107315 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59025 100162 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59026 105756 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59027 104177 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59028 106347 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59029 103140 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59030 106082 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59031 103953 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59038 106182 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59039 106178 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59040 104782 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59041 105973 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59042 106075 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59043 105732 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59044 104141 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59045 106581 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59046 105401 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59048 105969 cron - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_wait+0x6ef wait4+0x3b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59049 106354 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 kern_nanosleep+0xeb nanosleep+0x6c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59055 107980 php initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59060 106047 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59061 100076 rrdtool initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59062 107968 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59063 106056 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59087 107977 httpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 lf_advlockasync+0x1125 lf_advlock+0x55 vop_stdadvlock+0xb5 flock+0x139 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59097 105324 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59098 107979 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59099 105500 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59100 107955 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59101 105990 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59102 104678 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59107 104870 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59108 105450 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59109 105556 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59110 106153 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59111 105495 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59112 103155 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59117 104829 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59118 102912 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59119 105433 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59190 105765 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59191 106993 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59192 105592 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59252 105762 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59253 106013 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59254 104068 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59255 107958 perl5.14.1 initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 pipe_read+0x4fd dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59256 105359 sudo - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59257 104658 ping - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 59258 105970 procstat - 75797 105292 named - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_sigtimedwait+0x55c sigwait+0x83 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 75797 105635 named - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 do_wait+0x90c __umtx_op_wait_uint_private+0x5c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 75797 105636 named - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 do_wait+0x90c __umtx_op_wait_uint_private+0x5c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 75797 105637 named - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 do_wait+0x90c __umtx_op_wait_uint_private+0x5c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 75797 105638 named - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 do_wait+0x90c __umtx_op_wait_uint_private+0x5c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 75797 105639 named - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 do_wait+0x593 __umtx_op_wait_uint_private+0x5c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 75797 105640 named - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_kevent+0x325 kevent+0x8b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80396 106600 httpd - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 lf_advlockasync+0x1125 lf_advlock+0x55 vop_stdadvlock+0xb5 flock+0x139 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80793 105547 sh - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_wait+0x6ef wait4+0x3b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 100380 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 102525 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 do_wait+0x90c __umtx_op_wait_uint_private+0x5c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 102533 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 do_wait+0x90c __umtx_op_wait_uint_private+0x5c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 103036 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 do_wait+0x90c __umtx_op_wait_uint_private+0x5c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 103400 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 do_wait+0x90c __umtx_op_wait_uint_private+0x5c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 103547 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 do_wait+0x90c __umtx_op_wait_uint_private+0x5c syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 104008 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 104075 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 104125 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _cv_timedwait_sig+0x139 seltdwait+0x84 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 104608 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 kern_sigtimedwait+0x55c sigwait+0x83 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 105002 mysqld initial thread mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _cv_wait_sig+0x127 seltdwait+0x132 kern_select+0x5d7 select+0x63 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 107618 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 107786 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108163 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108165 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108211 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108255 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108608 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108691 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108704 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108742 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108744 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108747 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108749 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108752 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108754 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108758 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108764 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108766 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108768 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108770 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108772 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108773 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108779 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108781 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 80843 108783 mysqld - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_wait_sig+0x18 _sleep+0x286 sbwait+0x52 soreceive_generic+0xf01 soo_read+0x4e dofileread+0x90 kern_readv+0x6a read+0x50 syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 92215 104609 qmgr - mi_switch+0xd6 sleepq_switch+0xb1 sleepq_catch_signals+0x2eb sleepq_timedwait_sig+0x1c _sleep+0x195 kern_kevent+0x325 kevent+0x8b syscallenter+0x2b0 syscall+0x34 Xint0x80_syscall+0x21 From kes-kes at yandex.ru Thu Feb 2 00:24:13 2012 From: kes-kes at yandex.ru (=?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?=) Date: Thu Feb 2 00:24:19 2012 Subject: mail-to: linimon@lonesome.com Message-ID: <82519054.20120202022409@yandex.ru> sorry, to broadcast this email ------------------------- I'm sorry to have to inform you that your message could not be delivered to one or more recipients. It's attached below. Please, do not reply to this message. : host mail.soaustin.net[66.135.54.68] said: 553 5.7.1 : Sender address rejected: Refused yandex.ru: Blocked due to mail abuse: go away spamming scum (in reply to RCPT TO command) ------------------------- Original message: ML> Please avoid the use of HTML email when sending to GNATS. I'm actually ML> quite surprised our spam ruleset let this one through. Plain text is ML> much preferred. ML> Thanks. ok thanks for attention. and sorry, I have missed maybe while reply -- ? ?????????, ??????? mailto:kes-kes@yandex.ru From davidxu at FreeBSD.org Thu Feb 2 01:23:37 2012 From: davidxu at FreeBSD.org (davidxu@FreeBSD.org) Date: Thu Feb 2 01:23:43 2012 Subject: kern/156567: [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue Message-ID: <201202020123.q121NZkY029428@freefall.freebsd.org> Synopsis: [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue State-Changed-From-To: open->patched State-Changed-By: davidxu State-Changed-When: Thu Feb 2 01:22:27 UTC 2012 State-Changed-Why: Committed with slight change. http://www.freebsd.org/cgi/query-pr.cgi?pr=156567 From wkoszek at FreeBSD.org Thu Feb 2 06:52:48 2012 From: wkoszek at FreeBSD.org (wkoszek@FreeBSD.org) Date: Thu Feb 2 06:52:55 2012 Subject: kern/161043: [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [regression] Message-ID: <201202020652.q126qmGk034840@freefall.freebsd.org> Synopsis: [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [regression] Responsible-Changed-From-To: freebsd-bugs->wkoszek Responsible-Changed-By: wkoszek Responsible-Changed-When: czw 2 lut 2012 06:52:16 UTC Responsible-Changed-Why: Take this one. Seems like I have the same problem with Dell T7400 workstation at work. http://www.freebsd.org/cgi/query-pr.cgi?pr=161043 From listlog2011 at gmail.com Thu Feb 2 07:09:25 2012 From: listlog2011 at gmail.com (David Xu) Date: Thu Feb 2 07:09:32 2012 Subject: kern/161043: [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [regression] In-Reply-To: <201202020652.q126qmGk034840@freefall.freebsd.org> References: <201202020652.q126qmGk034840@freefall.freebsd.org> Message-ID: <4F2A36A2.5000805@gmail.com> On 2012/2/2 14:52, wkoszek@FreeBSD.org wrote: > Synopsis: [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [regression] > > Responsible-Changed-From-To: freebsd-bugs->wkoszek > Responsible-Changed-By: wkoszek > Responsible-Changed-When: czw 2 lut 2012 06:52:16 UTC > Responsible-Changed-Why: > Take this one. Seems like I have the same problem with Dell T7400 > workstation at work. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=161043 > It is a long term bug, my machine has a USB keyboard, and a PS/2 mouse, the PS/2 mouse never works, although Windows works fine. Regards, David Xu From aland at deployingradius.com Thu Feb 2 07:20:11 2012 From: aland at deployingradius.com (Alan DeKok) Date: Thu Feb 2 07:20:18 2012 Subject: bin/164526: kill(1) can not kill process despite on -KILL Message-ID: <201202020720.q127KAFw055396@freefall.freebsd.org> The following reply was made to PR bin/164526; it has been noted by GNATS. From: Alan DeKok To: =?UTF-8?B?0JrQvtC90YzQutC+0LIg0JXQstCz0LXQvdC40Lk=?= , FreeRadius users mailing list Cc: Jilles Tjoelker , firebird-devel@lists.sourceforge.net, bug-followup@FreeBSD.org Subject: Re: bin/164526: kill(1) can not kill process despite on -KILL Date: Thu, 02 Feb 2012 08:13:54 +0100 Коньков Евгений wrote: > repeated again: > bug is repeateable: > 1. radiusd + mod_perl + example.pl(it is connects to FireBird) + Why? FreeRADIUS has native support for all major SQL servers. There's no need to use a Perl plugin. > FireBIrd > 2. restart firebird > 3. try to restart radiusd > 4. process in fall into STOP state You've built a system which has a lot of components. The problem could be anywhere. I'll note that I've *never* seen this problem when using the native SQL plugins which are shipped with FreeRADIUS. Alan DeKok. From eugene at zhegan.in Thu Feb 2 08:20:12 2012 From: eugene at zhegan.in (Eugene M. Zheganin) Date: Thu Feb 2 08:20:24 2012 Subject: kern/164705: inability to terminate process in D state Message-ID: <201202020817.q128Hks0041478@red.freebsd.org> >Number: 164705 >Category: kern >Synopsis: inability to terminate process in D state >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 02 08:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugene M. Zheganin >Release: 8.2-STABLE >Organization: RealService LLC >Environment: FreeBSD bsdrookie.norma.com. 8.2-STABLE FreeBSD 8.2-STABLE #0: Mon Jul 25 14:13:03 YEKST 2011 emz@:/usr/obj/usr/src/sys/GENERIC amd64 >Description: There's only two holy grails in FreeBSD: one, nowadays patched but sometimes still haunting FreeBSD, is the panic (livelock, hangup, name it yourself) when the mounted media is physically removed (a diskette, a flash-disk etc). And the second - this is inability to terminate a process when it hangs in D state. Of course, kill -9 didn't work (as always. I'm guessing thi isn't a 'uncatchable uniterruptable signal' as it's man page says, It looks more like 'no big deal, safe to ignore signal, just for a process knows that something is up') Last time I plugged the USB-mouse out of its port to hadle the mess with the cord, and when I plugged it back - hald hanged in the D state, so did all of the usbconfigs and so on. I had to reboot the FreeBSD just to get my mouse back. Like we're back in 1996 with an non-OSR Windows 95. It's completely ridiculous. >How-To-Repeat: I'm pretty sure that if you're actually using FreeBSD, then at least once in a lifetime you got the need to kill something, you realise you cannot, and then when trying to understand what the hell is going on you see the magical D letter in ps's output, which means you're doomed. >Fix: There's always an answer. Reboot loves you. >Release-Note: >Audit-Trail: >Unformatted: From kes-kes at yandex.ru Thu Feb 2 09:10:10 2012 From: kes-kes at yandex.ru (=?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?=) Date: Thu Feb 2 09:10:17 2012 Subject: kern/164705: inability to terminate process in D state Message-ID: <201202020910.q129AA4h082593@freefall.freebsd.org> The following reply was made to PR kern/164705; it has been noted by GNATS. From: =?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?= To: "Eugene M. Zheganin" Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/164705: inability to terminate process in D state Date: Thu, 2 Feb 2012 11:02:38 +0200 , Eugene. 2 2012 ., 10:17:46: >>Number: 164705 >>Category: kern >>Synopsis: inability to terminate process in D state >>Confidential: no >>Severity: critical >>Priority: low >>Responsible: freebsd-bugs >>State: open >>Quarter: >>Keywords: >>Date-Required: >>Class: sw-bug >>Submitter-Id: current-users >>Arrival-Date: Thu Feb 02 08:20:11 UTC 2012 >>Closed-Date: >>Last-Modified: >>Originator: Eugene M. Zheganin >>Release: 8.2-STABLE >>Organization: EMZ> RealService LLC >>Environment: EMZ> FreeBSD bsdrookie.norma.com. 8.2-STABLE FreeBSD 8.2-STABLE #0: EMZ> Mon Jul 25 14:13:03 YEKST 2011 EMZ> emz@:/usr/obj/usr/src/sys/GENERIC amd64 >>Description: EMZ> There's only two holy grails in FreeBSD: one, nowadays patched EMZ> but sometimes still haunting FreeBSD, is the panic (livelock, EMZ> hangup, name it yourself) when the mounted media is physically EMZ> removed (a diskette, a flash-disk etc). EMZ> And the second - this is inability to terminate a process when EMZ> it hangs in D state. Of course, kill -9 didn't work (as always. EMZ> I'm guessing thi isn't a 'uncatchable uniterruptable signal' as EMZ> it's man page says, It looks more like 'no big deal, safe to EMZ> ignore signal, just for a process knows that something is up') EMZ> Last time I plugged the USB-mouse out of its port to hadle the EMZ> mess with the cord, and when I plugged it back - hald hanged in EMZ> the D state, so did all of the usbconfigs and so on. EMZ> I had to reboot the FreeBSD just to get my mouse back. Like EMZ> we're back in 1996 with an non-OSR Windows 95. EMZ> It's completely ridiculous. >>How-To-Repeat: EMZ> I'm pretty sure that if you're actually using FreeBSD, then at EMZ> least once in a lifetime you got the need to kill something, you EMZ> realise you cannot, and then when trying to understand what the EMZ> hell is going on you see the magical D letter in ps's output, which means you're doomed. >>Fix: EMZ> There's always an answer. Reboot loves you. not always, I have process going to 'T' state (STOP). and it is not killed even when I run 'reboot' only hard reboot helps ( as developers sayed: >A signal cannot forcibly kill a process that is stuck in the kernel. >Allowing this would put the integrity of the kernel data structures at >risk and likely cause hangs, data corruption or panics later on. see: bin/164526: kill(1) can not kill process despite on -KILL -- , mailto:kes-kes@yandex.ru From kes-kes at yandex.ru Thu Feb 2 09:14:20 2012 From: kes-kes at yandex.ru (=?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?=) Date: Thu Feb 2 09:14:27 2012 Subject: bin/164526: kill(1) can not kill process despite on -KILL In-Reply-To: <201202020720.q127KAFw055396@freefall.freebsd.org> References: <201202020720.q127KAFw055396@freefall.freebsd.org> Message-ID: <1043575287.20120202111356@yandex.ru> ????????????, Alan. ?? ?????? 2 ??????? 2012 ?., 9:20:10: AD> The following reply was made to PR bin/164526; it has been noted by GNATS. AD> From: Alan DeKok AD> To: =?UTF-8?B?0JrQvtC90YzQutC+0LIg0JXQstCz0LXQvdC40Lk=?= AD> , AD> FreeRadius users mailing list AD> Cc: Jilles Tjoelker , AD> firebird-devel@lists.sourceforge.net, bug-followup@FreeBSD.org AD> Subject: Re: bin/164526: kill(1) can not kill process despite on -KILL AD> Date: Thu, 02 Feb 2012 08:13:54 +0100 AD> ?????????????? ?????????????? wrote: >> repeated again: >> bug is repeateable: >> 1. radiusd + mod_perl + example.pl(it is connects to FireBird) + AD> AD> Why? FreeRADIUS has native support for all major SQL servers. AD> There's no need to use a Perl plugin. AD> >> FireBIrd >> 2. restart firebird >> 3. try to restart radiusd >> 4. process in fall into STOP state AD> AD> You've built a system which has a lot of components. The problem AD> could be anywhere. AD> AD> I'll note that I've *never* seen this problem when using the native AD> SQL plugins which are shipped with FreeRADIUS. AD> AD> Alan DeKok. sorry: mod_perl => rlm_perl which configured as: cat modules/perl perl { module = ${confdir}/example.pl } cat sites/default ...... authorize { ... mschap perl } ... accounting { detail perl } and in example.pl do: cat example.pl # Function to handle accounting sub accounting { my $result; doLog( L_INFO, "$dbh_fb: start accounting" ); $result= RLM_MODULE_OK; # $RAD_REPLY{'mpd-Update-Interim-Interval'} = '60'; # $RAD_REPLY{'mpd-Drop-User'} = 'Yes';. &db_logAttributes("accounting"); &updateOnline(); if( changePacket( $RAD_REQUEST{'User-Name'} ) ) { $RAD_REPLY{'mpd-drop-user'}= 1; } doLog( L_INFO, "$dbh_fb: finish accounting" ); if ($result) {return $result; }... return RLM_MODULE_REJECT; } ...... #------------------------ UPDATE ONLINE sub updateOnline{ #!my ($sql, $query, $packet); $_= $RAD_REQUEST{'Acct-Status-Type'}; SWITCH: { /Interim-Update|Stop/ && do { my $termCause= $RAD_REQUEST{'Acct-Status-Type'} eq 'Stop' ? $RAD_REQUEST{'Acct-Terminate-Cause'} || 'User-Request' : 'OnLine'; my $trafIn= $RAD_REQUEST{'Acct-Input-Octets'} + 2**32*$RAD_REQUEST{'Acct-Input-Gigawords'}; my $trafOut= $RAD_REQUEST{'Acct-Output-Octets'} + 2**32*$RAD_REQUEST{'Acct-Output-Gigawords'}; doLog( L_INFO, "$dbh_fb: update online status for '$RAD_REQUEST{'User-Name'}'" ); $dbh_fb->do( $QR_UPDATE_ONLINE_STATUS, undef,. $RAD_REQUEST{'User-Name'} ,$RAD_REQUEST{'Acct-Session-Time'} ,$RAD_REQUEST{'NAS-Port'} ,$RAD_REQUEST{'Calling-Station-Id'} ,$RAD_REQUEST{'NAS-IP-Address'} ,$trafIn ,$trafOut ,$termCause ,$RAD_REQUEST{'Framed-IP-Address'} ,$RAD_REQUEST{'Acct-Unique-Session-Id'} ) or doLog( L_INFO, "DO UPDATE ONLINE FB $DBI::errstr" ); ...... } I just connect to DB and update session info. But maybe this may lock system? sub doLog { my( $level, $message )= @_; my $datetime= localtime(); radiusd::radlog( $level, $message ); `echo "$datetime: $message" >> "/var/log/radius/radius.kes.log"`; } -- ? ?????????, ??????? mailto:kes-kes@yandex.ru From avg at FreeBSD.org Thu Feb 2 09:23:14 2012 From: avg at FreeBSD.org (avg@FreeBSD.org) Date: Thu Feb 2 09:23:20 2012 Subject: kern/164705: inability to terminate process in D state Message-ID: <201202020923.q129NDxR000887@freefall.freebsd.org> Synopsis: inability to terminate process in D state State-Changed-From-To: open->closed State-Changed-By: avg State-Changed-When: Thu Feb 2 09:22:32 UTC 2012 State-Changed-Why: The general problem can not be meaningfully resolved. http://www.freebsd.org/cgi/query-pr.cgi?pr=164705 From kes-kes at yandex.ru Thu Feb 2 09:37:34 2012 From: kes-kes at yandex.ru (=?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?=) Date: Thu Feb 2 09:37:41 2012 Subject: kern/164705: inability to terminate process in D state In-Reply-To: <201202020923.q129NDxR000887@freefall.freebsd.org> References: <201202020923.q129NDxR000887@freefall.freebsd.org> Message-ID: <1259591729.20120202113710@yandex.ru> aFo> Synopsis: inability to terminate process in D state aFo> State-Changed-From-To: open->closed aFo> State-Changed-By: avg aFo> State-Changed-When: Thu Feb 2 09:22:32 UTC 2012 aFo> State-Changed-Why: aFo> The general problem can not be meaningfully resolved. why close? keep the problem open until resolve. -- ? ?????????, ??????? mailto:kes-kes@yandex.ru From avg at icyb.net.ua Thu Feb 2 09:40:12 2012 From: avg at icyb.net.ua (Andriy Gapon) Date: Thu Feb 2 09:40:19 2012 Subject: kern/164705: inability to terminate process in D state Message-ID: <201202020940.q129eCYg012077@freefall.freebsd.org> The following reply was made to PR kern/164705; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, eugene@zhegan.in Cc: Subject: Re: kern/164705: inability to terminate process in D state Date: Thu, 02 Feb 2012 11:16:56 +0200 Because you used words "completely ridiculous" in your bug report, I have to ask you what solution a genius like you can propose for a process which is stuck inside a system call (that is, in kernel). Now to techical side. FreeBSD has no problem killing processes which execute in userland. When a process is executing in kernel (in a system call), it is impossible to kill the process in a completely safe/clean fashion without affecting/corrupting internal kernel state. So bad news is that there will not be a universal kill command that can kill anything. Good news is that processes should never get stuck forever inside the kernel. Every time this happens it means that there is a (potentially new) bug in kernel, which should be properly reported and then hopefully fixed. So you will have to report concrete bugs with concrete diagnostics. See PR 164526 for a reference. P.S. In my explanation I've omitted techicalities of kill sending a signal and how the signal is delivered to its target process. -- Andriy Gapon From avg at FreeBSD.org Thu Feb 2 10:14:40 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Thu Feb 2 10:14:46 2012 Subject: kern/164705: inability to terminate process in D state In-Reply-To: <1259591729.20120202113710@yandex.ru> References: <201202020923.q129NDxR000887@freefall.freebsd.org> <1259591729.20120202113710@yandex.ru> Message-ID: <4F2A5EA7.9020106@FreeBSD.org> on 02/02/2012 11:37 ??????? ??????? said the following: > aFo> Synopsis: inability to terminate process in D state > > aFo> State-Changed-From-To: open->closed > aFo> State-Changed-By: avg > aFo> State-Changed-When: Thu Feb 2 09:22:32 UTC 2012 > aFo> State-Changed-Why: > aFo> The general problem can not be meaningfully resolved. > > why close? keep the problem open until resolve. > Resolve exactly what? -- Andriy Gapon From emz at norma.perm.ru Thu Feb 2 10:32:17 2012 From: emz at norma.perm.ru (Eugene M. Zheganin) Date: Thu Feb 2 10:32:23 2012 Subject: kern/164705: inability to terminate process in D state In-Reply-To: <4F2A5EA7.9020106@FreeBSD.org> References: <201202020923.q129NDxR000887@freefall.freebsd.org> <1259591729.20120202113710@yandex.ru> <4F2A5EA7.9020106@FreeBSD.org> Message-ID: <4F2A6123.8030909@norma.perm.ru> On 02.02.2012 16:00, Andriy Gapon wrote: > on 02/02/2012 11:37 ??????? ??????? said the following: >> why close? keep the problem open until resolve. > Resolve exactly what? Yeah, someone's enormous ego is not exactly a FreeBSD problem. I can see it's grown up to an unresolvable size. From avg at FreeBSD.org Thu Feb 2 13:04:18 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Thu Feb 2 13:04:24 2012 Subject: kern/164705: inability to terminate process in D state In-Reply-To: <4F2A6123.8030909@norma.perm.ru> References: <201202020923.q129NDxR000887@freefall.freebsd.org> <1259591729.20120202113710@yandex.ru> <4F2A5EA7.9020106@FreeBSD.org> <4F2A6123.8030909@norma.perm.ru> Message-ID: <4F2A89C4.4090907@FreeBSD.org> on 02/02/2012 12:10 Eugene M. Zheganin said the following: > On 02.02.2012 16:00, Andriy Gapon wrote: >> on 02/02/2012 11:37 ??????? ??????? said the following: >>> why close? keep the problem open until resolve. >> Resolve exactly what? > Yeah, someone's enormous ego is not exactly a FreeBSD problem. > I can see it's grown up to an unresolvable size. Anything on the technical side you might want to add? -- Andriy Gapon From yanegomi at gmail.com Thu Feb 2 14:50:05 2012 From: yanegomi at gmail.com (Garrett Cooper) Date: Thu Feb 2 14:50:11 2012 Subject: conf/164709: [patch] [pc-sysinstall] add raidz3 support; permit 'raidz' in input Message-ID: <201202021445.q12EjmsK087843@red.freebsd.org> >Number: 164709 >Category: conf >Synopsis: [patch] [pc-sysinstall] add raidz3 support; permit 'raidz' in input >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 02 14:50:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Garrett Cooper >Release: 9.0-STABLE >Organization: n/a >Environment: FreeBSD bayonetta.local 9.0-STABLE FreeBSD 9.0-STABLE #4 r230371M: Thu Jan 19 23:55:38 PST 2012 gcooper@bayonetta.local:/usr/obj/store/freebsd/stable/9/sys/BAYONETTA amd64 >Description: The attached patch permits one to specify raidz3 in get_fs_line_xvars(..) (RAIDZ3 is 3-disk parity option available in versions of ZFS in 8.3+/9.0+), and also relaxes the checks to allow one to specify raidz instead of raidz1. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: usr.sbin/pc-sysinstall/backend/functions-bsdlabel.sh =================================================================== --- usr.sbin/pc-sysinstall/backend/functions-bsdlabel.sh (revision 230088) +++ usr.sbin/pc-sysinstall/backend/functions-bsdlabel.sh (working copy) @@ -59,7 +59,7 @@ ZTYPE="NONE" ZFSVARS="`echo $LINE | cut -d '(' -f 2- | cut -d ')' -f 1 | xargs`" - echo $ZFSVARS | grep -qE "^(disk|file|mirror|raidz(1|2)?|spare|log|cache):" 2>/dev/null + echo $ZFSVARS | grep -qE "^(disk|file|mirror|raidz[1-3]?|spare|log|cache):" 2>/dev/null if [ $? -eq 0 ] ; then ZTYPE=`echo $ZFSVARS | cut -f1 -d:` ZFSVARS=`echo $ZFSVARS | sed "s|$ZTYPE: ||g" | sed "s|$ZTYPE:||g"` >Release-Note: >Audit-Trail: >Unformatted: From eadler at FreeBSD.org Thu Feb 2 17:01:00 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Thu Feb 2 17:01:06 2012 Subject: conf/164709: [patch] [pc-sysinstall] add raidz3 support; permit 'raidz' in input Message-ID: <201202021701.q12H10Vs027460@freefall.freebsd.org> Synopsis: [patch] [pc-sysinstall] add raidz3 support; permit 'raidz' in input Responsible-Changed-From-To: freebsd-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Thu Feb 2 17:00:59 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=164709 From kes-kes at yandex.ru Thu Feb 2 18:02:17 2012 From: kes-kes at yandex.ru (=?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?=) Date: Thu Feb 2 18:02:24 2012 Subject: kern/164705: inability to terminate process in D state In-Reply-To: <4F2A89C4.4090907@FreeBSD.org> References: <201202020923.q129NDxR000887@freefall.freebsd.org> <1259591729.20120202113710@yandex.ru> <4F2A5EA7.9020106@FreeBSD.org> <4F2A6123.8030909@norma.perm.ru> <4F2A89C4.4090907@FreeBSD.org> Message-ID: <1849394483.20120202200211@yandex.ru> ????????????, Andriy. ?? ?????? 2 ??????? 2012 ?., 15:04:04: AG> on 02/02/2012 12:10 Eugene M. Zheganin said the following: >> On 02.02.2012 16:00, Andriy Gapon wrote: >>> on 02/02/2012 11:37 ??????? ??????? said the following: >>>> why close? keep the problem open until resolve. >>> Resolve exactly what? >> Yeah, someone's enormous ego is not exactly a FreeBSD problem. >> I can see it's grown up to an unresolvable size. AG> Anything on the technical side you might want to add? people with sufficiant knowledge looking through opened PRs maybe will notice this, take attention of it and fix. I do not have any knowledge of kernel design I just report a PR and if this is really problem it must be opened until fix. IMHO. this PR and PR bin/164526 may be related and this one may be closed as 'dublicate' but not as: 'this problem can not be resolved' 2: thank you about your explanation of "bad and good news" -- ? ?????????, ??????? mailto:kes-kes@yandex.ru From allen at gtf.org Thu Feb 2 18:10:09 2012 From: allen at gtf.org (Allen Belletti) Date: Thu Feb 2 18:10:15 2012 Subject: kern/164694: Regression in 3726 port multiplier support in 9.0 Message-ID: <201202021810.q12IA9IO089839@freefall.freebsd.org> The following reply was made to PR kern/164694; it has been noted by GNATS. From: Allen Belletti To: bug-followup@freebsd.org Cc: Subject: Re: kern/164694: Regression in 3726 port multiplier support in 9.0 Date: Thu, 02 Feb 2012 13:08:13 -0500 I've reached a dead end but come up with a few more bits of information. It's definitely some sort of irq setup/handling problem. I experimented with setting hint.siis.X.msi=1 for these cards. Surprisingly, they almost seem to work. They're able to immediately detect the pmp device and recognize the four disks on the other side of it. However, after a few seconds of I/O, it'll get stuck and time out. Presumably MSI just doesn't work on these cards which is why it defaults to disabled (I've seen hints of problems like that in my search.) I did also try forcing hint.siisch.X.sata_rev=1 but it didn't seem to improve the situation, which makes sense if it's fundamentally an interrupt handling problem. It's unlikely that I can get any further on my own, but it seems likely that some sort of IRQ handling problem was introduced between 8.2 and 9.0. Thanks, Allen From avg at FreeBSD.org Thu Feb 2 18:10:31 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Thu Feb 2 18:11:00 2012 Subject: kern/164705: inability to terminate process in D state In-Reply-To: <1849394483.20120202200211@yandex.ru> References: <201202020923.q129NDxR000887@freefall.freebsd.org> <1259591729.20120202113710@yandex.ru> <4F2A5EA7.9020106@FreeBSD.org> <4F2A6123.8030909@norma.perm.ru> <4F2A89C4.4090907@FreeBSD.org> <1849394483.20120202200211@yandex.ru> Message-ID: <4F2AD189.605@FreeBSD.org> on 02/02/2012 20:02 ??????? ??????? said the following: > ????????????, Andriy. > > ?? ?????? 2 ??????? 2012 ?., 15:04:04: > > AG> on 02/02/2012 12:10 Eugene M. Zheganin said the following: >>> On 02.02.2012 16:00, Andriy Gapon wrote: >>>> on 02/02/2012 11:37 ??????? ??????? said the following: >>>>> why close? keep the problem open until resolve. >>>> Resolve exactly what? >>> Yeah, someone's enormous ego is not exactly a FreeBSD problem. >>> I can see it's grown up to an unresolvable size. > > AG> Anything on the technical side you might want to add? > > people with sufficiant knowledge looking through opened PRs maybe will > notice this, take attention of it and fix. > > I do not have any knowledge of kernel design I just report a PR > and if this is really problem it must be opened until fix. IMHO. > > this PR and PR bin/164526 may be related and this one > may be closed as 'dublicate' but not as: > 'this problem can not be resolved' PR 164526 reports a concrete problem that can be diagnosed and hopefully fixed. This PR is equivalent to "when FreeBSD has bugs it sucks", only about a sub-class of bugs with some specific symptoms (process being stuck and unkillable). There could be different actual underlying bugs and bug classes - driver bugs, deadlocks, etc. Hence, this PR can not be diagnosed and fixed. A new (concrete/useful) PR can be opened at any time, it's a low cost operation. > 2: > thank you about your explanation of "bad and good news" > -- Andriy Gapon From dfilter at FreeBSD.ORG Thu Feb 2 18:30:14 2012 From: dfilter at FreeBSD.ORG (dfilter service) Date: Thu Feb 2 18:30:21 2012 Subject: bin/161257: commit references a PR Message-ID: <201202021830.q12IUDAX008342@freefall.freebsd.org> The following reply was made to PR bin/161257; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/161257: commit references a PR Date: Thu, 2 Feb 2012 18:22:40 +0000 (UTC) Author: trociny Date: Thu Feb 2 18:22:25 2012 New Revision: 230918 URL: http://svn.freebsd.org/changeset/base/230918 Log: MFC r227956, r228090, r228446, r230471, r230548: r227956: Add -l flag to display resource limits. PR: bin/161257 Reviewed by: kib r228090: Update SYNOPSIS to include the flags added recently. Spotted by: jhb r228446: Make procstat -l output similar to the output of limits(1). Suggested by: jhb r230471, r230548: Make procstat -l to work with the new version of kern.proc.rlimit. Submitted by: Andrey Zonov Added: stable/9/usr.bin/procstat/procstat_rlimit.c - copied, changed from r227956, head/usr.bin/procstat/procstat_rlimit.c Modified: stable/9/usr.bin/procstat/Makefile stable/9/usr.bin/procstat/procstat.1 stable/9/usr.bin/procstat/procstat.c stable/9/usr.bin/procstat/procstat.h Directory Properties: stable/9/usr.bin/procstat/ (props changed) Modified: stable/9/usr.bin/procstat/Makefile ============================================================================== --- stable/9/usr.bin/procstat/Makefile Thu Feb 2 18:17:49 2012 (r230917) +++ stable/9/usr.bin/procstat/Makefile Thu Feb 2 18:22:25 2012 (r230918) @@ -10,6 +10,7 @@ SRCS= procstat.c \ procstat_cred.c \ procstat_files.c \ procstat_kstack.c \ + procstat_rlimit.c \ procstat_sigs.c \ procstat_threads.c \ procstat_vm.c Modified: stable/9/usr.bin/procstat/procstat.1 ============================================================================== --- stable/9/usr.bin/procstat/procstat.1 Thu Feb 2 18:17:49 2012 (r230917) +++ stable/9/usr.bin/procstat/procstat.1 Thu Feb 2 18:22:25 2012 (r230918) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd November 22, 2011 +.Dd November 28, 2011 .Dt PROCSTAT 1 .Os .Sh NAME @@ -37,7 +37,7 @@ .Op Fl n .Op Fl C .Op Fl w Ar interval -.Op Fl b | c | f | i | j | k | s | t | v +.Op Fl b | c | e | f | i | j | k | l | s | t | v | x .Op Fl a | Ar pid ... .Sh DESCRIPTION The @@ -69,6 +69,8 @@ Display the stacks of kernel threads in threads currently running on a CPU and threads with stacks swapped to disk. If the flag is repeated, function offsets as well as function names are printed. +.It Fl l +Display resource limits for the process. .It Fl s Display security credential information for the process. .It Fl t Modified: stable/9/usr.bin/procstat/procstat.c ============================================================================== --- stable/9/usr.bin/procstat/procstat.c Thu Feb 2 18:17:49 2012 (r230917) +++ stable/9/usr.bin/procstat/procstat.c Thu Feb 2 18:22:25 2012 (r230918) @@ -39,8 +39,8 @@ #include "procstat.h" -static int aflag, bflag, cflag, eflag, fflag, iflag, jflag, kflag, sflag, tflag; -static int vflag, xflag; +static int aflag, bflag, cflag, eflag, fflag, iflag, jflag, kflag, lflag, sflag; +static int tflag, vflag, xflag; int hflag, nflag, Cflag; static void @@ -50,7 +50,7 @@ usage(void) fprintf(stderr, "usage: procstat [-h] [-C] [-M core] [-N system] " "[-w interval] \n"); fprintf(stderr, " [-b | -c | -e | -f | -i | -j | -k | " - "-s | -t | -v | -x] [-a | pid ...]\n"); + "-l | -s | -t | -v | -x] [-a | pid ...]\n"); exit(EX_USAGE); } @@ -72,6 +72,8 @@ procstat(struct procstat *prstat, struct procstat_threads_sigs(prstat, kipp); else if (kflag) procstat_kstack(kipp, kflag); + else if (lflag) + procstat_rlimit(kipp); else if (sflag) procstat_cred(kipp); else if (tflag) @@ -123,7 +125,7 @@ main(int argc, char *argv[]) interval = 0; memf = nlistf = NULL; - while ((ch = getopt(argc, argv, "CN:M:abcefijkhstvw:x")) != -1) { + while ((ch = getopt(argc, argv, "CN:M:abcefijklhstvw:x")) != -1) { switch (ch) { case 'C': Cflag++; @@ -167,6 +169,10 @@ main(int argc, char *argv[]) kflag++; break; + case 'l': + lflag++; + break; + case 'n': nflag++; break; @@ -210,8 +216,8 @@ main(int argc, char *argv[]) argv += optind; /* We require that either 0 or 1 mode flags be set. */ - tmp = bflag + cflag + eflag + fflag + (kflag ? 1 : 0) + sflag + tflag + - vflag + xflag; + tmp = bflag + cflag + eflag + fflag + (kflag ? 1 : 0) + lflag + sflag + + tflag + vflag + xflag; if (!(tmp == 0 || tmp == 1)) usage(); Modified: stable/9/usr.bin/procstat/procstat.h ============================================================================== --- stable/9/usr.bin/procstat/procstat.h Thu Feb 2 18:17:49 2012 (r230917) +++ stable/9/usr.bin/procstat/procstat.h Thu Feb 2 18:22:25 2012 (r230918) @@ -42,6 +42,7 @@ void procstat_cred(struct kinfo_proc *ki void procstat_env(struct kinfo_proc *kipp); void procstat_files(struct procstat *prstat, struct kinfo_proc *kipp); void procstat_kstack(struct kinfo_proc *kipp, int kflag); +void procstat_rlimit(struct kinfo_proc *kipp); void procstat_sigs(struct procstat *prstat, struct kinfo_proc *kipp); void procstat_threads(struct kinfo_proc *kipp); void procstat_threads_sigs(struct procstat *prstat, struct kinfo_proc *kipp); Copied and modified: stable/9/usr.bin/procstat/procstat_rlimit.c (from r227956, head/usr.bin/procstat/procstat_rlimit.c) ============================================================================== --- head/usr.bin/procstat/procstat_rlimit.c Thu Nov 24 20:54:06 2011 (r227956, copy source) +++ stable/9/usr.bin/procstat/procstat_rlimit.c Thu Feb 2 18:22:25 2012 (r230918) @@ -28,7 +28,6 @@ #include #include -#define _RLIMIT_IDENT #include #include #include @@ -36,6 +35,7 @@ #include #include #include +#include #include #include #include @@ -43,36 +43,77 @@ #include "procstat.h" -static struct rlimit rlimit[RLIM_NLIMITS]; +static struct { + const char *name; + const char *suffix; +} rlimit_param[13] = { + {"cputime", "sec"}, + {"filesize", "B "}, + {"datasize", "B "}, + {"stacksize", "B "}, + {"coredumpsize", "B "}, + {"memoryuse", "B "}, + {"memorylocked", "B "}, + {"maxprocesses", " "}, + {"openfiles", " "}, + {"sbsize", "B "}, + {"vmemoryuse", "B "}, + {"pseudo-terminals", " "}, + {"swapuse", "B "}, +}; + +#if RLIM_NLIMITS > 13 +#error "Resource limits have grown. Add new entries to rlimit_param[]." +#endif + +static +const char *humanize_rlimit(int indx, rlim_t limit) +{ + static char buf[14]; + int scale; + + if (limit == RLIM_INFINITY) + return ("infinity "); + + scale = humanize_number(buf, sizeof(buf) - 1, (int64_t)limit, + rlimit_param[indx].suffix, HN_AUTOSCALE | HN_GETSCALE, HN_DECIMAL); + (void)humanize_number(buf, sizeof(buf) - 1, (int64_t)limit, + rlimit_param[indx].suffix, HN_AUTOSCALE, HN_DECIMAL); + /* Pad with one space if there is no suffix prefix. */ + if (scale == 0) + sprintf(buf + strlen(buf), " "); + return (buf); +} void procstat_rlimit(struct kinfo_proc *kipp) { - int error, i, name[4]; + struct rlimit rlimit; + int error, i, name[5]; size_t len; - if (!hflag) - printf("%5s %-16s %-10s %12s %12s\n", "PID", "COMM", "RLIMIT", - "CURRENT", "MAX"); + if (!hflag) { + printf("%5s %-16s %-16s %16s %16s\n", + "PID", "COMM", "RLIMIT", "SOFT ", "HARD "); + } + len = sizeof(struct rlimit); name[0] = CTL_KERN; name[1] = KERN_PROC; name[2] = KERN_PROC_RLIMIT; name[3] = kipp->ki_pid; - len = sizeof(rlimit); - error = sysctl(name, 4, rlimit, &len, NULL, 0); - if (error < 0 && errno != ESRCH) { - warn("sysctl: kern.proc.rlimit: %d", kipp->ki_pid); - return; - } - if (error < 0 || len != sizeof(rlimit)) - return; - for (i = 0; i < RLIM_NLIMITS; i++) { - printf("%5d %-16s %-10s %12jd %12jd\n", kipp->ki_pid, - kipp->ki_comm, rlimit_ident[i], - rlimit[i].rlim_cur == RLIM_INFINITY ? - -1 : rlimit[i].rlim_cur, - rlimit[i].rlim_max == RLIM_INFINITY ? - -1 : rlimit[i].rlim_max); - } + name[4] = i; + error = sysctl(name, 5, &rlimit, &len, NULL, 0); + if (error < 0 && errno != ESRCH) { + warn("sysctl: kern.proc.rlimit: %d", kipp->ki_pid); + return; + } + if (error < 0 || len != sizeof(struct rlimit)) + return; + + printf("%5d %-16s %-16s ", kipp->ki_pid, kipp->ki_comm, + rlimit_param[i].name); + printf("%16s ", humanize_rlimit(i, rlimit.rlim_cur)); + printf("%16s\n", humanize_rlimit(i, rlimit.rlim_max)); + } } _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From me at falz.net Thu Feb 2 19:30:14 2012 From: me at falz.net (falz) Date: Thu Feb 2 19:30:21 2012 Subject: misc/164716: ports: net-mgmt/xymon-server add menu options Message-ID: <201202021920.q12JKU8t075621@red.freebsd.org> >Number: 164716 >Category: misc >Synopsis: ports: net-mgmt/xymon-server add menu options >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Feb 02 19:30:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: falz >Release: 9.0 >Organization: >Environment: >Description: Enable menu options for `make config`. Patch also here: http://falz.net/static/xymon-server-opts.diff >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/net-mgmt/xymon-server/Makefile /usr/local/ports/net-mgmt/xymon-server/Makefile --- /usr/ports/net-mgmt/xymon-server/Makefile 2012-01-24 13:05:03.000000000 -0600 +++ /usr/local/ports/net-mgmt/xymon-server/Makefile 2012-02-02 13:07:56.000000000 -0600 @@ -37,6 +37,9 @@ SUB_LIST+= XYMONUSER="${XYMONUSER}" PLIST_SUB+= XYMONUSER="${XYMONUSER}" VARBASE="/var" +OPTIONS= LDAP "Enable LDAP support" off \ + SNMP "Enable Net-SNMP support" off + CONFIG_FILES= alerts.cfg analysis.cfg cgioptions.cfg client-local.cfg \ columndoc.csv combo.cfg graphs.cfg holidays.cfg protocols.cfg \ rrddefinitions.cfg tasks.cfg xymonserver.cfg >Release-Note: >Audit-Trail: >Unformatted: From allen at gtf.org Thu Feb 2 21:00:28 2012 From: allen at gtf.org (Allen Belletti) Date: Thu Feb 2 21:00:33 2012 Subject: kern/164694: Regression in 3726 port multiplier support in 9.0 Message-ID: <201202022100.q12L0R6f045456@freefall.freebsd.org> The following reply was made to PR kern/164694; it has been noted by GNATS. From: Allen Belletti To: bug-followup@freebsd.org Cc: Subject: Re: kern/164694: Regression in 3726 port multiplier support in 9.0 Date: Thu, 02 Feb 2012 15:59:05 -0500 One final thing; I forgot that I still had a mirror of my 8.2 installation. I was able to boot that and return to my original configuration. Indeed, the problem with the siis interfaces goes away under 8.2, so it's 100% a regression and not a hardware issue. Also, for reference, the system runs a SuperMicro X8DTH board. From lev at FreeBSD.org Thu Feb 2 21:30:11 2012 From: lev at FreeBSD.org (Lev Serebryakov) Date: Thu Feb 2 21:30:24 2012 Subject: kern/164721: ath device timeouts Message-ID: <20120202212228.766844AC37@onlyone.friendlyhosting.spb.ru> >Number: 164721 >Category: kern >Synopsis: ath device timeouts >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 02 21:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Lev Serebryakov >Release: FreeBSD 10.0-CURRENT i386 >Organization: >Environment: System: FreeBSD gateway.home.serebryakov.spb.ru 10.0-CURRENT FreeBSD 10.0-CURRENT #1: Wed Jan 11 21:07:34 MSK 2012 root@vmware-c-32.home.serebryakov.spb.ru:/usr/obj/nanobsd.gateway-net5501/usr/src/sys/NET5501 i386 ath0: mem 0xa0060000-0xa006ffff irq 15 at device 17.0 on pci0 ath0: [HT] enabling HT modes ath0: [HT] 2 RX streams; 2 TX streams ath0: AR9220 mac 128.2 RF5133 phy 13.0 ath0: 2GHz radio: 0x0000; 5GHz radio: 0x00c0 ath0@pci0:0:17:0: class=0x028000 card=0x2091168c chip=0x0029168c rev=0x01 hdr=0x00 vendor = 'Atheros Communications Inc.' device = 'AR922X Wireless Network Adapter' class = network ath0: flags=8843 metric 0 mtu 2290 ether f4:ec:38:a3:10:6d nd6 options=29 media: IEEE 802.11 Wireless Ethernet autoselect mode 11ng status: running wlan0: flags=8843 metric 0 mtu 1500 ether f4:ec:38:a3:10:6d inet 192.168.135.1 netmask 0xffffff00 broadcast 192.168.135.255 vhid 5 inet6 fe80::f6ec:38ff:fea3:106d%wlan0 prefixlen 64 scopeid 0xc vhid 5 inet6 2001:470:923f:2::1 prefixlen 64 vhid 5 nd6 options=21 media: IEEE 802.11 Wireless Ethernet autoselect mode 11ng status: running ssid home.serebryakov.spb.ru channel 9 (2452 MHz 11g ht/20) bssid f4:ec:38:a3:10:6d regdomain ROW country RU indoor ecm authmode WPA2/802.11i -wps -tsn privacy MIXED deftxkey 3 AES-CCM 2:128-bit AES-CCM 3:128-bit powersavemode OFF powersavesleep 100 txpower 30 txpowmax 50.0 -dotd rtsthreshold 2346 fragthreshold 2346 bmiss 7 11a ucast NONE mgmt 6 Mb/s mcast 6 Mb/s maxretry 6 11b ucast NONE mgmt 1 Mb/s mcast 1 Mb/s maxretry 6 11g ucast NONE mgmt 1 Mb/s mcast 1 Mb/s maxretry 6 turboA ucast NONE mgmt 6 Mb/s mcast 6 Mb/s maxretry 6 turboG ucast NONE mgmt 1 Mb/s mcast 1 Mb/s maxretry 6 sturbo ucast NONE mgmt 6 Mb/s mcast 6 Mb/s maxretry 6 11na ucast NONE mgmt 12 MCS mcast 12 MCS maxretry 6 11ng ucast NONE mgmt 2 MCS mcast 2 MCS maxretry 6 half ucast NONE mgmt 3 Mb/s mcast 3 Mb/s maxretry 6 quarter ucast NONE mgmt 1 Mb/s mcast 1 Mb/s maxretry 6 scanvalid 60 -bgscan bgscanintvl 300 bgscanidle 250 roam:11a rssi 7dBm rate 12 Mb/s roam:11b rssi 7dBm rate 1 Mb/s roam:11g rssi 7dBm rate 5 Mb/s roam:turboA rssi 7dBm rate 12 Mb/s roam:turboG rssi 7dBm rate 12 Mb/s roam:sturbo rssi 7dBm rate 12 Mb/s roam:11na rssi 7dBm MCS 1 roam:11ng rssi 7dBm MCS 1 roam:half rssi 7dBm rate 6 Mb/s roam:quarter rssi 7dBm rate 3 Mb/s -pureg protmode CTS ht htcompat -ampdutx ampdurx ampdulimit 64k ampdudensity 8 amsdu shortgi htprotmode RTSCTS -puren -smps -rifs wme burst -dwds -hidessid apbridge dtimperiod 1 doth -dfs inact bintval 100 AC_BE cwmin 4 cwmax 6 aifs 3 txopLimit 0 -acm ack cwmin 4 cwmax 10 aifs 3 txopLimit 0 -acm AC_BK cwmin 4 cwmax 10 aifs 7 txopLimit 0 -acm ack cwmin 4 cwmax 10 aifs 7 txopLimit 0 -acm AC_VI cwmin 3 cwmax 4 aifs 1 txopLimit 94 -acm ack cwmin 3 cwmax 4 aifs 2 txopLimit 94 -acm AC_VO cwmin 2 cwmax 3 aifs 1 txopLimit 47 -acm ack cwmin 2 cwmax 3 aifs 2 txopLimit 47 -acm groups: wlan >Description: Sometimes ath0 gives tiemout when transmitting to 802.11g client. The higher is speed the higher is tiemouts frequency. When environment is noisy, speed is low and timeouts is rare. When environment is clean, speed is high (up to 2.5MiB/s) but timeouts are frequent. Here is output of `dmesg' when reset debug is enabled. ath0: stuck beacon; resetting (bmiss count 4) ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x212fb40, link 0 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0x20beb40, link 0 ar5212StopDmaReceive: dma failed to stop in 10ms AR_CR=0x00000024 AR_DIAG_SW=0x42000020 ath_stoprecv: rx queue 0x1b96480, link 0xcdb96420 ath0: stuck beacon; resetting (bmiss count 4) ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x20bc780, link 0xd58c6420 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0x20fe3c0, link 0 ath_stoprecv: rx queue 0x1b90660, link 0xcdb90600 ath0: device timeout ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x20c63c0, link 0xd58b5060 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0, link 0 ath_stoprecv: rx queue 0x1b94d20, link 0xcdb94c00 R[ 0] (DS.V:0xcdb94c60 DS.P:0x1b94c60) L:01b94cc0 D:18d33000 ! aa55aa55 00000800 1b800005 0000013aath0: ath_start: sc_inreset_cnt > 0; bailing 008b0a6d 00000100 06808080 80808080 80808080 80808080 00000005 R[ 1] (DS.V:0xcdb94cc0 DS.P:0x1b94cc0) L:01b94d20 D:137c6000 * aa55aa55 00000800 1b800b10 00000031 008b3700 00000100 11808080 80808080 80808080 80808080 00000003 ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing ath0: device timeout ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x20b5000, link 0xd58c57e0 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0, link 0 ath_stoprecv: rx queue 0x1b977e0, link 0xcdb976c0 R[ 0] (DS.V:0xcdb97720 DS.P:0x1b97720) L:01b97780 D:08942000 * aa55aa55 00000800 1b800a0c 00000112 004cddcf 00000100 0e808080 80808080 80808080 80808080 00000003 R[ 1] (DS.V:0xcdb97780 DS.P:0x1b97780) L:01b977e0 D:136f1000 * aa55aa55 00000800 1b800304 000000a2 004cf785 00000100 06808080 80808080 80808080 80808080 00000003 ath0: device timeout ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x20c5780, link 0xd58b2060 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0, link 0 ath_stoprecv: rx queue 0x1b8e600, link 0xcdb8e540 R[ 0] (DS.V:0xcdb8e5a0 DS.P:0x1b8e5a0) L:01b8e600 D:13706000 ! aa55aa55 00000800 1b800f0a 0000008e 004d8f1e 00000100 11808080 80808080 80808080 80808080 00000611 ath0: device timeout ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x20b2000, link 0xd58cb420 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0, link 0 ath_stoprecv: rx queue 0x1b922a0, link 0xcdb92180 R[ 0] (DS.V:0xcdb921e0 DS.P:0x1b921e0) L:01b92240 D:18ced000 * aa55aa55 00000800 1b80060e 00000112 006b3c79 00000100 0f808080 80808080 80808080 80808080 00000003 R[ 1] (DS.V:0xcdb92240 DS.P:0x1b92240) L:01b922a0 D:136e0800 * aa55aa55 00000800 1b800306 000000a2 006b536b 00000100 08808080 80808080 80808080 80808080 00000003 ath0: device timeout ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x20cb3c0, link 0xd58c9b40 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0, link 0 ath_stoprecv: rx queue 0x1b95420, link 0xcdb95360 R[ 0] (DS.V:0xcdb953c0 DS.P:0x1b953c0) L:01b95420 D:18d1c000 * aa55aa55 00000800 1b80040a 00000112 007aafb5 00000100 0b808080 80808080 80808080 80808080 00000003 ath0: device timeout ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x20c9b40, link 0xd592f420 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0x20ca780, link 0 ath_stoprecv: rx queue 0x1b98e40, link 0xcdb98de0 ath0: device timeout ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x212f3c0, link 0xd592ab40 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0x20bcb40, link 0 ath_stoprecv: rx queue 0x1b95420, link 0xcdb95360 R[ 0] (DS.V:0xcdb953c0 DS.P:0x1b953c0) L:01b95420 D:18c5a000 * aa55aa55 00000800 1b80090e 00000112 01227240 00000100 0f808080 80808080 80808080 80808080 00000003 ath0: device timeout ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x212ab40, link 0xd58cf780 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0, link 0 ath_stoprecv: rx queue 0x1b99540, link 0xcdb99480 R[ 0] (DS.V:0xcdb994e0 DS.P:0x1b994e0) L:01b99540 D:1374a000 * aa55aa55 00000800 1b80070c 00000112 00a885b6 00000100 0d808080 80808080 80808080 80808080 00000003 ath0: device timeout ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x20cf780, link 0xd58e2000 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0, link 0 ath_stoprecv: rx queue 0x1b95180, link 0xcdb95060 R[ 0] (DS.V:0xcdb950c0 DS.P:0x1b950c0) L:01b95120 D:17100000 * aa55aa55 00000800 1b80110c 00000147 01045026 00000100 12808080 80808080 80808080 80808080 00000003 R[ 1] (DS.V:0xcdb95120 DS.P:0x1b95120) L:01b95180 D:18cbf800 ! aa55aa55 00000800 1b80070a 0000006a 01045e67 00000100 0c808080 80808080 80808080 80808080 00000005 ath0: ath_tx_tid_drain: node 0xc4d8b000: tid 16: txq_depth=28, txq_aggr_depth=0, sched=0, paused=0, hwq_depth=0, incomp=0, baw_head=0, baw_tail=0 txa_start=-1, ni_txseqs=11 FRDS f4:ec:38:a3:10:6d->00:18:de:08:e8:1d(f4:ec:38:a3:10:6d) data WEP [IV 7c 99 00 05 00 00 KID 0] 0M 0842 3a01 0018 de08 e81d f4ec 38a3 106d f4ec 38a3 106d 6000 7c99 0020 0500 0000 aaaa 0300 0000 888e ath0: device timeout ath0: ath_reset: called ath0: ath_stoptxdma: tx queue [9] 0x1b9b000, link 0 ath0: ath_tx_stopdma: tx queue [0] 0, link 0 ath0: ath_tx_stopdma: tx queue [1] 0x20e2000, link 0xd58baba0 ath0: ath_tx_stopdma: tx queue [2] 0, link 0 ath0: ath_tx_stopdma: tx queue [3] 0, link 0 ath0: ath_tx_stopdma: tx queue [8] 0, link 0 ath_stoprecv: rx queue 0x1b98840, link 0xcdb987e0 >How-To-Repeat: Use FreeBSD with ath driver in HostAP mode, transfer some files to client. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From avg at FreeBSD.org Thu Feb 2 21:30:15 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Thu Feb 2 21:30:25 2012 Subject: bin/164526: kill(1) can not kill process despite on -KILL Message-ID: <201202022130.q12LUFsn072665@freefall.freebsd.org> The following reply was made to PR bin/164526; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, kes-kes@yandex.ru Cc: Subject: Re: bin/164526: kill(1) can not kill process despite on -KILL Date: Thu, 02 Feb 2012 23:29:13 +0200 Eugen, thank you for reporting and debugging this problem. In addition to what Jilles has already suggested I would like to also advise that it's possible to use kgdb to examine the vnode and its lock. You can use kgdb's 'tid' command to switch to a thread of interest (it would be 100195 for your earlier report) and the you can use standard gdb commands to examine the data. Another, and more standard way, to deal with deadlocks like this one is described here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/kerneldebug-deadlocks.html -- Andriy Gapon From lev at FreeBSD.org Thu Feb 2 21:31:27 2012 From: lev at FreeBSD.org (lev@FreeBSD.org) Date: Thu Feb 2 21:31:33 2012 Subject: kern/164721: ath device timeouts Message-ID: <201202022131.q12LVQQE078604@freefall.freebsd.org> Synopsis: ath device timeouts Responsible-Changed-From-To: freebsd-bugs->adrian Responsible-Changed-By: lev Responsible-Changed-When: Thu Feb 2 21:30:50 UTC 2012 Responsible-Changed-Why: Pass to ath driver owner. http://www.freebsd.org/cgi/query-pr.cgi?pr=164721 From giffunip at tutopia.com Fri Feb 3 02:10:13 2012 From: giffunip at tutopia.com (Pedro Giffuni) Date: Fri Feb 3 02:10:24 2012 Subject: kern/164724: Signal bug in Dtrace Message-ID: <201202030209.q1329AZC031536@red.freebsd.org> >Number: 164724 >Category: kern >Synopsis: Signal bug in Dtrace >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: Fri Feb 03 02:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Pedro Giffuni >Release: 9.0-release >Organization: >Environment: FreeBSD pcbsd-8714 9.0-RELEASE FreeBSD 9.0-RELEASE #3: Tue Dec 27 14:14:29 PST 2011 root@build9x64.pcbsd.org:/usr/obj/builds/amd64/pcbsd-build90/fbsd-source/9.0/sys/GENERIC amd64 >Description: Last year Bryan Cantrill found a nasty bug in Dtrace: http://dtrace.org/blogs/bmc/2011/03/09/when-magic-collides/ He warns "you are not expected to understand this", and not really being used to Dtrace I haven't really reproduced it. The fix, however, was relatively easy so I adapted the patch here: http://dtrace.org/resources/bmc/dtrace-signal.patch to work on FreeBSD's port. >How-To-Repeat: >Fix: Patch attached Patch attached with submission follows: Index: cddl/dev/dtrace/i386/dtrace_subr.c =================================================================== --- cddl/dev/dtrace/i386/dtrace_subr.c (revision 230923) +++ cddl/dev/dtrace/i386/dtrace_subr.c (working copy) @@ -27,6 +27,10 @@ * Use is subject to license terms. */ +/* + * Copyright (c) 2011, Joyent, Inc. All rights reserved. + */ + #include #include #include @@ -298,14 +302,15 @@ } /* - * If we've executed the original instruction, but haven't performed - * the jmp back to t->t_dtrace_npc or the clean up of any registers - * used to emulate %rip-relative instructions in 64-bit mode, do that - * here and take the signal right away. We detect this condition by - * seeing if the program counter is the range [scrpc + isz, astpc). + * If we have executed the original instruction, but we have performed + * neither the jmp back to t->t_dtrace_npc nor the clean up of any + * registers used to emulate %rip-relative instructions in 64-bit mode, + * we'll save ourselves some effort by doing that here and taking the + * signal right away. We detect this condition by seeing if the program + * counter is the range [scrpc + isz, astpc). */ - if (t->t_dtrace_astpc - rp->r_pc < - t->t_dtrace_astpc - t->t_dtrace_scrpc - isz) { + if (rp->r_pc >= t->t_dtrace_scrpc + isz && + rp->r_pc < t->t_dtrace_astpc) { #ifdef __amd64 /* * If there is a scratch register and we're on the Index: cddl/dev/dtrace/amd64/dtrace_subr.c =================================================================== --- cddl/dev/dtrace/amd64/dtrace_subr.c (revision 230923) +++ cddl/dev/dtrace/amd64/dtrace_subr.c (working copy) @@ -27,6 +27,10 @@ * Use is subject to license terms. */ +/* + * Copyright (c) 2011, Joyent, Inc. All rights reserved. + */ + #include #include #include @@ -297,14 +301,15 @@ } /* - * If we've executed the original instruction, but haven't performed - * the jmp back to t->t_dtrace_npc or the clean up of any registers - * used to emulate %rip-relative instructions in 64-bit mode, do that - * here and take the signal right away. We detect this condition by - * seeing if the program counter is the range [scrpc + isz, astpc). + * If we have executed the original instruction, but we have performed + * neither the jmp back to t->t_dtrace_npc nor the clean up of any + * registers used to emulate %rip-relative instructions in 64-bit mode, + * we'll save ourselves some effort by doing that here and taking the + * signal right away. We detect this condition by seeing if the program + * counter is the range [scrpc + isz, astpc). */ - if (t->t_dtrace_astpc - rp->r_pc < - t->t_dtrace_astpc - t->t_dtrace_scrpc - isz) { + if (rp->r_pc >= t->t_dtrace_scrpc + isz && + rp->r_pc < t->t_dtrace_astpc) { #ifdef __amd64 /* * If there is a scratch register and we're on the >Release-Note: >Audit-Trail: >Unformatted: From tit at irk.ru Fri Feb 3 12:20:07 2012 From: tit at irk.ru (Alexander Titaev) Date: Fri Feb 3 12:20:13 2012 Subject: kern/164734: 9.0 quota not worked Message-ID: <201202031210.q13CAhYA092144@red.freebsd.org> >Number: 164734 >Category: kern >Synopsis: 9.0 quota not worked >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 03 12:20:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Alexander Titaev >Release: 9.0-RELEASE >Organization: ISPSystem >Environment: FreeBSD powerantilles.com 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Fri Feb 3 01:24:35 AST 2012 root@powerantilles.com:/usr/obj/usr/src/sys/ISPSERVER amd64 >Description: powerantilles# strings /boot/kernel/kernel | grep QUOT QUOTA64 options QUOTA powerantilles# grep quota /etc/rc.conf enable_quotas="YES" powerantilles# cat /etc/fstab # Device Mountpoint FStype Options Dump Pass# /dev/mirror/gm0s1b none swap sw 0 0 /dev/mirror/gm0s1a.journal / ufs async,rw,groupquota,userquota 1 1 powerantilles# dmesg | grep -i quot Trying to mount root from ufs:/dev/mirror/gm0s1a.journal [async,rw,groupquota,userquota]... powerantilles# mount /dev/mirror/gm0s1a.journal on / (ufs, asynchronous, local, gjournal) devfs on /dev (devfs, local, multilabel) powerantilles# >How-To-Repeat: just try >Fix: >Release-Note: >Audit-Trail: >Unformatted: From u2mike at ya.ru Fri Feb 3 12:35:05 2012 From: u2mike at ya.ru (Mike Sn) Date: Fri Feb 3 12:35:12 2012 Subject: grub-install problems on FreeBDS 9.0 Message-ID: <4F2BD486.4060102@ya.ru> Good day! I've install FreeBSD 9.0 (amd64) on my machine and install grub2 (pkg_add -r grub2). I saw some problem with installing it (grub-install hd0). First problem in line (/usr/local/sbin/grub-install): # Write device to a variable so we don't have to traverse /dev every time. grub_device=`$grub_probe --target=device ${grubdir}` grub-probe returns /dev/ada0s2a but for installation needs /dev/ada0s2 Second problem arises with calling with hd0 value (grub-install hd0). I avoided this problem. I called grub-install /dev/ad4 and had success! My HDD description: /dev/ad4s1 - ntfs /dev/ad4s2a - / /dev/ad4s2b - swap -- Best Regards! From antonio.trindade at gmail.com Fri Feb 3 13:09:15 2012 From: antonio.trindade at gmail.com (=?iso-8859-1?Q?Ant=F3nio_Trindade?=) Date: Fri Feb 3 13:09:28 2012 Subject: kernel: panic: softdep_sync_buf: Unknown type jnewblk In-Reply-To: References: <315A1E95-9064-494F-A3B8-48F1C4951624@gmail.com> Message-ID: <32F9152B-5B6A-400A-9353-A050C89A336E@gmail.com> Hi! After a few days, I finally got a kernel panic like the one I reported earlier. I attach the file info.0. I'm not attaching the vmcore.0 and core.txt.0 files, because they are over 100MB in size. If needed, they can be downloaded from http://trindade.myphotos.cc/crash/vmcore.0.gz and http://trindade.myphotos.cc/crash/core.txt.0. I remind you that I am not using snapshots, at least conscientiously. Hope this helps diagnosing the problem. Meanwhile I deactivated SU+J again and reverted back to plain old SU. Best regards. ------ BEGIN info.0 ------ Dump header from device /dev/ad0s1b Architecture: i386 Architecture Version: 2 Dump Length: 193622016B (184 MB) Blocksize: 512 Dumptime: Thu Feb 2 22:57:19 2012 Hostname: gatekeeper.darklair.homeunix.net Magic: FreeBSD Kernel Dump Version String: FreeBSD 9.0-RELEASE #0: Sun Jan 15 01:22:14 WET 2012 root@gatekeeper.darklair.homeunix.net:/usr/obj/usr/src/sys/GATEKEEPER Panic String: softdep_sync_buf: Unknown type jnewblk Dump Parity: 3424763946 Bounds: 0 Dump Status: good ------ END info.0 ------ Ant?nio Trindade Antonio Trindade gmail.com S?tios pessoais: Galeria Fotogr?fica: http://trindade.myphotos.cc/fotos/ Blog de fotografia: http://trindade.myphotos.cc/fotografia/ Blog de not?cias: http://trindade.myphotos.cc/noticiasavulsas/ Blog pessoal: http://trindade.myphotos.cc/pensamentosnoar/ On 2012/01/27, at 01:03, Ant?nio Trindade wrote: > I'm sorry for so many mails... > > Please cc me about this, because I'm not on any of the FreeBSD mailing lists... > > Thanks in advance. > > Cumprimentos/Best regards/Mit freundlichen Gr??en, > Ant?nio Trindade > Antonio Trindade gmail.com > > S?tios pessoais: > Galeria Fotogr?fica: http://trindade.myphotos.cc/fotos/ > Blog de fotografia: http://trindade.myphotos.cc/fotografia/ > Blog de not?cias: http://trindade.myphotos.cc/noticiasavulsas/ > Blog pessoal: http://trindade.myphotos.cc/pensamentosnoar/ > > On 2012/01/27, at 00:44, Ant?nio Trindade wrote: > >> >>> From: Ant?nio Trindade >>> Date: 27 de Janeiro de 2012 00:40:06 WET >>> To: freebsd-stable@freebsd.org, freebsd-fs@freebsd.org, freebsd-bugs@freebsd.org >>> Subject: kernel: panic: softdep_sync_buf: Unknown type jnewblk >>> >>> Cheers. >>> >>> I recently updated my system to FreeBSD-9.0 and activated softupdate journaling for a number of file systems (name /home, /var, /usr). >>> >>> Since then I have been experiencing kernel panics: >>> kernel: panic: softdep_sync_buf: Unknown type jnewblk >>> >>> Yesterday, Jan 26th, I got 6 (six) automatic reboots due to these kernel panics. >>> >>> I have now disabled softupdates journaling in the hope that the panics disappear. >>> >>> I am sorry for not providing more information about the panic, but I'll gladly try to gather more info if instructed how to. >>> >>> Cumprimentos/Best regards/Mit freundlichen Gr??en, >>> Ant?nio Trindade >>> Antonio Trindade gmail.com >>> >>> S?tios pessoais: >>> Galeria Fotogr?fica: http://trindade.myphotos.cc/fotos/ >>> Blog de fotografia: http://trindade.myphotos.cc/fotografia/ >>> Blog de not?cias: http://trindade.myphotos.cc/noticiasavulsas/ >>> Blog pessoal: http://trindade.myphotos.cc/pensamentosnoar/ >>> >> >> I forgot some additional info: >> To deactivate softupdates journaling, I rebooted into single-user mode and ran full fsck to every file system I had activated journaling for. >> To my surprise, fsck reported errors (namely wrong block counts and bitmap errors, nothing serious). >> >> Cumprimentos/Best regards/Mit freundlichen Gr??en, >> Ant?nio Trindade >> Antonio Trindade gmail.com >> >> S?tios pessoais: >> Galeria Fotogr?fica: http://trindade.myphotos.cc/fotos/ >> Blog de fotografia: http://trindade.myphotos.cc/fotografia/ >> Blog de not?cias: http://trindade.myphotos.cc/noticiasavulsas/ >> Blog pessoal: http://trindade.myphotos.cc/pensamentosnoar/ >> > From adam.k.kirchhoff at gmail.com Fri Feb 3 13:10:10 2012 From: adam.k.kirchhoff at gmail.com (Adam Kirchhoff) Date: Fri Feb 3 13:10:17 2012 Subject: misc/164736: FreeBSD handbook mentions running vmware via linux compat. Message-ID: <201202031300.q13D0lX3080511@red.freebsd.org> >Number: 164736 >Category: misc >Synopsis: FreeBSD handbook mentions running vmware via linux compat. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 03 13:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Adam Kirchhoff >Release: 9.0-STABLE >Organization: >Environment: FreeBSD memory.visualtech.com 9.0-STABLE FreeBSD 9.0-STABLE #5: Thu Jan 26 22:09:39 EST 2012 root@memory.visualtech.com:/usr/obj/usr/src/sys/MEMORY amd64 >Description: This section of the handbook should updated to remove the reference to vmware: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/linuxemu.html The linux version of vmware workstation 3 (iirc) was in the ports tree at one point, was removed a while back. No newer version of vmware will work via the compat layer, at least not till someone were to port the vmware kernel modules again. I recently had a discussion with someone who erroneously thought they could get vmware workstation 8 working on FreeBSD because they read this line in the handbook: In a nutshell, the compatibility allows FreeBSD users to run about 90% of all Linux applications without modification. This includes applications such as StarOffice, the Linux version of Netscape, Adobe Acrobat, RealPlayer, VMware, Oracle, WordPerfect, Doom, Quake, and more. It is also reported that in some situations, Linux binaries perform better on FreeBSD than they do under Linux. >How-To-Repeat: >Fix: Remove VMware from the list. >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Fri Feb 3 15:29:09 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 3 15:29:16 2012 Subject: docs/164736: [handbook] FreeBSD handbook mentions running vmware via linux compat. Message-ID: <201202031529.q13FT9eF002626@freefall.freebsd.org> Old Synopsis: FreeBSD handbook mentions running vmware via linux compat. New Synopsis: [handbook] FreeBSD handbook mentions running vmware via linux compat. Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 3 15:28:50 UTC 2012 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=164736 From petefrench at ingresso.co.uk Fri Feb 3 16:50:10 2012 From: petefrench at ingresso.co.uk (Pete French) Date: Fri Feb 3 16:50:17 2012 Subject: kern/164741: zvol always present as 512 bytes/sector regardless of blocksize Message-ID: >Number: 164741 >Category: kern >Synopsis: zvol always present as 512 bytes/sector regardless of blocksize >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 03 16:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Pete French >Release: FreeBSD 8.2-STABLE amd64 >Organization: Ingresso Ltd >Environment: System: FreeBSD dilbert.london-internal.ingresso.co.uk 8.2-STABLE FreeBSD 8.2-STABLE #0: Fri Jan 6 12:44:04 GMT 2012 petefrench@dilbert.london-internal.ingresso.co.uk:/usr/obj/usr/src/sys/GENERIC amd64 >Description: A zvol may be created with a specific sectorsize, specified with -b or the volblocksize property. The resulting device in /dev/zvol always appears to have 512 bytes per sector however, as reported by diskinfo >How-To-Repeat: # zfs create -V 1G -b 512 tank/test1 # zfs create -V 1G -b 4k tank/test2 # zfs create -V 1G tank/test3 # zfs get volblocksize tank/test1 tank/test2 tank/test3 NAME PROPERTY VALUE SOURCE tank/test1 volblocksize 512 - tank/test2 volblocksize 4K - tank/test3 volblocksize 8K - # diskinfo /dev/zvol/tank/test* /dev/zvol/tank/test1 512 1073741824 2097152 0 0 /dev/zvol/tank/test2 512 1073741824 2097152 0 0 /dev/zvol/tank/test3 512 1073741824 2097152 0 0 >Fix: For zvols to be uses as iscsi devices the desired blocksize can be specified in the istgt config file. For volumes being used internally however (e.g. as volumed for VirtualBox machines) I have discovered no workaround. >Release-Note: >Audit-Trail: >Unformatted: From 01xTKB at gmail.com Sat Feb 4 00:00:40 2012 From: 01xTKB at gmail.com (Tarun Brari) Date: Sat Feb 4 00:00:47 2012 Subject: misc/164752: No option of ZFS in FreeBSD 9.0 DVD installation Message-ID: <201202032353.q13NrbaR071490@red.freebsd.org> >Number: 164752 >Category: misc >Synopsis: No option of ZFS in FreeBSD 9.0 DVD installation >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: Sat Feb 04 00:00:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Tarun Brari >Release: 9.0 >Organization: Student/Freelancer >Environment: FreeBSD FreeBSD 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I initially installed PCBSD 9.0 on my system the day it was released. But I'm a huge GNOME fan & don't like KDE that much. Also, I was thinking of giving FreeBSD a try. So, I downloaded the FreeBSD 9.0 DVD (amd64) from the net & burned it on the drive. I have allocated the 97 GB of my second HDD to PCBSD which made partitions automatically. I chose ZFS filesystem to see what was the fuss all about. Now, when I tried to install FreeBSD on those partitions, it refused. I had to re-initialize the slice. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From jguojun at sbcglobal.net Sat Feb 4 05:28:19 2012 From: jguojun at sbcglobal.net (Jin Guojun) Date: Sat Feb 4 05:29:03 2012 Subject: bin/164399: 9.0 installer failures In-Reply-To: <201201230750.q0N7o9fa090736@freefall.freebsd.org> Message-ID: <1328332425.29257.YahooMailClassic@web82205.mail.mud.yahoo.com> For problem #3, here is more information (by repeating to create the same problem for each case below) 1) FreeBSD Release 6.4 has no problem to install, but both 8.2-R and 9.0-R failed install. 2) Use 9.0 installation CD to install FreeBSD 9.0 by using entire disk, 9.0 will boot. Then installing the original Windows by using recovery CD by using part of the disk drive, then try to install 9.0 again, 9.0 installer still cannot see the partition table although FDISK sees partition table has no problem at all. PS: The 9.0 seems preparing installation and partitioning the disk like Linux. This is no longer a BSD style :-( --- On Mon, 1/23/12, FreeBSD-gnats-submit@FreeBSD.org wrote: > From: FreeBSD-gnats-submit@FreeBSD.org > Subject: Re: bin/164399: 9.0 installer failures > To: "Jin Guojun" > Date: Monday, January 23, 2012, 7:50 AM > Thank you very much for your problem > report. > It has the internal identification `bin/164399'. > The individual assigned to look at your > report is: freebsd-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=164399 > > >Category:? ? ???bin > >Responsible:? ? freebsd-bugs > >Synopsis:? ? ???9.0 installer > failures > >Arrival-Date:???Mon Jan 23 07:50:09 UTC > 2012 > From FreeBSD at ShaneWare.Biz Sat Feb 4 11:00:29 2012 From: FreeBSD at ShaneWare.Biz (Shane Ambler) Date: Sat Feb 4 11:00:40 2012 Subject: kern/164144: [libc ] Crash on sending float/double values to std::ostringstream Message-ID: <201202041100.q14B0Sfk013230@freefall.freebsd.org> The following reply was made to PR kern/164144; it has been noted by GNATS. From: Shane Ambler To: bug-followup@FreeBSD.org, FreeBSD@Shaneware.biz Cc: Subject: Re: kern/164144: [libc ] Crash on sending float/double values to std::ostringstream Date: Sat, 04 Feb 2012 21:03:59 +1030 This can be closed. build/install world fixed the issue. For reference (main steps over 6 week period) - starting with a new machine I installed PCBSD 9.0-RC3-amd64 I used freebsd-update to update to #p1 found the issue used freebsd-update to install FreeBSD 9.0-RELEASE portupgrade -af issue seemed worse/more widespread. build/install world/kernel (with clang) fixed the issue Not sure yet if something is wrong with pcbsd-9.0rc3 or something was damaged/replaced along the way. Unsure if starting with pcbsd install had any effect on this. Using freebsd-update to upgrade from rc3 to release obviously didn't fix the damage. -- Shane Ambler FreeBSD (at) ShaneWare (dot) Biz From gavin at FreeBSD.org Sat Feb 4 11:15:44 2012 From: gavin at FreeBSD.org (gavin@FreeBSD.org) Date: Sat Feb 4 11:15:50 2012 Subject: kern/164455: Intel D815E(P)FV FreeBSD 7.2/8.2/9.0 not 6.4 kernel boot errors Message-ID: <201202041115.q14BFhqb031321@freefall.freebsd.org> Synopsis: Intel D815E(P)FV FreeBSD 7.2/8.2/9.0 not 6.4 kernel boot errors State-Changed-From-To: open->feedback State-Changed-By: gavin State-Changed-When: Sat Feb 4 10:27:49 UTC 2012 State-Changed-Why: To submitter: Can you please confirm that the machine does indeed work OK with 9.0, other than these two warning messages on boot? Responsible-Changed-From-To: freebsd-bugs->gavin Responsible-Changed-By: gavin Responsible-Changed-When: Sat Feb 4 10:27:49 UTC 2012 Responsible-Changed-Why: Track http://www.freebsd.org/cgi/query-pr.cgi?pr=164455 From phk at critter.freebsd.dk Sat Feb 4 15:10:10 2012 From: phk at critter.freebsd.dk (Poul-Henning Kamp) Date: Sat Feb 4 15:10:22 2012 Subject: kern/164763: Memory leak in VNET Message-ID: <201202041504.q14F4d0D011571@critter.freebsd.dk> >Number: 164763 >Category: kern >Synopsis: Memory leak in VNET >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 04 15:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Poul-Henning Kamp >Release: FreeBSD 9.0-STABLE i386 >Organization: >Environment: System: FreeBSD 9.0-STABLE FreeBSD 9.0-STABLE #2 r230977: Sat Feb 4 14:01:35 UTC 2012 root@d9:/usr/obj/nanobsd.d9/freebsd/9-stable/sys/D9KERN i386 >Description: Destroying a jail with attached vnet interfaces results in UMA keg leakage: Freed UMA keg was not empty (30 items). Lost 2 pages of memory. Freed UMA keg was not empty (203 items). Lost 1 pages of memory. hhook_vnet_uninit: hhook_head type=1, id=1 cleanup required hhook_vnet_uninit: hhook_head type=1, id=0 cleanup required >How-To-Repeat: ifconfig epair0 create jail -i -c vnet name=ext persist jexec ext ifconfig jail -r ext >Fix: >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Sat Feb 4 15:52:03 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat Feb 4 15:52:09 2012 Subject: kern/164144: [libc++] Crash on sending float/double values to std::ostringstream Message-ID: <201202041552.q14Fq3u6089796@freefall.freebsd.org> Synopsis: [libc++] Crash on sending float/double values to std::ostringstream State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Feb 4 15:51:46 UTC 2012 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=164144 From adsh at univ.kiev.ua Sat Feb 4 17:06:05 2012 From: adsh at univ.kiev.ua (Alexander Sheiko) Date: Sat Feb 4 17:06:45 2012 Subject: kern/164455: Intel D815E(P)FV FreeBSD 7.2/8.2/9.0 not 6.4 kernel boot errors In-Reply-To: <201202041115.q14BFhqb031321@freefall.freebsd.org> References: <201202041115.q14BFhqb031321@freefall.freebsd.org> Message-ID: <1965948205.20120204183229@univ.kiev.ua> Hello Gavin, Saturday, February 4, 2012, 1:15:43 PM, you wrote: gFo> To submitter: Can you please confirm that the machine does indeed work gFo> OK with 9.0, other than these two warning messages on boot? Yes. I use 9.0 with two Intel D815E(P)FV based servers. I have only these two warning messages on boot. All work good. -- WBR, Alexander Sheiko From tit at irk.ru Sat Feb 4 17:50:10 2012 From: tit at irk.ru (Alexander Titaev) Date: Sat Feb 4 17:50:17 2012 Subject: kern/164734: [quota] 9.0 quota not working [regression] Message-ID: <201202041750.q14HoAas092385@freefall.freebsd.org> The following reply was made to PR kern/164734; it has been noted by GNATS. From: Alexander Titaev To: bug-followup@FreeBSD.org, tit@irk.ru Cc: Subject: Re: kern/164734: [quota] 9.0 quota not working [regression] Date: Sun, 5 Feb 2012 02:12:19 +0900 =C7=E4=F0=E0=E2=F1=F2=E2=F3=E9=F2=E5, bug-followup. quota not working if system was upgraded from freebsd8 for fresh install all ok --=20 =D1 =F3=E2=E0=E6=E5=ED=E8=E5=EC, Alexander mailto:tit@irk.ru From jshupe at hermetek.com Sat Feb 4 21:00:22 2012 From: jshupe at hermetek.com (James Shupe) Date: Sat Feb 4 21:00:29 2012 Subject: misc/164773: 9.0 amd64 fails to boot on HP DL145 G3 Message-ID: <201202042054.q14KsBTm016503@red.freebsd.org> >Number: 164773 >Category: misc >Synopsis: 9.0 amd64 fails to boot on HP DL145 G3 >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 04 21:00:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: James Shupe >Release: 8.1p5 >Organization: HermeTek Network Solutions >Environment: FreeBSD alcor.hermetek.com 8.1-RELEASE-p5 FreeBSD 8.1-RELEASE-p5 #0: Tue Sep 27 16:49:00 UTC 2011 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I attempted to update a HP DL145 G3 server from 8.1p5 to 9.0p0 today and found that it hangs at "Root mount waiting for: usbus2". The issue was incurred after running: freebsd-update upgrade -r 9.0-RELEASE freebsd-update install shutdown -r now I tried various things to disable USB in the boot loader, like: set hint.usb.0.disabled=1 set hint.ehci.0.disabled=1 And also things like: set vfs.root.mountfrom=ufs:/dev/da0s1a set rootdev=disk0s1a but it seemed to ignore them and the result was the exact same each time. I've attached a working 8.1 /var/run/dmesg.boot along with the output of the 9.0 dmesg. Also, disabling ACPI causes 9.0 to panic and reboot. ---------------------------------------------------------------- Copyright (c) 1992-2010 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 8.1-RELEASE-p5 #0: Tue Sep 27 16:49:00 UTC 2011 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Dual-Core AMD Opteron(tm) Processor 2214 HE (2194.51-MHz K8-class CPU) Origin = "AuthenticAMD" Id = 0x40f12 Family = f Model = 41 Stepping = 2 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x1f real memory = 2147483648 (2048 MB) avail memory = 2047459328 (1952 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 MADT: Forcing active-low polarity and level trigger for SCI ioapic0 irqs 0-15 on motherboard ioapic1 irqs 16-31 on motherboard ioapic2 irqs 32-47 on motherboard kbd1 at kbdmux0 acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) unknown: I/O range not supported Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <32-bit timer at 3.579545MHz> port 0x508-0x50b on acpi0 cpu0: on acpi0 cpu1: on acpi0 acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 900 pcib0: on acpi0 pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pcib2: at device 13.0 on pci1 pci2: on pcib2 mpt0: port 0x2000-0x20ff mem 0xdfa10000-0xdfa13fff,0xdfa00000-0xdfa0ffff irq 16 at device 1.0 on pci2 mpt0: [ITHREAD] mpt0: MPI Version=1.5.13.0 mpt0: Capabilities: ( RAID-0 RAID-1E RAID-1 ) mpt0: 1 Active Volume (2 Max) mpt0: 2 Hidden Drive Members (10 Max) atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x1c00-0x1c0f at device 2.1 on pci0 ata0: on atapci0 ata0: [ITHREAD] ata1: on atapci0 ata1: [ITHREAD] isab0: at device 2.2 on pci0 isa0: on isab0 ohci0: port 0x1000-0x10ff mem 0xdfc05000-0xdfc05fff irq 10 at device 3.0 on pci0 ohci0: [ITHREAD] usbus0: on ohci0 ohci1: port 0x1400-0x14ff mem 0xdfc06000-0xdfc06fff irq 10 at device 3.1 on pci0 ohci1: [ITHREAD] usbus1: on ohci1 ehci0: port 0x1800-0x18ff mem 0xdfc07000-0xdfc07fff irq 10 at device 3.2 on pci0 ehci0: [ITHREAD] usbus2: EHCI version 1.0 usbus2: on ehci0 vgapci0: mem 0xde000000-0xdeffffff,0xdfc00000-0xdfc03fff,0xdf000000-0xdf7fffff irq 23 at device 4.0 on pci0 pcib3: irq 32 at device 6.0 on pci0 pci3: on pcib3 pcib4: irq 32 at device 7.0 on pci0 pci4: on pcib4 pcib5: irq 32 at device 8.0 on pci0 pci5: on pcib5 pcib6: irq 32 at device 9.0 on pci0 pci6: on pcib6 pcib7: irq 32 at device 10.0 on pci0 pci7: on pcib7 pcib8: at device 0.0 on pci7 pci8: on pcib8 bge0: mem 0xdfb10000-0xdfb1ffff,0xdfb00000-0xdfb0ffff irq 36 at device 4.0 on pci8 miibus0: on bge0 brgphy0: PHY 1 on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto bge0: Ethernet address: 00:18:71:87:00:37 bge0: [ITHREAD] bge1: mem 0xdfb30000-0xdfb3ffff,0xdfb20000-0xdfb2ffff irq 36 at device 4.1 on pci8 miibus1: on bge1 brgphy1: PHY 1 on miibus1 brgphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto bge1: Ethernet address: 00:18:71:87:52:d8 bge1: [ITHREAD] atrtc0: port 0x70-0x71,0x72-0x73 on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 uart0: [FILTER] uart0: console (9600,n,8,1) orm0: at iomem 0xc0000-0xc7fff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 ppc0: cannot reserve I/O port range powernow0: on cpu0 powernow1: on cpu1 Timecounters tick every 1.000 msec usbus0: 12Mbps Full Speed USB v1.0 usbus1: 12Mbps Full Speed USB v1.0 usbus2: 480Mbps High Speed USB v2.0 ugen0.1: <(0x1166)> at usbus0 uhub0: <(0x1166) OHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus0 ugen1.1: <(0x1166)> at usbus1 uhub1: <(0x1166) OHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus1 ugen2.1: <(0x1166)> at usbus2 uhub2: <(0x1166) EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus2 mpt0: mpt_read_cfg_page: Config Info Status 22 mpt0:vol0(mpt0:0:0): mpt_refresh_raid_vol: Failed to read RAID Vol Page(0) mpt0:vol0(mpt0:0:0): Settings ( ) mpt0:vol0(mpt0:0:0): 0 Members: mpt0:vol0(mpt0:0:0): RAID-0 - Optimal (mpt0:0:9): Physical (mpt0:0:9:0), Pass-thru (mpt0:1:0:0) (mpt0:0:9): Online (mpt0:0:2): Physical (mpt0:0:2:0), Pass-thru (mpt0:1:1:0) (mpt0:0:2): Online uhub0: 2 ports with 2 removable, self powered uhub1: 2 ports with 2 removable, self powered uhub2: 4 ports with 4 removable, self powered ugen2.2: at usbus2 uhub3: on usbus2 uhub3: 3 ports with 3 removable, self powered da0 at mpt0 bus 0 scbus0 target 1 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 300.000MB/s transfers da0: Command Queueing enabled da0: 75340MB (154296320 512 byte sectors: 255H 63S/T 9604C) SMP: AP CPU #1 Launched! Trying to mount root from ufs:/dev/da0s1a ugen1.2: at usbus1 ukbd0: on usbus1 kbd2 at ukbd0 ums0: on usbus1 ums0: 8 buttons and [XYZ] coordinates ID=0 ---------------------------------------------------------------- FreeBSD 9.0 boot output (captured via serial console): Copyright (c) 1992-2012 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 CPU: Dual-Core AMD Opteron(tm) Processor 2214 HE (2194.56-MHz K8-class CPU) Origin = "AuthenticAMD" Id = 0x40f12 Family = f Model = 41 Stepping = 2 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x1f real memory = 2147483648 (2048 MB) avail memory = 2038542336 (1944 MB) Event timer "LAPIC" quality 400 ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 MADT: Forcing active-low polarity and level trigger for SCI ioapic0 irqs 0-15 on motherboard ioapic1 irqs 16-31 on motherboard ioapic2 irqs 32-47 on motherboard kbd1 at kbdmux0 acpi0: on motherboard acpi0: Power Button (fixed) unknown: I/O range not supported Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <32-bit timer at 3.579545MHz> port 0x508-0x50b on acpi0 cpu0: on acpi0 cpu1: on acpi0 hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 950 Event timer "HPET" frequency 14318180 Hz quality 450 Event timer "HPET1" frequency 14318180 Hz quality 450 Event timer "HPET2" frequency 14318180 Hz quality 450 pcib0: on acpi0 pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pcib2: at device 13.0 on pci1 pci2: on pcib2 mpt0: port 0x2000-0x20ff mem 0xdfa10000-0xdfa13fff,0xdfa00000-0xdfa0ffff irq 16 at device 1.0 on pci2 mpt0: MPI Version=1.5.13.0 mpt0: Capabilities: ( RAID-0 RAID-1E RAID-1 ) mpt0: 1 Active Volume (2 Max) mpt0: 2 Hidden Drive Members (10 Max) atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x1c00-0x1c0f at device 2.1 on pci0 ata0: on atapci0 ata1: on atapci0 isab0: at device 2.2 on pci0 isa0: on isab0 ohci0: port 0x1000-0x10ff mem 0xdfc05000-0xdfc05fff irq 10 at device 3.0 on pci0 usbus0: on ohci0 ohci1: port 0x1400-0x14ff mem 0xdfc06000-0xdfc06fff irq 10 at device 3.1 on pci0 usbus1: on ohci1 ehci0: port 0x1800-0x18ff mem 0xdfc07000-0xdfc07fff irq 10 at device 3.2 on pci0 usbus2: EHCI version 1.0 usbus2: on ehci0 vgapci0: mem 0xde000000-0xdeffffff,0xdfc00000-0xdfc03fff,0xdf000000-0xdf7fffff irq 23 at device 4.0 on pci0 pcib3: irq 32 at device 6.0 on pci0 pci3: on pcib3 pcib4: irq 32 at device 7.0 on pci0 pci4: on pcib4 pcib5: irq 32 at device 8.0 on pci0 pci5: on pcib5 pcib6: irq 32 at device 9.0 on pci0 pci6: on pcib6 pcib7: irq 32 at device 10.0 on pci0 pci7: on pcib7 pcib8: at device 0.0 on pci7 pci8: on pcib8 bge0: mem 0xdfb10000-0xdfb1ffff,0xdfb00000-0xdfb0ffff irq 36 at device 4.0 on pci8 bge0: CHIP ID 0x00009003; ASIC REV 0x09; CHIP REV 0x90; PCI-X miibus0: on bge0 brgphy0: PHY 1 on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow bge0: Ethernet address: 00:18:71:87:00:37 bge1: mem 0xdfb30000-0xdfb3ffff,0xdfb20000-0xdfb2ffff irq 36 at device 4.1 on pci8 bge1: CHIP ID 0x00009003; ASIC REV 0x09; CHIP REV 0x90; PCI-X miibus1: on bge1 brgphy1: PHY 1 on miibus1 brgphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow bge1: Ethernet address: 00:18:71:87:52:d8 atrtc0: port 0x70-0x71,0x72-0x73 on acpi0 Event timer "RTC" frequency 32768 Hz quality 0 attimer0: port 0x40-0x43 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 Event timer "i8254" frequency 1193182 Hz quality 100 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 uart0: console (9600,n,8,1) sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 ppc0: cannot reserve I/O port range powernow0: on cpu0 powernow1: on cpu1 Timecounters tick every 1.000 msec usbus0: 12Mbps Full Speed USB v1.0 usbus1: 12Mbps Full Speed USB v1.0 usbus2: 480Mbps High Speed USB v2.0 ugen0.1: <0x1166> at usbus0 uhub0: <0x1166 OHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus0 ugen1.1: <0x1166> at usbus1 uhub1: <0x1166 OHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus1 ugen2.1: <0x1166> at usbus2 uhub2: <0x1166 EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus2 mpt0: mpt_read_cfg_page: Config Info Status 22 mpt0:vol0(mpt0:0:0): mpt_refresh_raid_vol: Failed to read RAID Vol Page(0) mpt0:vol0(mpt0:0:0): Settings ( ) mpt0:vol0(mpt0:0:0): 0 Members: mpt0:vol0(mpt0:0:0): RAID-0 - Optimal (mpt0:0:9): Physical (mpt0:0:9:0), Pass-thru (mpt0:1:0:0) (mpt0:0:9): Online (mpt0:0:2): Physical (mpt0:0:2:0), Pass-thru (mpt0:1:1:0) (mpt0:0:2): Online uhub0: 2 ports with 2 removable, self powered uhub1: 2 ports with 2 removable, self powered da0 at mpt0 bus 0 scbus0 target 1 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 300.000MB/s transfers da0: Command Queueing enabled da0: 75340MB (154296320 512 byte sectors: 255H 63S/T 9604C) SMP: AP CPU #1 Launched! Root mount waiting for: usbus2 >How-To-Repeat: Attempt to boot 9.0-GENERIC amd64 on a HP DL145 G3 machine. >Fix: I rolled back to 8.1 but am willing to provide any additional information you may need, as well as try patches on a spare server. >Release-Note: >Audit-Trail: >Unformatted: From nicolas.bourdaud at gmail.com Sun Feb 5 11:50:09 2012 From: nicolas.bourdaud at gmail.com (Nicolas Bourdaud) Date: Sun Feb 5 11:50:16 2012 Subject: kern/164793: 'write' system call violates POSIX standard Message-ID: <201202051142.q15Bgrh6041302@red.freebsd.org> >Number: 164793 >Category: kern >Synopsis: 'write' system call violates POSIX standard >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 05 11:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Nicolas Bourdaud >Release: FreeBSD 9.0-RELEASE >Organization: >Environment: GNU/kFreeBSD debian-bsd-amd64 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC x86_64 amd64 Intel(R) Core(TM)2 Duo CPU E7500 @ 2.93GHz GNU/kFreeBSD >Description: When a write() cannot transfer as many bytes as requested (because of a file limit), it fails instead of transferring as many bytes as there is room to write. This is a violation of the POSIX standard: http://pubs.opengroup.org/onlinepubs/007904975/functions/write.html >How-To-Repeat: fsize-lim.c.txt (attached) illustrates the problem. With a freebsd kernel, the output is: failed when adding 27 bytes after 59994 bytes (error: File too large) The expected output (like with a linux kernel) should be: added 6 bytes instead of 27 bytes after 59994 bytes failed when adding 27 bytes after 60000 bytes (error: File too large) >Fix: Patch attached with submission follows: #include #include #include #include #include #include #include #include #include #include #define TARGETSIZE 80000 #define LIMSIZE 60000 #define PATTSIZE 27 int main(void) { struct rlimit lim; int fd; ssize_t retc; size_t count = 0; const char pattern[PATTSIZE] = "Hello world!"; signal(SIGXFSZ, SIG_IGN); lim.rlim_cur = LIMSIZE; setrlimit(RLIMIT_FSIZE, &lim); fd = open("result.txt", O_WRONLY|O_CREAT|O_TRUNC, S_IRUSR|S_IWUSR); while (count < TARGETSIZE) { retc = write(fd, pattern, PATTSIZE); if (retc < PATTSIZE && retc > 0) fprintf(stderr, "added %zi bytes instead of %u bytes after %zu bytes\n", retc, PATTSIZE, count); else if (retc < 0) { fprintf(stderr, "failed when adding %u bytes after %zu bytes (error: %s)\n", PATTSIZE, count, strerror(errno)); break; } count += retc; } close(fd); return 0; } >Release-Note: >Audit-Trail: >Unformatted: From mailinglist at modernbiztonsag.org Sun Feb 5 12:46:31 2012 From: mailinglist at modernbiztonsag.org (Gabri Mate) Date: Sun Feb 5 12:46:38 2012 Subject: faxgetty 100% In-Reply-To: References: Message-ID: <20120205122656.GA9972@desktop.homelan> On 12:07 Wed 01 Feb , mailinglist@modernbiztonsag.org wrote: > Dear List, > > i've upgraded a 8.2-STABLE system to 9.0-RELEASE, recompiled every package > and now faxgetty uses 100% CPU and cannot handle incoming connections > (under 8.2-STABLE everything was working OK). > > Sample output from ktrace: > > 64551 faxgetty 0.000003 RET read 0 > 64551 faxgetty 0.000004 CALL gettimeofday(0x7fffffffd9c0,0) > 64551 faxgetty 0.000003 RET gettimeofday 0 > 64551 faxgetty 0.000004 CALL gettimeofday(0x7fffffffd980,0) > 64551 faxgetty 0.000003 RET gettimeofday 0 > 64551 faxgetty 0.044500 CALL > select(0x8,0x7fffffffdb50,0x7fffffffdad0,0x7fffffffda50,0x69f340) > 64551 faxgetty 0.000010 RET select 1 > 64551 faxgetty 0.000009 CALL gettimeofday(0x7fffffffd980,0) > 64551 faxgetty 0.000004 RET gettimeofday 0 > 64551 faxgetty 0.000006 CALL read(0x4,0x7fffffffd1a0,0x7ff) > 64551 faxgetty 0.000015 GIO fd 4 read 0 bytes > "" > 64551 faxgetty 0.000005 RET read 0 > 64551 faxgetty 0.000005 CALL gettimeofday(0x7fffffffd9c0,0) > 64551 faxgetty 0.000004 RET gettimeofday 0 > 64551 faxgetty 0.000008 CALL gettimeofday(0x7fffffffd980,0) > 64551 faxgetty 0.000005 RET gettimeofday 0 > 64551 faxgetty 0.000004 CALL > select(0x8,0x7fffffffdb50,0x7fffffffdad0,0x7fffffffda50,0x69f340) > 64551 faxgetty 0.000006 RET select 1 > 64551 faxgetty 0.000009 CALL gettimeofday(0x7fffffffd980,0) > 64551 faxgetty 0.000005 RET gettimeofday 0 > 64551 faxgetty 0.000005 CALL read(0x4,0x7fffffffd1a0,0x7ff) > 64551 faxgetty 0.000004 GIO fd 4 read 0 bytes > > And kstat: > USER CMD PID FD MOUNT INUM MODE SZ|DV R/W > uucp faxgetty 64551 text /usr 1133532 -r-sr-xr-x 550432 r > uucp faxgetty 64551 wd /var 6571017 drwxr-xr-x 512 r > uucp faxgetty 64551 root / 2 drwxr-xr-x 16384 r > uucp faxgetty 64551 0 /dev 29 crw-rw-rw- null rw > uucp faxgetty 64551 1 /dev 29 crw-rw-rw- null rw > uucp faxgetty 64551 2 /dev 29 crw-rw-rw- null rw > uucp faxgetty 64551 3 /var 6571376 -rw-r--r-- 17 w > uucp faxgetty 64551 4 /var 6571373 prw------- 0 r > uucp faxgetty 64551 5 /var 6571039 prw------- 0 w > uucp faxgetty 64551 6* local dgram fffffe00acbef870 <-> > fffffe001029a5a0 > uucp faxgetty 64551 7 /dev 56 crw-rw-rw- cuau0 rw > > I'm at a loss here and don't know where to continue debugging this error. > Does anyone experiencing the same problem? > > Best regards, > Mate > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" I've found a similar bugreport in the DragonFly BSD's issue tracker. http://bugs.dragonflybsd.org/issues/2028 http://bugs.dragonflybsd.org/projects/dragonfly/repository/revisions/010f86dc1259be3b29303bfc336532138acd077d Best regards, Mate From hag at linnaean.org Sun Feb 5 17:20:07 2012 From: hag at linnaean.org (Daniel Hagerty) Date: Sun Feb 5 17:20:14 2012 Subject: bin/164802: Can't destroy zfs snapshots in 8-stable w/o -R Message-ID: <20120205171111.48AB61FA@perdition.linnaean.org> >Number: 164802 >Category: bin >Synopsis: Can't destroy zfs snapshots in 8-stable w/o -R >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 05 17:20:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Daniel Hagerty >Release: FreeBSD 8.2-STABLE amd64 >Organization: I'll let you know when I find some >Environment: System: FreeBSD perdition.linnaean.org 8.2-STABLE FreeBSD 8.2-STABLE #1 r230385+ec72e00: Fri Jan 27 18:41:46 EST 2012 root@perdition.linnaean.org:/usr/src/sys/amd64/compile/LINNAEAN64 amd64 8.2-STABLE, git id bc00e44d, svn r230835, some irrelevant local modifications. >Description: With my most recent update, I am unable to destroy zfs snapshots without using -R. This makes me unhappy, since -R is a big hammer. This is also affect automatic deletion of local snapshots provided by the sysutils/zfs-periodic port I'm using; it (quite sanely) doesn't use -R. >How-To-Repeat: $ zfs snapshot pool@snapshot $ zfs destroy -v pool@snapshot will destroy pool@snapshot will reclaim 0 [Exit 1 ] $ zfs list pool@snapshot NAME USED AVAIL REFER MOUNTPOINT pool@snapshot 0 - 35K - >Fix: Patch that fixes the issue below; it's based on the git id bc00e44d/svn r230835 that I'm currently running. The issue is the use of an uninitialized variable "err". commit 6233abc650e37b32f247f1e6690c9bc96395a6e8 Author: Daniel Hagerty Date: Sun Feb 5 11:33:26 2012 -0500 zfs destroy foo@bar fails due to uninitialized var diff --git a/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c b/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c index 78037d4..6bf3267 100644 --- a/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c +++ b/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c @@ -1206,7 +1206,7 @@ zfs_do_destroy(int argc, char **argv) at = strchr(argv[0], '@'); if (at != NULL) { - int err; + int err = 0; /* Build the list of snaps to destroy in cb_nvl. */ if (nvlist_alloc(&cb.cb_nvl, NV_UNIQUE_NAME, 0) != 0) >Release-Note: >Audit-Trail: >Unformatted: From radiomlodychbandytow at o2.pl Sun Feb 5 18:10:07 2012 From: radiomlodychbandytow at o2.pl (Twoje Radio) Date: Sun Feb 5 18:10:13 2012 Subject: misc/164803: Unclear manual page for mount_unionfs(8) Message-ID: <201202051801.q15I1d3Q062249@red.freebsd.org> >Number: 164803 >Category: misc >Synopsis: Unclear manual page for mount_unionfs(8) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 05 18:10:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Twoje Radio >Release: >Organization: >Environment: >Description: http://www.freebsd.org/cgi/man.cgi?query=mount_unionfs&apropos=0&sektion=0&manpath=FreeBSD+9.0-RELEASE&arch=default&format=html "The traditional mode uses the same way as the old unionfs for backward compatibility" This text appears before any other mention about the way unionfs works. I think that majority of people reading this would like to know *what* does the option do first and historic reason later, if at all. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From brde at optusnet.com.au Sun Feb 5 18:54:54 2012 From: brde at optusnet.com.au (Bruce Evans) Date: Sun Feb 5 18:55:01 2012 Subject: kern/164793: 'write' system call violates POSIX standard In-Reply-To: <201202051142.q15Bgrh6041302@red.freebsd.org> References: <201202051142.q15Bgrh6041302@red.freebsd.org> Message-ID: <20120206050042.E2728@besplex.bde.org> On Sun, 5 Feb 2012, Nicolas Bourdaud wrote: >> Description: > When a write() cannot transfer as many bytes as requested (because of a file > limit), it fails instead of transferring as many bytes as there is room to > write. > > This is a violation of the POSIX standard: > http://pubs.opengroup.org/onlinepubs/007904975/functions/write.html FreeBSD's handling of the maxfilesize limits is similar, so it has the same bug. This affects many fileystems which copied the buggy code from ffs. (Both truncate() and write() fail if extending to or writing the full number of bytes would exceed the limit. This is correct for truncate(), but write() is required to creep up on the limit.) I think this is actually a bug in POSIX (XSI). Most programs aren't prepared to deal with short writes, and returning an error like truncate() is specified to is adequate. For regular files, most file systems in FreeBSD back out of writes after an i/o error, using ftruncate() (some truncation is necessary for security, since the place at which the error occurred is usually not known precisely), so the following bug in the upper layer rarely matters. From an old version of sys_generic.c, for writing (reading has a similar bug): % if ((error = fo_write(fp, &auio, td->td_ucred, flags, td))) { % /* XXX short write botch. */ % if (auio.uio_resid != cnt && (error == ERESTART || % error == EINTR || error == EWOULDBLOCK)) % error = 0; The XXX comment is only in my version. Here (auio.uio_resid != cnt) means that some i/o was done. In that case, write() is required to return the amount done, with no error, which is implemented by setting `error' to 0. But this is only done if `error' is one of ERESTART, EINTR or EWOULDBLOCK. At least the case of the most common error that is not one of these, namely EIO, is broken. The handling of the special 3 here is delicate: - ERESTART: hopefully can't happen, since if it happens then we should restart. This error is a non-error that in most cases means that the we handled a signal but are not returning with EINTR because SA_RESTART says to restart instead of returning. - EINTR: since we have this and not ERESTART, it is clearly correct to return, but if we did some i/o then we must return its amount and there is no way to return EINTR. - EWOULDBLOCK: similar to EINTR for a SIGALRM, but more precise. I guess this is here since it is the only other common error, and it is not really an error so failing for it would be obviously wrong (except when no i/o was done, EWOULDBLOCK = EAGAIN is the standard way to indicate this). The flag that controls backing out of writes is IO_UNIT. This is always set for write(2), and probably should be set unconditionally (so it shouldn't exist), since not setting it mainly asks for security holes and most cases are write(2) anyway. IO_UNIT means that the i/o is done as an "atomic unit". The semantics of "unit" probably includes doing all of it or none of it, so it would have to be broken to match the POSIX spec. > Patch attached with submission follows: > ... > int main(void) > { > struct rlimit lim; > int fd; > ssize_t retc; > size_t count = 0; > const char pattern[PATTSIZE] = "Hello world!"; > > signal(SIGXFSZ, SIG_IGN); > lim.rlim_cur = LIMSIZE; > setrlimit(RLIMIT_FSIZE, &lim); This is missing initialization of at least lim.rlim_max in lim. This gave the bizarre behaviour that when the program was statically linked, it failed for the first write, because the stack garbage for lim.rlim_max happened to be 0. Bruce From brde at optusnet.com.au Sun Feb 5 19:00:33 2012 From: brde at optusnet.com.au (Bruce Evans) Date: Sun Feb 5 19:00:44 2012 Subject: kern/164793: 'write' system call violates POSIX standard Message-ID: <201202051900.q15J0Wxo063755@freefall.freebsd.org> The following reply was made to PR standards/164793; it has been noted by GNATS. From: Bruce Evans To: Nicolas Bourdaud Cc: freebsd-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/164793: 'write' system call violates POSIX standard Date: Mon, 6 Feb 2012 05:54:50 +1100 (EST) On Sun, 5 Feb 2012, Nicolas Bourdaud wrote: >> Description: > When a write() cannot transfer as many bytes as requested (because of a file > limit), it fails instead of transferring as many bytes as there is room to > write. > > This is a violation of the POSIX standard: > http://pubs.opengroup.org/onlinepubs/007904975/functions/write.html FreeBSD's handling of the maxfilesize limits is similar, so it has the same bug. This affects many fileystems which copied the buggy code from ffs. (Both truncate() and write() fail if extending to or writing the full number of bytes would exceed the limit. This is correct for truncate(), but write() is required to creep up on the limit.) I think this is actually a bug in POSIX (XSI). Most programs aren't prepared to deal with short writes, and returning an error like truncate() is specified to is adequate. For regular files, most file systems in FreeBSD back out of writes after an i/o error, using ftruncate() (some truncation is necessary for security, since the place at which the error occurred is usually not known precisely), so the following bug in the upper layer rarely matters. From an old version of sys_generic.c, for writing (reading has a similar bug): % if ((error = fo_write(fp, &auio, td->td_ucred, flags, td))) { % /* XXX short write botch. */ % if (auio.uio_resid != cnt && (error == ERESTART || % error == EINTR || error == EWOULDBLOCK)) % error = 0; The XXX comment is only in my version. Here (auio.uio_resid != cnt) means that some i/o was done. In that case, write() is required to return the amount done, with no error, which is implemented by setting `error' to 0. But this is only done if `error' is one of ERESTART, EINTR or EWOULDBLOCK. At least the case of the most common error that is not one of these, namely EIO, is broken. The handling of the special 3 here is delicate: - ERESTART: hopefully can't happen, since if it happens then we should restart. This error is a non-error that in most cases means that the we handled a signal but are not returning with EINTR because SA_RESTART says to restart instead of returning. - EINTR: since we have this and not ERESTART, it is clearly correct to return, but if we did some i/o then we must return its amount and there is no way to return EINTR. - EWOULDBLOCK: similar to EINTR for a SIGALRM, but more precise. I guess this is here since it is the only other common error, and it is not really an error so failing for it would be obviously wrong (except when no i/o was done, EWOULDBLOCK = EAGAIN is the standard way to indicate this). The flag that controls backing out of writes is IO_UNIT. This is always set for write(2), and probably should be set unconditionally (so it shouldn't exist), since not setting it mainly asks for security holes and most cases are write(2) anyway. IO_UNIT means that the i/o is done as an "atomic unit". The semantics of "unit" probably includes doing all of it or none of it, so it would have to be broken to match the POSIX spec. > Patch attached with submission follows: > ... > int main(void) > { > struct rlimit lim; > int fd; > ssize_t retc; > size_t count = 0; > const char pattern[PATTSIZE] = "Hello world!"; > > signal(SIGXFSZ, SIG_IGN); > lim.rlim_cur = LIMSIZE; > setrlimit(RLIMIT_FSIZE, &lim); This is missing initialization of at least lim.rlim_max in lim. This gave the bizarre behaviour that when the program was statically linked, it failed for the first write, because the stack garbage for lim.rlim_max happened to be 0. Bruce From james at mansionfamily.plus.com Sun Feb 5 21:10:14 2012 From: james at mansionfamily.plus.com (James Mansion) Date: Sun Feb 5 21:10:20 2012 Subject: kern/164258: [mfi] mfi does not work with PERC5/i in AMD M350 motherboard Message-ID: <201202052110.q15LADjc096790@freefall.freebsd.org> The following reply was made to PR kern/164258; it has been noted by GNATS. From: James Mansion To: bug-followup@FreeBSD.org, james@mansionfamily.plus.com Cc: Subject: Re: kern/164258: [mfi] mfi does not work with PERC5/i in AMD M350 motherboard Date: Sun, 05 Feb 2012 21:06:43 +0000 I have csup'd to stable and deployed GENERIC - seems not to have the problem any more. From yanegomi at gmail.com Sun Feb 5 23:20:09 2012 From: yanegomi at gmail.com (Garrett Cooper) Date: Sun Feb 5 23:20:15 2012 Subject: bin/164808: system crontab doesn't support usernames with spaces in them Message-ID: <201202052318.q15NIxHc030756@red.freebsd.org> >Number: 164808 >Category: bin >Synopsis: system crontab doesn't support usernames with spaces in them >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 Feb 05 23:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Garrett Cooper >Release: 9.0-STABLE >Organization: iXsystems, Inc. >Environment: FreeBSD bayonetta.local 9.0-STABLE FreeBSD 9.0-STABLE #4 r230371M: Thu Jan 19 23:55:38 PST 2012 gcooper@bayonetta.local:/usr/obj/store/freebsd/stable/9/sys/BAYONETTA amd64 >Description: Doing some testing for FreeNAS, I discovered that the system crontab user field isn't properly tokenized, such that usernames with spaces in them are permitted. This isn't standard, but it's an issue with folks who are Windows users attempting to do tasks which need to be driven via the system crontab. Per user crontabs worked however. >How-To-Repeat: 1. Create a username with a space in it on a Windows domain (example: "AD\foo bar", where AD is the subdomain and the username is: "foo bar"). 2. Install FreeNAS 8.0.3 on a machine. 3. Join the FreeNAS box to the domain. 4. Create a cronjob with "AD\foo bar" that executes the command "echo hello > /tmp/iwuzhere". 5. "cat /tmp/iwuzhere" after the job has run [theoretically]. If successful, it should exist and say "hello". >Fix: >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Mon Feb 6 01:28:31 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Feb 6 01:28:42 2012 Subject: docs/164803: Unclear manual page for mount_unionfs(8) Message-ID: <201202060128.q161SUgM037926@freefall.freebsd.org> Synopsis: Unclear manual page for mount_unionfs(8) Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 6 01:28:12 UTC 2012 Responsible-Changed-Why: reclasssify http://www.freebsd.org/cgi/query-pr.cgi?pr=164803 From egrosbein at rdtc.ru Mon Feb 6 05:40:11 2012 From: egrosbein at rdtc.ru (Eugene Grosbein) Date: Mon Feb 6 05:40:17 2012 Subject: kern/139271: [pci] [patch] sysutils/hpacucli does not work on the amd64 kernel Message-ID: <201202060540.q165eAFL069958@freefall.freebsd.org> The following reply was made to PR kern/139271; it has been noted by GNATS. From: Eugene Grosbein To: bug-followup@FreeBSD.ORG Cc: Subject: Re: kern/139271: [pci] [patch] sysutils/hpacucli does not work on the amd64 kernel Date: Mon, 06 Feb 2012 12:36:29 +0700 This is a multi-part message in MIME format. --------------050604090701010107000907 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi! Here is same patch modified for 8.2-STABLE/amd64: COMPAT_IA32 replaced with COMPAT_FREEBSD32, no other changes. Work just fine with my HP SmartArray P400i. Please commit. Eugene Grosbein --------------050604090701010107000907 Content-Type: text/plain; name="pci_user.c.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="pci_user.c.diff" --- sys/dev/pci/pci_user.c.orig 2009-09-19 16:13:10.000000000 +0800 +++ sys/dev/pci/pci_user.c 2012-02-04 01:52:50.000000000 +0700 @@ -225,6 +225,49 @@ u_int32_t pi_data; /* data to write or result of read */ }; +#ifdef COMPAT_FREEBSD32 +struct pci_conf_old32 { + struct pcisel_old pc_sel; /* bus+slot+function */ + u_int8_t pc_hdr; /* PCI header type */ + u_int16_t pc_subvendor; /* card vendor ID */ + u_int16_t pc_subdevice; /* card device ID, assigned by + card vendor */ + u_int16_t pc_vendor; /* chip vendor ID */ + u_int16_t pc_device; /* chip device ID, assigned by + chip vendor */ + u_int8_t pc_class; /* chip PCI class */ + u_int8_t pc_subclass; /* chip PCI subclass */ + u_int8_t pc_progif; /* chip PCI programming interface */ + u_int8_t pc_revid; /* chip revision ID */ + char pd_name[PCI_MAXNAMELEN + 1]; /* device name */ + u_int32_t pd_unit; /* device unit number (u_long) */ +}; + +struct pci_match_conf_old32 { + struct pcisel_old pc_sel; /* bus+slot+function */ + char pd_name[PCI_MAXNAMELEN + 1]; /* device name */ + u_int32_t pd_unit; /* Unit number (u_long) */ + u_int16_t pc_vendor; /* PCI Vendor ID */ + u_int16_t pc_device; /* PCI Device ID */ + u_int8_t pc_class; /* PCI class */ + pci_getconf_flags_old flags; /* Matching expression */ +}; + +struct pci_conf_io32 { + u_int32_t pat_buf_len; /* pattern buffer length */ + u_int32_t num_patterns; /* number of patterns */ + u_int32_t patterns; /* pattern buffer (struct pci_match_conf_old32 *) */ + u_int32_t match_buf_len; /* match buffer length */ + u_int32_t num_matches; /* number of matches returned */ + u_int32_t matches; /* match buffer (struct pci_conf_old32 *) */ + u_int32_t offset; /* offset into device list */ + u_int32_t generation; /* device list generation */ + pci_getconf_status status; /* request status */ +}; + +#define PCIOCGETCONF_OLD32 _IOWR('p', 1, struct pci_conf_io32) +#endif + #define PCIOCGETCONF_OLD _IOWR('p', 1, struct pci_conf_io) #define PCIOCREAD_OLD _IOWR('p', 2, struct pci_io_old) #define PCIOCWRITE_OLD _IOWR('p', 3, struct pci_io_old) @@ -295,6 +338,69 @@ return(1); } +static int +pci_conf_match_old32(struct pci_match_conf_old32 *matches, int num_matches, + struct pci_conf *match_buf) +{ + int i; + + if ((matches == NULL) || (match_buf == NULL) || (num_matches <= 0)) + return(1); + + for (i = 0; i < num_matches; i++) { + if (match_buf->pc_sel.pc_domain != 0) + continue; + + /* + * I'm not sure why someone would do this...but... + */ + if (matches[i].flags == PCI_GETCONF_NO_MATCH_OLD) + continue; + + /* + * Look at each of the match flags. If it's set, do the + * comparison. If the comparison fails, we don't have a + * match, go on to the next item if there is one. + */ + if (((matches[i].flags & PCI_GETCONF_MATCH_BUS_OLD) != 0) + && (match_buf->pc_sel.pc_bus != matches[i].pc_sel.pc_bus)) + continue; + + if (((matches[i].flags & PCI_GETCONF_MATCH_DEV_OLD) != 0) + && (match_buf->pc_sel.pc_dev != matches[i].pc_sel.pc_dev)) + continue; + + if (((matches[i].flags & PCI_GETCONF_MATCH_FUNC_OLD) != 0) + && (match_buf->pc_sel.pc_func != matches[i].pc_sel.pc_func)) + continue; + + if (((matches[i].flags & PCI_GETCONF_MATCH_VENDOR_OLD) != 0) + && (match_buf->pc_vendor != matches[i].pc_vendor)) + continue; + + if (((matches[i].flags & PCI_GETCONF_MATCH_DEVICE_OLD) != 0) + && (match_buf->pc_device != matches[i].pc_device)) + continue; + + if (((matches[i].flags & PCI_GETCONF_MATCH_CLASS_OLD) != 0) + && (match_buf->pc_class != matches[i].pc_class)) + continue; + + if (((matches[i].flags & PCI_GETCONF_MATCH_UNIT_OLD) != 0) + && ((u_int32_t)match_buf->pd_unit != matches[i].pd_unit)) + continue; + + if (((matches[i].flags & PCI_GETCONF_MATCH_NAME_OLD) != 0) + && (strncmp(matches[i].pd_name, match_buf->pd_name, + sizeof(match_buf->pd_name)) != 0)) + continue; + + return(0); + } + + return(1); +} + #endif static int @@ -314,13 +420,21 @@ size_t confsz, iolen, pbufsz; int error, ionum, i, num_patterns; #ifdef PRE7_COMPAT +#ifdef COMPAT_FREEBSD32 + struct pci_conf_io32 *cio32; +#endif struct pci_conf_old conf_old; + struct pci_conf_old32 conf_old32; struct pci_io iodata; struct pci_io_old *io_old; struct pci_match_conf_old *pattern_buf_old; + struct pci_match_conf_old32 *pattern_buf_old32; + cio = NULL; + cio32 = NULL; io_old = NULL; pattern_buf_old = NULL; + pattern_buf_old32 = NULL; if (!(flag & FWRITE) && cmd != PCIOCGETBAR && cmd != PCIOCGETCONF && cmd != PCIOCGETCONF_OLD) @@ -332,11 +446,27 @@ switch(cmd) { #ifdef PRE7_COMPAT + case PCIOCGETCONF_OLD32: + cio32 = (struct pci_conf_io32 *)data; + cio = malloc(sizeof(struct pci_conf_io), M_TEMP, M_WAITOK); + cio->pat_buf_len = cio32->pat_buf_len; + cio->num_patterns = cio32->num_patterns; + cio->patterns = (void *)(uintptr_t)cio32->patterns; + cio->match_buf_len = cio32->match_buf_len; + cio->num_matches = cio32->num_matches; + cio->matches = (void *)(uintptr_t)cio32->matches; + cio->offset = cio32->offset; + cio->generation = cio32->generation; + cio->status = cio32->status; + cio32->num_matches = 0; + /* FALLTHROUGH */ + case PCIOCGETCONF_OLD: /* FALLTHROUGH */ #endif case PCIOCGETCONF: - cio = (struct pci_conf_io *)data; + if (cio == NULL) + cio = (struct pci_conf_io *)data; pattern_buf = NULL; num_patterns = 0; @@ -354,7 +484,7 @@ && (cio->generation != pci_generation)){ cio->status = PCI_GETCONF_LIST_CHANGED; error = 0; - break; + goto getconfexit; } /* @@ -364,7 +494,7 @@ if (cio->offset >= pci_numdevs) { cio->status = PCI_GETCONF_LAST_DEVICE; error = 0; - break; + goto getconfexit; } /* get the head of the device queue */ @@ -377,6 +507,11 @@ * didn't specify a multiple of that size. */ #ifdef PRE7_COMPAT +#ifdef COMPAT_FREEBSD32 + if (cmd == PCIOCGETCONF_OLD32) + confsz = sizeof(struct pci_conf_old32); + else +#endif if (cmd == PCIOCGETCONF_OLD) confsz = sizeof(struct pci_conf_old); else @@ -411,6 +546,11 @@ * updated their kernel but not their userland. */ #ifdef PRE7_COMPAT +#ifdef COMPAT_FREEBSD32 + if (cmd == PCIOCGETCONF_OLD32) + pbufsz = sizeof(struct pci_match_conf_old32); + else +#endif if (cmd == PCIOCGETCONF_OLD) pbufsz = sizeof(struct pci_match_conf_old); else @@ -420,13 +560,19 @@ /* The user made a mistake, return an error. */ cio->status = PCI_GETCONF_ERROR; error = EINVAL; - break; + goto getconfexit; } /* * Allocate a buffer to hold the patterns. */ #ifdef PRE7_COMPAT + if (cmd == PCIOCGETCONF_OLD32) { + pattern_buf_old32 = malloc(cio->pat_buf_len, + M_TEMP, M_WAITOK); + error = copyin(cio->patterns, + pattern_buf_old32, cio->pat_buf_len); + } else if (cmd == PCIOCGETCONF_OLD) { pattern_buf_old = malloc(cio->pat_buf_len, M_TEMP, M_WAITOK); @@ -452,7 +598,7 @@ */ cio->status = PCI_GETCONF_ERROR; error = EINVAL; - break; + goto getconfexit; } /* @@ -484,7 +630,11 @@ } #ifdef PRE7_COMPAT - if ((cmd == PCIOCGETCONF_OLD && + if ((cmd == PCIOCGETCONF_OLD32 && + (pattern_buf_old32 == NULL || + pci_conf_match_old32(pattern_buf_old32, + num_patterns, &dinfo->conf) == 0)) || + (cmd == PCIOCGETCONF_OLD && (pattern_buf_old == NULL || pci_conf_match_old(pattern_buf_old, num_patterns, &dinfo->conf) == 0)) || @@ -509,6 +659,38 @@ break; #ifdef PRE7_COMPAT + if (cmd == PCIOCGETCONF_OLD32) { + conf_old32.pc_sel.pc_bus = + dinfo->conf.pc_sel.pc_bus; + conf_old32.pc_sel.pc_dev = + dinfo->conf.pc_sel.pc_dev; + conf_old32.pc_sel.pc_func = + dinfo->conf.pc_sel.pc_func; + conf_old32.pc_hdr = dinfo->conf.pc_hdr; + conf_old32.pc_subvendor = + dinfo->conf.pc_subvendor; + conf_old32.pc_subdevice = + dinfo->conf.pc_subdevice; + conf_old32.pc_vendor = + dinfo->conf.pc_vendor; + conf_old32.pc_device = + dinfo->conf.pc_device; + conf_old32.pc_class = + dinfo->conf.pc_class; + conf_old32.pc_subclass = + dinfo->conf.pc_subclass; + conf_old32.pc_progif = + dinfo->conf.pc_progif; + conf_old32.pc_revid = + dinfo->conf.pc_revid; + strncpy(conf_old32.pd_name, + dinfo->conf.pd_name, + sizeof(conf_old32.pd_name)); + conf_old32.pd_name[PCI_MAXNAMELEN] = 0; + conf_old32.pd_unit = + (u_int32_t)dinfo->conf.pd_unit; + confdata = &conf_old32; + } else if (cmd == PCIOCGETCONF_OLD) { conf_old.pc_sel.pc_bus = dinfo->conf.pc_sel.pc_bus; @@ -575,9 +757,22 @@ cio->status = PCI_GETCONF_MORE_DEVS; getconfexit: +#ifdef COMPAT_FREEBSD32 + if (cmd == PCIOCGETCONF_OLD32) { + cio32->status = cio->status; + cio32->generation = cio->generation; + cio32->offset = cio->offset; + cio32->num_matches = cio->num_matches; + if (cio != NULL) + free(cio, M_TEMP); + } +#endif + if (pattern_buf != NULL) free(pattern_buf, M_TEMP); #ifdef PRE7_COMPAT + if (pattern_buf_old32 != NULL) + free(pattern_buf_old32, M_TEMP); if (pattern_buf_old != NULL) free(pattern_buf_old, M_TEMP); #endif --------------050604090701010107000907-- From bugmaster at FreeBSD.org Mon Feb 6 11:09:23 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 6 11:11:33 2012 Subject: Current problem reports containing patches Message-ID: <201202061109.q16B9LI0009756@freefall.freebsd.org> (Note: an HTML version of this report is available at http://people.freebsd.org/~linimon/studies/prs/prs_for_tag_patch.html .) S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/164814 glewis [PATCH] science/ovt: Update to 2.3_4 f ports/164813 glewis [PATCH] www/jericho-html: update to 3.2 o ports/164811 joerg [PATCH] devel/avr-gcc add missing pkg-plist entry o ports/164788 miwi [PATCH] multimedia/miro update to 4.0.5 o ports/164786 [PATCH] devel/simian: Re-adding the deleted port o ports/164785 sylvio [patch] devel/bglibs: linking with libbg causes time(3 f ports/164784 jgh [patch] x11-toolkits/swt-devel: (correction) update to f ports/164782 swills [PATCH] devel/p5-Log-Dispatchouli: add missing BUILD_D f ports/164781 swills [PATCH] devel/p5-Log-Dispatch-Array: add TEST_DEPENDS o ports/164779 bapt [PATCH] devel/p5-App-SD: add missing DEPENDS o ports/164778 clsung [PATCH] net/p5-Net-Jifty: add TEST_DEPENDS, use new fo o ports/164769 miwi [PATCH] databases/pecl-mongo: update to 1.2.7 f ports/164767 dhn [PATCH] Unbreak ports/net-im/centerim on 9.x/10.x f ports/164760 wen [PATCH] www/py-turbogears2: update to 2.1.4 o ports/164757 lme [PATCH] games/scummvm: update to 1.4.1 o ports/164756 gnome [PATCH] devel/gamin: add option for libinotify to fix f ports/164755 swills [PATCH] devel/p5-App-GitHub: add missing BUILD_DEPENDS o ports/164754 clsung [PATCH] net/p5-Net-GitHub: add missing DEPENDS, add TE o ports/164750 fluffy [PATCH] news/inn: Fix rc script f ports/164748 swills [PATCH] devel/p5-App-Cmd: add TEST_DEPENDS to enable t f ports/164747 swills [PATCH] textproc/p5-String-RewritePrefix: add TEST_DEP o ports/164746 sunpoet [PATCH] devel/p5-AnyMQ: add missing BUILD_DEPENDS to s f ports/164745 crees [PATCH] sysutils/ezjail should copy over ezjail.conf.s o ports/164732 perl [PATCH] lang/rakudo update to January 2012 release of f ports/164726 miwi [patch] www/phpbb3 update to 3.0.10 o kern/164724 [dtrace] [patch] Signal bug in Dtrace o ports/164719 sylvio [PATCH] irc/bip: update to fix CVE-2012-0806 o conf/164709 eadler [patch] [pc-sysinstall] add raidz3 support; permit 'ra o ports/164706 garga [PATCH] www/sarg: add PHP script install switch f ports/164701 sunpoet [PATCH] mail/p5-Email-Sender: update to 0.110003 o ports/164698 apache [patch] www/apache22: remove custom user creation in f o kern/164696 net [netinet] [patch] [panic] VIMAGE + carp panics the ker o ports/164692 skv [PATCH] devel/otrs: update to version 3.0.11 f ports/164685 sunpoet [PATCH] devel/scons: remove duplicated entry of egg-in o kern/164674 [patch] [libc] vfprintf/vfwprintf return error (EOF) o o bin/164672 [patch] mptutil(8): fix build error with DEBUG o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h s ports/164646 jgh [patch] www/davical: update to 1.0.2 f ports/164645 jgh [patch] devel/php-libawl: update to 0.51 o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o ports/164633 ruby [PATCH] devel/rubygem-json_pure: update to 1.6.5 o ports/164632 ruby [PATCH] devel/rubygem-json: update to 1.6.5 o ports/164625 lme [PATCH] port net-mgmt/icinga to support IDOUtils o ports/164618 lx [patch] textproc/scim: building with clang failed o ports/164609 sylvio [patch] print/scribus: update to version 1.4.0 o bin/164604 [patch] tftp(1): TFTP pxeboot: should use root-path pr f ports/164597 [patch] security/py-pycrypto: update to 2.5 o ports/164588 tobez [PATCH] databases/p5-Text-Query-SQL: add TEST_DEPENDS f ports/164586 [PATCH] www/trac-gitplugin: [tarball refreshed from gi o ports/164583 lev [PATCH] devel/subversion: chown: /home/svn/repos/dav: f ports/164577 rm [PATCH] x11/terminator: update WWW p bin/164570 maxim [patch] pom(6) wrong usage message o ports/164566 skv [patch] databases/pgbouncer: update to latest version o bin/164561 portmgr [patch] pkg_version(1): update references to INDEX-8 f f ports/164550 sunpoet [PATCH] graphics/p5-Image-ExifTool: update to 8.77 o ports/164546 clsung [PATCH] databases/p5-SQL-Interp: add missing BUILD_DEP o ports/164544 miwi [patch] x11-servers/xorg-server: prune unused deps o ports/164542 bf [patch] lang/sbcl: enable SB-CONCURRENCY-TEST::MAILBOX f ports/164540 miwi [PATCH] x11-themes/icons-tango: Fix fetching f ports/164539 miwi [patch] Update for audio/libmtp (from 1.0.6 to 1.1.1) o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP o bin/164535 [patch] ps(1) truncates command to screen size even wh f ports/164529 scheidell [PATCH] security/swatch doesn't always find running pr f ports/164522 sunpoet [PATCH] net/p5-XML-RPC-Fast: update to 0.8 f ports/164515 sunpoet [PATCH] net/p5-Net-SFTP-Foreign: update to 1.69 f ports/164512 sunpoet [PATCH] devel/p5-App-Cmd: update to 0.314 o ports/164508 lev [patch] port devel/subversion Book URLs are invalid o ports/164504 gnome [patch] net/opal3: patch configure to recognize amd64 o ports/164502 [patch] news/sabnzbdplus not starting on boot o ports/164500 gnome [patch] Build x11-toolkits/libwnck without startup_not o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu o ports/164488 timur [patch] devel/talloc,devel/tdb: fix compile with MAKE_ o ports/164477 clsung [PATCH] net/py-kombu: update to 2.0.0 f ports/164463 [PATCH] mail/qpopper: fix RC_SUBR o ports/164458 clsung [PATCH] databases/p5-DBIx-Sunny: adding missing TEST_D o ports/164449 gnome [PATCH] finance/gnucash update to 2.4.9 f ports/164430 tabthorpe [PATCH] www/phpsysinfo: Add dom to USE_PHP o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164418 miwi [PATCH] shells/mksh doesn't build with Clang. o ports/164416 kuriyama [PATCH] textproc/iso8879: Fix on 9 and 10 o ports/164413 rafan [PATCH] converters/p5-Encode: add patch to fix tests o ports/164403 portmgr [patch] Mk/bsd.licenses.mk: bring back --hline o ports/164384 lme [patch] games/scummvm update to 1.4.1 o bin/164378 [patch] improvement of pkg_info(1) warning o kern/164369 adrian [if_bridge] [patch] two STP bridges have the same id o ports/164357 skv [PATCH] databases/p5-DBIx-ContextualFetch: add TEST_DE o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak p ports/164349 x11 [PATCH] x11/libXinerama :1 LeftOf or Above :0 mouse is o ports/164341 lev [patch] sysutils/graid5: remove post-deinstall target o ports/164321 timur [PATCH] devel/p5-DateTime-Format-Natural: Add TEST_DEP o ports/164320 skv [PATCH] devel/p5-Context-Preserve: Add TEST_DEPENDS to o bin/164317 [patch] write(1): add multibyte character support p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method f ports/164311 dumbbell [PATCH] Update security/pam_google_authenticator to 20 o bin/164302 [patch] mail(1) expands aliases beyond # o ports/164298 acm [PATCH] Make print/foomatic-filters not eat PS files o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o ports/164269 pgollucci [patch] update www/redmine to 1.3.0 o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o ports/164259 skv [PATCH] textproc/p5-PPIx-Utilities: Add TEST_DEPENDS t f ports/164253 lwhsu [PATCH] databases/cassandra: update to 1.0.7 f ports/164243 miwi [PATCH] emulators/dosbox: Fix build with clang o ports/164239 gecko [PATCH] mail/thunderbird: crash with nss_ldap o kern/164238 eadler [patch] NULL pointer dereference in setusercontext (li f ports/164237 wxs [PATCH] security/suricata: overwrite files from libhtp o ports/164235 vd [patch] graphics/vigra: update to 1.8.0 o docs/164228 danger [handbook] [patch] Adding raid3 to handbook o ports/164219 wen [PATCH] databases/p5-DBIx-NoSQL: Add missing BUILD_DEP f ports/164218 [patch] sysutils/fusefs-kmod: update mount_fusefs for o docs/164217 eadler [patch] correct synchronize flag in setfacl(1) manpage o kern/164210 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164209 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164208 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164207 portmgr [PATCH] bsd.port.mk includes top-level Makefile.inc fr o misc/164206 [PATCH] buildworld WITHOUT_OPENSSL stops at lib/libarc p bin/164192 emaste [patch] wpa_supplicant(8): Fix typo intr-by SVN r21473 o ports/164190 mm [PATCH] devel/liboil: Fix build with clang o ports/164187 gnome [PATCH] net/avahi etc should use USERS f ports/164181 [PATCH] www/xxxterm: Fix ssl_ca_file path and style p bin/164139 eadler [patch] bsdgrep(1): remove duplicate line from usage o ports/164112 clsung [PATCH] archivers/p5-Archive-Any: add TEST_DEPENDS and o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number f ports/164079 sunpoet [PATCH] graphics/p5-SVG-Graph: update to 0.04 f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i f ports/164046 bapt [PATCH] sysutils/kkbswitch: %%DOCSDIR%%/common is syml f ports/164045 bapt [PATCH] java/dbvis: prevent dirrm beginning with a / p bin/164042 emaste [PATCH] tzsetup(8): Fix VERBOSE to work with new UTC m p bin/164041 emaste [PATCH] tzsetup(8): Remove unnecessary code duplicatio p bin/164039 emaste [PATCH] tzsetup(8): Don't write /var/db/zoneinfo eithe p bin/164038 wollman [PATCH] tzsetup(8): Increase buffer size to hold error o ports/164033 lev [patch] port devel/subversion ports change pkg-install f ports/164029 [PATCH] graphics/bmeps fix build with databases/gdbm f ports/164012 scheidell [patch] x11/dmenu version upgrade 4.5 and Xft support o ports/164010 timur [patch] net/samba36: Split up samba scripts into more o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/163978 [hwpmc] [patch] Loading hwpmc with an unknown cpuid ca o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de f ports/163924 miwi [PATCH] archivers/xarchiver, warning when delete deskt o ports/163909 bf [MAINTAINER-UPDATE][PATCH] please update math/lapacke o ports/163908 fluffy [patch] filesystem based race condition in multimedia/ f ports/163896 sunpoet [PATCH] devel/p5-Capture-Tiny: update to 0.15 o ports/163884 nivit [Patch]databases/py-sqlalchemy:strict depend on py-MyS o ports/163864 yzlin [PATCH]sysutils/pciutils: update to 3.1.8 o bin/163863 [patch] adduser(8): confusing usr.sbin/adduser output f ports/163860 sunpoet [PATCH] archivers/unrar-iconv: fix 'make patch' o bin/163847 [PATCH] German filename conversion scheme for mount_nw f ports/163829 gahr [patch] graphics/freeglut -- update to 2.8.0 o conf/163828 [patch] /etc/periodic/daily/110.clean-tmps tries to un o conf/163789 eadler [patch] Make etc/Makefile more conflict resistant o conf/163778 imp [patch] Conditionalize tools in the source tree o bin/163775 [patch] sfxge(4) explitly sets -g -DDEBUG=1; infects k o bin/163773 eadler [patch] pc-sysinstall(8): pc-sysinstall/backend.sh - c o bin/163772 [patch] nvi(1) - don't mask O_DIRECTORY symbol o bin/163769 [patch] fix zpool(8) compile time warnings o misc/163768 [patch] [boot] fix non-ficl compile time warnings o ports/163762 decke [PATCH] multimedia/mythtv still thinks it's 0.24.0 o ports/163751 lme [PATCH] games/scummvm: chase audio/fluidsynth shlib ve o docs/163742 doc [patch] document failok mount(8) option o ports/163738 clsung [PATCH] security/zxid: update to 1.02 o ports/163725 swills [PATCH] emulators/open-vm-tools: Update to latest vers o kern/163724 wireless [mwl] [patch] NULL check before dereference f ports/163718 dinoex [PATCH] graphics/jasper: security updates for CVE-2011 o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c f ports/163704 gnome [PATCH] devel/ptlib26: disable ODBC by default f ports/163684 olgeni [PATCH] lang/clojure-mode.el: update to 1.11.5 o ports/163675 clsung [PATCH] devel/buildbot: update to 0.8.5 o ports/163674 clsung [PATCH] devel/buildbot-slave: update to 0.8.5 p conf/163668 jh [patch] fstab[5] 'failok' option has no effect on miss o ports/163666 jgh [PATCH] Add user "gerrit" to UIDs and GIDs f ports/163655 miwi [PATCH] games/odamex update to 0.5.6 o ports/163647 clsung [patch] sysutils/xosview: does not build on 10-CURRENT o ports/163643 xride [patch] astro/wmspaceweather: URL changed + two minor f ports/163605 olgeni [PATCH] net-im/ttytter: update to 1.2.05 a ports/163601 eadler [maintainer] [patch] science/hdf-java f ports/163595 eadler [patch] science/hdf5-18 Update to 1.8.8 a ports/163592 dinoex [PATCH] graphics/libungif: mark conflict with giflib a ports/163591 dinoex [PATCH] graphics/giflib: mark conflicts with libungif o ports/163590 sylvio [PATCH] devel/cdialog: update to 1.1.20111020 o ports/163583 [patch] x11/kdelibs3 conflicts with openssl-1 f ports/163555 danfe [PATCH] irc/bitchx is out of date and BitchX 1.2 does a ports/163550 dinoex [patch] ftp/vsftpd{,-ext}: respect CC/CFLAGS/STRIP uni p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi o ports/163519 gnome [patch] graphics/gimp-app: unbreak build with clang=20 o ports/163518 gnome [patch] x11/babl: unbreak SSE build with clang o bin/163515 [patch] b64encode(1)/uuencode(1) create files with no o ports/163514 itetcu [PATCH] ports-mgmt/tinderbox-devel: Report the proper o ports/163511 portmgr [PATCH] bsd.port.mk: Allow existing users on system to o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands a java/163456 java [patch] java/openjdk6: build and distribute open timez o ports/163454 gecko [patch] www/firefox-beta: unbreak with libc++ o kern/163450 [puc] [patch] new pci quad serial card supported by pu o ports/163443 gnome [patch] graphics/poppler: unbreak with libc++ o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o ports/163306 itetcu [patch] upgrade sysutils/nut to 2.6.2 and fix misc por o ports/163291 doceng [PATCH] print/ghostscript9: Automatically disable X11 f ports/163267 scf [PATCH] security/pidgin-encryption: update to 3.1 o ports/163248 xride [patch] audio/py-ao: respect CC o ports/163234 sem [patch] devel/ptypes: unbreak build with clang o ports/163232 bf [patch] math/metis: respect CC o ports/163226 obrien [patch] vietnamese/libviet: respect CC/CFLAGS o bin/163219 gtetlow [patch] man: fix 'zcat: standard input is a terminal - o ports/163218 sbz [PATCH] security/cracklib: update to 2.8.18 o ports/163215 acm [PATCH] devel/bullet: fix build on some configurations o ports/163202 lippe [PATCH] devel/p5-ExtUtils-Manifest: update to 1.60 f ports/163201 sunpoet [PATCH] mail/p5-SES: update to release of 2011-11-14 o ports/163194 lev [PATCH] devel/subversion: Get the SVN book from the 1. o docs/163177 doc [patch] man page for gnats(7) incorrectly lists gnatsd o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o ports/163129 clsung [PATCH] net/p5-Net-GitHub: update to 0.40_04 a ports/163066 eadler [patch] bsd.database.mk: Allow db5 to be selected by U o ports/163063 python [PATCH] fix for ports-mgmt/portbuilder o ports/163056 miwi [patch] audio/xmms2: update to 0.8 o ports/163055 mm [patch] multimedia/ffmpeg: broken without /usr/bin/per o bin/163053 [patch] camcontrol(8): 'camcontrol nego -D' is ignored o docs/163043 doc [patch] gsched.8: remove reference to gsched_as a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob a ports/162992 swills [maintainer] [patch] devel/rubygem-sprockets: update t o ports/162983 miwi [PATCH] databases/unixODBC update to 2.3.1 p bin/162930 gabor [patch] bsdgrep(1): match gnugrep(1) in exit code when o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ o ports/162920 miwi [patch] respect STRIP/LDFLAGS consistently across untr o ports/162912 mm [patch] lang/tcl86: unbreak build with clang o misc/162866 [build] [patch] extract revision from hg in newvers.sh p kern/162789 glebius [PATCH] if_clone may create multiple interfaces with t o ports/162768 mm [PATCH] ftp/proftpd port update which fixes mod_sql_my o docs/162765 doc [patch] lseek(2) may return successful although no see o ports/162755 gnome [PATCH] graphics/evince: segfault on showing propertie o ports/162726 miwi [PATCH] update graphics/box to 0.3.0 and graphics/boxe o ports/162721 portmgr [PATCH] bsd.port.mk: config target should complain if o ports/162694 kwm [patch] [update] multimedia/pitivi to 0.15.0 o ports/162686 bf atlas build tries to use 64 bit fortran compiler on AM o bin/162670 gabor [patch] libkiconv doesn't work with iconv() in libc o bin/162661 bz [patch] ftp(8) is giving up on IPv6 o ports/162595 xride [patch] audio/py-ogg: respect CC f ports/162529 edwin [patch] lang/tolua{,50}: respect CXX f ports/162514 clsung [PATCH] www/p5-HTML-Selector-XPath: update to 0.11 o ports/162510 nork [patch] Upgrade graphics/OpenEXR to version 1.7.0 p bin/162486 delphij [patch] Cannot mount filesystem formatted by newfs_msd f ports/162439 olgeni [PATCH] lang/abcl: update to 1.0.0 and update WWW o ports/162414 cy [PATCH] sysutils/syslog-ng: misc. fixes o ports/162397 portmgr [patch] Mk/bsd.port.mk: add new target add-plist-build o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen f ports/162386 eadler [PATCH] Bring back games/tome o ports/162381 sunpoet [PATCH] audio/icecast2 upgrade to kh development branc o kern/162352 net [patch] Enhancement: add SO_PROTO to socket.h o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib p docs/162265 doc [Patch] ipfw.8: Documentation clarity a ports/162264 cy [patch] unbreak net/tridiavnc for non-i386 p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 o kern/162201 zec [ip] [patch] multicast forwarding cache hash always al o ports/162191 ashish [PATCH] editor/emacs: VC doesn't work with subversion f ports/162188 mm [PATCH] mail/postgrey: add rc script options o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o kern/162174 [kernel] [patch] rman_manage_region() error return pat f ports/162080 apache [PATCH] devel/apr1: Improved decision IPv6 o bin/162064 [patch] Loop in fetch(1) when sending SIGINFO after th f ports/162050 sumikawa [patch] misc/lv directory opening problem fix o ports/162042 bapt [patch] multimedia/libass: add HARFBUZZ option o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o bin/161986 [patch] netstat(1): Interface auto-width in "netstat - o ports/161984 autotools [patch] devel/libtool: don't split INFO doc (install) o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o ports/161875 roam [PATCH] www/p5-WWW-Curl: update to 4.15 o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup p conf/161847 gavin [patch] reaper of the dead: remove ancient devfs examp o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o bin/161807 fs [patch] add option for explicitly specifying metadata o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico p bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks o www/161672 gavin [patch] add support for 10.x to query-pr o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/161421 gecko [patch] www/firefox: use libevent2 o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li f ports/161406 [PATCH] net-mgmt/netdisco: update to 1.1 o bin/161401 [patch] have service(8) run scripts with the same reso o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161185 kwm [patch] Remove unnecessary graphics/cairo dependency f p misc/161175 eadler [tools] [patch] uninitialized variables on some regres o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 lippe [patch] misc/ttyrec: don't depend on pty(4), use openp o bin/161048 sysinstall [patch] bsdinstall(8): should run a concurrent shell o o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o bin/161028 [PATCH] service(8) -- Minor improvements o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO f ports/161002 philip [patch] devel/lua-alien: update to 0.5.1 o ports/160969 [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 x11 [patch] ports/x11/libXi broken manpages o ports/160963 x11 [patch] x11/bigreqsproto: disable specs a ports/160941 swills [PATCH] emulators/open-vm-tools: upgrade to release 20 o ports/160930 [PATCH] devel/gdb: HW watchpoint support for amd64 o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o conf/160892 eadler [network.subr] [patch] add vboxnet[0-9]* to noafif lis o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o bin/160834 [patch] grep(1): fixes for POSIX conformance a ports/160816 roam [PATCH] security/stunnel: update to 4.44 o ports/160798 philip [PATCH] games/wesnoth-devel: update to latest version p docs/160775 delphij [patch] provide a better example for passwordless gues o ports/160686 skv [PATCH] www/p5-HTTP-BrowserDetect: update to 1.28 o ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 f ports/160657 eadler [patch] devel/distcc: adding pump mode support to dist o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 o bin/160596 eadler [patch] tzsetup(8): Use libodialog when doing tzsetup o ports/160593 mm [PATCH]devel/libevent2: respect USE/WITH_OPENSSL_PORT o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x f ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o ports/160492 bf [patch] lang/ocaml: respect CC o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries p ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn o misc/160463 eadler [build] [patch] fix build dependency for dtrace module o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo f ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i s docs/160369 gjb [patch] update sample simple makefile with new convent o bin/160295 [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o ports/160205 skv [PATCH] sysutils/hyperic-sigar: update to 1.6.4 o ports/160189 lippe [PATCH] textproc/p5-Excel-Template: update to 0.33 f ports/160034 delphij [PATCH] net/istgt: Don't enforce run before mountcritr o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159947 vd [patch] databases/gnats4 set default index type to pla o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 o bin/159833 camcontrol(8): [patch] add ATA security options to cam o ports/159812 apache [PATCH] www/apache20,www/apache22 Strip Binaries o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l a bin/159665 rik [patch] ctm(1) does not work with bzip2 or xz compress o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator f ports/159636 [patch] net/freevrrpd: RC script for freevrrpd that co o conf/159625 [PATCH] replace hardcoded /usr/local with a variable i o ports/159613 gnome [PATCH] misc/gnomehier: use dirrmtry for PREFIX/share/ o usb/159611 miwi [PATCH] USB stick extrememory Snippy needs quirks o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re o docs/159551 doc [patch] ports(7) makes no mention of LOCALBASE o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() o docs/159307 doc [patch] lpd smm chapter unconditionally installed o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/159279 [headers] [patch] __FreeBSD_cc_version in includes o kern/158376 [udf] [patch] The UDF file system under counts the num o bin/158363 [patch] partial restore problem in restore(8) o ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/158351 [cam] [patch] missing #includes in p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o ports/158054 matusita [PATCH] japanese/ja-skk-jisyo: update to 201106 o kern/157946 [patch] 'BSM conversion requested for unknown event' g o conf/157903 [devd.conf] [patch] automated kldload for USB class de f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o conf/157466 [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157337 doc [handbook] [patch] Indentation changes to network serv o docs/157316 doc [patch] update devstat(9) man page o docs/157234 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin o ports/157207 skv [PATCH] textproc/p5-XML-LibXML: package scripts should a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o ports/157045 skv [patch] devel/p5-Devel-Leak: sv_dump() fix o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces f ports/156897 edwin [PATCH] net/freenet6: update pkg-message o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o bin/156768 [patch] sockstat(1): missing spaces between long field o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156637 [headers] [patch] sys/types.h can't be included when _ p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156423 kib [kqueue] [patch] Please add kqueue support for /dev/kl o kern/156358 jkim [patch] make amdtemp.c compatible with Llano/Brazos pl o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o ports/156015 sem [PATCH] dns/unbound add MUNIN-plugin o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o ports/155896 adrian [PATCH] sysutils/mkfwimage: use LOCAL as MASTER_SITES o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o ports/155890 tabthorpe [patch] Mk/bsd.licenses.mk: don't leave temporary file o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an o bin/155567 [patch] cvs(1): add -r tag:date to CVS o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o ports/155329 skv [PATCH] net-im/p5-DJabberd: update to 0.84 o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o kern/154915 [libc] [patch] Force stdio output streams to line-buff o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o bin/154570 [patch] gvinum(8) can't be built as part of the kernel o conf/154554 rc [rc.d] [patch] statd and lockd fail to start f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o conf/154484 [patch] request for new functionality. jail zfs datase o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy a ports/154455 roam [patch] security/stunnel: add aloha sendproxy support f ports/154431 sobomax [patch] ports/Tools/scripts: python scripts use bad sh p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o ports/154352 bsam [patch] multimedia/xmms: update using desktop and mime f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l f ports/154254 rene [patch] asmail imap login broken with gmail at al. o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o ports/154241 philip [patch] games/wesnoth: move USE_* under bsd.port.optio f ports/154209 python [PATCH] lang/python: Install symlink for ptags o conf/154062 net [vlan] [patch] change to way of auto-generatation of v p bin/154042 delphij [patch] fix several rtprio(1) issues o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to f ports/153810 [PATCH] Fix usb_interrupt_read() in devel/libusb for f o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153567 acm [PATCH] x11/fpc-x11: doesn't respect localbase o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o bin/153527 [patch] wake(8) should use sysexits.h o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o ports/153429 [patch] Fix explicite uses of unzip in ports o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out f ports/153231 ohauer [PATCH] net-mgmt/nrpe2 enable ssl by default p bin/153206 maxim [patch] netstat(1): "netstat -sz" doesn't reset any IP o misc/153157 [build] [patch] Add support for generating userland de o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error a docs/153012 doc [patch] iostat(8) requires an argument to -c option o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o ports/152847 clsung [patch] port/buildbot-slave could use a startup script o ports/152838 yzlin [PATCH] www/suphp: Add support for lighttpd o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152792 [acpica] [patch] move temperature conversion macros to o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p o kern/152485 arundel [patch] seek offset for /dev/null(4) and /dev/zero(4) o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o ports/152224 python [patch] fix installed permissions for lang/python27 o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152131 script(1): [patch] Useless code in script.c (part 1) o bin/152084 [patch] pw(8) does not allow @ or ! in gecos f ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o bin/151937 [patch] netstat(1) utility lack support of displaying o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr p bin/151866 des [libfetch] [patch] closing the cached FTP connection o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/151600 [patch] route(8) does not always flush stdout o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o bin/151186 [patch] routed(8) turns RIP off if just one network ca o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl p bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o bin/150771 [patch] csup(1) GNUmakefile missing p conf/150752 dougb [rc.subr] [patch] be not needed to eval $_pidcmd on re o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of f ports/150594 eadler [patch] graphics/dri: add support for ATI Radeon HD 42 o www/150553 www [patch] update Russian "FreeBSD Community" page o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the o kern/150251 net [patch] [ixgbe] Late cable insertion broken o bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o kern/150206 [patch] nmount(2): can't switch root partition to rw u o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a a stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o bin/149972 [patch] pw(8): usermod -u should error o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 itetcu [PATCH] mail/dspam: important cleanup p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label p kern/149800 eadler [fdc] [patch] "driver bug: Unable to set devclass (dev p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o www/149446 www [patch] improve misleading title of "report a bug" o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o kern/149173 fs [patch] [zfs] make OpenSolaris installa o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o gnu/143254 [patch] groff(1) build in base system does not honor P p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances p conf/143084 brooks [jail] [patch]: fix rc.d/jail creating stray softlinks o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip p kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o docs/142917 arundel [patch] top(1) man page does not include information a o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o ports/142743 [PATCH] devel/cross-binutils: installed by *-rtems-gcc a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) p docs/142367 roam [patch] wlan(4) does not document requirement for kern o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- p kern/141934 eadler [cam] [patch] add support for SEAGATE DAT Scopion 130 o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o kern/141682 [libc] [patch] Faster version of strncpy(3) o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o kern/141655 [sio] [patch] Serial Console failure on Dell servers o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot f ports/140939 rea [patch] security/vuxml: fix and extend files/newentry. o kern/140728 jfv [em] [patch] Fast irq registration in em driver a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- p conf/140650 cperciva [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p docs/140457 doc [patch] Grammar fix for isspace(3) o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum p kern/140416 delphij [mfi] [patch] mfi driver stuck in timeout o ports/140364 ruby [patch] ports-mgmt/portupgrade-devel: #! line substitu o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n a bin/140309 bapt [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/140185 [patch] expand_number(3) does not detect overflow in n o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o ports/139872 [PATCH] ports-mgmt/porttools: improve port's directory o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o bin/139389 pluknet [patch] Change top(1) to display thread IDs o bin/139346 net [patch] arp(8) add option to remove static entries lis a bin/139314 [patch] install(1): install -d reports success on fail p kern/139312 delphij [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o kern/139080 [libc] [patch] closelog() can close negative file desc a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o ports/137958 ruby [patch] ports-mgmt/portupgrade fails with recursive de o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow p bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o conf/137671 [patch][request] enhance beastie.4th: possibility to d s gnu/137665 [patch] dialog(1) goes into tight loop on encountering p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct o bin/136994 net [patch] ifconfig(8) print carp mac address o ports/136917 python [patch] lang/python26: gettext detection o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa p gnu/136705 emaste [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136669 [libc] [patch] setmode(3) should always set errno on e o bin/136661 melifaro [patch] ndp(8) ignores -f option o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE o kern/135608 [patch] sysctl(8) should be able to handle byte values o docs/135516 doc [patch] pax(1) manual not mentioning chflags unawarene o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem f usb/135348 eadler [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2 o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o kern/134249 [libiconv] [patch] ignore case for character set names o kern/134225 [libexec] [patch] Reduce disk write load from save-ent p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article o bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o ports/132294 ruby [PATCH] lang/ruby18: Add option to build with Profile- o ports/132293 ruby [PATCH] lang/ruby19: Add option to build with Profile- o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o bin/131427 [patch] Add to fetch(1) an ability to limit a number o p bin/131250 brian [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o kern/130657 bz [ip6] [patch] ipv6 class option o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a f ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o kern/130286 [patch] hifn(4) changes o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El p bin/130159 brian [patch] ppp(8) fails to correctly set routes p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o bin/129814 [patch] support of per script nice(1) value in periodi o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di o bin/129405 [patch] tcsh(1) vfork bugs p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o kern/129352 yongari [xl] [patch] xl0 watchdog timeout o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o docs/129024 keramida [patch] ipfw(8) improvements o usb/128977 usb [usb67] [patch] uaudio is not full duplex p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct p kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o conf/128433 [patch] Add option to allow a full login when doing 's o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to p bin/127986 [patch] ee(1): fix compiler warnings caused by use of p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t s bin/127918 [ata] [request] [patch] ATA Security support for ataco o docs/127908 eadler [patch] readdir(3) error documentation o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o bin/127633 edwin [patch] Update top(1) to 3.8b1 o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127276 [patch] ldd(1) invokes linux yes o bin/127265 [patch] ddb(4): Adding the ddb command set from module o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o bin/126433 [patch] some missing checks in rm(1) o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o kern/126075 net [inet] [patch] internet control accesses beyond end of o bin/125922 net [patch] Deadlock in arp(8) o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc a kern/125613 trasz [ufs] [patch] ACL problems with special files o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o conf/125041 [patch] periodic(8) new file: /etc/periodic/security/8 o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/124963 alc [vm] [patch] old pagezero fixes for alc o kern/124881 [devfs] [patch] [request] Add possibility to check whi o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o conf/124747 rc [patch] savecore can't create dump from encrypted swap a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o misc/124431 bde [build] [patch] minor revision of BDECFLAGS p bin/124392 [patch] bootparamd(8) does not work on arm p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net p misc/124164 markm [patch] Add SHA-256/512 hash algorithm to crypt(3) p bin/124052 [patch] adduser(8) throws errors when -f input file in o kern/123892 net [tap] [patch] No buffer space available o kern/123858 net [stf] [patch] stf not usable behind a NAT o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 f bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o conf/123119 rc [patch] rc script for ipfw does not handle IPv6 f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o conf/122883 [patch] login class for ukrainian users accounts o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o conf/122170 rc [patch] [request] New feature: notify admin via page o p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab o bin/122043 [patch] du(1) does not support byte-count-based report o conf/122037 [patch] add rsync example for inetd.conf o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user o conf/121064 [patch] Use ASCII characters for box/line characters i o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o conf/120263 [patch] 800.loginfail misses relevant security informa p bin/120256 gavin [patch] ftp(1): ftp -u URL/ returns a -1 p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o bin/118325 rc [patch] [request] new periodic script to test statuses p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/118126 fs [nfs] [patch] Poor NFS server write performance o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o bin/118069 [patch] camcontrol(8) should be able to leave device s o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing s bin/117830 [patch] who(1) no longer displays entries for folk log f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o bin/117687 [patch] fstab(5) format cannot handle spaces o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o bin/117520 [patch] csup(1) not-really-equivalent to cvsup o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117339 net [patch] route(8): loading routing management commands p bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th p stand/116826 jilles [patch] sh(1) support for POSIX character classes o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c p bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's p docs/115065 doc [patch] sync ps.1 with p_flag and keywords o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala p kern/114714 bz [gre] [patch] gre(4) is not MPSAFE and does not suppor f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which o bin/113518 [patch] make(1): Prevent execution when command is a c o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o bin/113074 [patch] ppp(8): include for strcasecmp(3) s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112477 marius [ofw] [patch] Add support to set the node and type on o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112336 [patch] install(1): install -S (safe copy) with -C or s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111537 net [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110995 [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110146 joerg [patch] [request] Allow arbitrary gdb(1) options to by o bin/110068 [patch] rewrite of mdmfs(8) in shell o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit p docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105456 keramida [patch] overhaul of the security chapter (14) o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w p stand/104743 jilles [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive a bin/104092 keramida [patch] iostat(8): missing blanks in iostat output o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o ports/102946 secteam [patch] ports-mgmt/portaudit a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o bin/102162 [patch] tftpd(8): Limit port range for tftpd o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o conf/100616 [patch] syslog.conf: lines after exclamation point ign a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o bin/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/99328 [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/96999 [procfs] [patch] procfs reports incorrect information a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o bin/95698 philip [patch] moused(8): Software control of sysmouse o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind s www/94423 danger [patch] XML'ified release todo list o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work p kern/93331 [kernel] [patch] broken asm in kernel o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o conf/92523 rc [patch] allow rc scripts to kill process after a timeo s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o conf/91732 [patch] 800.loginfail: fix log message grep expression o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command o kern/91134 fs [smbfs] [patch] Preserve access and modification time f bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o bin/90311 [patch] add "eject" to mt(1) o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco o conf/88913 rc [patch] wrapper support for rc.subr o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 fs [patch] newfs(8): introduce -A flag for newfs to enabl o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so o www/87119 hrs [patch] encode copyright and such symbolically o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. a bin/86485 eadler [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou f i386/85656 jhb [i386] [patch] expose more i386 specific CPU informati f i386/85655 jhb [i386] [patch] expose cpu info for i386 systems o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( a bin/77651 [patch] init(8) can lose shutdown related signals s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o bin/76362 [patch] sys directory link points to wrong location o gnu/76169 [patch] Add PAM support to cvs pserver o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o conf/74004 [patch] add fam support to inetd.conf o conf/73786 [patch] added WARNING in spanish to stable-supfile o conf/73677 rc [patch] add support for powernow states to power_profi o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o conf/72901 [patch]: dot.profile: prevent printing when doing an s o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o conf/72277 [patch] update for /usr/share/skel o conf/71994 [patch] dot.login: login shell may unnecessarily print o bin/71749 [patch] truss -f causes circular wait when traced proc o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71602 [patch] uninitialized "len" used instead of "slen" wit s bin/71290 des [patch] passwd(1) cannot change passwords other than N o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters o bin/70476 [patch] reboot(8) change, -p behavior default for halt o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports a kern/68905 secteam [patch] core dumps are assigned wrong ownership o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) f kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE a bin/63197 [patch] tftp(1) Bus error, core dumped a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s i386/61481 [patch] a mechanism to wire io-channel-check to userla o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o bin/58483 [patch] mount(8): allow type special or node relative o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement o bin/57715 [patch] tcopy(1) enhancement o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s bin/57407 [patch] Better NTP support for dhclient(8) and friends o docs/57298 doc [patch] add using compact flash cards info to handbook s bin/57255 usb [patch] usbd(8) and multi-function devices o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR o bin/55546 [patch] cdcontrol(1) play tr m:s.f interface is partia o bin/55539 [patch] Parse fstab(5) with spaces in path names f misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o conf/54170 [patch] error from weekly periodic script 330.catman s stand/53682 [feature request] [patch] add fuser(1) utility o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 [request] [patch] New functionality for mail(1) s usb/51958 usb [urio] [patch] update for urio driver o kern/51583 fs [nullfs] [patch] allow to work with devices and socket s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee o bin/51137 [patch] config(8) should check if a scheduler is selec o kern/51009 [aue] [patch] buggy aue driver fixed. s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48183 [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] Add documentation on the fixit disk o bin/47815 [patch] stty(1) -all should work. o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit a kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals o bin/46758 [patch] moused(8) enhancements o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o conf/45222 [patch] daily rejected mail hosts report too long o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44202 [rp] [patch] -stable rp driver does not work with mult o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls f kern/43716 eadler [puc] [patch] puc driver does not recognize Lava Dual- o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl a bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login a bin/41583 [patch] mtree(8) assorted mtree bugs o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41271 [patch] non-suid crontab(1) o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o conf/40777 [patch] disktab does not support 2.88MB floppies o bin/40597 [patch] add fdisk(8) ability of showing extended parti o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix a bin/38727 [patch] mptable(1) should complain about garbage argum a kern/38554 net [patch] changing interface ipaddress doesn't seem to w s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o bin/37083 [patch] [request] small improvement to talk(1): add cl o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36902 [libc] [patch] proposed new format code %N for strftim o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce o bin/35886 [patch] pax(1) enhancement: custom time format for lis o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md o bin/34412 [patch] tftp(1) will still try and receive traffic eve o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o bin/33809 [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31890 [syscons] [patch] new syscons font o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o bin/30542 [patch] add -q option to shut up killall(1) s threa/30464 threads [patch] pthread mutex attributes -- pshared o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt s kern/29423 [request] [patch] new feature: kernel security hooks i p bin/29363 simon [patch] newsyslog(8) can support time as extension f kern/29355 [kernel] [patch] add lchflags support o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28364 bapt [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u o docs/27605 doc [patch] Cross-document references () o bin/27306 [patch] hw watchpoints work unreliable under gdb(1) o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password f kern/24959 net [patch] proper TCP_NOPUSH/TCP_CORK compatibility o bin/24485 [patch] to make cron(8) handle clock jumps o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23254 bapt [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network o kern/21998 net [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o kern/19756 [patch] Inability to use linux extended partition (typ s kern/19535 [procfs] [patch] procfs_rlimit tidyup o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16422 [patch] [request] newfs(8) always make root's / direct o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15168 [patch] Adding tracklist support to fdformat(1) p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai s kern/13326 [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts a kern/11024 mtm [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry o bin/4116 [patch] [kerberos] Kerberized login as .root fai s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 1947 problems total. From bugmaster at FreeBSD.org Mon Feb 6 11:15:40 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 6 11:16:01 2012 Subject: Current problem reports sorted by tag Message-ID: <201202061109.q16B9MoH009763@freefall.freebsd.org> (Note: a better version of this report is available at http://people.freebsd.org/~linimon/studies/prs/pr_tag_index.html .) Problem reports for tag '2tb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/118912 fs [2tb] disk sizing/geometry problem with large array s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t 7 problems total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148083 scsi [aac] Strange device reporting o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg 2 problems total. Problem reports for tag 'acd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/150628 [acd] [ata] burncd(1) can't write to optical drive 1 problem total. Problem reports for tag 'acl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p 2 problems total. Problem reports for tag 'acpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164329 acpi [acpi] hw.acpi.thermal.tz0.temperature shows strange v o kern/162859 acpi [acpi] ACPI battery/acline monitoring partialy working o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o kern/160838 acpi [acpi] ACPI Battery Monitor Non-Functional o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne o kern/154955 acpi [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3 o kern/152438 acpi [acpi]: patch to acpi_asus(4) to add extra sysctls for o kern/152098 acpi [acpi] Lenovo T61p does not resume o i386/146715 acpi [acpi] Suspend works, resume not on a HP Probook 4510s o kern/145306 acpi [acpi]: Can't change brightness on HP ProBook 4510s f i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A o kern/143420 acpi [acpi] ACPI issues with Toshiba o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve f kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? f i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H f i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f f kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o kern/91594 acpi [acpi] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/ 33 problems total. Problem reports for tag 'acpi_hp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163268 acpi [acpi_hp] fix driver detach in absence of CMI 1 problem total. Problem reports for tag 'acpi_ibm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP 1 problem total. Problem reports for tag 'acpi_thermal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa 1 problem total. Problem reports for tag 'acpica': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152792 [acpica] [patch] move temperature conversion macros to 1 problem total. Problem reports for tag 'ada': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157397 [ada] ahci/ada/cam NCQ timeouts on Samsung and non-dis 1 problem total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets 2 problems total. Problem reports for tag 'aha': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/83765 [aha] Adaptec 1542-CP requires plug-and-play switch se 1 problem total. Problem reports for tag 'ahc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123674 scsi [ahc] ahc driver dumping o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 s kern/45568 gibbs [ahc] ahc(A19160) pci parity error s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S 6 problems total. Problem reports for tag 'ahci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/161768 [ahci] [panic] Panics after AHCI timeouts o kern/161248 [ahci] Time out, extremly slow response while copying o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar f kern/158569 gavin [ahci] ROOT MOUNT ERROR (caused by AHCI module) o kern/155628 [ahci] ahci disables dvd device o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume 8 problems total. Problem reports for tag 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o kern/123520 scsi [ahd] unable to boot from net while using ahd o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system 6 problems total. Problem reports for tag 'aic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with 1 problem total. Problem reports for tag 'aic7xxx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c o kern/156513 scottl [aic7xxx] [patch] missing check of scb. 2 problems total. Problem reports for tag 'altq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue s kern/94182 [altq] [request] altq support for vlan driver 4 problems total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag 3 problems total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o kern/153303 [amr] amr device driver dont detect logical drive amrd o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/113098 [amr] Cannot read from amrd while under heavy load o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a 6 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci s kern/75407 net [an] an(4): no carrier after short time o kern/36170 [an] [patch] an(4) does an_init() even if interface is 4 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup 1 problem total. Problem reports for tag 'apm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in 1 problem total. Problem reports for tag 'ar': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o kern/94393 [ar] PseudoRAID loses track of the master disk o kern/93771 [ar] [panic] atacontrol status ar1 causes panic 8 problems total. Problem reports for tag 'arcmsr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154299 [arcmsr] arcmsr fails to detect all attached drives o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 2 problems total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/145300 qingli [arp] ARP table mapping is not refreshed on a MAC addr o kern/144777 qingli [arp] proxyarp broken in 8.0 [regression] o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/119432 net [arp] route add -host -iface causes arp e o conf/23063 net [arp] [patch] for static ARP tables in rc.network 10 problems total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 2 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164694 [ata] Regression in 3726 port multiplier support in 9. o kern/162620 [ata] SATA device lost when changing brightness on Len o kern/162609 [ata] Cannot write to Sony DRU-835A DVD drive o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar o kern/159511 [ata] ad0 disappear after upgrading to 8.2-STABLE, roo o kern/159326 [ata] [panic] kernel panics when accessing spindowned o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o kern/149201 [ata] DVD/CD Drive Error o kern/148675 [ata] [panic] kernel panics - reboots o kern/148361 [ata] [panic] Kernel Panic, With Faulty Drives o kern/147227 [ata] SSD preformance issues o kern/146661 [ata] damage files on ufs on ata pseudo raid when runn o kern/146270 [ata] Divide by zero in ata driver o kern/144930 [ata] SATA DVD Drive is not detected s kern/144770 [ata] hard drive spindown functionality broken? o bin/144641 [ata] burncd(8) freezes whole system while trying to b o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o kern/143126 [ata] Data loss on read timeout o kern/142802 [ata] [panic] on removing drive: recursed on non-recur o i386/142421 i386 [ata] optical drives not found o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141653 [ata] [panic] Panic in ata? o kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o kern/138537 [ata] [panic] Memory modified after free o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/136356 [ata] SATA / ICH7 problems o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/132252 [ata] No CD/DVD devices found! o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130726 [ata] DMA errors accessing multiple SATA channels f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o kern/130171 [ata] UDMA CF cards do not work with FreeBSD o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/128035 [ata] unexpexted detach of external SATA drive s bin/127918 [ata] [request] [patch] ATA Security support for ataco o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o kern/126142 [ata] M5281: READ DMA faults, device detaching o kern/125859 [ata] [patch] sata access failure [regression] a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already f kern/120717 [ata] boot problem when recognizing ata1 o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o kern/120177 [ata] ATA DMA modes don't work on CF cards o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o kern/117972 [ata] SATA DLT V4 not recognized properly o kern/117443 [ata] [hang] system hang with ataidle o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/116935 [ata] Intermittent error with Promise PDC40718 o kern/115479 [ata] [request] ASUS P5K SE need more support o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 o kern/114213 [ata] optical drive not detected in the 6.x series of s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/106432 [ata] Record of disks (DVD-R) through the k3b program s kern/104950 [ata] [request] no support for SATA controller Initio o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96171 [ata] burncd(8): (ATA driver) fails to write in vcd mo o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m s bin/81692 [patch] [ata] atacontrol(8) support for disk APM and a o kern/79783 [ata] hw.ata.atapi_dma=1 reduces HDD writing transfer o kern/78758 [ata] [patch] Add support for re-sizing ATA disks o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 101 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/118161 [atapicam] failure message from ATAPI CDROM in the boo o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi a kern/78929 [atapicam] atapicam prevents boot, system hangs o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong 6 problems total. Problem reports for tag 'ataraid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159271 [ataraid] [patch] "pseudo-raid" controllers does not w o kern/148748 [ataraid] Metadata Read Write Inconsistency o kern/134887 [ataraid] source consistency problem o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr 6 problems total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164721 wireless [ath] ath device timeouts o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode o kern/163719 wireless [ath] ath interface do not receive multicast o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin o kern/163573 wireless [ath] hostap mode TX buffer hang o kern/163559 wireless [ath] kernel panic AH_DEBUG o bin/163455 [ath] "bssid" in wlanN create_args does not change wla o kern/163318 wireless [ath] ath(4) stops working o kern/163082 wireless [ath] ar9285 diversity fixes o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang p kern/162475 bschmidt [ath] functions with return type HAL_BOOL (might) retu o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o kern/156884 wireless [ath] ath instablity o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154567 wireless [ath] ath(4) lot of bad series(0) o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/153448 wireless [ath] ath networking device loses association after a o kern/152750 wireless [ath] ath0 lot of bad series hwrate o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o kern/148322 wireless [ath] Triggering atheros wifi beacon misses in hostap o kern/148317 wireless [ath] FreeBSD 7.x hostap memory leak in net80211 or At o kern/148078 wireless [ath] wireless networking stops functioning o kern/145826 wireless [panic] [ath] Unable to configure adhoc mode on ath0/w p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 wireless [ath] [panic] ath(4) related panic o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach f kern/105348 wireless [ath] ath device stopps TX 49 problems total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data o kern/91311 net [aue] aue interface hanging o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o kern/51009 [aue] [patch] buggy aue driver fixed. 6 problems total. Problem reports for tag 'axe': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack o usb/88408 usb [axe] axe0 read PHY failed 2 problems total. Problem reports for tag 'bce': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155004 yongari [bce] [panic] kernel panic in bce0 driver o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 3 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/155442 jhb [bge] bge driver is seen but does not respond to netwo o kern/136876 yongari [bge] bge will not resume properly after suspend 2 problems total. Problem reports for tag 'binutils': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD 2 problems total. Problem reports for tag 'bktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/104675 [bktr] METEORSINPUT seemingly not setting input o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/56245 [bktr] Distorted and choppy video with bktr-driver on s kern/48279 [bktr] Brooktre878 may cause freeze o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. 18 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163985 [boot0] Incorrect operand size in boot0 o kern/159222 [boot0] unusual behavior writing boot0 from single use p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive 3 problems total. Problem reports for tag 'bootinst': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/22914 [bootinst] bootinst messages are not updated 1 problem total. Problem reports for tag 'bpf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164534 csjp [bpf] net.bpf.zerocopy_enable=1 makes pflogd eat cpu a o kern/163370 csjp [bpf] [request] enable zero-copy BPF by default o kern/158930 net [bpf] BPF element leak in ifp->bpf_if->bif_dlist p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents f kern/138029 net [bpf] [panic] periodically kernel panic and reboot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. 8 problems total. Problem reports for tag 'bsd.commands.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/159725 portmgr [bsd.commands.mk] Add new command: JOT 1 problem total. Problem reports for tag 'bsd.gnome.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/162260 gnome [bsd.gnome.mk] don't add useless dependency for INSTAL 1 problem total. Problem reports for tag 'bsd.java.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo 1 problem total. Problem reports for tag 'bsd.port.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164390 portmgr [bsd.port.mk] make package-recursive fails with noise o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ s ports/162178 portmgr [bsd.port.mk] Add bsd.clang.mk with Clang/LLVM support o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/158962 portmgr [bsd.port.mk] Make EXTRACT_CMD more flexible-- support o ports/158936 portmgr [bsd.port.mk] Add a filename field to DESKTOP_ENTRIES o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to s ports/148695 portmgr [bsd.port.mk] [patch] Easier / automatic regression-te s ports/148637 portmgr [bsd.port.mk] Options are ignored for any port that de o ports/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend f ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe 24 problems total. Problem reports for tag 'bsd.python.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken 1 problem total. Problem reports for tag 'busdma': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach 1 problem total. Problem reports for tag 'bwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) 1 problem total. Problem reports for tag 'bwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall 2 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164651 mav [cam] Disabling DMA in new Freebsd 9.0 CAM drivers doe o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o kern/158351 [cam] [patch] missing #includes in o kern/153514 scsi [cam] [panic] CAM related panic s kern/149927 scsi [cam] hard drive not stopped before removing power dur o kern/148070 [cam] [panic] panic: _mtx_lock_sleep: recursed on non- a usb/143790 usb [boot] [cam] can not boot from usb hdd p kern/141934 eadler [cam] [patch] add support for SEAGATE DAT Scopion 130 f kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB s kern/85975 [cam] devfs does not create entries when removable med s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo 24 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad 6 problems total. Problem reports for tag 'carp': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/153848 bz [carp] [ipv6] backup host can't connect to master host a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash p kern/132285 glebius [carp] alias gives incorrect hash in dmesg o kern/132107 glebius [carp] carp(4) advskew setting ignored when carp IP us f kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat p kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi p kern/126945 glebius [carp] CARP interface destruction with ifconfig destro p kern/126714 glebius [carp] CARP interface renaming makes system no longer o kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg p kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste p kern/117448 glebius [carp] 6.2 kernel crash [regression] p kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) 12 problems total. Problem reports for tag 'cas': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/157932 gavin [cas] loading CAS4 at boot hangs system 1 problem total. Problem reports for tag 'cbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114550 [cbb] Cardbus WiFi card activation problem 1 problem total. Problem reports for tag 'cd': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from 1 problem total. Problem reports for tag 'cd9660': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored 3 problems total. Problem reports for tag 'cdce': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op 1 problem total. Problem reports for tag 'ciss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159412 scsi [ciss] 7.3 RELEASE: ciss0 ADAPTER HEARTBEAT FAILED err o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o kern/149219 [ciss] DL380 G6 P212 trouble o kern/146287 scsi [ciss] ciss(4) cannot see more than one SmartArray con o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125647 [ciss] [panic] System randomly crashes - ciss driver 10 problems total. Problem reports for tag 'coda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162944 fs [coda] Coda file system module looks broken in 9.0 1 problem total. Problem reports for tag 'conf': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/160276 brueffer [conf] Spelling Mistake in comments in configure-files 1 problem total. Problem reports for tag 'coretemp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158160 [coretemp] coretemp reports incorrect CPU temperature 1 problem total. Problem reports for tag 'cpufreq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146436 [cpufreq] [panic] Panic when changing profile to econo o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf f kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de 7 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac p kern/115695 [crypto] When "device padlock" defined first ssh to ma o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p 6 problems total. Problem reports for tag 'cue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75710 [cue] cue0 device configuration causes kernel panic 1 problem total. Problem reports for tag 'cxgb': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi p kern/146759 np [cxgb] [patch] cxgb panic calling cxgb_set_lro() witho o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/125806 np [cxgb] cxgb packet counters do not work 4 problems total. Problem reports for tag 'cy': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom 1 problem total. Problem reports for tag 'dc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/82070 [dc] Not all dc(4) devices can be used: MII without an o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite 7 problems total. Problem reports for tag 'de': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133495 [de] interface not properly initialized on boot o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern 2 problems total. Problem reports for tag 'devctl': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use 1 problem total. Problem reports for tag 'devd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. 1 problem total. Problem reports for tag 'devd.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/157903 [devd.conf] [patch] automated kldload for USB class de 1 problem total. Problem reports for tag 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124881 [devfs] [patch] [request] Add possibility to check whi o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ p kern/114057 jh [devfs] devfs symlink over device doesn't work o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media 4 problems total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo o kern/83254 [digi] driver can't init Digiboard PC/4e o kern/82227 [digi] Xem: chained concentrators not recognised o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection 6 problems total. Problem reports for tag 'diskless': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i 1 problem total. Problem reports for tag 'dri': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 1 problem total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 s kern/150514 kib [drm] [request] Reorganize DRM Directory to Support Dr p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel 5 problems total. Problem reports for tag 'dtrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164724 [dtrace] [patch] Signal bug in Dtrace o kern/160307 [dtrace] dtrace -lv can not identify the args of the o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr o kern/159612 [dtrace] walltimestamp and timestamp functions incompl p kern/159046 rwatson [dtrace] [patch] dtrace library is linked with a wrong o kern/159013 rwatson [dtrace] kldunload dtraceall crashing if userland dtra o bin/158431 [dtrace] crash in dt_proc_lookup when attaching to PID o kern/130998 [dtrace] DTrace stops tracing because of struct thread 8 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162558 net [dummynet] [panic] seldom dummynet panics f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same 12 problems total. Problem reports for tag 'e1000': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c 1 problem total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement 1 problem total. Problem reports for tag 'editline': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi 1 problem total. Problem reports for tag 'ef': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le 1 problem total. Problem reports for tag 'ehci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/156596 usb [ehci] Extremely high interrupt rate on ehci/uhci IRQ1 o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci 9 problems total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162153 net [em] intel em driver 7.2.4 don't compile o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/159294 net [em] em watchdog timeouts o kern/158635 net [em] TSO breaks BPF packet captures with em driver o kern/157418 net [em] em driver lockup during boot on Supermicro X9SCM- o kern/156667 net [em] em0 fails to init on CURRENT after March 17 o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o kern/153308 net [em] em interface use 100% cpu o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o kern/150516 jfv [em] e1000 receive queue handling problem o kern/148004 jfv [em] Inconsistent networking with em driver on FreeBSD o kern/147989 jfv [em] em Receive errors / CRC Errors / Alignment Errors o kern/146263 jfv [em] [panic] Panic in em(4) SIOCADDMULTI/em_set_multi/ p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/143573 jfv [em] em(4) NIC crashes intermittently o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140778 jfv [em] randomly panic in vlan/em o kern/140728 jfv [em] [patch] Fast irq registration in em driver o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122058 jfv [em] [panic] Panic on em1: taskq o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o kern/121298 jfv [em] [panic] Fatal trap 12: page fault while in kernel o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o kern/117043 jfv [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM o kern/115930 jfv [em] Dell nic enumeration problem o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/101226 jfv [em] Access to IPMI module is lost when the em driver 50 problems total. Problem reports for tag 'endian': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA 1 problem total. Problem reports for tag 'ep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151690 net [ep] network connectivity won't work until dhclient is 1 problem total. Problem reports for tag 'est': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/145718 i386 [est] [patch] fix freq calculation from MSR for CPUs w 1 problem total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx 1 problem total. Problem reports for tag 'exp-run': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/164599 pav [exp-run]: SDL ports update o ports/163878 portmgr [exp-run] add -pthread to all perl language builds f ports/163524 linimon [exp-run] estimate number of ports utilizing old inter o ports/162948 portmgr [exp-run] 10.0 exp-run without libreadline in base sys o ports/160624 portmgr [exp-run] Process USE_ flags in both parts of bsd.port a ports/159117 linimon [exp-run] Clang exp-run request. o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por 11 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155199 fs [ext2fs] ext3fs mounted as ext2fs gives I/O errors o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems 3 problems total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/149800 eadler [fdc] [patch] "driver bug: Unable to set devclass (dev o kern/119618 [fdc] Double Density Disks do not work correctly o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o kern/79944 [fdc] virtual floppy controller of Virtual PC does not s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o kern/74827 [fdc] Problem writing data to floppies o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/66960 [fdc] [patch] filesystems not unmounted during reboot 11 problems total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159971 fs [ffs] [panic] panic with soft updates journaling durin o kern/158711 fs [ffs] [panic] panic in ffs_blkfree and ffs_valloc o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/116583 fs [ffs] [hang] System freezes for short time when using o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna 8 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 2 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/113785 firewire [firewire] dropouts when playing DV on firewire o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w 14 problems total. Problem reports for tag 'flowtable': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155604 kmacy [flowtable] Flowtable excessively caches dest MAC addr o kern/148018 net [flowtable] flowtable crashes on ia64 f kern/146792 net [flowtable] flowcleaner 100% cpu's core load f kern/144917 net [flowtable] [panic] flowtable crashes system [regressi 4 problems total. Problem reports for tag 'fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, 2 problems total. Problem reports for tag 'fusefs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE 1 problem total. Problem reports for tag 'fusefs-ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/159191 usb [fusefs-ntfs] write on fusefs-ntfs mounted partition r 1 problem total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139162 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir 1 problem total. Problem reports for tag 'fwohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re 1 problem total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC 2 problems total. Problem reports for tag 'gbde': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo o kern/66162 [gbde] gbde destroy error 3 problems total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o kern/162010 geom [geli] panic: Provider's error should be set (error=0) f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during o kern/160409 geom [geli] failed to attach provider o kern/157863 geom [geli] kbdmux prevents geli passwords from being enter o kern/157722 fs [geli] unable to newfs a geli encrypted partition o arm/154227 arm [geli] using GELI leads to panic on ARM p kern/152609 pjd [geli] geli onetime on gzero panics o kern/146429 pjd [geli][panic][patch] kernel panic if geli autodetach i o kern/134113 geom [geli] Problem setting secondary GELI key o kern/133931 geom [geli] [request] intentionally wrong password to destr o bin/131415 geom [geli] keystrokes are unregulary sent to Geli when typ o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120066 [geli] geli boot password input fail when using serial o kern/117188 [geli] System crashes/reboots on access to file on GEL o kern/115856 geom [geli] ZFS thought it was degraded when it should have f kern/111967 [geli] glabel - label is seemingly not written to disk o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE 19 problems total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164254 geom [geom] gjournal not stopping on GPT partitions o kern/164252 geom [geom] gjournal overflow o kern/164143 geom [geom] Partition table not recognized after upgrade R8 o kern/162036 [geom] Fatal trap 12: page fault while in kernel mode o kern/161979 geom [geom] glabel doesn't update after newfs, and glabel s o kern/161752 geom [geom] glabel(8) doesn't get gpt label change o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra f kern/159595 geom [geom] [panic] panic on gmirror unload in vbox [regres o kern/158197 geom [geom] geom_cache with size>1000 leads to panics o kern/157739 geom [geom] GPT labels with geom_multipath o kern/157724 geom [geom] gpart(8) 'add' command must preserve gap for sc o kern/157723 geom [geom] GEOM should not process 'c' (raw) partitions fo o kern/155994 geom [geom] Long "Suspend time" when reading large files fr o kern/154226 geom [geom] GEOM label does not change when you modify them o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/150555 geom [geom] gjournal unusable on GPT partitions o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/145818 geom [geom] geom_stat_open showing cached information for n o kern/145042 geom [geom] System stops booting after printing message "GE o kern/142563 geom [geom] [hang] ioctl freeze in zpool o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o kern/140352 geom [geom] gjournal + glabel not working f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/135898 geom [geom] Severe filesystem corruption - large files or l o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o kern/131353 geom [geom] gjournal(8) kernel lock f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/129674 geom [geom] gjournal root did not mount on boot o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/123122 geom [geom] GEOM / gjournal kernel lock o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122067 geom [geom] [panic] Geom crashed during boot o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/113837 geom [geom] unable to access 1024 sector size storage o kern/113419 geom [geom] geom fox multipathing not failing back o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o kern/94632 geom [geom] Kernel output resets input while GELI asks for o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa o kern/84556 geom [geom] [panic] GBDE-encrypted swap causes panic at shu o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( 45 problems total. Problem reports for tag 'geom_part': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa 5 problems total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o kern/154943 net [gif] ifconfig gifX create on existing gifX clears IP o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o conf/97014 net [gif] gifconfig_gif? in rc.conf does not recognize IPv o conf/96094 [gif] startup scripts do not configure gif interfaces o kern/95532 [gif] if_gif has artificial limitations 12 problems total. Problem reports for tag 'gjournal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass 6 problems total. Problem reports for tag 'glxsb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec 1 problem total. Problem reports for tag 'gmirror': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147667 geom [gmirror] Booting with one component of a gmirror, the o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk f kern/128276 geom [gmirror] machine lock up when gmirror module is used o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad 5 problems total. Problem reports for tag 'gnats': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/164396 bugmeister [GNATs] add 'enhancement' class o misc/164395 bugmeister [GNATs] add support for .patch attachments o misc/164394 bugmeister [GNATS] Change some fields to 'unset' to prevent misca 3 problems total. Problem reports for tag 'gpio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m 1 problem total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164475 net [gre] gre misses RUNNING flag after a reboot o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/125239 net [gre] kernel crash when using gre f kern/122065 bz [ipsec] [gre] gre over ipsec not working p kern/114714 bz [gre] [patch] gre(4) is not MPSAFE and does not suppor o conf/111557 [gre] link1 flag doesn't work as intended when specifi p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with 9 problems total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/164228 danger [handbook] [patch] Adding raid3 to handbook o docs/163879 doc [handbook] handbook does not say about how to force to o docs/162433 doc [handbook] QEMU instructions for FreeBSD guests o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 o docs/161057 doc [handbook] Error in section 18.17.4 of the handbook o docs/160460 doc [handbook] Network setup guide suggestion o docs/160447 doc [handbook] Developer's Handbook contains some outdated o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/160445 doc [handbook] Handbook does not mention ACL o docs/159374 brd [handbook] Difficulty following guide on configuring l o docs/159298 doc [handbook] document Konqueror with Webkit support to i o docs/157908 doc [handbook] Description of post-install should include o docs/157337 doc [handbook] [patch] Indentation changes to network serv f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145631 blackend [handbook] References to ttyd0 serial devices in handb o docs/144543 chinsan [handbook] IPFW doc change o docs/144515 doc [handbook] Expand handbook Table of contents o docs/143416 doc [handbook] IPFW handbook page issues a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev o docs/140082 bland [handbook] handbook/jails: russian translation is miss o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/132718 doc [handbook] Information about adding a new mirror is ou o docs/121585 doc [handbook] Wrong multicast specification o docs/59240 blackend [patch] [handbook] update: linux MATLAB 29 problems total. Problem reports for tag 'hast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158098 pjd [hast] problem with copying data on hast-device 1 problem total. Problem reports for tag 'hdac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, o kern/152500 multimedia [hdac] play interrupt timeout, channel dead 2 problems total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h o kern/162952 [headers] Problems including netinet/tcp_var.h o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c o kern/159279 [headers] [patch] __FreeBSD_cc_version in includes o kern/156637 [headers] [patch] sys/types.h can't be included when _ o kern/155429 [headers] including malloc.h should not abort compile. o kern/149960 [headers] syntax error /usr/include/machine/endian.h a kern/149012 gavin [headers] [patch] please replace '#include -interfac s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o kern/83778 [ip6] [patch] JPv6 cannot use Jumbo Frames o kern/77341 net [ip6] problems with IPV6 implementation 32 problems total. Problem reports for tag 'ipf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/77273 net [ipf] ipfilter breaks ipv6 statefull filtering on 5.3 s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 13 problems total. Problem reports for tag 'ipfilter': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162926 net [ipfilter] Infinite loop in ipfilter with fragmented I o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o kern/131601 net [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp 6 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164690 ipfw [ipfw] Request for ipv6 support in ipfw tables o kern/163873 ipfw [ipfw] ipfw fwd does not work with 'via interface' in o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156279 net [if_bridge][divert][ipfw] unable to correctly re-injec f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo o kern/148928 hrs [ipfw] Problem with loading of ipfw NAT rules during s o kern/148827 ipfw [ipfw] divert broken with in-kernel ipfw o kern/148689 ipfw [ipfw] antispoof wrongly triggers on link local IPv6 a o kern/148430 ipfw [ipfw] IPFW schedule delete broken. o conf/148137 hrs [ipfw] call order of natd and ipfw startup scripts o kern/148091 ipfw [ipfw] ipfw ipv6 handling broken. p kern/145733 bz [ipfw] [patch] ipfw flaws with ipv6 fragments f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o kern/137232 ipfw [ipfw] parser troubles o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/130109 net [ipfw] Can not set fib for packets originated from loc f kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o bin/83046 ipfw [ipfw] ipfw2 error: "setup" is allowed for icmp, but s o kern/82724 ipfw [ipfw] [patch] [request] Add setnexthop and defaultrou o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/56031 luigi [ipfw] ipfw hangs on every invocation s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau 49 problems total. Problem reports for tag 'ipl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 2 problems total. Problem reports for tag 'ipmi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147855 [ipmi] [patch] kernel panic when IPMI enabled on some o kern/125389 [ipmi] [bce] IPMI problem with bce a kern/123904 [ipmi] ipmi(4) reports negative temperature values on a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/79143 [ipmi] Broadcom NIC driver do not work for IPMI 5 problems total. Problem reports for tag 'ipnat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt 3 problems total. Problem reports for tag 'ips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may 1 problem total. Problem reports for tag 'ipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164400 net [ipsec] immediate crash after the start of ipsec proce o kern/159629 net [ipsec] [panic] kernel panic with IPsec in transport m o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o kern/147894 net [ipsec] IPv6-in-IPv4 does not work inside an ESP-only o kern/146190 vanhu [ipsec][patch] NAT traversal does not work in transpor o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/129517 net [ipsec] [panic] double fault / stack overflow s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs 27 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131087 bschmidt [ipw] [panic] ipw / iwi - no sent/received packets; iw o kern/126339 net [ipw] ipw driver drops the connection o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o kern/84861 thompsa [ipw] [patch] still can't get working ipw(4) with adho a kern/82926 thompsa [ipw] ipw(4) doesn't seem to do WPA, also leaves entri 5 problems total. Problem reports for tag 'ipx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi 1 problem total. Problem reports for tag 'irq': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o kern/143837 [irq] [panic] nmi_calltrap in irq257: bce1 o kern/143521 [irq] [panic] nmi_calltrap in siopoll() o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/119696 [irq] [ral] ral device causes massive interrupt storm o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o 9 problems total. Problem reports for tag 'isa': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/37441 davidxu [isa] [patch] ISA PNP parse problem 1 problem total. Problem reports for tag 'iscsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157770 scsi [iscsi] [panic] iscsi_initiator panic o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc 2 problems total. Problem reports for tag 'isp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159414 mjacob [isp] isp(4)+gmultipath(8) : removing active fiber pat o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up 3 problems total. Problem reports for tag 'iwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164365 wireless [iwi] iwi0: UP/DOWN in f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o kern/123559 net [iwi] iwi periodically disassociates/associates [regre a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/116185 net [iwi] if_iwi driver leads system to reboot 9 problems total. Problem reports for tag 'iwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163154 [iwn] fatal firmware error on 9.0-RC3 o kern/161407 bschmidt [iwn] iwn panic on 9.0-BETA3 o kern/161293 wireless [iwn] hang at startup when starting network o kern/154826 bschmidt [iwn] iwn driver fails to power on adapter after resum f kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif 5 problems total. Problem reports for tag 'ix': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) 1 problem total. Problem reports for tag 'ixgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and 10 problems total. Problem reports for tag 'jail': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159918 jail [jail] inter-jail communication failure o kern/156584 bz [jail] ipv4 packet is not forward to v4-mapped binding o kern/156111 jail [jail] procstat -b not supported in jail o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o kern/145444 secteam [jail] sysinstall and sade can access host's disks fro p conf/143084 brooks [jail] [patch]: fix rc.d/jail creating stray softlinks o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o kern/133265 jail [jail] is there a solution how to run nfs client in ja o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o bin/78763 pjd [patch] [jail] Added jail support to ps(1) o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai 18 problems total. Problem reports for tag 'joy': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/64588 [joy] [request] Extend joystick driver architecture to 1 problem total. Problem reports for tag 'kbdmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/146793 gavin [kbdmap] [patch] Danish kbdmap for MacBook o conf/72465 [kbdmap] [patch] United States International keyboard 2 problems total. Problem reports for tag 'kbdmux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153459 [kbdmux][patch] add option to specify built-in keymap p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c 2 problems total. Problem reports for tag 'kerberos': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o kern/161888 [kerberos] nfs -sec=krb5x/ldap/krb5-heimdal fix/upgrad o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup o kern/151444 [kerberos] Kerberos5 is broken in the base system from o bin/147175 [kerberos] [patch] libhx509.so containes references to o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o bin/4116 [patch] [kerberos] Kerberized login as .root fai 8 problems total. Problem reports for tag 'kern.post.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE 1 problem total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/163623 eadler [kernel] sysctl net.inet.icmp.icmplim_output descripti o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib o kern/162174 [kernel] [patch] rman_manage_region() error return pat o kern/161949 [kernel] 64-bit structures are used even with 32-bit c o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/146588 [kernel] [patch] sys/kern/kern_uuid.c has a le16dec be p kern/145865 [kernel] [panic] kernel memory leak with disabled devd o kern/145590 [kernel] [patch] SIG_ATOMIC_{MIN,MAX} does not match s o kern/145434 [kernel] [patch] Kernel messages about processes don't o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/138117 [kernel] [panic] spin lock held too long o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o kern/129164 [kernel] Wrong priority value for normal processes o kern/121073 [kernel] [patch] run chroot as an unprivileged user o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o kern/119202 [kernel] [patch] Add generic support for disabling dev o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c p kern/93331 [kernel] [patch] broken asm in kernel o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o kern/85651 [kernel] [patch] debugging code to show entries in eve o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o kern/81588 [kernel] [patch] Devices with SI_CHEAPCLONE flag don't s kern/79339 [kernel] [patch] Kernel time code sync with improvemen s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX s kern/50827 [kernel] [patch] [request] add sane record locking o kern/50526 [kernel] [patch] update to #! line termination o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o kern/37555 [kernel] [patch] vnode flags appear to be changed in n f kern/29355 [kernel] [patch] add lchflags support 56 problems total. Problem reports for tag 'keyboard': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o conf/160227 [keyboard] Please include new keyboard mapping: French o usb/156898 usb [keyboard] usb keyboard does not work while boot (ps2 o i386/153851 usb [keyboard] keyboard issues on new Intel Mother boards. o usb/153703 usb [keyboard] My USB keyboard can not be used in 8-STABLE o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER f kern/144938 usb [keyboard] [boot] Boot Failure with Apple (MB869LL/A) o kern/142390 [keyboard] 30th console switch hangs computer complete o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o kern/135164 [keyboard] UK currency key inactive o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o kern/115253 [keyboard] Wireless keyboard not working at boot o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, f kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p o kern/80694 [keyboard] [patch] atkbd looped on Acer TravelMate 270 o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( 24 problems total. Problem reports for tag 'kld': S Tracker Resp. Description -------------------------------------------------------------------------------- p docs/142938 wkoszek [kld] share/examples: fix warnings 1 problem total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156423 kib [kqueue] [patch] Please add kqueue support for /dev/kl o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o kern/149857 [kqueue] kqueue not reporting EOF under certain circum o kern/137246 [kqueue] kevents not generated for file writes through o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i 12 problems total. Problem reports for tag 'kthread': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend 1 problem total. Problem reports for tag 'ktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot 1 problem total. Problem reports for tag 'lagg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) o kern/157182 net [lagg] lagg interface not working together with epair p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o kern/156226 net [lagg]: failover does not announce the failover to swi o kern/145728 net [lagg] Stops working lagg between two servers. o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/139117 net [lagg] + wlan boot timing (EBUSY) o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge 12 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115526 [libalias] libalias doesn't free memory o kern/105579 [libalias] dcc resume over natd in 6.x o kern/74450 [libalias] [patch] enable libalias/natd to create skip o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/41307 [libalias] [patch] logging of links lifecycle (add/del 6 problems total. Problem reports for tag 'libarchive': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport 4 problems total. Problem reports for tag 'libbsdxml': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157446 [libbsdxml] base expat needs minor fixes from vendor c 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164674 [patch] [libc] vfprintf/vfwprintf return error (EOF) o o kern/164637 [libc] Problem with vsnprintf in libc.so when compiled o kern/164445 [libc] lseek(2) always returns ENXIO with SEEK_DATA/SE s kern/164425 [libc] stat(2) doesn't work in 32bit mode on amd64 o kern/162976 [libc] cron fails unnecessarily via setlogin(2) with s o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159179 [libc] close(2) emitting ECONNRESET is not POSIX compl o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o kern/156684 [libc] getaddrinfo(3) returns improper error o kern/154915 [libc] [patch] Force stdio output streams to line-buff o bin/153502 [libc] regex(3) bug with UTF-8 locale p bin/152551 gavin [libc] Remove unused variables. o kern/152036 net [libc] getifaddrs(3) returns truncated sockaddrs for n o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc a stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) p bin/149464 jh [libc] [rtld] dlclose(3) can access freed memory and c o kern/149323 [libc] Applications with large memory footprint failin o kern/148581 [libc] fopen(3) fails with EMFILE if there are more th o kern/148179 [libc] Possible Memory Leak in getaddrinfo(3) o kern/147839 [libc] [patch] syscall(2) with wrong argument causing o kern/147756 [libc] open_socket_in: Protocol not supported - after o kern/147647 [libc] select(2) wakes after 24 hours even if timeout o kern/147226 [libc] read(fd, buffer, len) returns -1 immediately, o kern/146889 [libc] [patch] Not having NET_RT_IFLIST #defined cause o kern/146845 net [libc] close(2) returns error 54 (connection reset by o kern/142772 net [libc] lla_lookup: new lle malloc failed o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep s stand/141705 standards [libc] [request] libc lacks cexp (and friends) o kern/141682 [libc] [patch] Faster version of strncpy(3) a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139080 [libc] [patch] closelog() can close negative file desc o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o kern/136669 [libc] [patch] setmode(3) should always set errno on e o kern/134391 [libc] dladdr(3) does effectively not work on main pro o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error a bin/130504 [libc] Serious bug in regular expression library (rege o kern/128933 kib [libc] realpath(3) does not follow SUS specification f o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/126230 [libc] select(2) causing weird process cpu usage and l o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o kern/124160 net [libc] connect(2) function loops indefinitely o kern/121656 [libc] [patch] telldir(3) issues o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware s kern/114578 [libc] wide character printing using swprintf(dst, n, o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o bin/108118 [libc] files should not cache their EOF status p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o bin/102515 [libc] fsck_ufs crashes if no console at all o kern/100709 net [libc] getaddrinfo(3) should return TTL info o bin/99800 [libc] [patch] Add support for profiling multiple exec a bin/96840 [libc] [patch] getgrent() does not return large groups o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o bin/95002 [libc] hash db source code has a bug which prevents us p stand/94729 gnn [libc] fcntl() throws undocumented ENOTTY o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o kern/82980 [libc] realpath(3) treats regular files as directories s kern/79048 [libc] realloc() copies data even when the size of all o kern/78787 [libc] [patch] sysconf(_SC_CLK_TCK) may return incorre o kern/76398 [libc] stdio can lose data in the presence of signals o kern/75855 [libc] getpwent(3) functions on 5.3 with large passwor s bin/75767 [libc] [request] "fdclose" function in libc o kern/70511 [libc] When fread(3)ing with buffering turned off, man o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/68690 [libc] write(2) returns wrong value when EFAULT s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI s kern/56720 [libc] [request] UNICODE support in Resolver o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31647 net [libc] socket calls can return undocumented EINVAL o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d 88 problems total. Problem reports for tag 'libcrypt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/75934 [libcrypt] [patch] missing blowfish functionality in p 2 problems total. Problem reports for tag 'libcrypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O 1 problem total. Problem reports for tag 'libdialog': S Tracker Resp. Description -------------------------------------------------------------------------------- p gnu/148609 imp [libdialog] [patch] printing to a checklist window on 1 problem total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/148881 [libdisk] [patch] libdisk emits errors w/ disks that c o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk 6 problems total. Problem reports for tag 'libedit': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159226 [libedit] [patch] libedit does not always restore its p bin/145528 gavin [libedit] ftp(1) crashes in libedit when cancelling a o kern/117348 [libedit] Loading history file sometimes fails in libe 3 problems total. Problem reports for tag 'libexec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/110017 [libexec] [patch] serial port console output garbled o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/45729 [libexec] [patch] make rbootd transfer the default fil 5 problems total. Problem reports for tag 'libfetch': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature p bin/151866 des [libfetch] [patch] closing the cached FTP connection o kern/140835 des [libfetch] fetchParseURL(3) returns success with inval o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o kern/116005 des [libfetch] libfetch accepts invalid URLs o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip 6 problems total. Problem reports for tag 'libgcc': S Tracker Resp. Description -------------------------------------------------------------------------------- s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi 2 problems total. Problem reports for tag 'libgeom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157879 geom [libgeom] [regression] ABI change without version bump 1 problem total. Problem reports for tag 'libgssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147454 [libgssapi] libgssapi (heimdal) broken in head/, stabl o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free 2 problems total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134249 [libiconv] [patch] ignore case for character set names 1 problem total. Problem reports for tag 'libipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in 1 problem total. Problem reports for tag 'libkrb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol 1 problem total. Problem reports for tag 'libkvm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163926 eadler [libkvm] libkvm.so.5 exports private symbols o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free 4 problems total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o stand/152415 kargl [libm] implementation of expl() o kern/147599 [libm] [patch] Import netbsd complex functions into ou 2 problems total. Problem reports for tag 'libmagic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149936 [libmagic] [patch] wrong handling of decompression uti 1 problem total. Problem reports for tag 'libmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78646 [libmap] [patch] libmap should canonicalize pathnames 1 problem total. Problem reports for tag 'libmd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file 1 problem total. Problem reports for tag 'libpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161456 [libpam] on a system bound to an LDAP server, top trie o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o bin/141016 [libpam] PAM checks in sshd too few? o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o bin/115946 des [libpam] [patch] not thread-safe o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc s kern/20333 des [libpam] ftp login fails on unix password when s/key a 13 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155370 [libpcap] [patch] description string is broken o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o bin/146592 [libpcap] [patch] libpcap 1.0.0 doesn't have error mes o kern/144325 [libpcap] tcpdump compiles complex expression to incor o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n 5 problems total. Problem reports for tag 'librpcsvc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa 1 problem total. Problem reports for tag 'libssh': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159745 [libssh] [patch] Fix improperly specified dependency l 1 problem total. Problem reports for tag 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/83424 [libstand] [patch] improper handling of malloc failure 3 problems total. Problem reports for tag 'libstdc++': Problem reports for tag 'libtacplus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will 1 problem total. Problem reports for tag 'libteken': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144743 [libteken] mouse positioning partialy working o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod 3 problems total. Problem reports for tag 'libusb': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker 2 problems total. Problem reports for tag 'libusbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83451 [libusbhid] [patch] improper handling of malloc failur 1 problem total. Problem reports for tag 'libutil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/84797 [libutil] [patch] State engine in the libutils propert s kern/38347 [libutil] [patch] [request] new library function abs2r o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f 3 problems total. Problem reports for tag 'libvgl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83426 [libvgl] [patch] improper handling of malloc failures 1 problem total. Problem reports for tag 'libwrap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all 1 problem total. Problem reports for tag 'libz': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/154073 delphij [libz] libz causes perl to exit on signal 11 1 problem total. Problem reports for tag 'linprocfs': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w 3 problems total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp p kern/148076 dchagin [linux] linux_sys_futex: unknown op 265 o kern/146237 emulation [linux] Linux binaries not reading directories mounted o kern/140156 emulation [linux] cdparanoia fails to read drive data o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails s kern/118230 acm [linux] games/linux-quake4 fails to start o kern/86619 emulation [linux] linux emulator interacts oddly with cp a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work s kern/21463 eadler [linux] Linux compatability mode should not allow setu 17 problems total. Problem reports for tag 'lo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o 2 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/155441 [loader] [patch] Firewire support in loader is broken f i386/138211 gavin [loader] Boot fails on Intel X5550 o kern/110995 [loader] [patch] loader wastes space worth symtab size o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same 9 problems total. Problem reports for tag 'locale': S Tracker Resp. Description -------------------------------------------------------------------------------- a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac p conf/105100 [patch] [locale] no support for lv (latvian) locale a conf/91106 versus [locale] date definitions in pl_PL locale are wrong 3 problems total. Problem reports for tag 'login.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/155480 [login.conf] maxproc does not work when command runnin 1 problem total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting 3 problems total. Problem reports for tag 'mac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145040 [mac] PANIC_REBOOT_WAIT_TIME not honored o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa 2 problems total. Problem reports for tag 'make.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the 2 problems total. Problem reports for tag 'mbuf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou 2 problems total. Problem reports for tag 'mca': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146590 [mca] [panic] MCA panics 7.3 1 problem total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163801 fs [md] [request] allow mfsBSD legacy installed in 'swap' o kern/162502 [md] mount -t mfs on vnode-based md device destroy him p kern/154228 fs [md] md getting stuck in wdrain state 3 problems total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164258 [mfi] mfi does not work with PERC5/i in AMD M350 mothe o kern/157293 [mfi] mfiutil/mfi does not allow adding a previously c o kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if o kern/155499 [mfi] mfi(4) command timeout loop on boot on releng/8. p kern/140416 delphij [mfi] [patch] mfi driver stuck in timeout o kern/124989 [mfi] mfi driver error - unexpected sense 6 problems total. Problem reports for tag 'minidump': S Tracker Resp. Description -------------------------------------------------------------------------------- p amd64/139614 avg [minidump] minidumps fail when many interrupts fire o kern/118713 fs [minidump] [patch] Display media size required for a k 2 problems total. Problem reports for tag 'mips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR 2 problems total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o i386/55603 [mly] unable to reboot when system runs from Mylex A35 3 problems total. Problem reports for tag 'mmc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/141756 gavin [mmc] MMC card attached to blocks keybo 1 problem total. Problem reports for tag 'mmcsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164536 [modules] [request] disable building kernel modules th o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/114291 [RFE] [modules] [patch] add dynamic module references o kern/96346 [modules] [patch] disable build of modules that are al s kern/83738 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k f kern/48976 gavin [modules] nwfs.ko oddity 9 problems total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o kern/89166 [mouse] jumpy mouse movement o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/86298 usb [mouse] Known good USB mouse won't work with correct s 5 problems total. Problem reports for tag 'mpd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162267 qingli [mpd] mpd kernel panic 1 problem total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163812 scsi [mpt] problem with mpt driver for lsi controlled conne f kern/163130 scsi [mpt] cannot dumpon to mpt connected disk o kern/162256 scsi [mpt] QUEUE FULL EVENT and 'mpt_cam_event: 0x0' o kern/147704 scsi [mpt] sys/dev/mpt: new chip revision, partially unsupp o kern/145768 scsi [mpt] can't perform I/O on SAS based SAN disk in freeb o kern/142351 scsi [mpt] LSILogic driver performance problems o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/128282 gavin [mpt] system failure on removing two drives o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/117688 [mpt] mpt disk timeout and hang 16 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154828 fs [msdosfs] Unable to create directories on external USB o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o kern/123939 fs [msdosfs] corrupts new files f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o kern/111843 fs [msdosfs] Long Names of files are incorrectly created o kern/109024 fs [msdosfs] [iconv] mount_msdosfs: msdosfs_iconv: Operat o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f kern/87368 bde [msdosfs] fat32 is very slow o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o kern/79441 trhodes [msdosfs] problem writing on mounted msdos-fs at /mnt p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c 23 problems total. Problem reports for tag 'msk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164569 net [msk] [hang] msk network driver cause freeze in FreeBS o kern/160420 net [msk] phy write timeout on HP 5310m o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel 3 problems total. Problem reports for tag 'multicast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155680 net [multicast] problems with multicast o kern/154169 net [multicast] [ip6] Node Information Query multicast add o kern/149086 net [multicast] Generic multicast join failure in 8.1 3 problems total. Problem reports for tag 'mutex': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131573 [mutex] lock_init() assumes zero-filled struct 1 problem total. Problem reports for tag 'mwl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163724 wireless [mwl] [patch] NULL check before dereference o kern/146427 net [mwl] Additional virtual access points don't work on m o kern/146426 net [mwl] 802.11n rates not possible on mwl o kern/146425 net [mwl] mwl dropping all packets during and after high u 4 problems total. Problem reports for tag 'mxge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update 1 problem total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o misc/157533 imp [nanobsd][patch] save_cfg improvements p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o misc/145962 imp [nanobsd] [patch] improved cfg save script p misc/144553 imp [nanobsd] NanoBSD's updatep* scripts fail with boot0cf p misc/140436 imp [nanobsd] pkg-add process fails when there is no /usr/ o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re 12 problems total. Problem reports for tag 'nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 3 problems total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe o kern/156016 [ncurses] Arrow keys don't work with any ncurses based o kern/154609 ed [ncurses] END key under screen not sending correct cod o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) 4 problems total. Problem reports for tag 'ndis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/131781 net [ndis] ndis keeps dropping the link f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress 11 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152569 net [net]: Multiple ppp connections and routing table prob o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad s kern/81147 jfv [net] [patch] em0 reinitialization while adding aliase s kern/12071 fanf [net] [patch] new function: large scale IP aliasing 6 problems total. Problem reports for tag 'net80211': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163574 wireless [net80211] overly-frequent HT occupancy changes 1 problem total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/154091 net [netgraph] [panic] netgraph, unaligned mbuf? o kern/153497 net [netgraph] netgraph panic due to race conditions o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/104751 net [netgraph] kernel panic, when getting info about my tr o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/97306 net [netgraph] NG_L2TP locks after connection with failed o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/82881 net [netgraph] [panic] ng_fec(4) causes kernel panic after o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE 22 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164696 net [netinet] [patch] [panic] VIMAGE + carp panics the ker o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re p kern/146250 bz [netinet] [patch] Races on interface alias removal o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat 14 problems total. Problem reports for tag 'netisr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164145 [netisr] when one of netisr threads take 100% system i o kern/164130 rwatson [netisr] broken netisr initialization o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o kern/100519 net [netisr] suggestion to fix suboptimal network polling 4 problems total. Problem reports for tag 'netsmb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163135 [netsmb] Wrong check in netsmb 1 problem total. Problem reports for tag 'network.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160892 eadler [network.subr] [patch] add vboxnet[0-9]* to noafif lis o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o conf/147681 [network.subr][patch] Add inet6 keyword if it wasn't s 3 problems total. Problem reports for tag 'nfe': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/147684 yongari [nfe] nVidia MCP55 driver blocks IPMI LAN on load f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki 2 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164462 fs [nfs] NFSv4 mounting fails to mount; asks for stronger o kern/163501 fs [nfs] NFS exporting a dir and a subdir in that dir to o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() f kern/157929 fs [nfs] NFS slow read o kern/154255 net [nfs] NFS not responding o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/147998 [nfs] [patch] NFS -mapall group permissions ignored wh o kern/146502 fs [nfs] FreeBSD 8 NFS Client Connection to Server o kern/145189 fs [nfs] nfsd performs abysmally under load o kern/143825 fs [nfs] [panic] Kernel panic on NFS client o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o kern/137327 dfr [nfs] nfs nlm memery leak o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c o kern/123755 dfr [nfs] fstat() fails to return ESTALE with rename()d fi o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown o bin/118318 mohans [nfs] NFS server hangs under special circumstances o kern/118126 fs [nfs] [patch] Poor NFS server write performance o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111162 [nfs] nfs_getpages does not restart interrupted system o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/105241 [nfs] problem with Linux NFS server up/down combined w o kern/97329 [nfs] [patch] code simplification o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur f kern/81770 [nfs] Always "NFS append race" at every NFS mount with o kern/79336 [nfs] NFS client doesn't detect file updates on Novell s kern/78884 [nfs] [patch] nfs client cache negative lookups o kern/78673 [nfs] [patch] nfs client open resets attrstamp ever if o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea s kern/67545 [nfs] NFS Diskless Mount Option Suggestion a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/35669 [nfs] NFSROOT breaks without a gateway o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo s kern/17108 [nfs] SecureRPC not supported in mount_nfs command 68 problems total. Problem reports for tag 'ng_l2tp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146082 net [ng_l2tp] a false invaliant check was performed in ng_ 1 problem total. Problem reports for tag 'ng_nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125704 [ng_nat] kernel libalias: repeatable panic 1 problem total. Problem reports for tag 'nis': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o bin/40215 [nis] NIS host search not terminate o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/24461 [nis] Being able to increase the YP timeout without re o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus 21 problems total. Problem reports for tag 'notes': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf 1 problem total. Problem reports for tag 'nsswitch.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163798 [nsswitch.conf] nsswitch.conf with nss_ldap ignore [su o conf/156945 [nsswitch.conf] Name service Switch does not work as d o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on 4 problems total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N f kern/117314 fs [ntfs] Long-filename only NTFS fs'es cause kernel pani o kern/116515 rwatson [ntfs] NTFS mount does not check that user has permiss o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem 12 problems total. Problem reports for tag 'null': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139014 [null] /dev/null must be immunable to delete/unlink p kern/138526 gnn [null] /dev/null does not support nonblocking operatio 2 problems total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o kern/162591 fs [nullfs] cross-filesystem nullfs does not work as expe o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou o kern/158231 fs [nullfs] panic on unmounting nullfs mounted over ufs o o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o kern/130210 fs [nullfs] Error by check nullfs o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/51583 fs [nullfs] [patch] allow to work with devices and socket 12 problems total. Problem reports for tag 'nwfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange 1 problem total. Problem reports for tag 'ofw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112477 marius [ofw] [patch] Add support to set the node and type on 1 problem total. Problem reports for tag 'ohci': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion 6 problems total. Problem reports for tag 'openbsm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu 1 problem total. Problem reports for tag 'openpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin 1 problem total. Problem reports for tag 'oss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r 1 problem total. Problem reports for tag 'padlock': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164565 [padlock] [panic] kernel crash when kldunload'ing padl 1 problem total. Problem reports for tag 'pae': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/129550 i386 [pae] [kqueue] crash with PAE kernel 1 problem total. Problem reports for tag 'pam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o bin/113230 des [pam] [patch] const-ify PAM-headers o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/83099 des [pam] pam_login_access change causes cyrus-sasl-saslau s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password 8 problems total. Problem reports for tag 'parallels': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec f kern/138944 emulation [parallels] [regression] Parallels no longer works in 2 problems total. Problem reports for tag 'patm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 1 problem total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164189 [pccard] FreeBSD 9.0-RELEASE on Toshiba Satellite Pro o conf/160373 [pccard] [patch] pccard_ether does not take settings i o kern/147127 [pccard] [patch] Fix panic in pccard.c o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp 5 problems total. Problem reports for tag 'pccbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128608 imp [pccbb] [patch] add support for powering down and up C o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF 4 problems total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method f kern/158391 gavin [pci] Resource allocation issues with hda/ath o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m f kern/65355 [pci] [patch] TC1000 serial ports need enabling 8 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159236 multimedia [pcm] [patch] set PCM_CAP_DEFAULT for the default snd o kern/152622 multimedia [pcm] uaudio recording problem o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi 6 problems total. Problem reports for tag 'periodic': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163572 [periodic] not full output in daily run output is ambi o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o conf/152807 [periodic] security 900.tcpwrap does not report any re o kern/135502 net [periodic] Warning message raised by rtfree function i o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o conf/70715 [periodic] Lack of year in dates in auth.log can cause o conf/47596 [periodic] daily security run complains if timezone ch o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea 9 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164402 pf [pf] pf crashes with a particular set of rules when fi o kern/164271 pf [pf] not working pf nat on FreeBSD 9.0 [regression] o kern/163208 pf [pf] PF state key linking mismatch o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o kern/160370 pf [pf] Incorrect pfctl check of pf.conf o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/153307 pf [pf] Bug with PF firewall o kern/148290 pf [pf] "sticky-address" option of Packet Filter (PF) blo o kern/148260 pf [pf] [patch] pf rdr incompatible with dummynet o kern/147789 pf [pf] Firewall PF no longer drops connections by sendin o kern/146832 bz [pf] "(self)" not always matching all local IPv6 addre o kern/146719 net [pf] [panic] PF or dumynet kernel panic o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin s kern/143808 virtualization[pf] pf does not work inside jail o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o conf/142961 pf [pf] No way to adjust pidfile in pflogd o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/140697 pf [pf] pf behaviour changes - must be documented o kern/137982 pf [pf] when pf can hit state limits, random IP failures o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/133732 pf [pf] max-src-conn issue o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent f kern/132176 pf [pf] pf stalls connection when using route-to [regress o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o kern/127920 pf [pf] ipv6 and synproxy don't play well together o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w o kern/127439 pf [pf] deadlock in pf f kern/127345 pf [pf] Problem with PF on FreeBSD7.0 [regression] o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is o kern/125467 pf [pf] pf keep state bug while handling sessions between s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. o kern/93825 pf [pf] pf reply-to doesn't work o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/82271 pf [pf] cbq scheduler cause bad latency 49 problems total. Problem reports for tag 'pf.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/145727 [pf.conf] pf rules not applied on boot if using inet6 1 problem total. Problem reports for tag 'pfil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164490 net [pfil] Incorrect IP checksum on pfil pass from ip_outp s kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall 3 problems total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker 4 problems total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/52256 embedded [picobsd] picobsd build script does not read in user/s o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt 3 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/93685 jilles [pipe] select on pipe write fails from '0' end 1 problem total. Problem reports for tag 'plip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/102035 net [plip] plip networking disables parallel port printing 2 problems total. Problem reports for tag 'pmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ 1 problem total. Problem reports for tag 'portalfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9679 [portalfs] [patch] fix for uninterruptible open in por 1 problem total. Problem reports for tag 'powerd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I 1 problem total. Problem reports for tag 'ppbus': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 1 problem total. Problem reports for tag 'ppc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o conf/119550 [ppp] ppp not starting during bootup. o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces s kern/84386 [ppp] [request] PPPoA Authentication built into FreeBS o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 15 problems total. Problem reports for tag 'pppd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr 3 problems total. Problem reports for tag 'procfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o kern/97505 [procfs] file entry of procfs points to "unknown" o kern/96999 [procfs] [patch] procfs reports incorrect information s kern/19535 [procfs] [patch] procfs_rlimit tidyup 4 problems total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/161043 jhb [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o kern/159063 [psm] ALPS touchpad recognized as PS mouse (no scrl, n o kern/147237 [psm] [patch] There is no IBM/Lenovo TrackPoint suppor o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o kern/137228 [psm] synaptics support delays 'mouse up' events when o kern/129125 [psm] psm0: failed to reset the aux device. f kern/128308 gavin [psm] psm0 cause page fault o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 o kern/109161 philip [psm] synaptic touchpad doesn't work o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation 16 problems total. Problem reports for tag 'ptrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace 1 problem total. Problem reports for tag 'pty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs 1 problem total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163450 [puc] [patch] new pci quad serial card supported by pu o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s f kern/43716 eadler [puc] [patch] puc driver does not recognize Lava Dual- 6 problems total. Problem reports for tag 'pxeboot': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146162 [pxeboot] PXE loader(8) sets nfs_opts[] = "export" cau o i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin 5 problems total. Problem reports for tag 'quota': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164734 [quota] 9.0 quota not working [regression] 1 problem total. Problem reports for tag 'quotas': S Tracker Resp. Description -------------------------------------------------------------------------------- s bin/42004 [quotas] quota is still IPv4 only, and not INET indepe 1 problem total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o f kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] f kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati 3 problems total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o kern/153937 net [ral] ralink panics the system (amd64 freeBSDD 8.X) wh f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 f kern/134168 gavin [ral] ral driver problem on RT2525 2.4GHz transceiver o kern/132238 [ral] ral driver does not support RT2860 o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o kern/119696 [irq] [ral] ral device causes massive interrupt storm f kern/117655 sam [ral] ral%d: device timeout when running as an access o kern/111457 net [ral] ral(4) freeze o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P o kern/95519 net [ral] ral0 could not map mbuf o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP f kern/82456 gavin [ral] WITNESS warning/backtrace in if_ral 19 problems total. Problem reports for tag 'random': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc 2 problems total. Problem reports for tag 'rc': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser 3 problems total. Problem reports for tag 'rc.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip 2 problems total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o conf/154554 rc [rc.d] [patch] statd and lockd fail to start o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck o conf/147444 rc [rc.d] [patch] /etc/rc.d/zfs stop not called on reboot o conf/145445 rc [rc.d] error in /etc/rc.d/jail (bad logic) o conf/145440 hrs [rc.d] [patch] add multiple fib support (setfib) in /e o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o conf/137629 rc [rc.d] background_dhclient rc.conf option causing doub o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o conf/135338 rc [rc.d] pf startup order seems broken [regression] o bin/134250 [rc.d] mountlate: bogus error message when using neste o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c 23 problems total. Problem reports for tag 'rc.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands p conf/150752 dougb [rc.subr] [patch] be not needed to eval $_pidcmd on re 2 problems total. Problem reports for tag 'rctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162407 [rctl] [panic] rctl crashes kernel with a page fault ( o kern/161552 [rctl] [panic] kernel panic with RCTL option: racct_al 2 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162509 net [re] [panic] Kernel panic may be related to if_re.c (r o kern/161381 net [re] RTL8169SC - re0: PHY write failed f kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. o kern/157429 net [re] Realtek RTL8169 doesn't work with re(4) o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f 5 problems total. Problem reports for tag 'release': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/145580 [release] /usr/src/release/Makefile does not honor HTT 1 problem total. Problem reports for tag 'resolver': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136013 [resolver] Resolver wrong diagnostics 1 problem total. Problem reports for tag 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' 1 problem total. Problem reports for tag 'route': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161899 net [route] ntpd(8): Repeating RTM_MISS packets causing hi o kern/155177 net [route] [panic] Panic when inject routes in kernel o kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 o kern/134531 net [route] [panic] kernel crash related to routes/zebra a kern/71474 net [route] route lookup does not skip interfaces marked d 5 problems total. Problem reports for tag 'rp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44202 [rp] [patch] -stable rp driver does not work with mult s i386/28975 [rp] RocketPort problems 2 problems total. Problem reports for tag 'rpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158340 [rpc] Possible dereference of null pointer by code tha p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o kern/150036 [rpc] Sun RPC license has less restrictions now. f kern/117711 [rpc] rpcbind binds to all interfaces on random ports o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux 7 problems total. Problem reports for tag 'rpc.quotad': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support 1 problem total. Problem reports for tag 'rtalloc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs 1 problem total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/152662 [rtld] load libraries with address hint (cf. prelink) p bin/149464 jh [libc] [rtld] dlclose(3) can access freed memory and c o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/84199 [rtld] dlinfo does not handle RTLD_DI_SERINFOSIZE prop 5 problems total. Problem reports for tag 'rum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149643 net [rum] device not sending proper beacon frames in ap mo p usb/146693 thompsa [rum] Edimax EW‐7318USG not found in usbdevs or a kern/141696 virtualization[rum] [panic] rum(4)+ vimage = kernel panic o kern/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o usb/133296 usb [rum] driver not working properly in hostap mode o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel 13 problems total. Problem reports for tag 'run': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/162500 maho math/suitesparse: gmake[2]: *** [run] Segmentation fau o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o usb/144387 usb [run] [panic] if_run panic 3 problems total. Problem reports for tag 'sa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe 1 problem total. Problem reports for tag 'safe': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/110662 sam [safe] safenet driver causes kernel panic 1 problem total. Problem reports for tag 'sbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136327 firewire [sbp] [boot] Asus M3N78-EM motherboard cannot boot wit o kern/119572 firewire [sbp] PowerBook not accessable when in target mode 2 problems total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163587 [sched_ule] The ULE scheduler does not load in the fou o kern/161097 [sched_ule] Unkillable process hanging waiting for "ex o kern/128177 jeff [sched_ule] wrong CPU usage reported by top(1)/ps(1) w p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/117420 jeff [sched_ule] round off in sched_balance_pair() s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a 7 problems total. Problem reports for tag 'scheduler': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' 1 problem total. Problem reports for tag 'scsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re o kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 drive if dis o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. 3 problems total. Problem reports for tag 'ses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi 1 problem total. Problem reports for tag 'sg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120487 scsi [sg] scsi_sg incompatible with scanners 1 problem total. Problem reports for tag 'siis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145714 [siis] removed SATA device on port multiplier resets e 1 problem total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159647 [sio] device sio will not compile o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o kern/128036 [sio] [patch] serial console mostly ignores typein to a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/97665 [sio] hang in sio driver o kern/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i o kern/51982 remko [sio] sio1: interrupt-level buffer overflows o kern/49039 [sio] [patch] add support for RS485 hardware where dir o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/26261 [sio] silo overflow problem in sio driver s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o 13 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 1 problem total. Problem reports for tag 'smb': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect 1 problem total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/159048 fs [smbfs] smb mount corrupts large files o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o kern/94733 fs [smbfs] smbfs may cause double unlock o kern/91134 fs [smbfs] [patch] Preserve access and modification time a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o kern/87859 fs [smbfs] System reboot while umount smbfs. o kern/80088 fs [smbfs] Incorrect file time setting on NTFS mounted vi o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o kern/61503 fs [smbfs] mount_smbfs does not work as non-root o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o kern/36566 fs [smbfs] System reboot with dead smb mount and umount 26 problems total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164203 [smp] usr/src/sys/sys/smp.h:124: warning: comparison b o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/67830 [smp] [patch] CPU affinity problem with forked child p 3 problems total. Problem reports for tag 'snapshots': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162362 fs [snapshots] [panic] ufs with snapshot(s) panics when g 1 problem total. Problem reports for tag 'snd_emu10k1': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system 7 problems total. Problem reports for tag 'snd_hda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s f kern/158424 multimedia [snd_hda] snd_hda driver doesn't expose 'rec' flag for o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/150284 multimedia [snd_hda] No gain with Audio o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o kern/141826 multimedia [snd_hda] load of snd_hda module fails o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att 10 problems total. Problem reports for tag 'snd_uadio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158979 multimedia [snd_uadio] snd_uaudio fails to initialize built-in mi 1 problem total. Problem reports for tag 'snd_uaudio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156726 multimedia [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant 4 problems total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou p kern/144061 rwatson [socket] race on unix socket close o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm p kern/127360 net [socket] TOE socket options missing from sosetopt() o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec a kern/97921 rwatson [socket] close() socket deadlocks blocked threads f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/21998 net [socket] [patch] ident only for outgoing connections o kern/5877 net [socket] sb_cc counts control data as well as data dat 12 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o kern/148741 multimedia [sound] Headphones are deaf (do not work) on Lenovo Th o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o power/133503 ppc [sound] Sound stutter after switching ttys o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla f usb/80040 usb [sound] [hang] Use of sound mixer causes system freeze o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 54 problems total. Problem reports for tag 'sshd_config': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163843 [sshd_config] Modified VersionAddendum field in sshd_c 1 problem total. Problem reports for tag 'stf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154214 net [stf] [panic] Panic when creating stf interface o conf/148017 hrs [stf] [patch] rc script for stf does not honour create s kern/143673 net [stf] [request] there should be a way to support multi o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/123858 net [stf] [patch] stf not usable behind a NAT 5 problems total. Problem reports for tag 'swap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162382 [swap] Orphaned swap references not garbage collected; 1 problem total. Problem reports for tag 'swi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net 4 problems total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163064 [fix][sym]driver tries to nego synch trans with everyo o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load 4 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o kern/152162 [syscons] On syscons, pressing delete key results in p o kern/148367 [syscons] [patch] Add loader tunable to override SC_HI o kern/148130 [syscons] Inappropriate ioctl for device f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/117242 [syscons] [hang] console hangs when powerd is adaptive o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH s bin/90082 [syscons] [patch] curses ACS line graphics support for o kern/83109 [syscons] syscons does not always display colors corre o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/46973 [syscons] [patch] [request] syscons virtual terminals o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/31890 [syscons] [patch] new syscons font s kern/15436 [syscons] syscons extension: "propellers" 17 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls p kern/148580 gavin [sysctl][patch] Document some sys/kern sysctls o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/54439 [sysctl] [patch] Protecting sysctls variables by given 10 problems total. Problem reports for tag 'tap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158686 virtualization[patch] [tap] Add VIMAGE support to if_tap o kern/123892 net [tap] [patch] No buffer space available o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap 3 problems total. Problem reports for tag 'tcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159795 net [tcp] excessive duplicate ACKs and TCP session freezes o kern/159621 net [tcp] [panic] panic: soabort: so_count f kern/155585 melifaro [tcp] [panic] tcp_output tcp_mtudisc loop until kernel p kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r o kern/154600 net [tcp] [panic] Random kernel panics on tcp_output o kern/154557 net [tcp] Freeze tcp-session of the clients, if in the gat a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t f kern/123617 andre [tcp] breaking connection when client downloading file o kern/123603 andre [tcp] tcp_do_segment and Received duplicate SYN f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a kern/116335 andre [tcp] Excessive TCP window updates o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s 20 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- p conf/147992 gavin [termcap] [patch] xterm-256color is a 8 colors termina o conf/136336 [termcap] [patch] missing entry for "center of keypad" s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili 3 problems total. Problem reports for tag 'terminfo': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/140965 [terminfo] Cannot create terminfo database because ncu 1 problem total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/20529 [ti] gigabit cards fail to link 1 problem total. Problem reports for tag 'tinybsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ 1 problem total. Problem reports for tag 'tmpfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No p kern/141194 jh [tmpfs] tmpfs treats the size option as mod 2^32 o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u p kern/139312 delphij [tmpfs] [patch] tmpfs mmap synchronization bug p kern/138367 jh [tmpfs] [panic] 'panic: Assertion pages > 0 failed' wh p kern/122038 delphij [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc 6 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/161175 eadler [tools] [patch] uninitialized variables on some regres o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o misc/147463 [tools] [patch] Patch for tools/regression/lib/libc/st o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam 5 problems total. Problem reports for tag 'trm': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 1 problem total. Problem reports for tag 'tun': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162927 net [tun] Modem-PPP error ppp[1538]: tun0: Phase: Clearing o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP p kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o bin/115951 [tun] pppoed(8): tun not closed after client abruptly 6 problems total. Problem reports for tag 'twa': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138948 i386 [twa] [regression] da0: Fi o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid 2 problems total. Problem reports for tag 'twe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72906 [twe] twe0 idefinite wait buffer a kern/66185 [twe] twe driver generates gratuitous warning on shutd 2 problems total. Problem reports for tag 'u3g': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem 1 problem total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155752 [uart] tcdrain(3) does not work with uart(4) driver o kern/155196 [uart] uart cannot identify internal modem or its chip o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x o kern/147082 ed [uart] Serial ports unusable [regression] s kern/146647 [uart] Some PCIe serial/parallel boards with ID 9901 9 o kern/144696 ed [uart] tcdrain(3) does not work right with uart(4) dri o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 8 problems total. Problem reports for tag 'uath': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri 1 problem total. Problem reports for tag 'ubsa': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun 4 problems total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct 11 problems total. Problem reports for tag 'udav': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ 1 problem total. Problem reports for tag 'udbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected 2 problems total. Problem reports for tag 'udf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158376 [udf] [patch] The UDF file system under counts the num o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada 3 problems total. Problem reports for tag 'udp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o kern/133736 net [udp] ip_id not protected ... p kern/127057 bz [udp] Unable to send UDP packet via IPv6 socket to IPv o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject 5 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164472 fs [ufs] fsck -B panics on particular data inconsistency o kern/164184 fs [ufs] [panic] Kernel panic with ufs_makeinode o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161674 fs [ufs] snapshot on journaled ufs doesn't work o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 o kern/160860 fs [ufs] Random UFS root filesystem corruption with SU+J o kern/159930 fs [ufs] [panic] kernel core p kern/156545 fs [ufs] mv could break UFS on SMP systems o kern/156193 fs [ufs] [hang] UFS snapshot hangs && deadlocks processes o kern/152991 [ufs] false disk full with a too slow flash module o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o kern/147420 fs [ufs] [panic] ufs_dirbad, nullfs, jail panic (corrupt o kern/146708 fs [ufs] [panic] Kernel panic in softdep_disk_write_compl o kern/145246 fs [ufs] dirhash in 7.3 gratuitously frees hashes when it o kern/144929 fs [ufs] [lor] vfs_bio.c + ufs_dirhash.c o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132331 fs [ufs] [lor] LOR ufs and syncer o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file a kern/125613 trasz [ufs] [patch] ACL problems with special files o bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o kern/117954 fs [ufs] dirhash on very large directories blocks the mac o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po 36 problems total. Problem reports for tag 'uftdi': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/67301 usb [uftdi] [panic] RTS and system panic 10 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/154710 usb [ugen] Conexant USB Modem is not working in 8.x. In 7. o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n 8 problems total. Problem reports for tag 'uhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 3 problems total. Problem reports for tag 'uhub': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb 3 problems total. Problem reports for tag 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does f usb/102066 gavin [ukbd] usb keyboard and multimedia keys don't work o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar 13 problems total. Problem reports for tag 'ulpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes 11 problems total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/85971 jeff [uma] [patch] minor optimization to uma 2 problems total. Problem reports for tag 'umapfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/74708 [umapfs] [panic] UMAPFS kernel panic 1 problem total. Problem reports for tag 'umass': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o usb/153149 usb [umass] USB stick quirk regression [regression] o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d f usb/135348 eadler [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2 o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o usb/131583 usb [umass] Failure when detaching umass Device o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/121169 usb [umass] Issues with usb mp3 player o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o usb/114682 usb [umass] generic USB media-card reader unusable f kern/114667 [umass] UMASS device error log problem o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) f usb/74771 usb [umass] [hang] mounting write-protected umass device a s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/40948 usb [umass] [request] USB HP CDW8200 does not work 62 problems total. Problem reports for tag 'umct': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters 1 problem total. Problem reports for tag 'umodem': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number o usb/128485 usb [umodem] [patch] Nokia N80 modem support p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work 5 problems total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s kern/103578 [ums] ums does not recognize mouse buttons s usb/96120 usb [ums] [request] USB mouse not always detected o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 13 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161511 fs [unionfs] Filesystem deadlocks when using multiple uni o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/145750 daichi [unionfs] [hang] unionfs locks the machine o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo o bin/19772 [unionfs] df(1) output wrong for union-mounts 14 problems total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco 1 problem total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode 5 problems total. Problem reports for tag 'urio': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/51958 usb [urio] [patch] update for urio driver 1 problem total. Problem reports for tag 'urtw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b 4 problems total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/163328 usb [usb] Support for Atheros USB abgn devices o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics o usb/129311 usb [usb] [panic] Instant crash with an USB card reader s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f usb/87224 usb [usb] Cannot mount USB Zip750 o usb/79723 usb [usb] [request] prepare for high speed isochronous tra s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 22 problems total. Problem reports for tag 'usb67': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is f usb/137872 usb [usb67] [boot] slow booting on usb flash drive o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/128977 usb [usb67] [patch] uaudio is not full duplex s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con 45 problems total. Problem reports for tag 'usb8': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/157074 usb [boot] [usb8] vfs_mountroot_ask is called when no usb o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf s usb/148702 usb [usb8] [request] IO DATA USB-RSAQ5 support on FreeBSD- p usb/146367 thompsa [usb8] [patch] Revision 205728: broken bluetooth mouse o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date f usb/145513 usb [usb8] New USB stack: no new devices after forced usb p usb/145455 usb [usb8] [patch] USB debug support cannot be disabled o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o usb/137377 usb [usb8] request support for Huawei E180 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/130122 usb [usb8] DVD drive detects as 'da' device o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil 55 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports 10 problems total. Problem reports for tag 'uscanner': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device 1 problem total. Problem reports for tag 'uvisor': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. 1 problem total. Problem reports for tag 'vbox': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o amd64/161418 vbox [panic] [vbox] FreeBSD 9.0beta3 under Virtualbox: lost o ports/151603 vbox [vbox] Self-built emulators/virtualbox-ose-kmod vboxne o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum 4 problems total. Problem reports for tag 'vesa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod 3 problems total. Problem reports for tag 'vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163461 [vfs] vfs.zfs.arc_max/vfs.zfs.arc_meta_limit defaults o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/142878 fs [zfs] [vfs] lock order reversal f kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o kern/139127 [vfs] False negative vfs cache entry p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D 9 problems total. Problem reports for tag 'vga': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o kern/64114 [vga] [patch] bad vertical refresh for console using R 2 problems total. Problem reports for tag 'vimage': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161094 virtualization[vimage] [panic] kernel panic with pf + VIMAGE when st o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe o kern/148155 virtualization[vimage] Kernel panic with PF/IPFilter + VIMAGE kernel a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash 5 problems total. Problem reports for tag 'vinum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/79035 geom [vinum] gvinum unable to create a striped set of mirro o conf/47566 [vinum] [patch] add vinum status verification to perio 2 problems total. Problem reports for tag 'virtualpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying 1 problem total. Problem reports for tag 'vlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156408 net [vlan] Routing failure when using VLANs vs. Physical e o kern/155420 net [vlan] adding vlan break existent vlan o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out f kern/146394 net [vlan] IP source address for outgoing connections o kern/146358 net [vlan] wrong destination MAC address p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o kern/117423 net [vlan] Duplicate IP on different interfaces 12 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161887 [vm] [panic] panic at vm_page_wire with FreeBSD 9.0 Be o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero o kern/147459 [vm] [panic] Kernel panic: vm_page / vdrop / vm_page_c o kern/140461 [vm] Fail to read from swap. The swap_pager.c contains o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind s bin/2137 [vm] systat(1) total vm statistics are bad 12 problems total. Problem reports for tag 'vmware': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156749 [vmware] FreeBSD 8.2 does infinite disk access in VMwa f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o kern/147793 emulation [vmware] [panic] cdrom handling, panic, possible race o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind 4 problems total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo f kern/143074 bschmidt [wi]: wi driver triggers panic o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/131776 net [wi] driver fails to init f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/107944 net [wi] [patch] Forget to unlock mutex-locks s kern/79323 [wi] authmod setup with ifconfig on dlink wlan card fa 13 problems total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/146165 net [wlan] [panic] Setting bssid in adhoc mode causes pani o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti 5 problems total. Problem reports for tag 'wlan_xauth': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa 1 problem total. Problem reports for tag 'wpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159203 net [wpi] Intel 3945ABG Wireless LAN not support IBSS o kern/156322 wireless [wpi] no ahdemo support for if_wpi f kern/147862 bschmidt [wpi] Possible bug in the wpi driver. Network Manager o kern/144987 wireless [wpi] [panic] injecting packets with wlaninject using f kern/143595 bschmidt [wpi] [panic] Creating virtual interface over wpi0 in f kern/139079 bschmidt [wpi] Failure to attach wpi(4) f kern/138739 bschmidt [wpi] wpi(4) does not work very well under 8.0-BETA4 o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 f kern/128917 bschmidt [wpi] [panic] if_wpi and wpa+tkip causing kernel panic f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 10 problems total. Problem reports for tag 'xe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne 1 problem total. Problem reports for tag 'xen': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164630 xen [xen] XEN HVM kernel: run_interrupt_driven_hooks: stil o kern/164450 xen [xen] Failed to install FreeeBSD 9.0-RELEASE from CD i o kern/162677 xen [xen] FreeBSD not compatible with "Current Stable Xen" o kern/161318 xen [xen] sysinstall crashes with floating point exception o kern/155468 xen [xen] Xen PV i386 multi-kernel CPU system is not worki o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o kern/154833 xen [xen]: xen 4.0 - DomU freebsd8.2RC3 i386, XEN kernel. o kern/154473 xen [xen] xen 4.0 - DomU freebsd8.1 i386, XEN kernel. Not o kern/154472 xen [xen] xen 4.0 - DomU freebsd8.1 i386 xen kernel reboot o kern/154428 xen [xen] xn0 network interface and PF - Massive performan o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor f kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after f kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. f kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i p kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all f i386/124516 xen [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/118734 xen [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b 25 problems total. Problem reports for tag 'xfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o kern/145411 fs [xfs] [panic] Kernel panics shortly after mounting an p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul 4 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129352 yongari [xl] [patch] xl0 watchdog timeout s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad 2 problems total. Problem reports for tag 'xpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164132 [xpt] "xptioctl: pass device not in the kernel" noise o kern/154432 scsi [xpt] run_interrupt_driven_hooks: still waiting after 2 problems total. Problem reports for tag 'zfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164370 fs [zfs] zfs destroy for snapshot fails on i386 and sparc o kern/164256 fs [zfs] device entry for volume is not created after zfs o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/163770 fs [zfs] [hang] LOR between zfs&syncer + vnlru leading to o kern/162860 fs [zfs] Cannot share ZFS filesystem to hosts with a hyph o kern/162751 fs [zfs] [panic] kernel panics during file operations o kern/162519 fs [zfs] "zpool import" relies on buggy realpath() behavi o kern/162083 fs [zfs] [panic] zfs unmount -f pool o kern/161968 fs [zfs] [hang] renaming snapshot with -r including a zvo o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o kern/161533 fs [zfs] [panic] zfs receive panic: system ioctl returnin o kern/161438 fs [zfs] [panic] recursed on non-recursive spa_namespace_ o kern/161280 fs [zfs] Stack overflow in gptzfsboot o kern/161169 fs [zfs] [panic] ZFS causes kernel panic in dbuf_dirty o kern/160893 fs [zfs] [panic] 9.0-BETA2 kernel panic o kern/160801 fs [zfs] zfsboot on 8.2-RELEASE fails to boot from root-o o kern/160777 fs [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/impo o kern/160706 fs [zfs] zfs bootloader fails when a non-root vdev exists o kern/160591 fs [zfs] Fail to boot on zfs root with degraded raidz2 [r o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/159357 fs [zfs] ZFS MAXNAMELEN macro has confusing name (off-by- o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159251 fs [zfs] [request]: add FLETCHER4 as DEDUP hash option o kern/159077 fs [zfs] Can't cd .. with latest zfs version o kern/159045 fs [zfs] [hang] ZFS scrub freezes system o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o kern/157399 fs [zfs] trouble with: mdconfig force delete && zfs strip o kern/157179 fs [zfs] zfs/dbuf.c: panic: solaris assert: arc_buf_remov o kern/156797 fs [zfs] [panic] Double panic with FreeBSD 9-CURRENT and o kern/156781 fs [zfs] zfs is losing the snapshot directory, o kern/155615 fs [zfs] zfs v28 broken on sparc64 -current o kern/155587 fs [zfs] [panic] kernel panic with zfs o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/154930 fs [zfs] cannot delete/unlink file from full volume -> EN o kern/153996 fs [zfs] zfs root mount error while kernel is not located o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o kern/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o kern/153351 fs [zfs] locking directories/files in ZFS o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w o bin/153142 [zfs] ls -l outputs `ls: ./.zfs: Operation not support o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor o kern/151905 fs [zfs] page fault under load in /sbin/zfs o kern/151648 fs [zfs] disk wait bug o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151226 fs [zfs] can't delete zfs snapshot o kern/151111 fs [zfs] vnodes leakage during zfs unmount o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted o kern/149173 fs [patch] [zfs] make OpenSolaris installa o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro o kern/148504 fs [zfs] ZFS' zpool does not allow replacing drives to be o kern/148490 fs [zfs]: zpool attach - resilver bidirectionally, and re o kern/148368 fs [zfs] ZFS hanging forever on 8.1-PRERELEASE o kern/148138 fs [zfs] zfs raidz pool commands freeze o kern/147903 fs [zfs] [panic] Kernel panics on faulty zfs device o kern/147881 fs [zfs] [patch] ZFS "sharenfs" doesn't allow different " o kern/147560 fs [zfs] [boot] Booting 8.1-PRERELEASE raidz system take o kern/146941 fs [zfs] [panic] Kernel Double Fault - Happens constantly o kern/146786 fs [zfs] zpool import hangs with checksum errors o kern/146528 fs [zfs] Severe memory leak in ZFS on i386 o kern/146410 pjd [zfs] [patch] bad file copy performance from UFS to ZF f kern/145802 pjd [zfs] page fault under load s kern/145712 fs [zfs] cannot offline two drives in a raidz2 configurat f kern/145339 pjd [zfs] deadlock after detaching block device from raidz o kern/145272 fs [zfs] [panic] Panic during boot when accessing zfs on o kern/145238 fs [zfs] [panic] kernel panic on zpool clear tank o kern/145229 fs [zfs] Vast differences in ZFS ARC behavior between 8.0 p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o kern/143184 fs [zfs] [lor] zfs/bufwait LOR o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn o kern/142489 fs [zfs] [lor] allproc/zfs LOR o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140640 fs [zfs] snapshot crash o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134491 fs [zfs] Hot spares are rather cold... f kern/128633 pjd [zfs] [lor] lock order reversal in zfs f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/127492 pjd [zfs] System hang on ZFS input-output s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS f sparc/123566 fs [zfs] zpool import issue: EOVERFLOW f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un 109 problems total. Problem reports for tag 'zlib': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl 2 problems total. Problem reports for tag 'zyd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160296 wireless [zyd] [panic] 802.11 usb device reboots system on 'ifc o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o usb/150892 usb [zyd] Whenever network contacted in any shape, way or o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system 5 problems total. From bugmaster at FreeBSD.org Mon Feb 6 11:06:05 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 6 12:24:33 2012 Subject: Current problem reports Message-ID: <201202061106.q16B62nj007027@freefall.freebsd.org> (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi .) 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. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/164819 openbox package broken? f ports/164818 sysutils/tty-clock may be fixed on 9.0 o ports/164817 net-snmp reports some local filesystems as network-fil o ports/164816 kde audio/amarok-kde4 broken, incorrect tarball released b o ports/164815 sunpoet [MAINTAINER] www/node: update to 0.6.10 f ports/164814 glewis [PATCH] science/ovt: Update to 2.3_4 f ports/164813 glewis [PATCH] www/jericho-html: update to 3.2 o ports/164811 joerg [PATCH] devel/avr-gcc add missing pkg-plist entry o ports/164810 [MAINTAINER-UPDATE] ports-mgmt/bpkg: update to 2.1.6 o bin/164808 system crontab doesn't support usernames with spaces i o ports/164807 [MAINTAINER] irc/weechat-devel: update to 20120205 (0. f ports/164806 jgh [UPDATE] net/libexosip2 to 3.6.0 o docs/164803 doc Unclear manual page for mount_unionfs(8) o bin/164802 Can't destroy zfs snapshots in 8-stable w/o -R o docs/164800 doc Handbook's installation topic doesn't mention ZFS o www/164799 gjb Outdated ports tree growth graph o ports/164796 databases/postgresql-pltcl refuse to compile with Post o ports/164795 dinoex Add Via Padlock support to security/openssl (patch inc f ports/164794 miwi [UPDATE] www/py-werkzeug to 0.8.3 o stand/164793 'write' system call violates POSIX standard o ports/164792 jgh msmtp build fails, missing dependency on pkgconfig o ports/164790 [MAINTAINER] sysutils/fusefs-exfat: fix time/date hand o ports/164789 dinoex graphics/giflib and graphics/libungif claim to have in o ports/164788 miwi [PATCH] multimedia/miro update to 4.0.5 o stand/164787 standards dirfd() function not available when _POSIX_C_SOURCE is o ports/164786 [PATCH] devel/simian: Re-adding the deleted port o ports/164785 sylvio [patch] devel/bglibs: linking with libbg causes time(3 f ports/164784 jgh [patch] x11-toolkits/swt-devel: (correction) update to f ports/164782 swills [PATCH] devel/p5-Log-Dispatchouli: add missing BUILD_D f ports/164781 swills [PATCH] devel/p5-Log-Dispatch-Array: add TEST_DEPENDS o ports/164779 bapt [PATCH] devel/p5-App-SD: add missing DEPENDS o ports/164778 clsung [PATCH] net/p5-Net-Jifty: add TEST_DEPENDS, use new fo o ports/164775 jgh [NEW PORT] sysutils/sshpass: A non-interactive ssh pas o ports/164774 Scid 4.3 available o misc/164773 9.0 amd64 fails to boot on HP DL145 G3 o docs/164772 doc incorrect ipfw sched parameters in manual o ports/164769 miwi [PATCH] databases/pecl-mongo: update to 1.2.7 f ports/164767 dhn [PATCH] Unbreak ports/net-im/centerim on 9.x/10.x f ports/164766 scheidell [MAINTAINER-UPDATE] audio/firefly patch daap.c for new o kern/164763 Memory leak in VNET f ports/164762 scheidell [UPDATE] mail/dcc-dccd to 1.3.141 o ports/164761 New port: dns/bind10-devel Development version of ISC f ports/164760 wen [PATCH] www/py-turbogears2: update to 2.1.4 o ports/164759 dinoex print/cups: printing malfunction "Unable to get print o ports/164758 jgh update port: emulators/joytran to version 0.8.2 o ports/164757 lme [PATCH] games/scummvm: update to 1.4.1 o ports/164756 gnome [PATCH] devel/gamin: add option for libinotify to fix f ports/164755 swills [PATCH] devel/p5-App-GitHub: add missing BUILD_DEPENDS o ports/164754 clsung [PATCH] net/p5-Net-GitHub: add missing DEPENDS, add TE o misc/164752 No option of ZFS in FreeBSD 9.0 DVD installation o ports/164750 fluffy [PATCH] news/inn: Fix rc script f ports/164748 swills [PATCH] devel/p5-App-Cmd: add TEST_DEPENDS to enable t f ports/164747 swills [PATCH] textproc/p5-String-RewritePrefix: add TEST_DEP o ports/164746 sunpoet [PATCH] devel/p5-AnyMQ: add missing BUILD_DEPENDS to s f ports/164745 crees [PATCH] sysutils/ezjail should copy over ezjail.conf.s o ports/164743 [UPDATE] emulators/dgen-sdl to v1.29 o ports/164742 kde games are not working properly o kern/164741 zvol always present as 512 bytes/sector regardless of o ports/164740 trafficserver: configuration lost on upgrade o docs/164739 doc Documentation on ftp site out-of-date o docs/164735 doc Quota enable documentation needs to be updated o kern/164734 [quota] 9.0 quota not working [regression] o ports/164733 miwi [MAINTAINER] databases/pecl-mysqlnd_ms: update to 1.2. o ports/164732 perl [PATCH] lang/rakudo update to January 2012 release of o ports/164728 miwi [MAINTAINER-UPDATE] chinese/phpbb3-tw: update to 3.0.1 f ports/164727 miwi [UPDATE] devel/libffi: update to 3.0.10 f ports/164726 miwi [patch] www/phpbb3 update to 3.0.10 o ports/164725 mm graphics/opencv fails in Tinderbox o kern/164724 [dtrace] [patch] Signal bug in Dtrace o kern/164721 wireless [ath] ath device timeouts o ports/164719 sylvio [PATCH] irc/bip: update to fix CVE-2012-0806 o ports/164718 jgh Update devel/quilt port to 0.51 o misc/164716 ports: net-mgmt/xymon-server add menu options o docs/164715 hselasky webcamd(): manpage lists option "-H Register devi o ports/164714 graphics/rawtherapee fails to build o ports/164711 apache www/apache22 2.2.22 proxy connect patch update o conf/164709 eadler [patch] [pc-sysinstall] add raidz3 support; permit 'ra o amd64/164707 amd64 FreeBSD 9 installer does not work with IBM uefi o ports/164706 garga [PATCH] www/sarg: add PHP script install switch o ports/164702 rc.d script for security/sshguard f ports/164701 sunpoet [PATCH] mail/p5-Email-Sender: update to 0.110003 o ports/164700 leeym net-mgmt/nettop: suddenly core dump o ports/164698 apache [patch] www/apache22: remove custom user creation in f o ports/164697 miwi [maintainer] devel/ocaml-camlp5 update to 6.03 o kern/164696 net [netinet] [patch] [panic] VIMAGE + carp panics the ker o ports/164695 www/swfdec-plugin for firefox does not display the Fla o kern/164694 [ata] Regression in 3726 port multiplier support in 9. o ports/164692 skv [PATCH] devel/otrs: update to version 3.0.11 o ports/164691 databases/proftpd-mod_sql_postgres: compiling do not a o kern/164690 ipfw [ipfw] Request for ipv6 support in ipfw tables o ports/164689 haskell math/hs-probability:Update to 0.2.3.1 f ports/164688 culot update /usr/ports/devel/py-ipaddr o ports/164687 gecko www/firefox: build fails on check-sync-dirs.py - parti f ports/164685 sunpoet [PATCH] devel/scons: remove duplicated entry of egg-in o docs/164682 doc Handbook contains wrong information about Flash player o ports/164678 maho repocopy request: editors/openoffice.org-3-devel to ed o ports/164677 sahil [REPOCOPY] mail/postfix -> mail/postfix28 o ports/164676 miwi www/mybb update to 1.6.5 o kern/164674 [patch] [libc] vfprintf/vfwprintf return error (EOF) o o bin/164672 [patch] mptutil(8): fix build error with DEBUG o ports/164670 miwi New port: security/py-django-openid-auth OpenID integr o ports/164669 miwi [UPDATE] www/py-waitress to 0.8 o ports/164668 miwi [UPDATE] security/py-certify to 0.0.6 o ports/164665 miwi [maintainer] devel/premake4: fix broken regression tes f ports/164664 miwi [maintainer] mail/enma update to 1.2.0 o ports/164660 miwi sysutils/su2: utmpx fix o ports/164659 security/py-fail2ban overwrite config files o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h f ports/164653 installation trouble of japanese/ebnetd o kern/164651 mav [cam] Disabling DMA in new Freebsd 9.0 CAM drivers doe s ports/164646 jgh [patch] www/davical: update to 1.0.2 f ports/164645 jgh [patch] devel/php-libawl: update to 0.51 o ports/164644 miwi [UPDATE] net/py-urllib3 to 1.2 o amd64/164643 amd64 Kernel Panic at 9.0-RELEASE o ports/164642 miwi New port: audio/sooperlooper: a live looping sampler c o ports/164641 miwi New port: audio/rubberband, in preparation for audio/s o ports/164640 miwi New port: audio/vamp-plugin-sdk, in preparation for au f ports/164639 enable enca charset detection engine in multimedia/mpl o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o kern/164637 [libc] Problem with vsnprintf in libc.so when compiled o ports/164635 miwi [maintainer] textproc/sphinxsearch -- clang support, e o ports/164633 ruby [PATCH] devel/rubygem-json_pure: update to 1.6.5 o ports/164632 ruby [PATCH] devel/rubygem-json: update to 1.6.5 r ports/164631 Update mail/dbmail to version 3.0.0 o kern/164630 xen [xen] XEN HVM kernel: run_interrupt_driven_hooks: stil o ports/164627 dns/powerdns port should include boost-libs as lib_dep o ports/164625 lme [PATCH] port net-mgmt/icinga to support IDOUtils o ports/164624 miwi New ports: www/py-django-cms Content management system o ports/164623 miwi update port www/py-django-classy-tags to 0.3.4.1 o ports/164622 miwi New port: www/py-django-sekizai Block templating syste o ports/164621 timur please, update net/samba36 to 3.6.3 (vulnerable) o docs/164620 doc Raid 1 issues o amd64/164619 amd64 when logged in as root the user and group applications o ports/164618 lx [patch] textproc/scim: building with clang failed o ports/164616 mm Building graphics/ImageMagick and graphics/GraphicsMag o ports/164611 miwi [maintainer update] devel/dyncall o ports/164609 sylvio [patch] print/scribus: update to version 1.4.0 o bin/164604 [patch] tftp(1): TFTP pxeboot: should use root-path pr f amd64/164602 gavin world doesn't build f ports/164600 kuriyama textproc/p5-XML-Parser fails to find expat, does not c o ports/164599 pav [exp-run]: SDL ports update o ports/164598 pgollucci devel/libee 0.3.2 fails to build due to error: 'EE_CTX f ports/164597 [patch] security/py-pycrypto: update to 2.5 o ports/164593 miwi fix ports/UPDATING o ports/164592 sylvio [port update] print/scribus to 1.4.0 o ports/164588 tobez [PATCH] databases/p5-Text-Query-SQL: add TEST_DEPENDS f ports/164586 [PATCH] www/trac-gitplugin: [tarball refreshed from gi o bin/164585 ping(8) should use clock_gettime instead of gettimeofd o ports/164583 lev [PATCH] devel/subversion: chown: /home/svn/repos/dav: o ports/164581 [new port] cad/linux-eagle6 o ports/164578 garga x11-wm/awesome fails to build f ports/164577 rm [PATCH] x11/terminator: update WWW p bin/164570 maxim [patch] pom(6) wrong usage message o kern/164569 net [msk] [hang] msk network driver cause freeze in FreeBS o ports/164566 skv [patch] databases/pgbouncer: update to latest version o kern/164565 [padlock] [panic] kernel crash when kldunload'ing padl o docs/164564 doc [if_bridge] Incorrect default timeout for a bridge in f ports/164563 games/sumwars can't run o bin/164561 portmgr [patch] pkg_version(1): update references to INDEX-8 f o ports/164559 x11-fonts/webfonts port compile fails as requires xcb- f ports/164550 sunpoet [PATCH] graphics/p5-Image-ExifTool: update to 8.77 o ports/164547 oliver graphics/cegui build failed if has tinyxml installed o ports/164546 clsung [PATCH] databases/p5-SQL-Interp: add missing BUILD_DEP o ports/164545 oliver graphics/ogre3d 1.7.4 build failed on the machine whic o ports/164544 miwi [patch] x11-servers/xorg-server: prune unused deps o ports/164542 bf [patch] lang/sbcl: enable SB-CONCURRENCY-TEST::MAILBOX f ports/164540 miwi [PATCH] x11-themes/icons-tango: Fix fetching f ports/164539 miwi [patch] Update for audio/libmtp (from 1.0.6 to 1.1.1) o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP o ports/164537 gnome print/system-config-printer D-Bus config patch o kern/164536 [modules] [request] disable building kernel modules th o bin/164535 [patch] ps(1) truncates command to screen size even wh o kern/164534 csjp [bpf] net.bpf.zerocopy_enable=1 makes pflogd eat cpu a f ports/164533 net/isc-dhcp41-server and net/isc-dhcp42-server eat CP f ports/164529 scheidell [PATCH] security/swatch doesn't always find running pr o ports/164528 mm Don't require specific Tcl version for lang/tcl-wrappe o bin/164526 kill(1) can not kill process despite on -KILL f ports/164522 sunpoet [PATCH] net/p5-XML-RPC-Fast: update to 0.8 f ports/164515 sunpoet [PATCH] net/p5-Net-SFTP-Foreign: update to 1.69 f ports/164512 sunpoet [PATCH] devel/p5-App-Cmd: update to 0.314 o ports/164508 lev [patch] port devel/subversion Book URLs are invalid o ports/164504 gnome [patch] net/opal3: patch configure to recognize amd64 o ports/164503 gnome [UPDATE] games/gcompris: update to 12.01 o ports/164502 [patch] news/sabnzbdplus not starting on boot o ports/164500 gnome [patch] Build x11-toolkits/libwnck without startup_not o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu o ports/164498 anders Upgrade port www/pound to 2.6 o kern/164495 net [igb] connect double head igb to switch cause system t o kern/164490 net [pfil] Incorrect IP checksum on pfil pass from ip_outp o ports/164488 timur [patch] devel/talloc,devel/tdb: fix compile with MAKE_ f ports/164480 mi Upgrade devel/tcllib to1.14 (patch included) o ports/164478 mi Upgrade databases/pgtcl to 2.0.0 (patch included) o ports/164477 clsung [PATCH] net/py-kombu: update to 2.0.0 o kern/164475 net [gre] gre misses RUNNING flag after a reboot o kern/164474 The system couldn't turn on a monitor connected via Di o kern/164472 fs [ufs] fsck -B panics on particular data inconsistency o ports/164471 zi Update security/suricata from 1.1.1 to the latest vers o ports/164468 sunpoet [Update] graphics/gdal 1.8.1 -> 1.9.0 f ports/164464 port sysutils/dvdisaster does not recognize drives on f ports/164463 [PATCH] mail/qpopper: fix RC_SUBR o kern/164462 fs [nfs] NFSv4 mounting fails to mount; asks for stronger o ports/164460 pgollucci Update xapian* to 1.2.7 o ports/164459 gnome www/webkit-gtk2 1.4.3 failed to link when WITH_VIDEO=t o ports/164458 clsung [PATCH] databases/p5-DBIx-Sunny: adding missing TEST_D o amd64/164457 amd64 [install] Can't install FreeBSD 9.0 (amd64) on HP Blad o ports/164456 jgh New port: sysutils/news Print news items o ports/164453 danfe graphics/luxrender: libpng warning: Application built o kern/164450 xen [xen] Failed to install FreeeBSD 9.0-RELEASE from CD i o ports/164449 gnome [PATCH] finance/gnucash update to 2.4.9 a ports/164446 danfe Update port x11/nvidia-driver to 290.10 o kern/164445 [libc] lseek(2) always returns ENXIO with SEEK_DATA/SE o ports/164431 timur net/samba36 does not enable AIO by default f ports/164430 tabthorpe [PATCH] www/phpsysinfo: Add dom to USE_PHP s kern/164425 [libc] stat(2) doesn't work in 32bit mode on amd64 o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164418 miwi [PATCH] shells/mksh doesn't build with Clang. o ports/164416 kuriyama [PATCH] textproc/iso8879: Fix on 9 and 10 o ports/164413 rafan [PATCH] converters/p5-Encode: add patch to fix tests f ports/164408 gtranscode port created o ports/164403 portmgr [patch] Mk/bsd.licenses.mk: bring back --hline o kern/164402 pf [pf] pf crashes with a particular set of rules when fi o kern/164400 net [ipsec] immediate crash after the start of ipsec proce o bin/164399 sysinstall bsdinstall(8): 9.0 installer failures o www/164397 jkois Commercial vendor submition o misc/164396 bugmeister [GNATs] add 'enhancement' class o misc/164395 bugmeister [GNATs] add support for .patch attachments o misc/164394 bugmeister [GNATS] Change some fields to 'unset' to prevent misca o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o ports/164390 portmgr [bsd.port.mk] make package-recursive fails with noise o ports/164388 sunpoet shells/ksh93 fails to build/install o ports/164384 lme [patch] games/scummvm update to 1.4.1 o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 f ports/164380 jgh audio/audacity-devel should not forcefully depend on J o bin/164378 [patch] improvement of pkg_info(1) warning o ports/164376 New port: graphics/opennurbs allows to transfer 3D geo o www/164375 jkois Update our FreeBSD Listing o ports/164372 office editors/libreoffice fails to build o kern/164370 fs [zfs] zfs destroy for snapshot fails on i386 and sparc o kern/164369 adrian [if_bridge] [patch] two STP bridges have the same id o ports/164367 secteam ports-mgmt/portaudit finds problem in a jail but not o o kern/164365 wireless [iwi] iwi0: UP/DOWN in o ports/164364 New port: multimedia/banshee-devel Music management an o ports/164362 mlaier sysutils/pftop fails to compile o ports/164357 skv [PATCH] databases/p5-DBIx-ContextualFetch: add TEST_DE o ports/164355 misc/gpt will not install using pkg_add o ports/164354 rm [Maintainer Update] graphics/gauche-gl 0.4.4 -> 0.5. p bin/164353 maxim ifmcstat(8) build fail without -DWITH_KVM o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak p ports/164349 x11 [PATCH] x11/libXinerama :1 LeftOf or Above :0 mouse is o bin/164348 ntpd(1): ntp.conf restrict default ignore option doesn o ports/164345 portmgr Mk/bsd.licenses.mk framework not suitable for linuxula o ports/164341 lev [patch] sysutils/graid5: remove post-deinstall target f ports/164338 miwi [UPDATE] www/py-requests to 0.9.3 o ports/164333 kuriyama missing dependency in security/gnupg o ports/164332 linimon growisofs/cdrecord error on 9.0R (unable to CAMGETPASS o ports/164330 yzlin www/yii update to 1.1.9 o kern/164329 acpi [acpi] hw.acpi.thermal.tz0.temperature shows strange v o ports/164321 timur [PATCH] devel/p5-DateTime-Format-Natural: Add TEST_DEP o ports/164320 skv [PATCH] devel/p5-Context-Preserve: Add TEST_DEPENDS to f ports/164319 jgh Update x11-fonts/linuxlibertine to version 4.7.5 o bin/164317 [patch] write(1): add multibyte character support p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method f ports/164311 dumbbell [PATCH] Update security/pam_google_authenticator to 20 o ports/164309 New port: graphics/pinta Simple drawing/painting progr o ports/164308 lev devel/subversion: The subversion book cannot be downlo o ports/164306 update mail/mailagent to 3.1.77 and utmpx fix o bin/164302 [patch] mail(1) expands aliases beyond # o amd64/164301 amd64 [install] 9.0 - Can't install, no DHCP lease o ports/164299 sylvio [UPDATE] devel/cdialog: update to 1.1.20111020 o ports/164298 acm [PATCH] Make print/foomatic-filters not eat PS files o bin/164294 sysinstall bsdinstall(8): FreeBSD 9.0-RELEASE bsdinstall dvd does o ports/164293 rea print/cups-pstoraster failed o bin/164291 sysinstall bsdinstall(8): bsdinstall and filestetyem selection / f ports/164287 gnome x11-toolkits/vte based applications failing to recogni o ports/164285 gahr graphics/freeimage port has incorrect build flags, lea o bin/164284 sysinstall bsdinstall(8): FreeBSD install assign incorrect dev as o bin/164281 sysinstall bsdinstall(8): please allow sysinstall as installer op o ports/164277 new port: mail/roundcube-automatic_addressbook o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o kern/164271 pf [pf] not working pf nat on FreeBSD 9.0 [regression] o ports/164270 gnome textproc/libxml2 CVE-2011-3919 patch o ports/164269 pgollucci [patch] update www/redmine to 1.3.0 o bin/164267 sysinstall bsdinstall(8) bugs when RE-installing to GPT partition o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o ports/164259 skv [PATCH] textproc/p5-PPIx-Utilities: Add TEST_DEPENDS t o kern/164258 [mfi] mfi does not work with PERC5/i in AMD M350 mothe o kern/164256 fs [zfs] device entry for volume is not created after zfs o kern/164254 geom [geom] gjournal not stopping on GPT partitions f ports/164253 lwhsu [PATCH] databases/cassandra: update to 1.0.7 o kern/164252 geom [geom] gjournal overflow o ports/164251 miwi [UPDATE] shells/mksh to R40d f ports/164243 miwi [PATCH] emulators/dosbox: Fix build with clang s ports/164242 net/openafs port breaks with KERNCONFDIR and include o ports/164239 gecko [PATCH] mail/thunderbird: crash with nss_ldap o kern/164238 eadler [patch] NULL pointer dereference in setusercontext (li f ports/164237 wxs [PATCH] security/suricata: overwrite files from libhtp o ports/164235 vd [patch] graphics/vigra: update to 1.8.0 o ports/164230 maho repocopy request: editors/openoffice.org-3-devel to ed o docs/164228 danger [handbook] [patch] Adding raid3 to handbook o sparc/164227 sparc64 [boot] Can't boot 9.0-RELEASE/sparc64 on Blade 1500 o sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from o power/164225 ppc Boot fails on IBM 7028-6E1 (heap memory claim failed) o ports/164222 gnome switching users in gnome3 invokes sanity check o kern/164220 sound preferences does not allow continuous adjustment o ports/164219 wen [PATCH] databases/p5-DBIx-NoSQL: Add missing BUILD_DEP f ports/164218 [patch] sysutils/fusefs-kmod: update mount_fusefs for o docs/164217 eadler [patch] correct synchronize flag in setfacl(1) manpage o kern/164210 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164209 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164208 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164207 portmgr [PATCH] bsd.port.mk includes top-level Makefile.inc fr o misc/164206 [PATCH] buildworld WITHOUT_OPENSSL stops at lib/libarc o ports/164204 az net/p5-ZeroMQ request sending segfault o kern/164203 [smp] usr/src/sys/sys/smp.h:124: warning: comparison b o ports/164199 Ports fail to acknowlegde newly created users o ports/164197 mm smsd(comms/smstools3) doesn't read some configurations p bin/164192 emaste [patch] wpa_supplicant(8): Fix typo intr-by SVN r21473 o ports/164191 perl [maintainer update] Update japanese/p5-Mail-SpamAssass o ports/164190 mm [PATCH] devel/liboil: Fix build with clang o kern/164189 [pccard] FreeBSD 9.0-RELEASE on Toshiba Satellite Pro o ports/164187 gnome [PATCH] net/avahi etc should use USERS o kern/164184 fs [ufs] [panic] Kernel panic with ufs_makeinode f ports/164181 [PATCH] www/xxxterm: Fix ssl_ca_file path and style o ports/164177 audio/squeezeboxserver should require mysql 5.0 server f ports/164153 miwi Update port: devel/ace to 6.0.7 o kern/164145 [netisr] when one of netisr threads take 100% system i o kern/164143 geom [geom] Partition table not recognized after upgrade R8 p bin/164139 eadler [patch] bsdgrep(1): remove duplicate line from usage o bin/164137 tunefs(8): issues inappropriate error-message o amd64/164136 amd64 after fresh install 8.1 release or 8.2 release the har o kern/164132 [xpt] "xptioctl: pass device not in the kernel" noise o bin/164131 cperciva freebsd-update(8) does not check for failed install co o kern/164130 rwatson [netisr] broken netisr initialization o ports/164129 obrien editors/vim is unable to use the gnome2 interface f ports/164127 dinoex www/webalizer WITH_GEODB requires WITH_BDB o amd64/164116 amd64 [boot] FreeBSD 9.0-RELEASE installations mediums fails o ports/164115 sem net-mgmt/cacti - cacti.sql does have old fashioned TYP o ports/164112 clsung [PATCH] archivers/p5-Archive-Any: add TEST_DEPENDS and o bin/164102 wireless hostapd not configured for 802.11n o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco f ports/164098 miwi [new port] dns/dnssec-tools: DNSSEC Tools port for eas o bin/164097 sysinstall bsdinstall(8): always installs GPT o www/164096 www PR submission form has no field labelled synopsis f bin/164094 sysinstall bsdinstall(8): installer progress over 100% o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number o amd64/164089 amd64 FreeBSD-9.0-RELEASE-amd64-memstick.img does not boot o kern/164082 recurring problem wirh /dev/console and syslog handlin p bin/164081 jilles sockstat(1) not reporting all open sockets f ports/164079 sunpoet [PATCH] graphics/p5-SVG-Graph: update to 0.04 p docs/164078 eadler man setuid(2): a messy sentence o amd64/164073 amd64 /etc/rc warning after booting o ports/164072 portmgr [NEW PORT] databases/percona-{server,client}: Percona o ports/164060 net/ucarp doesn't work on FreeBSD 9.0-PRERELEASE o usb/164058 usb Lexar 8GB USB flash drive doesn't work by default o ports/164055 sysutils/zfs-periodic: Test if scrubbing is in process f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i o stand/164049 eadler getconf returns bad value for ULLONG_MAX o conf/164048 /etc/rc.d/hostid is not symlink aware f ports/164046 bapt [PATCH] sysutils/kkbswitch: %%DOCSDIR%%/common is syml f ports/164045 bapt [PATCH] java/dbvis: prevent dirrm beginning with a / p bin/164042 emaste [PATCH] tzsetup(8): Fix VERBOSE to work with new UTC m p bin/164041 emaste [PATCH] tzsetup(8): Remove unnecessary code duplicatio p bin/164039 emaste [PATCH] tzsetup(8): Don't write /var/db/zoneinfo eithe p bin/164038 wollman [PATCH] tzsetup(8): Increase buffer size to hold error o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o docs/164034 doc acl(9) documentation lacking o ports/164033 lev [patch] port devel/subversion ports change pkg-install f ports/164029 [PATCH] graphics/bmeps fix build with databases/gdbm o ports/164017 bf [NEW PORT] math/plasma: Parallel Linear Algebra Softwa o ports/164015 devel/php5-pinba: pinba crahes PHP when built with pro o ports/164013 gecko www/firefox: Firefox-9 Icons & xpi-addons from ports f ports/164012 scheidell [patch] x11/dmenu version upgrade 4.5 and Xft support o ports/164010 timur [patch] net/samba36: Split up samba scripts into more o misc/164005 rebooting while fsck in progress cause start fsck agai o conf/163993 wrong documentation in /usr/src/Makefile o bin/163992 dumpfs(8): dumpfs -m is broken o www/163988 jkois bsdlatino.blogspot.com o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/163985 [boot0] Incorrect operand size in boot0 o ports/163979 danfe games/quakeforge: update to 0.6.1 o kern/163978 [hwpmc] [patch] Loading hwpmc with an unknown cpuid ca o kern/163974 jkim Via RNG not enabled on amd64 o kern/163973 [ichwd] ichwd(4) no longer appears to function o ports/163963 Mk/bsd.port.mk, math/spooles-mpich, science/mpqc-mpich o www/163957 jkois Our site on http://www.fi.freebsd.org/commercial/misc. o ports/163955 input packet for interface are counted twice o bin/163951 secteam [security] bundled openssl seems to miss fix for a CVE o ports/163948 Python incompatibility on ports: deskutils/calibre o bin/163943 sysinstall bsdinstall(8) fails to detect CD device when booting w o ports/163933 Update security/zenmap to same vers as nmap o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de o kern/163926 eadler [libkvm] libkvm.so.5 exports private symbols f ports/163924 miwi [PATCH] archivers/xarchiver, warning when delete deskt o ports/163917 cs [new port]: graphics/qmetro Map of the transport syste o ports/163913 amdmi3 [UPDATE] games/palomino to v20120105 o ports/163909 bf [MAINTAINER-UPDATE][PATCH] please update math/lapacke o ports/163908 fluffy [patch] filesystem based race condition in multimedia/ o kern/163905 [panic] FreeBSD 9x kernel panic without acpi && event o kern/163903 net [igb] "igb0:tx(0)","bpf interface lock" v2.2.5 9-STABL f ports/163897 zi [NEW PORT] sysutils/dstat: A versatile resource statis f ports/163896 sunpoet [PATCH] devel/p5-Capture-Tiny: update to 0.15 f kern/163890 gavin ps2 keyboard not detected by kernel? [regression] f ports/163886 scheidell New port: net/drawterm Plan9 cpu client o ports/163884 nivit [Patch]databases/py-sqlalchemy:strict depend on py-MyS o docs/163879 doc [handbook] handbook does not say about how to force to o ports/163878 portmgr [exp-run] add -pthread to all perl language builds o docs/163877 doc apm(4) is not installed o kern/163873 ipfw [ipfw] ipfw fwd does not work with 'via interface' in o ports/163872 devel/ioncube and distfiles f ports/163866 jgh New Port: security/tsshbatch o ports/163865 sem Port dns/unbound fails to compile o ports/163864 yzlin [PATCH]sysutils/pciutils: update to 3.1.8 o bin/163863 [patch] adduser(8): confusing usr.sbin/adduser output o ports/163861 new port: devel/art A Resource Tracer (A resource trac f ports/163860 sunpoet [PATCH] archivers/unrar-iconv: fix 'make patch' o ports/163851 miwi devel/pecl-spread needs to record spread4 as a run dep o ports/163850 New port: cad/linux-bricscad o bin/163847 [PATCH] German filename conversion scheme for mount_nw o conf/163843 [sshd_config] Modified VersionAddendum field in sshd_c o ports/163838 anders Port www/pound fails to build - PATCH linked to o bin/163837 cperciva i386 lastest.ssl freebsd-update file is invalid o docs/163830 doc device smbios: missing documentation, no manpage f ports/163829 gahr [patch] graphics/freeglut -- update to 2.8.0 o conf/163828 [patch] /etc/periodic/daily/110.clean-tmps tries to un o ports/163824 nivit math/jsmath: AMSmath in jsMath-3.6.e will crash if ena o www/163823 www Update www 9.0 release Schedule o bin/163822 kgdb(1): kgdb -w opens symbols file, not just core, wr o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/163812 scsi [mpt] problem with mpt driver for lsi controlled conne f ports/163806 scheidell New port: devel/arduino-lib-irremote: A Multi-Protocol f kern/163804 [request] with uname -a return also date of source tre o kern/163803 vlan does not work o kern/163801 fs [md] [request] allow mfsBSD legacy installed in 'swap' f ports/163800 net-mgmt/nagiosql: All files are Windows-converted o ports/163799 delphij net/openldap24-server: slapd not started earlier o conf/163798 [nsswitch.conf] nsswitch.conf with nss_ldap ignore [su o conf/163789 eadler [patch] Make etc/Makefile more conflict resistant o conf/163778 imp [patch] Conditionalize tools in the source tree o bin/163775 [patch] sfxge(4) explitly sets -g -DDEBUG=1; infects k o bin/163773 eadler [patch] pc-sysinstall(8): pc-sysinstall/backend.sh - c o bin/163772 [patch] nvi(1) - don't mask O_DIRECTORY symbol o docs/163771 doc getnameinfo(3) man-page detail o kern/163770 fs [zfs] [hang] LOR between zfs&syncer + vnlru leading to o bin/163769 [patch] fix zpool(8) compile time warnings o misc/163768 [patch] [boot] fix non-ficl compile time warnings f ports/163766 multimedia/openshot fails to find "main" and "gtk" mod o ports/163765 amdmi3 multimedia/openmovieeditor fails to compile - cannot c o ports/163762 decke [PATCH] multimedia/mythtv still thinks it's 0.24.0 o ports/163761 avl deskutils/vboxgtk: fix install failure o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode o ports/163751 lme [PATCH] games/scummvm: chase audio/fluidsynth shlib ve a ports/163749 joerg devel/avrdude fails to reset RTS/DTR properly for Ardu o docs/163742 doc [patch] document failok mount(8) option o ports/163738 clsung [PATCH] security/zxid: update to 1.02 o amd64/163736 amd64 Freebsd 8.2 with MPD5 and about 100 PPPoE clients pani o ports/163725 swills [PATCH] emulators/open-vm-tools: Update to latest vers o kern/163724 wireless [mwl] [patch] NULL check before dereference o ports/163722 gnome sysutils/gnome-settings-daemon: crash with abort trap f ports/163721 rm [patch update] multimedia/libbluray 0.2.20110219 -> 0. o ports/163720 eclipse java/eclipse doesn't build o kern/163719 wireless [ath] ath interface do not receive multicast f ports/163718 dinoex [PATCH] graphics/jasper: security updates for CVE-2011 o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c a ports/163711 olgeni lang/erlang update request to R15B o amd64/163710 amd64 setjump in userboot.so causes stack corruption f ports/163704 gnome [PATCH] devel/ptlib26: disable ODBC by default f ports/163703 kde x11/kde4: Error with KDE4 printer configuration o kern/163701 ifconfig: group parameter makes impossible to restart o bin/163700 logger(1): broken logic when -f option && long lines i o conf/163690 FreeBSD 10.0-CURRENT/amd64: Set WITH_BIND_LIBS=YES doe o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin f ports/163684 olgeni [PATCH] lang/clojure-mode.el: update to 1.11.5 o bin/163680 vmstat(8): negative values in vmstat -z o ports/163675 clsung [PATCH] devel/buildbot: update to 0.8.5 o ports/163674 clsung [PATCH] devel/buildbot-slave: update to 0.8.5 o kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip o ports/163669 miwi New port: devel/pecl-scream Break the silence operator p conf/163668 jh [patch] fstab[5] 'failok' option has no effect on miss o ports/163666 jgh [PATCH] Add user "gerrit" to UIDs and GIDs o ports/163665 jgh [New Port]: devel/gerrit - Web based code review and p o ports/163663 kuriyama misc/amanda-server is outdated - 3.3.0 is the Latest S f ports/163655 miwi [PATCH] games/odamex update to 0.5.6 o ports/163647 clsung [patch] sysutils/xosview: does not build on 10-CURRENT o docs/163646 eadler update man ehci(4) to mention options USB_DEBUG o ports/163643 xride [patch] astro/wmspaceweather: URL changed + two minor f ports/163641 zi net-mgmt/net-snmp: netsnmp_assert were rised o ports/163640 tabthorpe bsd.licenses.mk: Add code to support standard licenses f ports/163636 mi net/opal fails to build o amd64/163625 amd64 Install problems of RC3 amd64 on ASRock N68 GE3 UCC p kern/163623 eadler [kernel] sysctl net.inet.icmp.icmplim_output descripti o kern/163619 OFED failed to build with clang o kern/163618 panic: vm_fault: fault on nofault entry, addr: c278100 o ports/163616 [new port] games/quadra: A tetris like multiuser actio o kern/163608 [lor] Two seemingly vfs-related LORs f ports/163605 olgeni [PATCH] net-im/ttytter: update to 1.2.05 o bin/163602 pmcstat(8) doesn't search symbols under /boot/modules a ports/163601 eadler [maintainer] [patch] science/hdf-java f ports/163595 eadler [patch] science/hdf5-18 Update to 1.8.8 a ports/163592 dinoex [PATCH] graphics/libungif: mark conflict with giflib a ports/163591 dinoex [PATCH] graphics/giflib: mark conflicts with libungif o ports/163590 sylvio [PATCH] devel/cdialog: update to 1.1.20111020 o kern/163587 [sched_ule] The ULE scheduler does not load in the fou o kern/163585 cpuset(1) by twice kill SMP functionality o ports/163583 [patch] x11/kdelibs3 conflicts with openssl-1 o ports/163577 oliver graphics/ogre3d fails to build when textproc/tinyxml i o docs/163576 doc zfs(8) sync property not noted in the manpage o kern/163574 wireless [net80211] overly-frequent HT occupancy changes o kern/163573 wireless [ath] hostap mode TX buffer hang o conf/163572 [periodic] not full output in daily run output is ambi o misc/163571 The system may hang after typing reboot o amd64/163568 amd64 hard drive naming o bin/163567 make(1): add option to disable object directory o kern/163559 wireless [ath] kernel panic AH_DEBUG f ports/163555 danfe [PATCH] irc/bitchx is out of date and BitchX 1.2 does a ports/163550 dinoex [patch] ftp/vsftpd{,-ext}: respect CC/CFLAGS/STRIP uni o bin/163547 vmstat(8): vmstat -i show AVG rate instead of rate p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi f ports/163524 linimon [exp-run] estimate number of ports utilizing old inter o ports/163519 gnome [patch] graphics/gimp-app: unbreak build with clang=20 o ports/163518 gnome [patch] x11/babl: unbreak SSE build with clang o bin/163515 [patch] b64encode(1)/uuencode(1) create files with no o ports/163514 itetcu [PATCH] ports-mgmt/tinderbox-devel: Report the proper o threa/163512 threads libc defaults to single threaded o ports/163511 portmgr [PATCH] bsd.port.mk: Allow existing users on system to o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands o ports/163506 mm multimedia/x264: Does not compile this package x264-0. o ports/163504 mm multimedia/x264 (0.119.2113) doesn't install o kern/163501 fs [nfs] NFS exporting a dir and a subdir in that dir to o ports/163496 sunpoet [UPDATE] www/p5-libwww: update to 6.03 f misc/163495 Problem compiling world with _Noreturn o kern/163493 FreeBSD 9x amd64 unstable while work with RAM o ports/163490 ohauer www/moinmoin port fix o ports/163489 timur databases/tdb hangs frequently on larger CPU systems o conf/163488 rc Confusing explanation in defaults/rc.conf o bin/163487 syslog.conf filtering syntax broken in 9.0-RC3 (was wo o kern/163481 net freebsd do not add itself to ping route packet o bin/163470 bad cksum in tcpdump(1) output o conf/163469 FreeBSD 10.0-CURRENT/CLANG: WITH_LIBCPLUSPLUS= YE o ports/163467 Ports using python 2.7 and "waf" intermittently hang o o ports/163466 haskell archivers/hs-zip-archive cannot build f ports/163465 crees audio/libaacplus fails with FORCE_MAKE_JOBS o kern/163464 Invalid compiler flag in /sys/conf/kern.mk o kern/163461 [vfs] vfs.zfs.arc_max/vfs.zfs.arc_meta_limit defaults a java/163456 java [patch] java/openjdk6: build and distribute open timez o bin/163455 [ath] "bssid" in wlanN create_args does not change wla o ports/163454 gecko [patch] www/firefox-beta: unbreak with libc++ o kern/163450 [puc] [patch] new pci quad serial card supported by pu o ports/163443 gnome [patch] graphics/poppler: unbreak with libc++ f ports/163441 databases/couchdb multiple port installation issues. o ports/163438 miwi New port: multimedia/mplayer2 o kern/163410 panic (page fault) when using mfsroot on i386 with 4 G o kern/163370 csjp [bpf] [request] enable zero-copy BPF by default f ports/163339 garga ftp/pure-ftpd: rc script not supports pure-authd o usb/163328 usb [usb] Support for Atheros USB abgn devices a ports/163323 skv x11/rxvt-unicode fails to build with perl-5.12.4_3 and o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o ports/163320 anders www/pound fails to build o kern/163318 wireless [ath] ath(4) stops working o ports/163314 [maintainer update] www/ocsigen to version 2.0.2 o kern/163312 wireless [panic] [ath driver] kernel panic: page fault with ath o kern/163310 Panics, sudden reboots and file system corrupts with s o ports/163306 itetcu [patch] upgrade sysutils/nut to 2.6.2 and fix misc por o misc/163304 complete LLVM toolset in the source tree made availabl o ports/163291 doceng [PATCH] print/ghostscript9: Automatically disable X11 o amd64/163285 amd64 when installing gnome2-lite not all dependent packages o amd64/163284 amd64 print manager failed to install correctly f ports/163279 miwi [update] net/haproxy-devel to 1.5-dev7 f ports/163276 miwi [maintainer update] devel/ocaml-lwt: update to version o kern/163268 acpi [acpi_hp] fix driver detach in absence of CMI f ports/163267 scf [PATCH] security/pidgin-encryption: update to 3.1 o misc/163263 crash on VirtualBox when ACPI is enabled o ports/163256 wen [new port]: www/mongrel2 Is an application, language, o ports/163248 xride [patch] audio/py-ao: respect CC o kern/163245 marcel kernel panic if set /boot/loader.conf vfs.root.mountfr s ports/163242 eadler [NEW PORT] databases/autopostgresqlbackup: Make daily, o kern/163240 marius Power down PHY when "none" media is selected o kern/163237 AR5416 as HostAP. Delays among clients when o ports/163234 sem [patch] devel/ptypes: unbreak build with clang o ports/163232 bf [patch] math/metis: respect CC o ports/163226 obrien [patch] vietnamese/libviet: respect CC/CFLAGS o bin/163219 gtetlow [patch] man: fix 'zcat: standard input is a terminal - o ports/163218 sbz [PATCH] security/cracklib: update to 2.8.18 o ports/163215 acm [PATCH] devel/bullet: fix build on some configurations o kern/163208 pf [pf] PF state key linking mismatch o ports/163205 graphics/gauche-gl won't build with gauche 0.9.2 o www/163203 jkois Submission into Consulting Services List o ports/163202 lippe [PATCH] devel/p5-ExtUtils-Manifest: update to 1.60 f ports/163201 sunpoet [PATCH] mail/p5-SES: update to release of 2011-11-14 f ports/163196 eadler [NEW PORT] www/ocportal o ports/163195 office editors/openoffice.org-3 installation error o ports/163194 lev [PATCH] devel/subversion: Get the SVN book from the 1. o docs/163177 doc [patch] man page for gnats(7) incorrectly lists gnatsd o ports/163176 yzlin [UPDATE] www/py-cssutils to 0.9.8 o conf/163168 JIS X0208 space should be treated as printable in ja_J o kern/163164 FreeBSD 9.0-RC3 amd64 freezes on boot o misc/163155 System halt isnt realy halt o kern/163154 [iwn] fatal firmware error on 9.0-RC3 o ports/163151 flz Update sysutils/testdisk to 6.13 o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o kern/163145 FreeBSD 9.0 PRERELEASE freezes without any warnings or o ports/163142 vbox emulators/virtualbox-ose: virtualbox doesn't work on n o kern/163135 [netsmb] Wrong check in netsmb f kern/163130 scsi [mpt] cannot dumpon to mpt connected disk o ports/163129 clsung [PATCH] net/p5-Net-GitHub: update to 0.40_04 o bin/163127 brooks sshd(1): SSHD_config Bad configuration option: NoneEna f ports/163126 security/sshguard changed from syslog.conf to daemon b o ports/163125 cs [update] multimedia/qmmp increment PORTREVISION o ports/163124 cs [update] audio/wildmidi 0.2.3.5 o bin/163123 sysinstall bsdinstall(8): IPV6 only errors connecting o ports/163121 gnome Build issue with graphics/gegl o docs/163119 doc mktemp(3) is referring to (now) non-existent gcc optio o kern/163117 sporadic boot-time panics on 9.0-RC2 and 9.0-RC3 w/ ce o amd64/163114 amd64 no boot on Via Nanao netbook Samsung NC20 o ports/163112 python Updates bsd.python.mk to support Zope 2.11, 2.13 o ports/163111 kwm Error building x11-fonts/cantarell-fonts o ports/163105 bsam cannot portupgrade devel/eric4 to version 4.4.19 o www/163097 www contributor address was obsolete, + contributor now de o bin/163095 brooks Add WITH_OPENSSH_NONE_CIPHER src.conf(5) knob o amd64/163092 amd64 FreeBSD 9.0-RC2 fails to boot from raid-z2 if AHCI is o kern/163091 usb [panic] Fatal trap 12: page fault while in kernel mode o www/163090 jkois User Groups of lissyara.su p kern/163089 glebius Duplicate free in the error return for mld_v2_encap_re o ports/163084 net-mgmt/bsnmptools fails to build o kern/163082 wireless [ath] ar9285 diversity fixes f ports/163072 miwi [NEW PORT] net/dot1ag-utils: Utilities for IEEE 802.1a a ports/163066 eadler [patch] bsd.database.mk: Allow db5 to be selected by U o kern/163065 UDF support for symbolic links with absolute path is b o kern/163064 [fix][sym]driver tries to nego synch trans with everyo o ports/163063 python [PATCH] fix for ports-mgmt/portbuilder o bin/163062 csplit(1) includes extra lines in inner context o ports/163059 portmgr Portbuild: Drop privileges for extract/patch/build pha o ports/163056 miwi [patch] audio/xmms2: update to 0.8 o ports/163055 mm [patch] multimedia/ffmpeg: broken without /usr/bin/per o bin/163053 [patch] camcontrol(8): 'camcontrol nego -D' is ignored o misc/163051 Small disk sizes with 4k sectors have far too few inod o amd64/163048 amd64 normal user cant mount ntfs-3g f ports/163046 cs devel/bazaar is outdated, should be bazaar-ng as the d o docs/163043 doc [patch] gsched.8: remove reference to gsched_as s kern/163033 [request] 'out of swap space' message should be ammend o ports/163029 delphij [MAINTAINER UPDATE] Update net/openldap24-server to 2. o ports/163022 sunpoet New port: databases/p5-bucardo Asynchronous PostgreSQL a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI f ports/163019 jadawin net/sslh: Upgrade to 1.10 and asking for maintenership o ports/163017 autotools [bug] in devel/libtool (2.4 only) o ports/163015 bf New port: math/it++ o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162994 pgollucci www/redmine fails to start f ports/162993 edwin misc/zoneinfo port failed to make a package because of a ports/162992 swills [maintainer] [patch] devel/rubygem-sprockets: update t o ports/162991 java java/openjdk6 fails to build f ports/162990 mi net/minidlna - requires elevated privileges o ports/162988 maho port bug: math/octave fails to link libumfpack o ports/162983 miwi [PATCH] databases/unixODBC update to 2.3.1 o ports/162978 miwi [maintainer] mail/milter-manager update to 1.8.2 o ports/162977 lev devel/subversion: svn 1.7 does not know who I am at al o kern/162976 [libc] cron fails unnecessarily via setlogin(2) with s f ports/162958 gnome graphics/gimp-app (1.258) make fails with missing TIFF o kern/162952 [headers] Problems including netinet/tcp_var.h o ports/162951 kmoore misc/lxde-common: Missing lxde-logout.desktop o ports/162949 gnome [Update] devel/dbus: update to 1.5.8 o ports/162948 portmgr [exp-run] 10.0 exp-run without libreadline in base sys o ports/162946 araujo www/mod_security port not updated o kern/162944 fs [coda] Coda file system module looks broken in 9.0 o kern/162943 uClibc explicit runtime loader segfaults under FreeBSD o ports/162939 gecko www/firefox crashes with Zotero add-on o amd64/162936 amd64 fails boot and destabilizes other OSes on FreeBSD 9 RC p bin/162930 gabor [patch] bsdgrep(1): match gnugrep(1) in exit code when o kern/162927 net [tun] Modem-PPP error ppp[1538]: tun0: Phase: Clearing o kern/162926 net [ipfilter] Infinite loop in ipfilter with fragmented I o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ o ports/162920 miwi [patch] respect STRIP/LDFLAGS consistently across untr o ports/162912 mm [patch] lang/tcl86: unbreak build with clang o bin/162905 -E flag in newfs(8) has no effect o conf/162884 FreeBSD's termcap ships monochrome rxvt-unicode entry o kern/162867 better zfs_cv_init o misc/162866 [build] [patch] extract revision from hg in newvers.sh o kern/162860 fs [zfs] Cannot share ZFS filesystem to hosts with a hyph o kern/162859 acpi [acpi] ACPI battery/acline monitoring partialy working f ports/162813 miwi clang doesn't compile games/jaggedalliance2 o bin/162798 add p flag to newsyslog.conf o conf/162794 I experience problem with my network ethernet adapter p kern/162789 glebius [PATCH] if_clone may create multiple interfaces with t o conf/162787 termcap is missing kB entry for xterm o ports/162780 office editors/libreoffice without GUI o docs/162775 doc zpool(1): Document some undocumented zpool import opti o ports/162768 mm [PATCH] ftp/proftpd port update which fixes mod_sql_my o docs/162765 doc [patch] lseek(2) may return successful although no see o ports/162755 gnome [PATCH] graphics/evince: segfault on showing propertie o kern/162751 fs [zfs] [panic] kernel panics during file operations o kern/162736 r214955 (nanobsd) broke build with whitespace in KERNC o ports/162726 miwi [PATCH] update graphics/box to 0.3.0 and graphics/boxe o misc/162724 make whereobj doesn't work after make buildenv o ports/162721 portmgr [PATCH] bsd.port.mk: config target should complain if o ports/162716 glewis difference in dependency lists in INDEX and /var/db/pk o bin/162715 pam_krb5(8): pam_krb5 not storing tickets in /tmp p amd64/162708 jhb FreeBSD 9.0-RC2 amd64 fails to boot on Dell Optiplex G o ports/162706 maho math/suitesparse port does not properly detect or link o docs/162699 doc Handbook/Upgrading instructions: should mention delete o ports/162694 kwm [patch] [update] multimedia/pitivi to 0.15.0 o bin/162693 sysinstall sysinstall(8): release/Makefile.sysinstall on 9.x refe o kern/162690 gpart label changes only take effect after a reboot o ports/162686 bf atlas build tries to use 64 bit fortran compiler on AM o bin/162681 ports pkg_add(1): new installer does not add doc packages o kern/162677 xen [xen] FreeBSD not compatible with "Current Stable Xen" o ports/162676 [NEW PORT] net-mgmt/ssgless: View ScreenOS configurati o ports/162674 graphics/rawtherapee freezes after demosaic when tryin o bin/162670 gabor [patch] libkiconv doesn't work with iconv() in libc o bin/162661 bz [patch] ftp(8) is giving up on IPv6 o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang o bin/162645 zfs(1): Option parse failure for 'aclmode' when creati o ports/162644 secteam ports-mgmt/portaudit omit fetch output unless verbose o conf/162642 rc .sh scripts in /usr/local/etc/rc.d get executed, not s o ports/162639 timur net/samba36:utils/net_rpc_shell.o(.text+0x480): more u o ports/162638 anders update comms/p5-Device-Gsm o kern/162620 [ata] SATA device lost when changing brightness on Len o ports/162616 miwi New port: sysutils/cluster-admin tools for managing Fr o kern/162609 [ata] Cannot write to Sony DRU-835A DVD drive o ports/162607 mm little correction for comms/smstools3 o bin/162605 sysinstall sysinstall(8) doesn't identify CD/DVD drives for the u o ports/162602 lippe event.c missing from ports/devel/st/work/st-1.9/Makefi o ports/162596 oliver games/ember: Typo in required lib at runtime o ports/162595 xride [patch] audio/py-ogg: respect CC o kern/162591 fs [nullfs] cross-filesystem nullfs does not work as expe f bin/162588 dim libz partially broken when compiled with clang [was: n o docs/162587 gjb unclear/incomplete description of per-interface statis o ports/162585 group mismatch in mail/mailman f ports/162579 miwi update chinese/pcmanx to 1.0 o ports/162571 gnome textproc/libxml2: provide a way to disable iconv o ports/162565 mm devel/pcre: link pcretest with libreadline f ports/162560 swills giflib libungif conflict o kern/162558 net [dummynet] [panic] seldom dummynet panics f ports/162529 edwin [patch] lang/tolua{,50}: respect CXX f i386/162524 i386 No full shutdown in FreeBSD 9.0-RC1 o java/162522 java OpenJDK 6 is not setting close on exec o kern/162519 fs [zfs] "zpool import" relies on buggy realpath() behavi f ports/162514 clsung [PATCH] www/p5-HTML-Selector-XPath: update to 0.11 o sparc/162513 sparc64 mpt(4), mptutil(8) reports variable, erroneous drive i o ports/162511 [NEW PORT] net-im/imspector-devel devel version of ims o ports/162510 nork [patch] Upgrade graphics/OpenEXR to version 1.7.0 o kern/162509 net [re] [panic] Kernel panic may be related to if_re.c (r o bin/162503 makefs(8) creates a bad image for UFS2 o kern/162502 [md] mount -t mfs on vnode-based md device destroy him o ports/162500 maho math/suitesparse: gmake[2]: *** [run] Segmentation fau o bin/162495 dc(1): dc -e "5 3 %p 1k 5 3 %p" o amd64/162489 amd64 After some time X blanks the screen and does not respo p bin/162486 delphij [patch] Cannot mount filesystem formatted by newfs_msd o ports/162480 New port: net-mgmt/cacti-with-plugins Web-driven graph p kern/162475 bschmidt [ath] functions with return type HAL_BOOL (might) retu o ports/162463 skv lang/perl5.12: perldoc shows escape codes o ports/162460 lth update net-mgmt/smokeping o misc/162455 FreeBSD 9x unstable with file-based swap f ports/162447 net/isc-dhcp41-server: starting with rc-script fails f ports/162439 olgeni [PATCH] lang/abcl: update to 1.0.0 and update WWW o stand/162434 standards getaddrinfo: addrinfo.ai_family is an address family, o docs/162433 doc [handbook] QEMU instructions for FreeBSD guests s www/162430 bugmeister gnats pr-submission mechanism suxx o bin/162429 sysinstall bsdinstall(8): 9.x installer: selecting ZFS for the ro o bin/162428 sysinstall bsdinstall(8): should check available disk space from o ports/162425 gnome graphics/evince doesn't build o ports/162421 python lang/python32 fails to build (undefined reference to ` o docs/162419 doc [request] please document (new) zfs and zpool cmdline o ports/162414 cy [PATCH] sysutils/syslog-ng: misc. fixes o kern/162407 [rctl] [panic] rctl crashes kernel with a page fault ( o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 p threa/162403 davidxu regression in FreeBSD/9 regarding pthread timeouts in o ports/162397 portmgr [patch] Mk/bsd.port.mk: add new target add-plist-build o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen f ports/162386 eadler [PATCH] Bring back games/tome o ports/162385 lev portmaster unable to build package of devel/subversion o kern/162382 [swap] Orphaned swap references not garbage collected; o ports/162381 sunpoet [PATCH] audio/icecast2 upgrade to kh development branc o docs/162380 doc Documentation lacking for getfacl/setfacl o kern/162374 posix_openpt wrongly removed O_CLOEXEC o kern/162373 VESA framebuffer memory mapping fails with EINVAL for o kern/162369 kernel problem at shutdown is system has no keydoard o kern/162367 SATA 3.0Gb/s not enabled on Nvidia nForce 430 o bin/162364 sysinstall sysinstall(8): update sysinstall ftp mirror list for c o kern/162362 fs [snapshots] [panic] ufs with snapshot(s) panics when g o docs/162354 gjb Improve wording in rc.conf(5) regarding network-interf o kern/162352 net [patch] Enhancement: add SO_PROTO to socket.h o ports/162350 office ports/editors/openoffice.org-3 spawns a lawine of gmak o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib o kern/162342 FreeBSD hides gpt labels after mounting ZFS partitions o misc/162338 POLA: mkisoimages.sh does not support extra-bits-dir p o ports/162320 mono lang/mono doesn't build o amd64/162314 amd64 not able to install FreeBSD-8.2-RELEASE-amd64-dvd1 as o ports/162313 acm print/foo2zjs: example devd rules o usb/162306 usb usb devices cant get address asignation, no memories, o kern/162294 Reading DMI memory parts using mmap freeze the system f ports/162286 jadawin Update audio/mpc to 0.21 o kern/162277 Repeatable system crash when offlining a zpool vdev o kern/162267 qingli [mpd] mpd kernel panic p docs/162265 doc [Patch] ipfw.8: Documentation clarity a ports/162264 cy [patch] unbreak net/tridiavnc for non-i386 o ports/162261 kde sysutils/k3b-kde4 - fails to compile with ffmpeg-devel o ports/162260 gnome [bsd.gnome.mk] don't add useless dependency for INSTAL o bin/162258 sysinstall sysinstall(8): long-time bugs o kern/162256 scsi [mpt] QUEUE FULL EVENT and 'mpt_cam_event: 0x0' o kern/162250 problems with the work with hard drives Hitachi HDS721 o ports/162240 net/nss-pam-ldapd should allow openldap24-sasl-client o kern/162228 Panic in ufsdirhash_build() p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 f ports/162221 9.0-RC1 new problem building lang/spidermonkey o amd64/162219 amd64 [REGRESSION] In KDE 4.7.2 cant enable OpenGL,in 4.6.5 o ports/162212 ruby ports-mgmt/portupgrade: portversion -r doesn't work o bin/162211 Calendar no longer handles first/last day events in 8. o ports/162207 danfe audio/cdparanoia: crash while building the port. o kern/162201 zec [ip] [patch] multicast forwarding cache hash always al o kern/162195 panic with soft updates journaling during umount -f o ports/162191 ashish [PATCH] editor/emacs: VC doesn't work with subversion o bin/162189 kientzle FreeBSD unzip does not restore file permissions proper f ports/162188 mm [PATCH] mail/postgrey: add rc script options o kern/162182 Extreme slowness from HighPoint RocketRaid 622 o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s s ports/162178 portmgr [bsd.port.mk] Add bsd.clang.mk with Clang/LLVM support o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o kern/162174 [kernel] [patch] rman_manage_region() error return pat o docs/162172 doc rctl manpage erroneously lists nproc o amd64/162170 amd64 Unable to install due to freeze at "run_interrupt_driv f ports/162167 New port: sysutils/torque2 o kern/162160 9-RC1 over IPMI Virtual CD causes unexpected behaviur o arm/162159 arm [panic] USB errors leading to panic on DockStar 9.0-RC o kern/162153 net [em] intel em driver 7.2.4 don't compile o bin/162152 sysinstall bsdinstall(8): No up-to-date IPv6 French mirror a ports/162140 zi net-mgmt/net-snmp Add install python bindings option. o kern/162110 net [igb] [panic] RELENG_9 panics on boot in IGB driver - o power/162091 ppc FreeBSD/ppc CD crashes Mac OS X s ports/162088 inconsistencies in locally generated INDEX file o ports/162085 mm duplicate file name in open-motif-2.3.3 and tcl-8.5.10 o kern/162083 fs [zfs] [panic] zfs unmount -f pool f ports/162080 apache [PATCH] devel/apr1: Improved decision IPv6 o ports/162075 gecko www/firefox >= 7.0.1_2 bug with respect to pentadactyl o bin/162064 [patch] Loop in fetch(1) when sending SIGINFO after th o usb/162054 usb usbdump just hangs on 9.0-RC1 f ports/162050 sumikawa [patch] misc/lv directory opening problem fix o ports/162045 print/ghostview 1.5_2 coredumps on certain files f amd64/162043 gavin dev.cpu.0.freq is missing [regression] o ports/162042 bapt [patch] multimedia/libass: add HARFBUZZ option o kern/162036 [geom] Fatal trap 12: page fault while in kernel mode o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/162010 geom [geli] panic: Provider's error should be set (error=0) o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o bin/161986 [patch] netstat(1): Interface auto-width in "netstat - o ports/161984 autotools [patch] devel/libtool: don't split INFO doc (install) f ports/161981 pawel [maintainer update] sysutils/samesame to v1.10 o kern/161979 geom [geom] glabel doesn't update after newfs, and glabel s f ports/161976 zi net-mgmt/net-snmp: ifSpeed for lagg interface is not a o amd64/161974 amd64 FreeBSD 9 new installer installs succesful, renders ma o kern/161968 fs [zfs] [hang] renaming snapshot with -r including a zvo o ports/161967 mm ports/net/smbldap-tools 0.9.7 user_by_uid() is not exp f ports/161959 jkim kernel panic in audio/oss p bin/161957 jail jls(8): jls -v doesn't show anything if system compile o kern/161949 [kernel] 64-bit structures are used even with 32-bit c o power/161947 ppc multimedia/libdvdnav builds broken binaries on big end o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu s ports/161932 zi net-mgmt/net-snmp reports bogus data in UCD-SNMP-MIB:: f bin/161931 sysinstall bsdinstall(8): (add sysinstall partition config as opt o bin/161929 sysinstall bsdinstall(8): (change partition editor screen default o bin/161928 sysinstall bsdinstall(8): (add option to enable 2 button mouse co o bin/161924 sysinstall bsdinstall(8): add msg box telling user to remove inst o bin/161923 sysinstall bsdinstall(8) games & ports install options a bin/161921 dougb named(8): default configuration on 9.0-RC1 produces an o misc/161917 pjd pjdfstest doesn't detect setup/teardown failures prope o misc/161915 pjd pjdtests don't articulate requirements very well o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161899 net [route] ntpd(8): Repeating RTM_MISS packets causing hi o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o ports/161894 eadler New port databases/datamodeler: Database modeling tool o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o ports/161890 ume security/cyrus-sasl2 update broke IMAPS in mail/mutt-d o kern/161888 [kerberos] nfs -sec=krb5x/ldap/krb5-heimdal fix/upgrad o kern/161887 [vm] [panic] panic at vm_page_wire with FreeBSD 9.0 Be o kern/161886 [kerberos] [patch] der_xx_oid not declared before use f conf/161885 remko FreeBSD 9 BETA 3 apparently ignores ifconfig_alias set o ports/161875 roam [PATCH] www/p5-WWW-Curl: update to 4.15 o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup p conf/161847 gavin [patch] reaper of the dead: remove ancient devfs examp o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit f ports/161832 pawel [maintainer] update databases/mysql-connector-odbc to o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option a docs/161808 doc Missing documentation critical to correct usage of uui o bin/161807 fs [patch] add option for explicitly specifying metadata o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod o docs/161804 doc New documentation: French translation for building-pro o usb/161793 usb poor EHCI usb2 i/o performance f ports/161790 pawel Update security/metasploit port o ports/161789 office editors/openoffice.org-3: compilations fails in module o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o kern/161768 [ahci] [panic] Panics after AHCI timeouts o ports/161765 mm net/relayd: relayd fails to initialize on systems with o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico p bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks o kern/161755 Kernel fails to report negative malloc type statistics o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o kern/161752 geom [geom] glabel(8) doesn't get gpt label change o bin/161749 kientzle bsdtar(1) --gname and --uname switches not working o bin/161739 top(1): top -b does not restore ICANON and ECHO termin o bin/161720 sysinstall bsdinstall(8): partition editor does not put partition s kern/161719 [request] Support for Realtek 5209 SD card reader o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 f ports/161701 pawel New port: games/chocolate-doom Doom port f ports/161694 sysutils/dvd+rw-tools: growisofs fails to close disc o ports/161690 New port: games/prboom-plus Port of ID Software's Doom o bin/161677 geom gpart(8) Probably bug in gptboot o ports/161676 gnome databases/libgda4: [UPDATE] to 4.2.9; improvements o kern/161674 fs [ufs] snapshot on journaled ufs doesn't work o www/161672 gavin [patch] add support for 10.x to query-pr f ports/161666 vd graphics/vigra dependacy hdf5.7 is unnecessary and obs o ports/161664 danfe Updated port: archivers/deutex Doom WAD Archive editor o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o ports/161578 devel/strace is not working o ports/161574 demon Can't compile devel/p5-Locale-gettext on 9.0beta o ports/161571 sunpoet New port: devel/p5-Gtk2-Notify - Perl interface to lib o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o kern/161553 eadler Timestamp missing from msgbuf o kern/161552 [rctl] [panic] kernel panic with RCTL option: racct_al o ports/161549 timur Bugs with aio_suspend configure test in net/samba35 o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o misc/161540 cperciva gzippped kernel is not updated by FREEBSD-UPDATE o kern/161533 fs [zfs] [panic] zfs receive panic: system ioctl returnin o bin/161528 tftpd(8): tftpd[86572]: Timeout #3 on ACK 2 o bin/161526 script(1) outputs corrupt if input is not from a termi f ports/161521 eadler [new port] databases/py-carbon, backend storage applic o bin/161515 systat(8) does not show Disk MB/s for md devices o kern/161511 fs [unionfs] Filesystem deadlocks when using multiple uni p bin/161509 delphij usr.bin/newgrp has an off-by-1 error when checking ngr o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o ports/161494 gnome devel/anjuta: gmake[3]: Entering directory `/usr/ports o ports/161490 sbz security/rkhunter: rkhunter.conf file overwrote after o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash o ports/161462 net-mgmt/zabbix-agent: Zabbix_agentd opens a lot of fi s ports/161459 eadler New port: x11-fm/doublecmd Total Commander clone for t o kern/161456 [libpam] on a system bound to an LDAP server, top trie o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE a ports/161441 eadler New port: databases/4store o bin/161439 umount(8): umount -a -t doesn't work with nested o kern/161438 fs [zfs] [panic] recursed on non-recursive spa_namespace_ o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o ports/161421 gecko [patch] www/firefox: use libevent2 o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o amd64/161418 vbox [panic] [vbox] FreeBSD 9.0beta3 under Virtualbox: lost o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li o ports/161408 xfce x11-fm/thunar doesn't package o kern/161407 bschmidt [iwn] iwn panic on 9.0-BETA3 f ports/161406 [PATCH] net-mgmt/netdisco: update to 1.1 o bin/161401 [patch] have service(8) run scripts with the same reso o ports/161390 wen [maintainer] chinese/cxterm broken because does not co o kern/161381 net [re] RTL8169SC - re0: PHY write failed o ports/161359 maho math/gotoblas build fails on "Sandy Bridge" CPU o ports/161356 haskell lang/ghc: bootstrap assumes `gcc', ignoring CC o threa/161344 kib Failure to init TLS variables with func ptr inside sha o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o kern/161318 xen [xen] sysinstall crashes with floating point exception o ports/161317 kde x11/xde4: KDE 4.6.5 does not prompt for authentication o ports/161314 portmgr bsd.port.mk comments for BUILD_ and RUN_DEPENDS fail t f ports/161308 dougb databases/mysql-connector-odbc build fails with mariad o kern/161293 wireless [iwn] hang at startup when starting network o kern/161280 fs [zfs] Stack overflow in gptzfsboot o ports/161278 anders net/dante: getoutaddr(): address [...] selected, but n o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161268 sysutils/fusefs-ntfs fails to mount ntfs "invalid argu s kern/161260 [request] need mps on RELENG_7 for dell servers (PERC o bin/161257 procstat(1): procstat should grow a -l flag to display s kern/161251 [request] Port otus driver from OpenBSD. a ports/161249 shaun net-p2p/bitcoin fails to build o kern/161248 [ahci] Time out, extremly slow response while copying o kern/161233 [build] update RELENG_8 make buildworld error gcc. o ports/161231 eadler [NEW PORT] www/sencha-touch: The First HTML5 Mobile We o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o ports/161185 kwm [patch] Remove unnecessary graphics/cairo dependency f o ports/161180 gnome [UPDATE] sysutils/gnome-schedule: update to 2.1.5 p misc/161175 eadler [tools] [patch] uninitialized variables on some regres o www/161174 www Make http://www.freebsd.org/cgi/search.cgi search GNAT o kern/161169 fs [zfs] [panic] ZFS causes kernel panic in dbuf_dirty o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 f ports/161148 New port: databases/infobright -- the infobright colum f ports/161136 sbz editors/gobby: CLANG: f bin/161113 sysinstall bsdinstall(8): 9.0-BETA3: overwrites Win*-bootcodes wi o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 o arm/161110 arm /usr/src/sys/arm/include/signal.h is bad o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o ports/161106 sysutils/openipmi is dropping core o ports/161103 graphics/rawtherapee fails to build o bin/161101 sysinstall bsdinstall(8): 9.0-BETA3: partition editor: UFS-option o bin/161100 sysinstall bsdinstall(8): 9.0-BETA3: Add User but no Add Group o kern/161097 [sched_ule] Unkillable process hanging waiting for "ex o kern/161094 virtualization[vimage] [panic] kernel panic with pf + VIMAGE when st o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 lippe [patch] misc/ttyrec: don't depend on pty(4), use openp f ports/161070 infinite loop for graphics/xfig on 9.0-CURRENT o ports/161069 mm multimedia/ffmpeg: CLANG: /usr/bin/ld: libavcodec/x86/ o bin/161058 enc(1): enc0 not capturing outgoing IPSEC encrypted tr o docs/161057 doc [handbook] Error in section 18.17.4 of the handbook o bin/161056 sysinstall bsdinstall(8): could allow full control over newfs arg o bin/161055 sysinstall bsdinstall(8): partitioner should auto-populate GPT la f bin/161054 sysinstall bsdinstall(8): partitioner should list valid "type"s o bin/161053 sysinstall bsdinstall(8): network setup dialog is hard to navigat o bin/161052 sysinstall bsdinstall(8): should be consistent about saving confi o bin/161050 sysinstall bsdinstall(8): should use new syntax for IPv4 in rc.co o bin/161049 sysinstall bsdinstall(8): could try to tell if SSDs support TRIM o bin/161048 sysinstall [patch] bsdinstall(8): should run a concurrent shell o o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o power/161045 ppc X doesn't detect ADB mouse up event until another even o arm/161044 arm devel/icu does not build on arm a kern/161043 jhb [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o kern/161035 wireless [ieee80211] Incorrect number describing 11ng MCS rate o bin/161028 [PATCH] service(8) -- Minor improvements o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO o ports/161015 pawel textproc/meld: update to 1.5.2 f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during f ports/161002 philip [patch] devel/lua-alien: update to 0.5.1 o kern/160994 buf_ring(9): MD assumption in MI code f ports/160993 New port: security/sqlcipher o kern/160992 buf_ring(9) statistics accounting not MPSAFE p bin/160979 burncd(8): 9.0 burncd error caused by change to cd0 fr o bin/160975 ipfw(8): ipfw's uid matching doesn't function with IPv o ports/160969 [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 x11 [patch] ports/x11/libXi broken manpages o bin/160967 newsyslog(8) is not working o ports/160963 x11 [patch] x11/bigreqsproto: disable specs a ports/160941 swills [PATCH] emulators/open-vm-tools: upgrade to release 20 o ports/160933 gecko Bad port interactions between Mozilla projects o ports/160930 [PATCH] devel/gdb: HW watchpoint support for amd64 o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT o ports/160906 brooks net/openmpi compile error on FreeBSD 8 o ports/160897 kevlo ports/security/bro update o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o kern/160893 fs [zfs] [panic] 9.0-BETA2 kernel panic o conf/160892 eadler [network.subr] [patch] add vboxnet[0-9]* to noafif lis o ports/160887 osa patch for nginx-devel for nanobsd o kern/160873 net [igb] igb(4) from HEAD fails to build on 7-STABLE o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. f ports/160861 scheidell New port: security/racoon-tool Manage setkey and racoo o kern/160860 fs [ufs] Random UFS root filesystem corruption with SU+J o ports/160856 mm graphics/opencv-core: CLANG build fails f ports/160850 eadler New Port: www/graphite-web o ports/160843 cperciva portsnap3.FreeBSD.org, Snapshot appears to be more tha o kern/160838 acpi [acpi] ACPI Battery Monitor Non-Functional o bin/160834 [patch] grep(1): fixes for POSIX conformance o kern/160833 amd64 Keyboard USB doesn't work o ports/160829 timur devel/talloc hangs during configure on FreeBSD 9.0-BET o docs/160827 blackend New documentation: French translation for linux-users s ports/160821 audio/libmp3splt: Building WITHOUT_ID3 fails a ports/160816 roam [PATCH] security/stunnel: update to 4.44 o bin/160803 wpa_cli(8): (malloc) /usr/src/lib/libc/stdlib/malloc.c o kern/160802 [install] USB installation image fails to boot if BIOS o kern/160801 fs [zfs] zfsboot on 8.2-RELEASE fails to boot from root-o o ports/160798 philip [PATCH] games/wesnoth-devel: update to latest version o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar o kern/160777 fs [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/impo p docs/160775 delphij [patch] provide a better example for passwordless gues o www/160774 mirror-adminIrish mirror of freeBSD website is very out of date o kern/160760 (Kernel) Log messages garbled/interleaved o kern/160750 net Intel PRO/1000 connection breaks under load until rebo o bin/160745 sed(1) appends '\n' at the end of binary data (unlike o ports/160717 python port: lang/python27 causing other ports to hang during o threa/160708 threads possible security problem with RLIMIT_VMEM o kern/160706 fs [zfs] zfs bootloader fails when a non-root vdev exists o docs/160698 gjb Remove outdated FreeBSD Jumpstart guide o ports/160695 rafan devel/ncurses libncurses.a doesn't contain libtinfo.a o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t f kern/160692 FreeBSD must consider shipping with SC_PIXEL_MODE on ( o kern/160691 Negative ping times (serious time keeping problem?) on o bin/160689 eadler FreeBSD should have .cshrc updated for modern hardware o ports/160688 hrs print/acroread9 runtime fails with "failed to load mod o ports/160686 skv [PATCH] www/p5-HTTP-BrowserDetect: update to 1.28 o ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 f ports/160657 eadler [patch] devel/distcc: adding pump mode support to dist o kern/160652 siba_bwn in GENERIC o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 o ports/160631 mm graphics/pecl-imagick: Small change to honor WITHOUT_X o ports/160624 portmgr [exp-run] Process USE_ flags in both parts of bsd.port o kern/160611 lzjb_uncompress possible access violation? o bin/160596 eadler [patch] tzsetup(8): Use libodialog when doing tzsetup o ports/160593 mm [PATCH]devel/libevent2: respect USE/WITH_OPENSSL_PORT o ports/160592 sunpoet sysutils/freeipmi Add bmc-watchdog.rc o kern/160591 fs [zfs] Fail to boot on zfs root with degraded raidz2 [r o bin/160586 newsyslog(8) can't properly rotate log files when ther o ports/160563 gnome portupgrade of sysutils/tracker-client fails o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o java/160553 java Jaikoz java based audio tagger core dumps o ports/160551 wen graphics/mapserver: CLANG: ./include/agg_renderer_outl o ports/160548 ale databases/mysql55-server - make OpenSSL available to m f ports/160544 rene sysutils/lsof: build fails with clang o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x f ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o misc/160517 X pseudo-terminals are not registered in utmp and wtmp p bin/160516 pluknet pkg_delete(1) error messages miss which package had th o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o ports/160492 bf [patch] lang/ocaml: respect CC o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries p ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn o ports/160475 vbox emulators/virtualbox-ose: virtualbox causes panic in v o ports/160471 gnome www/webkit-gtk2 fails to build/link o ports/160465 acm print/foo2zjs: Install of ppd files to /usr/local/shar o misc/160463 eadler [build] [patch] fix build dependency for dtrace module o www/160461 bugmeister Send-pr uses different terminology than docs / executa o docs/160460 doc [handbook] Network setup guide suggestion o docs/160447 doc [handbook] Developer's Handbook contains some outdated o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/160445 doc [handbook] Handbook does not mention ACL o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o usb/160436 usb ucom wedges machine on parity error ? o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o ports/160422 nox astro/google-earth: crashes on FreeBSD 9.0 o kern/160420 net [msk] phy write timeout on HP 5310m o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa o bin/160412 wrong value in systat(1) o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/160409 geom [geli] failed to attach provider o ports/160404 jpaetzel Unbreaking databases/ruby-bdb1 for Ruby-1.9 o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o ports/160402 knu databases/ruby-bdb regression-test target broken; test o docs/160399 doc Man page for re(4) missing jumbo frames info f ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o kern/160392 [panic] double fault on configuring for php5-filter-5. o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o ports/160387 gecko security/ca_root_nss: Allow user to trust extra local o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i o kern/160370 pf [pf] Incorrect pfctl check of pf.conf s docs/160369 gjb [patch] update sample simple makefile with new convent f ports/160366 eadler New port: misc/xmonad-log-applet An applet that will d p ports/160357 x11 x11/dri2proto port update o ports/160354 x11 x11-drivers/xf86-video-intel29 port update o ports/160351 gecko www/libxul installs incorrect mozilla-nss.pc o bin/160320 netstat(1): netstat -f inet6 does not output properly o kern/160307 [dtrace] dtrace -lv can not identify the args of the o usb/160299 usb MicroSDHC-to-USB adapters do not work in FreeBSD 8.x o bin/160298 sysinstall(8) does not allocate enough space in / for o kern/160296 wireless [zyd] [panic] 802.11 usb device reboots system on 'ifc o bin/160295 [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160293 net [ieee80211] ppanic] kernel panic during network setup o ports/160291 pgollucci devel/rubygem-rake 0.9.2 update breaks redmine o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio p misc/160276 brueffer [conf] Spelling Mistake in comments in configure-files o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o ports/160268 gnome www/webkit-gtk2 build process bails: unable to mmap er o ports/160263 obrien shells/bash bug: testing condition for [ -x file ] is o conf/160240 rc rc.d/mdconfig and mdconfig2 should autoset $_type to v o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o conf/160227 [keyboard] Please include new keyboard mapping: French o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o ports/160224 gnome building x11-toolkits/gtk30 fails o ports/160215 office editors/libreoffice-legacy fails to build with KDE 4.6 o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o ports/160205 skv [PATCH] sysutils/hyperic-sigar: update to 1.6.4 o usb/160192 usb [install] Installation from USB-Stick doesn't find the o ports/160190 timur [New port]: net/samba36-devel Test version of Samba 3. o ports/160189 lippe [PATCH] textproc/p5-Excel-Template: update to 0.33 o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR o ports/160047 timur devel/talloc 2.0.5 fails to configure with MAKE_JOBS_U f ports/160034 delphij [PATCH] net/istgt: Don't enforce run before mountcritr o ports/160022 eclipse release port: java/eclipse-cdt o misc/160011 [boot] Installer Disk will not boot o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat a ports/160003 olgeni drop lang/erlang-lite and update lang/erlang a ports/159982 swills [MAINTAINER] mail/rubygem-vmail: update to 2.3.2 o ports/159981 roam ftp/curl install depends bug? o kern/159971 fs [ffs] [panic] panic with soft updates journaling durin o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F f ports/159958 pawel [UPDATE] x11/deskpaint to 3.1 o ports/159947 vd [patch] databases/gnats4 set default index type to pla o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159943 delphij openldap slapd ignores rc.conf slapd_krt5_ktname o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ o ports/159938 gnome graphics/shotwell received an X Window System error. o kern/159930 fs [ufs] [panic] kernel core p ports/159928 gnome Updates graphics/clutter to 1.6.16 o kern/159918 jail [jail] inter-jail communication failure f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c o kern/159912 [new driver] [request] Port urtwn from OpenBSD to Free o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o ports/159888 timur net/samba35: pkg_add -r samba35 doesn't accept openlda o ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip o ports/159839 wen graphics/mapserver: bump Python version o ports/159838 wen graphics/mapserver: PDF output doesn't work o misc/159837 bugmeister Ports PR autoassigner does not understand long lines o bin/159833 camcontrol(8): [patch] add ATA security options to cam o ports/159831 gecko www/firefox is broken o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o ports/159812 apache [PATCH] www/apache20,www/apache22 Strip Binaries o kern/159809 [build] RELENG_8_1 /UPDATING wrong re: COMPAT_IA32 ali o ports/159807 johans RC file for net/mrouted causes kernel panic by running o kern/159795 net [tcp] excessive duplicate ACKs and TCP session freezes o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o ports/159787 java java/openjdk6 nio muti-thread bug o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l o bin/159730 make(1) in parallel mode fails report failure of @-pre f ports/159728 sysutils/htop 0.9.0_1 is broken (does not show process o ports/159725 portmgr [bsd.commands.mk] Add new command: JOT o ports/159705 brooks Patch adding an option for disabling IPV6 in the net/o o ports/159687 gnome devel/gvfs fails to compile o ports/159677 wen graphics/qgis: /usr/ports/graphics/qgis/work/qgis-1.7 a bin/159665 rik [patch] ctm(1) does not work with bzip2 or xz compress o www/159664 www Add for June/July 2011: FreeBSD in top 3 reliable serv o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr s ports/159656 mandree bsd.database.mk fails to locate installed bdb51 librar o misc/159654 46 kernel headers use register_t but don't #include bpf_if->bif_dlist o ports/158925 delphij New Port: audio/pithos GNOME Pandora player o ports/158904 [PATCH] finance/openerp-web: update to 6.0.2 a ports/158899 roam [PATCH] sysutils/prips: update to 0.9.9 a ports/158894 danfe audio/ardour: upgrade to 2.8.11 p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents s ports/158878 [patch] textproc/dadadodo assumes long is 32 bits o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o docs/158813 doc [patch] grammar updates for jme(4) o kern/158802 fs amd(8) ICMP storm and unkillable process. o ports/158800 mm [PATCH] devel/pear-PHPUnit3: update to 3.4.15 o bin/158794 line has been ignored in /etc/newsyslog.conf o ports/158791 sbz Update security/openvas-* o ports/158781 New port: games/drcreep Platform Puzzle Game p bin/158775 jhb [patch] top(1)'s output when using 'C' and 'H' interac o bin/158756 newfs_msdos(8) creates invalid image o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o conf/158734 netif stop don't destroy cloned_interfaces o kern/158726 net [ip6] [patch] ICMPv6 Router Announcement flooding limi o bin/158725 [patch] column(1): `column -t` always separates column o ports/158722 gnome [patch] devel/gobject-introspection does not build if f ports/158713 kde Unable to build /usr/ports/multimedia/phonon-xine afte o kern/158711 fs [ffs] [panic] panic in ffs_blkfree and ffs_valloc o ports/158708 gnome x11/gdm doesn't build o kern/158707 [panic] kernel trap 12 with interrupts disabled o bin/158706 [regression] sed(1) in 8.2 gives incorrect output comp f ports/158704 eadler New port: mail/mailfromd o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) o ports/158693 gnome x11-wm/nautilus 2.32.2.1_1 fails to build o ports/158692 devel/cross-gcc: minor patch to enable arm-none-eabi s o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne o kern/158686 virtualization[patch] [tap] Add VIMAGE support to if_tap o ports/158684 gnome graphics/evince can not be build p bin/158682 jhb top(1) man page not mentioning all flags that are togg o ports/158680 gnome devel/gvfs doesn't build o kern/158665 net [ip6] [panic] kernel pagefault in in6_setscope() o i386/158653 i386 installing PC-BSD 9 Current with legacy USB Keyboard d o ports/158647 novel audio/bebocd: request for marking it BROKEN and DEPREC o ports/158639 gnome ports-mgmt/packagekit cannot be build o misc/158637 Cannot reinstall 8.2-RELEASE after HEAD o kern/158635 net [em] TSO breaks BPF packet captures with em driver o ports/158628 mm graphics/opencv and daily periodic disks clean o ports/158616 vd graphics/vigra prevents installing libreoffice p bin/158580 edwin [patch] Disable ncal(1)s date highlighting if stdout i f kern/158569 gavin [ahci] ROOT MOUNT ERROR (caused by AHCI module) o ports/158565 apache www/apache22: Add rlimits based on login class for mpm o conf/158557 rc [patch] /etc/rc.d/pf broken messages o conf/158551 [patch] Enhance periodic 800.scrub-zfs script to handl o ia64/158547 ia64 [ia64] Epilog counter (ar.ec) needs to be saved and re o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s o ports/158533 miwi [NEW PORT] devel/tiled: 2D game map editor o ports/158529 x11 [patch] x11-servers/xorg-server: conditionalize --with o ports/158513 x11 Broken Xvideo in x11-drivers/xf86-video-intel drivers o ports/158506 In multimedia/emotion leave only one backend enabled b o bin/158500 [patch] Add -p to arp(8) to hide permanent entries o kern/158432 [panic] gssd(8) generate much network traffic and led o bin/158431 [dtrace] crash in dt_proc_lookup when attaching to PID f kern/158424 multimedia [snd_hda] snd_hda driver doesn't expose 'rec' flag for o kern/158418 [includes] /usr/include librarys broken by unnecessary p kern/158398 geom [headers] [patch] includes f kern/158391 gavin [pci] Resource allocation issues with hda/ath o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/158378 kientzle cpio/bsdcpio(1) man page does not document -0 and --nu o kern/158376 [udf] [patch] The UDF file system under counts the num o ports/158374 acm databases/firebird21-client coredumps o bin/158363 [patch] partial restore problem in restore(8) o ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/158351 [cam] [patch] missing #includes in o kern/158340 [rpc] Possible dereference of null pointer by code tha p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null p kern/158307 hrs [ip6] ipv6_pktinfo breaks IPV6_USE_MIN_MTU o bin/158296 portmgr pkg_add(1) does not search entire PKG_PATH for depende o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 f i386/158264 gavin Intel Motherboard S5500BCR shut down and power on afte o kern/158231 fs [nullfs] panic on unmounting nullfs mounted over ufs o o kern/158230 libdisk(3) segfault in Open_Disk() with "ada0" o bin/158206 jilles sh(1) doesn't properly return IO errors to conditional f kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. o i386/158200 i386 wifi doesn't work on Acer AO751h, maybe WMI needs to b o kern/158197 geom [geom] geom_cache with size>1000 leads to panics f ports/158192 sunpoet devel/nant: NAnt 0.90 fails to build from ports o kern/158185 bz [ip6] IPv6 does not manage the NIC's route when doing f ports/158181 gavin databases/unixODBC databases/libodbc software packages o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o kern/158160 [coretemp] coretemp reports incorrect CPU temperature o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158098 pjd [hast] problem with copying data on hast-device o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets f kern/158063 [panic] kmem_malloc(20480): kmem_map too small f ports/158061 kwm New ports: net-im/sofia-sip and net-im/telepathy-sofia o ports/158054 matusita [PATCH] japanese/ja-skk-jisyo: update to 201106 f ports/158036 clsung databases/py-redis: [2.2.4] this port don't actually i o misc/158023 Binaries have no SUID bits in FreeBSD-8.2-RELEASE-amd6 o ports/158013 autotools devel/gmake: TARGET_ARCH variable prevents cross-compi o kern/157946 [patch] 'BSM conversion requested for unknown event' g f kern/157932 gavin [cas] loading CAS4 at boot hangs system f kern/157929 fs [nfs] NFS slow read o docs/157908 doc [handbook] Description of post-install should include o ports/157906 gabor print/latex horribly outdated o conf/157903 [devd.conf] [patch] automated kldload for USB class de o ports/157899 skv textproc/p5-XML-XPath xpath script missing quiet optio o ports/157887 osa [UPDATE] sysutils/ccd2iso update and change maintainer o kern/157879 geom [libgeom] [regression] ABI change without version bump f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o kern/157869 easy to create zvols that cannot be forgotten o kern/157863 geom [geli] kbdmux prevents geli passwords from being enter a ports/157855 roam [update] sysutils/timelimit to 1.8 o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o kern/157785 net amd64 + jail + ipfw + natd = very slow outbound traffi o misc/157776 Unable to load kernel modules in fixit shell without c o kern/157770 scsi [iscsi] [panic] iscsi_initiator panic o misc/157764 jfbterm + mplayer = hang o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o bin/157748 calendar(1): Patch for src/usr.bin/calendar/calendars/ o ports/157746 brooks port bug: net/openmpi has incorrect path for sge depen o kern/157739 geom [geom] GPT labels with geom_multipath o kern/157724 geom [geom] gpart(8) 'add' command must preserve gap for sc o kern/157723 geom [geom] GEOM should not process 'c' (raw) partitions fo o kern/157722 fs [geli] unable to newfs a geli encrypted partition p bin/157718 edwin input data trigers a core dump from calendar(1) [regre o bin/157700 tftpd(8) in 8.2-RELEASE expects more data after EOF o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o bin/157635 sysinstall sysinstall(8): "none" Do not install a boot manager - o ports/157600 eclipse java/eclipse: option WITH_TESTS missing distinfo entry o ports/157554 apache www/apache22: Apache RLimitNPROC does not work as inte o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o ports/157544 nork Updates for databases/linux-oracle-instantclient-* o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o misc/157524 [build] make buildkernel fails while updating 8.1-RELE a ports/157504 jgh [new port] net-mgmt/zenpack-NetApp: Provides monitorin o bin/157500 posible chsh(1) bug on systems using nss_ldap/pam_ldap o bin/157499 fetch(1) confused me with its error message o conf/157466 [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157446 [libbsdxml] base expat needs minor fixes from vendor c o kern/157429 net [re] Realtek RTL8169 doesn't work with re(4) o bin/157424 inconsistent output from ldd(1) o kern/157418 net [em] em driver lockup during boot on Supermicro X9SCM- o kern/157410 net [ip6] IPv6 Router Advertisements Cause Excessive CPU U o kern/157399 fs [zfs] trouble with: mdconfig force delete && zfs strip f ports/157398 emulators/open-vm-tools is broken on FreeBSD 8.2 amd64 o kern/157397 [ada] ahci/ada/cam NCQ timeouts on Samsung and non-dis f ports/157392 marius sysutils/cdrtools can't burn DVDs correctly o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I o misc/157382 host cvsup.freebsd.org has been refusing connections f o usb/157376 usb LaCie USB disk not recognized o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o ports/157342 devel/gdb: Problem with running simple pthreads progra o docs/157337 doc [handbook] [patch] Indentation changes to network serv o ports/157320 eadler [NEW PORT] databases/pecl-pdo_user: PECL classes provi o docs/157316 doc [patch] update devstat(9) man page o ports/157313 hrs cad/spice SEGV o bin/157308 getextattr(8) incorrect listing of attibutes with glob o ports/157301 [New port] net-mgmt/zbxlog: Syslog server receives mes o kern/157293 [mfi] mfiutil/mfi does not allow adding a previously c o bin/157289 repquota(8) does not mark overquota users with a "+" s o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f o ports/157282 x11 [MAINTAINER PATCH] net/xrdp: effective login name is n s ports/157261 itetcu net-im/skype: Cannot Visit account page o kern/157259 [build] kernel: install: mps.ko.symbols: No such file o bin/157244 dump(1): dump/restore: unknown tape header type -2307 o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o docs/157234 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin o ports/157207 skv [PATCH] textproc/p5-XML-LibXML: package scripts should a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o conf/157189 Default /etc/sysctl.conf should be removed. o kern/157182 net [lagg] lagg interface not working together with epair o kern/157179 fs [zfs] zfs/dbuf.c: panic: solaris assert: arc_buf_remov o bin/157177 primes(1) prints non-prime for numbers > 2^32 o ports/157174 wen fix typos and small mistakes in various ports o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI o kern/157118 [igb] cleanup error in igb driver - igb_setup_receive_ o bin/157117 sysinstall sysinstall(8): Add ftp4.se.freebsd.org to list of IPv6 f ports/157109 conflict between net/netpipes and sysutils/timelimit o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers f ports/157107 conflict between mail/p5-Mail-SPF and mail/libspf2 o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o www/157076 www freebsd-wireless mailing list not shown on web All Lis o usb/157074 usb [boot] [usb8] vfs_mountroot_ask is called when no usb o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o stand/157050 multimedia OSS implementation lacks AFMT_FLOAT o docs/157049 doc FreeBSD Handbook: Chapter 14 (Security) Inaccuracy o ports/157045 skv [patch] devel/p5-Devel-Leak: sv_dump() fix o bin/157017 vidcontrol(1): "vidcontrol -r" no longer works [regres o bin/157015 bsnmpd(8) does not create 64bit counters for interface o kern/156974 [boot] [panic] Panic during kernel boot on HP Proliant o docs/156955 doc bug in share/man/man2/setsockopt.2 o ports/156949 x11 x11-drivers/xf86-video-ati 6.14.1 produce black blank o conf/156945 [nsswitch.conf] Name service Switch does not work as d o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP a docs/156920 doc isspecial(3) is not helpful o bin/156908 dumpfs(8) incorrectly displays ufsid o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces o ia64/156900 ia64 ia64 -current r221488 panic if kern.maxssiz=536748033 o usb/156898 usb [keyboard] usb keyboard does not work while boot (ps2 f ports/156897 edwin [PATCH] net/freenet6: update pkg-message o kern/156884 wireless [ath] ath instablity o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o ports/156836 mm multimedia/x264: undefined reference to `__gcov_init' o ports/156834 New port: games/fairymax-devel latest version of games o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o arm/156814 arm OpenRD Ultimate does not boot on DB-88F6XXX or SHEEVAP o kern/156799 HEAD panic: Multiple IRQs for PCI interrupt 0.31.INTA: o kern/156797 fs [zfs] [panic] Double panic with FreeBSD 9-CURRENT and o ports/156787 apache www/mod_auth_kerb2 fails on undefined symbol with base o kern/156781 fs [zfs] zfs is losing the snapshot directory, o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o bin/156768 [patch] sockstat(1): missing spaces between long field o misc/156767 joerg Installation Media do not include current list of mirr o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX o kern/156749 [vmware] FreeBSD 8.2 does infinite disk access in VMwa p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o usb/156735 usb Need Quirk for Goflex USB Disk Drives o bin/156729 make(1) does not respect.ORDER in non-parallel mode o kern/156726 multimedia [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/156725 usb USB stack stall cause complete system input loss f ports/156719 apache ab: apr_socket_recv: Connection reset by peer (54) o kern/156716 [hang] System freeze during reboot o gnu/156704 Improper behaviour of GNU grep(1) o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o docs/156689 doc stf(4) output-only documentation gives bad configurati o kern/156684 [libc] getaddrinfo(3) returns improper error o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d o kern/156667 net [em] em0 fails to init on CURRENT after March 17 o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/156637 [headers] [patch] sys/types.h can't be included when _ o usb/156596 usb [ehci] Extremely high interrupt rate on ehci/uhci IRQ1 o kern/156584 bz [jail] ipv4 packet is not forward to v4-mapped binding p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156556 [hpet] FreeBSD fails to boot on ACER 2920: "bad stray p kern/156545 fs [ufs] mv could break UFS on SMP systems o kern/156540 [hwmpc] hwpmc(4) crash when loaded on unknown AMD cpu o misc/156537 Mismatch of Control Sums for ISO-image Files of Old Di o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o ports/156492 skv Multiple versions of Perl not supported o bin/156484 ntpd(8) regularly flips between PLL and FLL mode (time o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156463 [panic] kernel panic at pcpu.h:224 o ports/156425 python lang/python26: Needs to include -L/usr/local/lib/pth i f ports/156424 x11 8.2R xrandr & xf86-video-intel & xorg-server packages o kern/156423 kib [kqueue] [patch] Please add kqueue support for /dev/kl o ports/156415 danfe [NEW PORT] net-im/py-hotot, Twitter and Identi.ca micr o kern/156408 net [vlan] Routing failure when using VLANs vs. Physical e o ports/156405 x11 x11-drivers/xf86-video-ati driver: no hardware renderi o ports/156369 x11 x11-drivers/xf86-video-vmware: DPI value wrong calcula o ports/156368 x11 x11-drivers/xf86-video-vmware: pwcview does not work o ports/156362 eadler New port: games/rftg Race for the Galaxy AI o kern/156358 jkim [patch] make amdtemp.c compatible with Llano/Brazos pl o kern/156353 emulation [ibcs2] ibcs2 binaries that execute on 4.x not working o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o ports/156335 gecko www/firefox: Repeatable firefox-4.0_1,1 crash o kern/156328 net [icmp]: host can ping other subnet but no have IP from o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/156322 wireless [wpi] no ahdemo support for if_wpi o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/156317 net [ip6] Wrong order of IPv6 NS DAD/MLD Report o ports/156287 kuriyama security/gnupg does not work without pinentry o ports/156286 snb sysutils/apt port tries to pull from incorrect URL o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o kern/156279 net [if_bridge][divert][ipfw] unable to correctly re-injec o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 o misc/156242 hrs [build] /usr/src/release/Makefile o kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if o i386/156229 i386 [hang] Server IBM x3400 is hangs with option SMP in Ke o kern/156226 net [lagg]: failover does not announce the failover to swi o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/156193 fs [ufs] [hang] UFS snapshot hangs && deadlocks processes f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, f ports/156143 scheidell New port: devel/arduino-mk: Build Arduino sketches fro o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/156111 jail [jail] procstat -b not supported in jail o amd64/156106 amd64 [boot] boot0 fails to start o gnu/156082 gcc(1) makes incorrect code when swapping array elemen o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o kern/156074 [hang] Removing CD-Rom from Lenovo T61p hangs system o ports/156066 pgollucci [NEW PORT] databases/rubygem-xapian-full (self contain o ports/156042 x11 x11/xorg hang in combination with KWin-Tiling o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/156030 net [ip6] [panic] Crash in nd6_dad_start() due to null ptr o kern/156016 [ncurses] Arrow keys don't work with any ncurses based o ports/156015 sem [PATCH] dns/unbound add MUNIN-plugin o usb/156000 usb rum(4) Fatal trap 18: integer divide fault while in ke o usb/155996 usb NanoBSD not booted as Disk o kern/155994 geom [geom] Long "Suspend time" when reading large files fr f ports/155991 kuriyama textproc/p5-XML-Parser build error o bin/155985 tcpd(8) does not perform a access-control o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o kern/155964 [hang] OS hangs completely when suspend\resume with ac f ports/155949 gecko www/firefox: firefox 4, WITH_PGO, better Text against f ports/155947 xfce x11-wm/xfce4 does not launch or start f ports/155941 systemoperatornet/nepenthes: mwserv library support is not included o ports/155938 mlaier Unbreak sysutils/pftop on 9.X o ports/155936 python lang/python27 Pthread: previous declaration of ... f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o bin/155902 ifconfig(8): ifconfig wlan0 create wlandev foo0 wlanad f ports/155898 Update port devel/libthai o ports/155896 adrian [PATCH] sysutils/mkfwimage: use LOCAL as MASTER_SITES o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o ports/155890 tabthorpe [patch] Mk/bsd.licenses.mk: don't leave temporary file o bin/155886 bc(1) sometimes mangles hexidecimal numbers p bin/155873 edwin calendar(1) recurring date not working o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o usb/155784 usb Problem with Transcend StoreJet 25M3 (2AJ1) on Asus M2 o bin/155778 awk(1) doesn't set error exit status on errors o docs/155773 doc dialog(1): dialog manpages not updated o kern/155772 net ifconfig(8): ioctl (SIOCAIFADDR): File exists on direc o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o bin/155757 problems with setfib(1) behavior o kern/155752 [uart] tcdrain(3) does not work with uart(4) driver o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o ports/155697 ports-mgmt/pkg_replace doesn't want to replace java/op o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o i386/155695 i386 AMD Vision ultimate notebook HP Pavilion DV6 3109ER ov o ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o kern/155680 net [multicast] problems with multicast o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155657 java java/openjdk6: missing symlink for include/freebsd/* o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an s kern/155642 net [request] Add driver for Realtek RTL8191SE/RTL8192SE W o ports/155639 timur net/samba-libsmbclient: unrecorded libtdb dependency o kern/155628 [ahci] ahci disables dvd device o ports/155626 skv lang/perl5.x fails to build on Sheevaplug (ARM) o kern/155615 fs [zfs] zfs v28 broken on sparc64 -current f kern/155604 kmacy [flowtable] Flowtable excessively caches dest MAC addr o ports/155601 fluffy new port audio/festvox-russian o kern/155597 net [panic] Kernel panics with "sbdrop" message f ports/155593 crees audio/musicpd .16.1 ignores embedded cue sheets in FLA o kern/155587 fs [zfs] [panic] kernel panic with zfs f kern/155585 melifaro [tcp] [panic] tcp_output tcp_mtudisc loop until kernel o kern/155577 emulation [boot] BTX halted after install. Reboot during install o bin/155567 [patch] cvs(1): add -r tag:date to CVS o bin/155548 pkg_info(1): pkg_info -g mistakenly adds $PREFIX to gl f ports/155547 crees java/jboss5 port build failure o ports/155546 autotools devel/libtool doesn't work properly if not using built o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o kern/155499 [mfi] mfi(4) command timeout loop on boot on releng/8. o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o conf/155480 [login.conf] maxproc does not work when command runnin o kern/155468 xen [xen] Xen PV i386 multi-kernel CPU system is not worki s ports/155461 gnome [UPDATE] editors/abiword-docs to 2.9.0 s ports/155460 gnome [UPDATE] editors/abiword to 2.9.0 p kern/155442 jhb [bge] bge driver is seen but does not respond to netwo o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o ports/155431 xfce x11-wm/xfce4: The little bugs o kern/155429 [headers] including malloc.h should not abort compile. o kern/155421 [hang] System can't dump corefile [regression] o kern/155420 net [vlan] adding vlan break existent vlan f kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk p kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o ports/155354 bf New port: math/cmlib NIST core maths library o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver f ports/155335 mi multimedia/vic is out of date o ports/155329 skv [PATCH] net-im/p5-DJabberd: update to 0.84 o kern/155320 [hang] cpufreq/powerd + xorg-7.5.1 + xf86-video-intel- o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot o ports/155275 secteam ports-mgmt/portaudit does not report installed vulnera f ports/155268 danfe games/warsow 0.6 does not work as dedicated server f kern/155249 [build] 8.1 buildworld failure o arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o kern/155199 fs [ext2fs] ext3fs mounted as ext2fs gives I/O errors o kern/155196 [uart] uart cannot identify internal modem or its chip f ports/155182 demon security/qca-tls 1.0_7 does not build in 9-CURREN o kern/155177 net [route] [panic] Panic when inject routes in kernel o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree f ports/155141 wen [UPDATE] www/py-turbogears2: update to 2.1 o amd64/155135 amd64 [boot] Does Not Boot On a Very Standard Hardware o kern/155125 [lor] triple LOR in mkdir(1) o ports/155115 devel/doxygen: dependancy loop o ports/155105 stephen Port science/vis5d+ does not build. o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" o ports/155083 netchild devel/linux_kdump update f ports/155070 eadler NEW PORT: games/CastleVox - new fast strategy board ga o ports/155067 novel security/gnutls will not build inside jail o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/155030 net [igb] igb(4) DEVICE_POLLING does not work with carp(4) p bin/155028 init(8): "init q" in single user causes segfault o ports/155011 bland x11/nvidia-settings versions 195 and above fail to all o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel f kern/155004 yongari [bce] [panic] kernel panic in bce0 driver o bin/155000 make(1) doesn't handle .POSIX: correctly o conf/154999 Problems with ARP table o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o ports/154969 jpaetzel Update to net/socks5 (unbreak for -current) o amd64/154957 amd64 [boot] Install boot CD won't boot up - keeps rebooting o kern/154955 acpi [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3 o bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o kern/154943 net [gif] ifconfig gifX create on existing gifX clears IP o kern/154930 fs [zfs] cannot delete/unlink file from full volume -> EN o kern/154915 [libc] [patch] Force stdio output streams to line-buff o ports/154897 emulators/open-vm-tools: Bug in open-vm-tools-313025_2 o ports/154890 mva [UPDATE] devel/py-game to 1.9.1 o ports/154884 java java/openjdk6: Every NetBeans version on FreeBSD 8.1 c o bin/154877 portmgr pkg_info(1) error message should contain information a p stand/154873 pjd ZFS violates POSIX on open/O_CREAT -> ftruncate o kern/154860 ae gmirror(8): [panic] geom_mirror panices system on spec s kern/154851 net [request]: Port brcm80211 driver from Linux to FreeBSD o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o stand/154842 standards invalid request authenticator in the second and subseq o docs/154838 doc update cvs-tags information on releng_* to reflect sup o kern/154833 xen [xen]: xen 4.0 - DomU freebsd8.2RC3 i386, XEN kernel. o kern/154828 fs [msdosfs] Unable to create directories on external USB o kern/154826 bschmidt [iwn] iwn driver fails to power on adapter after resum o kern/154814 [lor] LOR between bufwait/dirhash o bin/154788 sysinstall sysinstall(8) crashes if no network interface found o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o bin/154769 make(1): :L modifier broken in quoted strings o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o ports/154711 security/heimdal: kadmin: hdb_open: hdb_open failed in o usb/154710 usb [ugen] Conexant USB Modem is not working in 8.x. In 7. o kern/154709 [heimdal] Kerberos V5 refuses authentication because R o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o ports/154682 net/iaxmodem: add rc script for running more than 1 ia o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o ports/154674 office Build of editors/openoffice.org-3 3.0 fails o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o amd64/154629 amd64 [panic] Fatal trap 9: general protection fault while i o ports/154628 gabor /usr/ports/textproc/bsddiff/ segfaults with -N o bin/154613 sysinstall sysinstall(8) does not rescan USB automatically o kern/154609 ed [ncurses] END key under screen not sending correct cod o ports/154607 flz Symlinking leads to hashing fail in net-p2p/rtorrent [ o kern/154600 net [tcp] [panic] Random kernel panics on tcp_output p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o i386/154578 i386 [boot] BTX Loader hangs > 1,5 min after listing BIOS d o bin/154570 [patch] gvinum(8) can't be built as part of the kernel o kern/154567 wireless [ath] ath(4) lot of bad series(0) o bin/154562 make(1): corrupted stack access when provided invalid o kern/154557 net [tcp] Freeze tcp-session of the clients, if in the gat o conf/154554 rc [rc.d] [patch] statd and lockd fail to start f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o ports/154502 x11 x11/xdm authorization failure when used with E17 windo o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o conf/154484 [patch] request for new functionality. jail zfs datase o kern/154473 xen [xen] xen 4.0 - DomU freebsd8.1 i386, XEN kernel. Not o kern/154472 xen [xen] xen 4.0 - DomU freebsd8.1 i386 xen kernel reboot p bin/154469 bz ftp-proxy(8) bug, can be fixed via merge from openbsd o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy a ports/154455 roam [patch] security/stunnel: add aloha sendproxy support o ports/154449 x11 x11/xorg: missing manpage (7) Xsecurity o kern/154443 net [if_bridge] Kernel module bridgestp.ko missing after u o kern/154432 scsi [xpt] run_interrupt_driven_hooks: still waiting after f ports/154431 sobomax [patch] ports/Tools/scripts: python scripts use bad sh o kern/154428 xen [xen] xn0 network interface and PF - Massive performan o ports/154423 x11 x11-drivers/xf86-video-radeonhd: radeon xorg driver ca o bin/154419 dig(1) segfault with +trace o bin/154409 indent(1) bug report p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o www/154406 webmaster Mailing List Archives search broken and outdated f ports/154401 jgh New port: www/jetty7 - newer fork by Eclipse/Codehaus o ports/154352 bsam [patch] multimedia/xmms: update using desktop and mime o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o arm/154306 imp named crashes with signal 11 o kern/154299 [arcmsr] arcmsr fails to detect all attached drives f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154255 net [nfs] NFS not responding f ports/154254 rene [patch] asmail imap login broken with gmail at al. o ports/154249 bf [NEW PORT] math/sprng: Scalable Parallel Pseudo Random o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o ports/154241 philip [patch] games/wesnoth: move USE_* under bsd.port.optio p kern/154228 fs [md] md getting stuck in wdrain state o arm/154227 arm [geli] using GELI leads to panic on ARM o kern/154226 geom [geom] GEOM label does not change when you modify them o gnu/154225 The rcsintro manpage should not be in section 1 o kern/154214 net [stf] [panic] Panic when creating stf interface f ports/154209 python [PATCH] lang/python: Install symlink for ptags o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o arm/154189 arm lang/perl5.12 doesn't build on arm o kern/154185 net race condition in mb_dupcl o ports/154183 mm graphics/pecl-imagick libthr preload issue o kern/154170 davidxu Panic in sched_switch (/usr/src/sys/kern/sched_ule.c:1 o kern/154169 net [multicast] [ip6] Node Information Query multicast add o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/154134 net [ip6] stuck kernel state in LISTEN on ipv6 daemon whic o misc/154133 [build] device.hints not updated on upgrade == serial f ports/154118 mm graphics/ruby-rmagick: rmagick fails to automaticly re o kern/154091 net [netgraph] [panic] netgraph, unaligned mbuf? o ports/154086 office libsicui18n.a in devel/icu constains no symbols p bin/154073 delphij [libz] libz causes perl to exit on signal 11 o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o bin/154060 host(1): Server Unknown Error while resolve ip by the o conf/154054 cperciva etc/portsnap.conf FreeBSD-7.4 remove INDEX-5 and INDEX p bin/154042 delphij [patch] fix several rtprio(1) issues o kern/153996 fs [zfs] zfs root mount error while kernel is not located o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag o kern/153990 emulation [hyper-v]: Will not install into Hyper-V on Server 200 o docs/153958 doc ksu man-page documented, but not installed o ports/153952 python lang/python26 + pth fails to reconfigure cflags to inc o kern/153937 net [ral] ralink panics the system (amd64 freeBSDD 8.X) wh o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o amd64/153935 amd64 [hang] system hangs while trying to do 'shutdown -h no o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o i386/153851 usb [keyboard] keyboard issues on new Intel Mother boards. a kern/153848 bz [carp] [ipv6] backup host can't connect to master host o ports/153846 multimedia graphics/libcaca 0.99.beta17 - Hidden dependency on Xl o amd64/153831 amd64 [boot] CD bootloader won't on Tyan s2912G2nr o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g f ports/153810 [PATCH] Fix usb_interrupt_read() in devel/libusb for f o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/153771 Unkillable process after a SCSI tape write error o kern/153757 Kernel panic using openchrome Xorg driver on 9-CURRENT o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh a ports/153735 jsa multimedia/vlc: install error: `Permission denied' for o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o usb/153703 usb [keyboard] My USB keyboard can not be used in 8-STABLE o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o misc/153673 [build] tic (the terminfo compiler) not being created o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153659 awk(1) segfaults when trying to extract a combination o ports/153632 hrs textproc/xmlcharent fails to build o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o bin/153600 Path length restrictions in mount/umount tools prevent o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync f kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif o ports/153593 x11 graphics/dri: clutter segfault, something to do with i o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153567 acm [PATCH] x11/fpc-x11: doesn't respect localbase o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o bin/153527 [patch] wake(8) should use sysexits.h o kern/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable o kern/153514 scsi [cam] [panic] CAM related panic o bin/153502 [libc] regex(3) bug with UTF-8 locale o kern/153497 net [netgraph] netgraph panic due to race conditions o amd64/153496 amd64 [hyper-v] [install] Install on Hyper-V leaves corrupt o ports/153495 x11 x11-drivers/xf86-video-ati wavy line problem for lenov o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o kern/153448 wireless [ath] ath networking device loses association after a o ports/153429 [patch] Fix explicite uses of unzip in ports o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o ports/153406 apache www/apache22's SUEXEC_RSRCLIMIT option does not take e o ports/153386 devel/valgrind does not build/include man pages o arm/153380 arm Panic / translation fault with wlan on ARM f misc/153373 [build] Cannot buildworld for 8.1_RELEASE-p2 o amd64/153372 amd64 [panic] kernel panic o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o ports/153358 x11 x11-drivers/xf86-video-intel: Intel driver freeze with o kern/153351 fs [zfs] locking directories/files in ZFS o kern/153308 net [em] em interface use 100% cpu o kern/153307 pf [pf] Bug with PF firewall o kern/153303 [amr] amr device driver dont detect logical drive amrd f kern/153289 gavin Modem Ring Signal not reliably detected o ports/153281 ashish editors/emacs: glib warning when starting emacs o bin/153276 [patch] uudecode(1) error message is incorrect o ports/153264 apache www/apache22 and apache13-modssl -- rc.d script improv o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/153243 emulation [ibcs2] Seg fault whne running COFF binary using iBCS2 p bin/153240 des fetch(1): http transfer hangs after ^T (status) on tty o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out f ports/153231 ohauer [PATCH] net-mgmt/nrpe2 enable ssl by default o bin/153211 cperciva freebsd-update(8) can not fetch updates over a proxy w p bin/153206 maxim [patch] netstat(1): "netstat -sz" doesn't reset any IP o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o conf/153200 rc post-boot /etc/rc.d/network_ipv6 start can miss neighb o ports/153195 nivit New port: www/mathjax cross-browser JavaScript display o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w o ports/153167 python Problem with signals, threads, and subprocesses in lan o kern/153161 ipfw IPFIREWALL does not allow specify rules with ICMP code o misc/153157 [build] [patch] Add support for generating userland de o bin/153156 When watch(1) is invoked incorrectly it trashes the tt o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o usb/153149 usb [umass] USB stick quirk regression [regression] o ports/153147 danfe Repocopy request: graphics/yafray -> graphics/yafaray o bin/153142 [zfs] ls -l outputs `ls: ./.zfs: Operation not support o ports/153128 bf graphics/ocaml-lablgl fails to build o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o bin/153124 grep(1): "grep foo * > somefile" goes into an infinite o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error o misc/153049 [build] PORTS_MODULES= seriously broken if port depend a docs/153012 doc [patch] iostat(8) requires an argument to -c option o ports/153008 brooks lang/clang: clang/binutils incompatibility f i386/153003 gavin [panic] Cant boot PCBSD-CURRENT-20101204x86CD.iso Dec0 o kern/152991 [ufs] false disk full with a too slow flash module o i386/152942 mav [install] "acd0[READ(offset=32768, length=2048)]error= o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o kern/152922 adrian Routerstation Pro different flash model investigation f ports/152915 russian/xmms v. 1.2.11_12 don't see cdinfo and tag's i f bin/152909 gavin scp mistake file to directory o ports/152899 devel/valgrind: unhandled syscall: 506 o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o amd64/152874 amd64 [install] 8.1 install fails where 7.3 works due to lac o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o ports/152847 clsung [patch] port/buildbot-slave could use a startup script o ports/152838 yzlin [PATCH] www/suphp: Add support for lighttpd o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o gnu/152808 gdb(1) crash on exit o conf/152807 [periodic] security 900.tcpwrap does not report any re o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152796 fcntl(2) audit records should not be labeled "file att o kern/152792 [acpica] [patch] move temperature conversion macros to o kern/152791 bz [icmp] ND, ICMPv6 Redirect vs Destination Cache failed o kern/152750 wireless [ath] ath0 lot of bad series hwrate o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w o kern/152662 [rtld] load libraries with address hint (cf. prelink) o bin/152661 parallel make sometimes gets working dir confused o misc/152636 [install] 8.1 Boot Only ISO doesn't support install vi o kern/152622 multimedia [pcm] uaudio recording problem o misc/152613 FreeBSD 8.x can not find logical drives on extended pa p kern/152609 pjd [geli] geli onetime on gzero panics o kern/152604 FreeBSD 7.2/7.3 installation CD panics on HP Proliant f kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o kern/152569 net [net]: Multiple ppp connections and routing table prob o ports/152568 portmgr New option framework proposal p bin/152551 gavin [libc] Remove unused variables. s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p o bin/152546 gdb(1): internal-error: fbsd_thread_new_objfile: Asser o misc/152543 listing color format cause kernel panic in .zfs dir p misc/152531 maxim Incorrect sysctl description o bin/152525 ntpd(8) on 8.1 loops on select() with EBADF o kern/152500 multimedia [hdac] play interrupt timeout, channel dead o kern/152485 arundel [patch] seek offset for /dev/null(4) and /dev/zero(4) o ports/152474 mi Upgrading 'gdb-6.6_1' to 'gdb-6.6_2' (devel/gdb6) fail o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules f bin/152458 hrs rtadvd(8) needs to allow RA without a prefix info opti o bin/152446 cperciva portsnap(8) error o kern/152438 acpi [acpi]: patch to acpi_asus(4) to add extra sysctls for o amd64/152430 amd64 [boot] HP ProLiant Microserver n36l cannot boot into i o stand/152415 kargl [libm] implementation of expl() o kern/152405 wrong user time is reported when CPU frequency throttl o ports/152389 sem sysutils/grub and sysutils/grub2 misinterpret disklabe o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us f ports/152376 eadler New port: audio/lastfmsubmitd o ports/152355 hrs net/openbgpd stops syslogging after syslogd restart o ports/152341 bapt shells/zsh fails to load zsh/regex with ZSH_STATIC kno o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x f ports/152306 mm devel/binutils create binary incompatible kernel modul o kern/152293 [libstdc++] SEGV in libstdc++.so.6 o bin/152259 ae bsnmpd(1) fails with stack overflow during GETBULK of o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o bin/152229 b64decode(1)/b64_pton(3) should decode common variant o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 o ports/152224 python [patch] fix installed permissions for lang/python27 o kern/152162 [syscons] On syscons, pressing delete key results in p o ports/152159 x11 [hang] xorg/x11: X11 freezes with Intel Mobile 965 and o bin/152154 script(1) -k malfunctions with certain shells (e.g. tc s kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152131 script(1): [patch] Useless code in script.c (part 1) o ports/152118 eadler New port: deskutils/linux-tahometer A worktime trackin o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo f ports/152111 timur databases/tdb: Cannnot install tdb from ports o docs/152103 chinsan man ipnat is out-dated a ports/152099 cs [NEW PORT] www/loggerhead o kern/152098 acpi [acpi] Lenovo T61p does not resume f amd64/152097 gavin Sound button in Lenovo T61p mutes sound in kde o bin/152084 [patch] pw(8) does not allow @ or ! in gecos o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o ports/152066 mnag [new port] databases/py-MySQLdb40 and so forth: New sl a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe f ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp o kern/152036 net [libc] getifaddrs(3) returns truncated sockaddrs for n o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory o bin/151937 [patch] netstat(1) utility lack support of displaying o kern/151924 very slow boot from disk: 15m+ o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor o kern/151905 fs [zfs] page fault under load in /sbin/zfs o ports/151884 office editors/openoffice.org-3-devel port misbehaviour p bin/151866 des [libfetch] [patch] closing the cached FTP connection o kern/151813 FreeBSD 8.1/amd64: garbage in /var/log/messages o ports/151808 oliver security/courier-authlib: courier-authdaemond doesn't f threa/151767 davidxu pthread_mutex_init returns success with bad attributes o ports/151764 timur security/vuxml update for security vulnerability: port o docs/151752 doc pw.conf(5) doesn't define format for file clearly o ports/151747 new port: emulators/wine-fbsd64: request for (a variat s gnu/151716 gcc(1) fail with internal compiler error when using -f o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o kern/151690 net [ep] network connectivity won't work until dhclient is o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o bin/151663 grdc(1): games/grdc: -s does not scroll o ports/151662 ruby ports-mgmt/portupgrade: upgrade of autoconf leaves old o kern/151650 FreeBSD9-CURRENT can't boot when recompile KERNEL. o kern/151648 fs [zfs] disk wait bug o kern/151629 fs [fs] [patch] Skip empty directory entries during name o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o ports/151603 vbox [vbox] Self-built emulators/virtualbox-ose-kmod vboxne o bin/151600 [patch] route(8) does not always flush stdout o ports/151596 x11 x11/xorg: wacom bamboo button 1 no longer works o kern/151593 net [igb] [panic] Kernel panic when bringing up igb networ o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o ports/151534 python lang/python26 + WITH_PTH doesn't install correctly o ports/151472 ume mail/cyrus-imapd23 failed to compile f ports/151467 stephen New port: sysutils/autojump acts as a complement to cd o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad o kern/151444 [kerberos] Kerberos5 is broken in the base system from f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o www/151438 bugmeister query-cgi use monospace font o www/151437 bugmeister query-cgi broken with base64 encoded mime email o ports/151427 wen math/FriCAS: fatal error encountered in SBCL pid 19170 s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o ports/151414 portmgr Add 'work' when WRKDIRPREFIX is used. o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O o docs/151336 scsi Missing documentation of scsi_ and ata_ functions in c o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o ports/151280 matusita emulators/vmware-guestd6 port install error in /usr/po o bin/151264 syrinx bsnmpd(1): pf counters aren't updated on some SNMP que o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o bin/151229 eadler xterm terminal emulation - shift-tab doesn't work as e o kern/151226 fs [zfs] can't delete zfs snapshot o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o bin/151187 pkg_add(1): allow different pkgdep location o bin/151186 [patch] routed(8) turns RIP off if just one network ca o bin/151168 pkg_add(1): pkg_add -K should preserve file metadata o ports/151154 kde audio/amarok-kde4 crashes on network activity if ports o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151124 hrs net/openbgpd: OpenBGPD exists if an interface is remov o i386/151122 i386 [boot] BTX 1.02 crashes on boot o kern/151111 fs [zfs] vnodes leakage during zfs unmount p docs/151104 keramida mksnap_ffs(8) should mention 20 snapshot limit on UFS o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o bin/150995 sysinstall sysinstall(8): corruption of partition table o ports/150994 maho math/suitesparse can not compile with atlas o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o bin/150988 adduser(8) problem of directory mode a ports/150980 dinoex print/cups-base: I can not create package for cups-bas s ports/150968 kuriyama textproc/p5-XML-Parser fails test o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o ports/150903 databases/dbf: options --sql / --csv does produce crap o usb/150892 usb [zyd] Whenever network contacted in any shape, way or p bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o docs/150877 doc ambiguity in newsyslog(8) man page about zfs with comp o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o ports/150794 glewis tomcat7's rc.d script wont shutdown tomcat with java/o o bin/150771 [patch] csup(1) GNUmakefile missing o i386/150766 i386 Dell Vostro 3700 siffle sous FreeBSD / Dell Vostro 370 p conf/150752 dougb [rc.subr] [patch] be not needed to eval $_pidcmd on re o bin/150723 ae bsnmpd(1): add knowledge of "ada" disks (ATA via SCSI o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of o kern/150640 [panic] Fatal Trap 9 - 8.1-release o ports/150633 x11 x11-servers/xorg-server: KVM switching causing X serve o ports/150631 gecko www/firefox 3.6.9 does not build if you have previousl o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label s bin/150620 [request] Please include utility programs for ncurses f ports/150594 eadler [patch] graphics/dri: add support for ATI Radeon HD 42 o misc/150590 Screen goes blank when PC-BSD graphic install is loade o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o kern/150557 net [igb] igb0: Watchdog timeout -- resetting o kern/150555 geom [geom] gjournal unusable on GPT partitions o www/150553 www [patch] update Russian "FreeBSD Community" page f ports/150541 gahr [new port] sysutils/yum - Installer/updater for rpm o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o kern/150516 jfv [em] e1000 receive queue handling problem s kern/150514 kib [drm] [request] Reorganize DRM Directory to Support Dr o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot f ports/150502 multimedia multimedia/gpac-libgpac 0.4.5_4,1 fails to compile on o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o ports/150425 www/squid31: rc.d/squid's squid_fib setting ineffectiv o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x f ports/150295 nivit audio/sonata fails in __init__ at mpd.MPDClient() : o o kern/150284 multimedia [snd_hda] No gain with Audio o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken s bin/150237 sysinstall sysinstall(8): Suggestion: installer should suggest th o bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o bin/150224 net ppp(8) does not reassign static IP after kill -KILL co o docs/150219 doc zfs(8) manual page misses jail/unjail o kern/150206 [patch] nmount(2): can't switch root partition to rw u o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o ports/150155 x11 x11/xorg hangs after xrandr(1) usage p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o stand/150093 standards C++ std::locale support is broken f ports/150086 [NEW PORT] net-im/tkabber-plugins-devel: External Plug f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo o ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a o kern/150036 [rpc] Sun RPC license has less restrictions now. f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' a stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o bin/149972 [patch] pw(8): usermod -u should error f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/149960 [headers] syntax error /usr/include/machine/endian.h o ports/149958 bf x11-toolkits/ocaml-lablgtk2's varcc should (maybe) be f ports/149949 emulators/open-vm-tools: Problems with DHCP on startup o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti s kern/149927 scsi [cam] hard drive not stopped before removing power dur o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 itetcu [PATCH] mail/dspam: important cleanup p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o kern/149857 [kqueue] kqueue not reporting EOF under certain circum o ports/149846 kwm graphics/gimp-gap: outdated (not maintained) port o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149828 kientzle tar(1) poor (empty) error message when extracting trun o ports/149817 ruby [wishlist] ports-mgmt/portupgrade: portinstall -p opti o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label p kern/149800 eadler [fdc] [patch] "driver bug: Unable to set devclass (dev o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149762 geom volume labels with rogue characters o ports/149743 x11 x11/xorg: garbled window since Xorg-7.5 o gnu/149712 [build] -fno-builtin in CFLAGS will cause gcc(1) to se o ports/149678 portmgr Mk/bsd.port.mk: add a sanity check for OPTIONS p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly o i386/149647 i386 [panic] Dell Inspiron 530 (FX09) panic at boot with 8. o kern/149643 net [rum] device not sending proper beacon frames in ap mo o ports/149636 x11 x11/xorg: buffer overflow in pci_device_freebsd_read_r o misc/149633 bugmeister Problem with replying to PR o kern/149609 net [panic] reboot after adding second default route o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o kern/149532 jfv [igb] igb/ixgb controllers panic on FreeBSD 8.1-RELEAS o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o ports/149513 eclipse java/eclipse can not compile with 'WITH_TESTS=true' o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o kern/149479 [panic] 8.1-RELEASE kernel panic p bin/149464 jh [libc] [rtld] dlclose(3) can access freed memory and c o www/149446 www [patch] improve misleading title of "report a bug" o ports/149420 ume security/cyrus-sasl2 fails to build GSSAPI, breaking p o bin/149412 secteam bdes(1) in CFB/OFB modes can't decrypt own output o kern/149373 wireless [realtek/atheros]: None of my network card working o threa/149366 threads pthread_cleanup_pop never runs the configured routine o bin/149363 tcsh(1) cause situation when ssh connection closed o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149323 [libc] Applications with large memory footprint failin o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o arm/149288 arm mail/dovecot causes panic during configure on Sheevapl o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o ports/149250 hrs japanese/FreeWnn-server: /etc/rc: WARNING: $wnn_enable o bin/149232 cperciva portsnap(8) does not generate INDEX-9 on FreeBSD 9-CUR o kern/149219 [ciss] DL380 G6 P212 trouble o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via o kern/149208 fs mksnap_ffs(8) hang/deadlock o kern/149201 [ata] DVD/CD Drive Error o ports/149186 timur net/samba34 builds broken binaries on Sheevaplug (ARM) o kern/149173 fs [patch] [zfs] make OpenSolaris installa o ports/149167 python lang/python26 fails to build _ctypes on Sheevaplug (AR o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o kern/149086 net [multicast] Generic multicast join failure in 8.1 o docs/149051 doc [request] No document for clang or clang++ o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 p docs/149033 pjd hastctl.8 manpage wrong o ports/149031 csjp Not work security/termlog o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include 4.1 does not connect to BSD in hostap wit o kern/144874 net [if_bridge] [patch] if_bridge frees mbuf after pfil ho p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic p conf/144842 hrs [ip6] ipv6_default_interface causes route complaints f o kern/144824 [boot] [patch] boot problem on USB (root partition mou s docs/144818 doc all mailinglist archives dated 19970101 contain traili o kern/144809 [panic] Fatal trap 12: page fault while in kernel mode o conf/144804 ntpd(8) cannot resolve hostnames at system start f ports/144794 amdmi3 multimedia/aegisub: fails to build with multiple optio o kern/144777 qingli [arp] proxyarp broken in 8.0 [regression] s kern/144770 [ata] hard drive spindown functionality broken? o ports/144769 ruby [PATCH] ports-mgmt/portupgrade should have a configura o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/144754 gssapi(3): cyradm crashes inside libgssapi.so o kern/144743 [libteken] mouse positioning partialy working o bin/144736 devd(8) should consider spaces in event description wh o conf/144726 hrs network.subr functions accumulate output before r19713 o bin/144723 [patch] port over coverity SA NULL deref warning fix f p bin/144722 tijl [patch] port over character escape fix for hexdump(1) o www/144704 brd svn-src-release mailing list page has broken link to a o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o kern/144696 ed [uart] tcdrain(3) does not work right with uart(4) dri o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o bin/144652 [PATCH] pwd_mkdb(8) copies comments to /etc/passwd o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg o bin/144641 [ata] burncd(8) freezes whole system while trying to b o docs/144630 doc [patch] domainname(1) manpage contains old information o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors p misc/144553 imp [nanobsd] NanoBSD's updatep* scripts fail with boot0cf o conf/144548 brian [boot] [patch] Enable automatic detection of amd64/i38 o docs/144543 chinsan [handbook] IPFW doc change o ports/144536 skv lang/perl5.10: /libexec/ld-elf.so.1: /usr/local/sbin/e s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta s bin/144531 [patch] cp(1) show percentage complete o docs/144515 doc [handbook] Expand handbook Table of contents o kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o docs/144488 doc share/examples/etc/make.conf: contains dangerous examp p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi o misc/144442 [build] [patch] remove unnecessary group and passwd en o i386/144437 [boot] BTX loader halts on HP DC5850 o kern/144416 fs [panic] Kernel panic on online filesystem optimization s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t o bin/144388 [patch] different behavior of make(1) between command o usb/144387 usb [run] [panic] if_run panic o bin/144343 hrs The rtadvd cannot avoid the prefix that doesn't want t o kern/144325 [libpcap] tcpdump compiles complex expression to incor f kern/144323 bschmidt [ieee80211] A response management frame appears in wir o bin/144322 truss(1) fails on 'assistant-qt4' from the port qt4-as f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw s bin/144313 vwe ld(1) can't find libs in /usr/local/lib but ldconfig(8 o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o bin/144285 [patch] ps(1): ps -axo user,%cpu,%mem - most processes o bin/144278 sysinstall [install] Fixit from USB dont work o conf/144243 [patch] Add NIS related files to OptionalObsoleteFiles o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o kern/144231 net bind/connect/sendto too strict about sockaddr length a ports/144224 mono [PATCH] lang/mono Fix build with new GCC o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o ports/144203 clsung textproc/refdb: network clients loop indefinitely when o bin/144139 x11/xscreensaver-gnome can't build because of bug in G o docs/144127 ed termios(4) man page wrongly claims CCTS_OFLOW/CRTSCTS o ports/144120 glewis java/openjdk6: games/pcgen doesn't fully work with ope o bin/144109 wireless hostapd(8) uses the MAC of the wireless interface, but p kern/144061 rwatson [socket] race on unix socket close o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive f i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled o ports/144044 gecko [PATCH] www/firefox: Makefile.webplugins target order o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors o ports/144010 apache devel/apr1 tries to use SYSVIPC even in jails o i386/144005 [hang] System freezes a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o bin/143962 pluknet fstat(1) doesn't work on UNIX sockets o ports/143949 office editors/openoffice-3: system unzip pickiness unhelpful o docs/143850 doc procfs(5) manpage for status > controlling terminal is o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o kern/143837 [irq] [panic] nmi_calltrap in irq257: bce1 o bin/143830 [patch] atmconfig(8): Fix conditional inclusion for sb o kern/143825 fs [nfs] [panic] Kernel panic on NFS client s kern/143808 virtualization[pf] pf does not work inside jail o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES o kern/143800 [boot] ping of local ip failed with network boot o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A a usb/143790 usb [boot] [cam] can not boot from usb hdd o misc/143785 [build] [patch] add passive mode to pkg_add cdrtools i o bin/143732 [patch] mtree(8) does a full hierarchy walk when reque o ports/143723 nork graphics/dri fails to build after graphics/libdrm upda o kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 s bin/143699 [patch] extend brandelf's OS knowledge o bin/143698 portmgr pkg_add(1) probably behaving incorrectly s www/143697 linimon [portsmon.freebsd.org] Error: could not connect to the s kern/143673 net [stf] [request] there should be a way to support multi s kern/143666 net [ip6] [request] PMTU black hole detection not implemen o conf/143637 rc [patch] ntpdate(8) support for ntp-servers supplied by o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op f kern/143595 bschmidt [wpi] [panic] Creating virtual interface over wpi0 in o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o i386/143587 i386 [boot] [hang] BTX 1.02 freezes upon assigning Bios C d o kern/143573 jfv [em] em(4) NIC crashes intermittently o bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o bin/143570 ed [patch] stock ftpd(8) does not handle "filesize" limit o bin/143568 secteam ktrace(1) is limited with other user's "filesize" limi o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o bin/143533 [patch] Changes to support Sun jumpstart via bootparam o kern/143521 [irq] [panic] nmi_calltrap in siopoll() o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o bin/143504 pf [patch] outgoing states are not killed by authpf(8) o docs/143472 standards gethostname(3) references undefined value: HOST_NAME_M o kern/143455 geom gstripe(8) in RELENG_8 (31st Jan 2010) broken o kern/143426 [panic] System crash with Firefox-3..7.5 & FreeBSD-7.2 o kern/143420 acpi [acpi] ACPI issues with Toshiba o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i o bin/143375 [patch] awk(1) trashes memory with regexp and ^ anchor o bin/143373 [patch] awk(1) tolower/toupper functions don't support o bin/143369 [patch] awk(1) doesn't handle RS as a regexp but as a o bin/143368 [patch] awk(1): number of open files is limited to sma o bin/143367 [patch] awk(1) treats -Ft as -F o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o bin/143362 awk(1) incorrect matching o bin/143351 bapt [request] update flex(1) to at least 2.5.33 o kern/143349 [panic] vm_page_free: freeing busy page o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143324 [panic] vm_fault: fault on nofault entry, addr: c10a50 o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 o gnu/143254 [patch] groff(1) build in base system does not honor P o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/143208 net [ipsec] [gif] IPSec over gif interface not working p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o kern/143184 fs [zfs] [lor] zfs/bufwait LOR s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o kern/143126 [ata] Data loss on read timeout o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o kern/143088 [hang] FreeBSD 9.0-CURRENT freezes while starting kern o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances p conf/143084 brooks [jail] [patch]: fix rc.d/jail creating stray softlinks o i386/143082 [install] Unable to install 8.0-RELEASE on Dell 2950 w o conf/143079 wireless hostapd(8) startup missing multi wlan functionality f kern/143074 bschmidt [wi]: wi driver triggers panic o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) f kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks o kern/143034 net [panic] system reboots itself in tcp code [regression] p kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o bin/143017 watch(8): fatal: cannot attach to tty o kern/143006 [build] [request] ACCEPT_FILTER_DATA and ACCEPT_FILTER o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o conf/142961 pf [pf] No way to adjust pidfile in pflogd f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o i386/142946 i386 [boot] Can't boot installation DVD. BTX halted p docs/142938 wkoszek [kld] share/examples: fix warnings o bin/142932 adduser(8) script add bogus symbol at "full name" fiel p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o docs/142917 arundel [patch] top(1) man page does not include information a o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142877 net [hang] network-related repeatable 8.0-STABLE hard hang o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o bin/142867 sysinstall sysinstall(8): in a custom installation re-entering th o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o stand/142803 kargl j0 Bessel function inaccurate near zeros of the functi o kern/142802 [ata] [panic] on removing drive: recursed on non-recur s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m o kern/142781 [lor] New LOR: process lock / system map o kern/142774 net Problem with outgoing connections on interface with mu o kern/142772 net [libc] lla_lookup: new lle malloc failed o ports/142743 [PATCH] devel/cross-binutils: installed by *-rtems-gcc o kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in o kern/142728 [panic] Fatal trap 12 in g_io_request o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone f kern/142624 gavin Sending large chunks of data fails o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real p kern/142595 jhb Implementation of "filesystems" file in linprocfs(5) o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o kern/142563 geom [geom] [hang] ioctl freeze in zpool o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142489 fs [zfs] [lor] allproc/zfs LOR o conf/142467 /var/log/auth.log may not be rotated for years o kern/142466 fs Update 7.2 -> 8.0 on Raid 1 ends with screwed raid [re o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) o i386/142421 i386 [ata] optical drives not found o kern/142390 [keyboard] 30th console switch hangs computer complete p docs/142367 roam [patch] wlan(4) does not document requirement for kern o kern/142351 scsi [mpt] LSILogic driver performance problems o misc/142335 sysinstall Download of Release 8.0 LIVE is NOT a "live" from CD p o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two o conf/142304 rc rc.conf(5): mdconfig and mdconfig2 rc.d scripts lack e f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o ports/142259 itetcu sysutils/apcupsd segfaults during shutdown o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/142198 simon SSLv3 failure with irc/xchat on FreeBSD 8.0 o i386/142190 i386 [boot] BTX Loader issue on Gigabyte Motherboard o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep o docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 o conf/142114 periodic(8): security report from 'periodic daily' doe o i386/142108 i386 [panic] vm_fault: fault on nofault entry, addr: c32a40 f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te f kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o ports/142069 x11 x11/xorg: After adding on a laptop Toshiba Sattelite L o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) p kern/141934 eadler [cam] [patch] add support for SEAGATE DAT Scopion 130 o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o bin/141920 sort(1): sort -k 3,1g is very slow o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o kern/141915 [hang] Unspecified lockup/deadlock with 7.2 on AMD64 o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141826 multimedia [snd_hda] load of snd_hda module fails f kern/141756 gavin [mmc] MMC card attached to blocks keybo f kern/141741 net Etherlink III NIC won't work after upgrade to FBSD 8, o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o threa/141721 threads rtprio(1): (id|rt)prio priority resets when new thread f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o s stand/141705 standards [libc] [request] libc lacks cexp (and friends) a kern/141696 virtualization[rum] [panic] rum(4)+ vimage = kernel panic o kern/141682 [libc] [patch] Faster version of strncpy(3) f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o i386/141675 i386 [boot] memory and BTX halted on Sunfire X4170 o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o ports/141660 x11 x11/xorg: X can't determine amount of video memory on o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/141653 [ata] [panic] Panic in ata? f misc/141652 gavin [install] 8.0 install fails from USB memstick because o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR o i386/141470 i386 [boot] BTX halted immediatly on selecting any of the b o i386/141468 i386 [boot] FreeBSD 8.0 boot manager can cause disk not pro o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro p amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze s bin/141340 netstat(1): wrong netstat -w 1 output o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail o kern/141314 andre Network Performance has decreased by 30% [regression] f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US p misc/141311 [build] "make delete-old" leaves some unnecessary file o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o conf/141275 rc [request] dhclient(8) rc script should print something o bin/141264 ntpd(8) crashes when tries to use an oncore reference a docs/141227 blackend Handbook/sysinstall documentation about distributions o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER p kern/141194 jh [tmpfs] tmpfs treats the size option as mod 2^32 p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se o bin/141016 [libpam] PAM checks in sshd too few? o kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o bin/140972 sysintall(8): 8.0-RELEASE-i386-memstick Fixit broken - o ports/140968 python x11-toolkits/py-tkinter(devel/pth): py26-tkinter-2.6.4 o conf/140965 [terminfo] Cannot create terminfo database because ncu f ports/140939 rea [patch] security/vuxml: fix and extend files/newentry. o kern/140932 fork+exec from threaded FreeBSD 7.2 application o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de o ports/140895 hrs net/openbgpd exit, when kernel table change o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri f ports/140882 lev devel/py-subversion: subversion-1.6.6_1 build error wi o amd64/140873 gavin [install] Cannot install 8.0-RELEASE on Thinkpad SL300 o bin/140863 cperciva freebsd-update(8) fails to check that writes will succ o kern/140858 [hang] System freeze during boot when PC-Card NIC inst o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- s docs/140847 doc [request] add documentation on ECMP and new route args o bin/140843 sysinstall sysinstall(8): cannot software install from usb o bin/140842 sysinstall sysinstall(8): destroyed ncurses interface with FBSD8. f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o kern/140835 des [libfetch] fetchParseURL(3) returns success with inval a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o kern/140778 jfv [em] randomly panic in vlan/em o kern/140742 net rum(4) Two asus-WL167G adapters cannot talk to each ot o kern/140728 jfv [em] [patch] Fast irq registration in em driver o docs/140725 darrenr wrong directory in ipnat(8) man page o kern/140697 pf [pf] pf behaviour changes - must be documented a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf o i386/140655 i386 [panic] Lenovo X300: fatal trap 12 after /sbin/halt -p o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C p conf/140650 cperciva [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/140640 fs [zfs] snapshot crash o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o ports/140621 edwin Add support for /etc/cron.d and /usr/local/etc/cron.d o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o bin/140595 sysinstall [request] sysinstall(8): Replace "Country Selection" w o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o docs/140583 hrs ports/print/acroread9 - handbook and port fail to ment s www/140580 www svnweb file logs are useless p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o ports/140542 edwin sysutils/isc-cron should be compatible with cron from o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o bin/140462 devd(8): [regression] devd.pid locked by /etc/rc.d and o kern/140461 [vm] Fail to read from swap. The swap_pager.c contains p docs/140457 doc [patch] Grammar fix for isspace(3) o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum o i386/140448 i386 [boot] BTX loader hangs after displaying BIOS drives o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum p misc/140436 imp [nanobsd] pkg-add process fails when there is no /usr/ o docs/140435 arundel ls(1), section STANDARD: the -A is exception from POSI o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne p kern/140416 delphij [mfi] [patch] mfi driver stuck in timeout o misc/140376 [build] installworld fails trying to use 'chflags schg o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o ports/140364 ruby [patch] ports-mgmt/portupgrade-devel: #! line substitu f kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid o kern/140352 geom [geom] gjournal + glabel not working o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m a bin/140309 bapt [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o ports/140273 ruby ports-mgmt/portupgrade-devel chokes on bsdpan pkgs o i386/140268 i386 [install] 8.0-RC* does not install on MSI MS-7255 [reg o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o kern/140185 [patch] expand_number(3) does not detect overflow in n f ports/140170 nork net/liveMedia: install shared libraries and thus fix r o ports/140162 hrs print/teTeX listings module bug o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/140156 emulation [linux] cdparanoia fails to read drive data o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140142 net [ip6] [panic] FreeBSD 7.2-amd64 panic w/IPv6 o docs/140082 bland [handbook] handbook/jails: russian translation is miss o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/140067 [boot] 8.0-RC2 from ISO, after install, hangs on boot o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) o kern/140018 [boot] locks up during boot on cpu error on Dell Power o conf/140009 configuration issue NIS in nsswitch.conf(5) o ports/140008 ruby ports-mgmt/portupgrade: many papercut omissions on por o i386/139999 i386 [panic] random freeze and crash s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o gnu/139982 ld(1): BFD internal error o ports/139872 [PATCH] ports-mgmt/porttools: improve port's directory f kern/139811 gavin FreeBSD did not recognize Intel Gigabit ET Dual Port S o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139718 trasz [reboot] all mounted fs don't get synced during reboot o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a o kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n p amd64/139614 avg [minidump] minidumps fail when many interrupts fire p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f ports/139579 jkim overflow in audio/oss f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo p kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks p bin/139492 portmgr pkg_install(1) - overlapping data buffer in call to sn o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/139403 [headers] absense of AUE_NULL o bin/139389 pluknet [patch] Change top(1) to display thread IDs o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous o bin/139346 net [patch] arp(8) add option to remove static entries lis o docs/139336 doc [request] ZFS documentation suggestion a bin/139314 [patch] install(1): install -d reports success on fail p kern/139312 delphij [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o conf/139255 8.0-RC1 network.subr calls route(8) with obsolete para o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o kern/139232 [panic] Kernel panic (spin lock held too long) p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef a ports/139203 sysutils/freebsd-snapshot more careful patch not depen o bin/139181 randi WITHOUT_LEGACY_CONSOLE=1 breaks sysinstall(8) o docs/139165 doc gssapi.3 man page out of sync with between crypto and o kern/139162 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o bin/139135 cperciva freebsd-update(8) misbehaves on upgrade and shows erro s sparc/139134 sparc64 kernel output corruption o kern/139127 [vfs] False negative vfs cache entry o kern/139117 net [lagg] + wlan boot timing (EBUSY) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o kern/139080 [libc] [patch] closelog() can close negative file desc f kern/139079 bschmidt [wpi] Failure to attach wpi(4) o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 p bin/139052 kan gcc(1): Stack protection breaks -fprofile-generate on s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o docs/139018 doc translation of submitting.sgml from docproj/submitting a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o kern/139014 [null] /dev/null must be immunable to delete/unlink o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o bin/138961 ldap groups don't work with su(1) o i386/138948 i386 [twa] [regression] da0: Fi f kern/138944 emulation [parallels] [regression] Parallels no longer works in o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in o bin/138858 patch(1) assumes that a file appears only once in the o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o docs/138845 doc Exceeding kern.ipc.maxpipekva refers to tuning(7) whic o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o kern/138782 net [panic] sbflush_internal: cc 0 || mb 0xffffff004127b00 o ports/138772 nox emulators/qemu should build on SPARC f kern/138739 bschmidt [wpi] wpi(4) does not work very well under 8.0-BETA4 o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA o java/138729 java java/jdk16: setting 'export AWT_TOOLKIT=MToolkit' caus o java/138728 java java/jdk16: SIGSEGV in java runtime p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o docs/138663 doc system(3) man page confuses users about "return value o kern/138662 fs [panic] ffs_blkfree: freeing free block o kern/138660 jfv [igb] igb driver troubles in 8.0-BETA4 o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138631 [panic] FreeBSD 7.2 panics when I try to start X f kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o bin/138560 ifconfig(8): wpa_supplicant(8): Incorrect usage of str s bin/138547 vwe [request] improve dhcp behaviour with multiple network o kern/138537 [ata] [panic] Memory modified after free p kern/138526 gnn [null] /dev/null does not support nonblocking operatio o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o bin/138423 sysinstall sysinstall(8): Installer (and sade) get wrong number o o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ p kern/138367 jh [tmpfs] [panic] 'panic: Assertion pages > 0 failed' wh o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o bin/138331 sam FreeBSD 8.0-beta3 wpa_supplicant(8) lost auth o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] o kern/138266 net [panic] kernel panic when udp benchmark test used as r o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por f i386/138211 gavin [loader] Boot fails on Intel X5550 o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o kern/138202 fs mount_msdosfs(1) see only 2Gb o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o i386/138126 i386 [panic] Kernel panic trap 12 on bigger load o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o kern/138117 [kernel] [panic] spin lock held too long o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin f kern/138029 net [bpf] [panic] periodically kernel panic and reboot o bin/138025 sysinstall sysinstall(8) fails to create big partition o kern/138002 [lor] Three lock order reversals: ufs/devfs, bufwait/d o kern/137982 pf [pf] when pf can hit state limits, random IP failures o ports/137958 ruby [patch] ports-mgmt/portupgrade fails with recursive de o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o ports/137940 glewis java/jdk15, java/jdk16: bsd java does not start from n o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 f usb/137872 usb [usb67] [boot] slow booting on usb flash drive o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow p bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o ports/137729 apache www/mod_auth_kerb2 port broken on 8.0-BETA2 due to sec o bin/137713 sysinstall sysinstall(8): installer partition editor generates in o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa o conf/137671 [patch][request] enhance beastie.4th: possibility to d s gnu/137665 [patch] dialog(1) goes into tight loop on encountering o bin/137641 net ifconfig(8): various problems with "vlan_device.vlan_i o conf/137629 rc [rc.d] background_dhclient rc.conf option causing doub o ports/137620 portmgr [NEW PORT] devel/p6-perl6-toys o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o misc/137514 cperciva freebsd-update doesn't update the system under some ci p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o kern/137443 [headers] Including /usr/include/rpc/xdr.h fails with o ports/137393 portmgr Remote Package Add of lang/gcc42 does not terminate o kern/137392 net [ip] [panic] crash in ip_nat.c line 2577 o usb/137377 usb [usb8] request support for Huawei E180 o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o bin/137365 [patch] let last(1) read from stdin via "-f -" f kern/137361 [panic] FreeBSD panics with random intervals o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o ports/137332 hrs add caution messages to some adobe products o kern/137327 dfr [nfs] nfs nlm memery leak s bin/137318 [request] import options from NetBSD's lastlogin(1) o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o ports/137250 portmgr OPTIONS that change PREFIX cause an error after 'make o kern/137246 [kqueue] kevents not generated for file writes through o kern/137232 ipfw [ipfw] parser troubles o kern/137228 [psm] synaptics support delays 'mouse up' events when f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de f kern/137053 acpi [hang] FreeBSD 8.0 BETA2Compaq Mini 700 locks on boot o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o kern/137041 [hang] powerd(8) hangs my systems within aprox 15 min o bin/136994 net [patch] ifconfig(8) print carp mac address o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 o ports/136917 python [patch] lang/python26: gettext detection o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re o kern/136888 [boot] boot0sio timeout much longer when DSR/CTS low o kern/136876 yongari [bge] bge will not resume properly after suspend o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136777 [build] Building new Kernel with PF and PAE support fa o kern/136762 [ichsmb] ichsmb can't map resources of compatible IXP o bin/136733 disklabel(8) handle incorrently o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa p gnu/136705 emaste [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136669 [libc] [patch] setmode(3) should always set errno on e o docs/136666 doc [handbook] Configure serial port for remote kernel deb o bin/136661 melifaro [patch] ndp(8) ignores -f option o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o kern/136618 net [pf][stf] panic on cloning interface without unit numb p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS p bin/136419 portmgr [regression] pkg_add(1) segfault on adding package whe o kern/136356 [ata] SATA / ICH7 problems o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136327 firewire [sbp] [boot] Asus M3N78-EM motherboard cannot boot wit o bin/136325 cperciva portsnap(8): "portsnap fetch" not useable by other pro o kern/136216 [headers] Missing prototype declaration for setfib() o o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend o bin/136073 des recent nscd(8) changes cause client processes to die w o ports/136072 portmgr Propose new ports category, internationalization o docs/136035 doc ftpchroot(5) omits an important option o kern/136013 [resolver] Resolver wrong diagnostics o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us f kern/135986 [panic] FreeBSD crashes after VLC close f i386/135961 gavin [boot] booting WRAP and Soekris fails from PXE, boot0 o kern/135948 pf [pf] [gre] pf not natting gre protocol o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive o kern/135898 geom [geom] Severe filesystem corruption - large files or l o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o threa/135673 threads databases/mysql50-server - MySQL query lock-ups on 7.2 f kern/135667 xen ufs filesystem corruption on XEN DomU system o bin/135647 cperciva freebsd-update(8): forces manual merge of every file i o kern/135608 [patch] sysctl(8) should be able to handle byte values o power/135576 ppc gdb cannot debug threaded programs on ppc o ports/135569 portmgr `check-sanity` not documented in bsd.port.mk s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o docs/135516 doc [patch] pax(1) manual not mentioning chflags unawarene a ports/135503 wxs lang/python26 upgrade should get mailman too o kern/135502 net [periodic] Warning message raised by rtfree function i o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/135458 dchagin Missing errno translation in Linux getsockopt(,,SO_ERR o bin/135444 cperciva freebsd-update(8) failing should be more verbose f kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. o misc/135420 bugmeister gnats generates broken In-Reply-To headers o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem f usb/135348 eadler [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2 o conf/135338 rc [rc.d] pf startup order seems broken [regression] o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135317 randi install.cfg feature request o kern/135307 Boot Loader problem on Acer Aspire 5735 o ports/135276 x11 x11/xorg: GUI running first time only while using Free o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/135222 jfv [igb] low speed routing between two igb interfaces o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe o usb/135206 usb machine reboots when inserted USB device f usb/135200 usb SAMSUNG i740 usb mass: Synchronize cache failed, statu f kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o kern/135164 [keyboard] UK currency key inactive o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines s ports/135089 portmgr bsd.port.mk: Honor LOCALBASE for CFLAGS p kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o usb/134950 usb Lowering DTR for USB-modem via ubsa is not possible o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons f bin/134907 vwe boot0cfg(8): choose / adjust the booting slice doesn't o kern/134887 [ataraid] source consistency problem o ports/134880 ale lang/php5 - PHP CLI interactive mode misbehaviour with o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic s ports/134714 ruby ports-mgmt/portupgrade deletes user data without quest o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 f kern/134584 [panic] spin lock held too long o kern/134583 net [hang] Machine with jail freezes after random amount o o bin/134569 [heimdal] krb5-config(1) does not return all libs nece o kern/134531 net [route] [panic] kernel crash related to routes/zebra o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R o kern/134519 [panic] Kernel panics (2 page faults in kernel) o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod o kern/134491 fs [zfs] Hot spares are rather cold... o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o bin/134425 sysinstall sysinstall(8) custom distributions select all and dese f kern/134407 gavin [hang] freebsd 7.x freezes with the livefs or install f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 o kern/134391 [libc] dladdr(3) does effectively not work on main pro o bin/134389 cperciva portsnap(1): phttpget opens a new connections for ever o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o conf/134333 rc PPP configuration problem in the rc.d scripts in combi o usb/134299 usb Kernel Panic plugging in MF626 USB UMTS Stick u3g o bin/134250 [rc.d] mountlate: bogus error message when using neste o kern/134249 [libiconv] [patch] ignore case for character set names s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/134200 [panic] Fatal trap 12: page fault while in kernel mode o usb/134193 usb System freeze on usb MP3 player insertion f kern/134168 gavin [ral] ral driver problem on RT2525 2.4GHz transceiver o bin/134167 cperciva [request] freebsd-update(8) should be able to be run i o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o docs/134123 doc The RUNQUEUE(9) man page is out of date o kern/134113 geom [geli] Problem setting secondary GELI key f kern/134105 gavin rl(4) Realtek 8110SC with device ID 0x814910ec not det f java/134098 glewis java/diablo-jdk15: random core drops p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix o bin/134022 host(1), dig(1) and nslookup(1) hang in _umtx_op sysca o kern/134011 [hang] swap_pager_getswapspace(4): failed o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic o kern/133931 geom [geli] [request] intentionally wrong password to destr s kern/133926 [request] MAXLOGNAME, the username length limit, is to o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/133892 sam /usr/src/sys/dev/ath/if_ath.c:3414: error: 'const stru o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o ports/133771 doceng print/ghostscript8: Ghostscript8-8.64 port not install f kern/133768 gavin [panic] MONITOR PANIC: vcpu-0:VMM64 DoubleFault src=MO o kern/133736 net [udp] ip_id not protected ... o kern/133732 pf [pf] max-src-conn issue o i386/133727 i386 chars [[[[[[[[[[[[[ occur during install process (sett o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133710 [headers] net/bpf.h and netgraph/ng_message.h should i o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/133595 net [panic] Kernel Panic at pcpu.h:195 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o misc/133540 gavin Cannot connect to ftp mirrors for 7.2 beta boot-only o power/133503 ppc [sound] Sound stutter after switching ttys o kern/133495 [de] interface not properly initialized on boot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o usb/133390 usb umass crashes system in 7.1 when Olympus D-540 attache o power/133382 ppc [install] Installer gets signal 11 o usb/133296 usb [rum] driver not working properly in hostap mode o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/133286 dd can fill system memory o kern/133265 jail [jail] is there a solution how to run nfs client in ja o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo f kern/133213 net arp and sshd errors on 7.1-PRERELEASE s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article o bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p o ports/132783 portmgr ports/Mk/bsd.port.mk: ${ARCH} misuse for "--build" opt o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent o bin/132735 Berkeley db: corrupted file has record with absurd siz o kern/132734 net [ifmib] [panic] panic in net/if_mib.c o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o docs/132718 doc [handbook] Information about adding a new mirror is ou o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/132664 [lor] vfs_mount.c / msdosfs_vfsops.c o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not o conf/132596 examples/cvsup/ports-supfile still oriented on cvsup p o usb/132594 usb USB subsystem causes page fault and crashes o ports/132577 fjoe databases/oracle8-client: Appearence of connection (ph o ports/132576 delphij net/openldap24-server: multipying LDAP trees on the si o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve o conf/132515 stas ntpd_sync_on_start option in /etc/rc.conf misbehaves o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o kern/132397 fs reboot causes filesystem corruption (failure to sync b p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/132331 fs [ufs] [lor] LOR ufs and syncer o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o ports/132294 ruby [PATCH] lang/ruby18: Add option to build with Profile- o ports/132293 ruby [PATCH] lang/ruby19: Add option to build with Profile- p kern/132285 glebius [carp] alias gives incorrect hash in dmesg o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o docs/132260 doc dhcpd(8) pid not stored in documented location o kern/132252 [ata] No CD/DVD devices found! o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/132238 [ral] ral driver does not support RT2860 o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o i386/132230 i386 [boot] [reboot] 7.1-RELEASE /boot/loader non-functiona o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( f kern/132176 pf [pf] pf stalls connection when using route-to [regress o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/132145 fs [panic] File System Hard Crashes o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o kern/132107 glebius [carp] carp(4) advskew setting ignored when carp IP us o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 o usb/132036 usb [panic] page fault when connecting Olympus C740 camera o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o docs/131968 danger ipnat man page points to wrong directory o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131853 cron(8): please add support for CRON_TZ and CRON_WITHI o bin/131800 rpcbind(8) fails to start in jail f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte o kern/131784 [lor] triple LOR after hard reboot o kern/131781 net [ndis] ndis keeps dropping the link o kern/131776 net [wi] driver fails to init o bin/131774 cvs(1) commits files then aborts o ports/131758 itetcu net/tightvnc in a jail stopped working after multiple o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh p kern/131718 [lor] kern_sysctl.c / acpi_video.c o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o kern/131601 net [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp o bin/131598 cperciva freebsd-update(8) doesn't interact well with custom ke o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o usb/131583 usb [umass] Failure when detaching umass Device o ports/131579 kuriyama security/gnupg reads security/gnupg1 data incorrectly o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data f kern/131573 [mutex] lock_init() assumes zero-filled struct f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o bin/131549 wireless ifconfig(8) can't clear 'monitor' mode on the wireless o power/131548 ppc ofw_syscons no longer supports 32-bit framebuffer o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o usb/131521 usb Registering Belkin UPS to usb_quirks.c f kern/131448 Bad display while booting o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o bin/131427 [patch] Add to fetch(1) an ability to limit a number o o i386/131426 i386 hald makes cdrom fail o bin/131415 geom [geli] keystrokes are unregulary sent to Geli when typ o docs/131370 keramida glabel(8): geom_label needs clarification in docs a bin/131369 delphij truss(1): truss -f fails to attach to child processes o bin/131365 net route(8): route add changes interpretation of network o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o bin/131359 cperciva freebsd-update(8): freebsd-update tag file not updated o bin/131358 cperciva freebsd-update(8): Update servers for freebsd-update a s bin/131354 des ssh: SSH session hangs o kern/131353 geom [geom] gjournal(8) kernel lock o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o bin/131341 fs makefs: error "Bad file descriptor" on the mount poin p bin/131250 brian [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o ports/131111 ruby ports-mgmt/portupgrade-devel: completely removes packa o bin/131094 dhclient(8) sets wrong IP address f kern/131087 bschmidt [ipw] [panic] ipw / iwi - no sent/received packets; iw o usb/131074 usb no run-time detection of usb devices plugged into exte o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ p kern/131038 bz [ip6] [panic] kernel panic in ip6_forward o bin/131013 pw(8) does not update NIS group file o kern/130998 [dtrace] DTrace stops tracing because of struct thread o bin/130993 pkg_add(1): pkg_add -n falsely reports present local p f kern/130982 gavin [install] The installation hangs o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ f bin/130954 vwe ps(1): can not obtain which process take all CPU time f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o bin/130831 csh(1) core dumps after building libiconv-1.1x from s f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o usb/130736 usb Page fault unplugging USB stick f misc/130728 joel There are 4-clause BSDL files in src/ o kern/130726 [ata] DMA errors accessing multiple SATA channels f kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o ports/130677 portmgr bsd.port.mk: Centralize handling of CPPFLAGS o kern/130657 bz [ip6] [patch] ipv6 class option o bin/130655 randi sysinstall(8): no IPV4 if answer "no" when "Do you wan o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau a bin/130504 [libc] Serious bug in regular expression library (rege o ports/130479 apache www/apache20 and www/apache22 configure_args busted s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD f ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o docs/130364 arundel Man page for top(1) needs explanation of CPU states o bin/130343 top(1): kvm_open: cannot open /proc/42997/mem corrupts o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa o kern/130286 [patch] hifn(4) changes o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o bin/130251 nm(1): 'nm -C' doesn't demangle any 't' symbol names o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o kern/130210 fs [nullfs] Error by check nullfs o usb/130208 usb Boot process severely hampered by umass0 error o kern/130171 [ata] UDMA CF cards do not work with FreeBSD p bin/130159 brian [patch] ppp(8) fails to correctly set routes o usb/130122 usb [usb8] DVD drive detects as 'da' device o i386/130110 i386 [boot] BTX-Halted - booting with SAS/SATA Controller o kern/130109 net [ipfw] Can not set fib for packets originated from loc p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use f usb/130076 vwe Panic when connecting USB camera o stand/130067 standards Wrong numeric limits in system headers? f kern/130059 net [panic] Leaking 50k mbufs/hour o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129989 cperciva portsnap(8) quietly forgets to fetch some ports o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# f i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o ports/129930 ruby ports-mgmt/portupgrade - portinstall tries to install s www/129923 www Need stylesheet for FreeBSD Subversion DAV tree s ports/129891 ruby ports-mgmt/portupgrade fails to recognize variations o o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o ports/129824 hrs print/acroread8 - help viewer does not work o bin/129814 [patch] support of per script nice(1) value in periodi f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics o bin/129762 sysinstall sysinstall(8) doesn't seem to support GPT for EFI boar o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di a docs/129684 trhodes gcache.8 man page missing o kern/129674 geom [geom] gjournal root did not mount on boot o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o kern/129645 geom gjournal(8): GEOM_JOURNAL causes system to fail to boo o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/129517 net [ipsec] [panic] double fault / stack overflow f kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o docs/129464 doc using packages system o bin/129431 cperciva freebsd-update(8) fetch fails because phttpget fails p o bin/129405 [patch] tcsh(1) vfork bugs o www/129401 edwin FreeBSD Multimedia page should automatically pick up Y p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o bin/129378 csh(1) / tcsh(1) loses foreground process group [regre o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/129352 yongari [xl] [patch] xl0 watchdog timeout o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o bin/129287 [request] powerd(8) should grow signals to switch betw o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire s bin/129248 [request] FreeBSD's syslog(8) can't support log encodi o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o kern/129197 net [panic] 7.0 IP stack related panic o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/129164 [kernel] Wrong priority value for normal processes o kern/129152 fs [panic] non-userfriendly panic when trying to mount(8) o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/129125 [psm] psm0: failed to reset the aux device. o docs/129095 doc ipfw(8): Can not check that packet originating/destine o kern/129053 [lor] lock order reversal with printf(9) syscons video o bin/129052 ps(1) %cpu column reports misleading data for threaded f kern/129040 gavin [install] Lockup during boot - Cannot install the OS f kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o docs/129024 keramida [patch] ipfw(8) improvements p bin/129014 gavin [regression] ftp(1) cannot bind to specific source IP o conf/128994 UPDATING falsly states DTrace bindings are built by de s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/128977 usb [usb67] [patch] uaudio is not full duplex f ports/128972 cy Port security/krb5 has a linking problem when compiled o bin/128954 net ifconfig(8) deletes valid routes o java/128948 java java/jdk16 built from source can't bind a socket, but o kern/128933 kib [libc] realpath(3) does not follow SUS specification f o threa/128922 threads threads hang with xorg running f kern/128917 bschmidt [wpi] [panic] if_wpi and wpa+tkip causing kernel panic o bin/128886 ntpd(8): ntpd -L flag doesn't work s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128840 jfv [igb] page fault under load with igb/LRO o java/128809 java JVM aborted when GNU RXTX write to serial port. p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o ports/128754 portmgr bsd.port.mk: implement master sites randomization f usb/128745 weongyo zyd teoretically supported usb device makes kernel pan o bin/128727 host(1) does not work properly with the -6 option o bin/128668 [request] Kerberos in the base system is too old o bin/128654 atacontrol(8) does not preserve rebuild status through o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct p kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop f kern/128633 pjd [zfs] [lor] lock order reversal in zfs o conf/128632 security periodic 700.kernelmsg repeats messages p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o ports/128556 net/py-zsi installs with insufficient rights f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad o bin/128501 cperciva freebsd-update(8) does not work on netbooted machines o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o bin/128465 [request] mount_smbfs(8) does not support IPv6 o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res o conf/128433 [patch] Add option to allow a full login when doing 's o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like s docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages f kern/128308 gavin [psm] psm0 cause page fault o kern/128304 vn_pollrecord(3) derefs NULL if v_addpollinfo() fails o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128284 gdb(1) segfaults f kern/128282 gavin [mpt] system failure on removing two drives f kern/128276 geom [gmirror] machine lock up when gmirror module is used o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p kern/128247 bz [ip6] [panic] Fatal Trap 12 in ip6_forward = o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re o threa/128180 attilio pthread_cond_broadcast(3) lost wakeup o kern/128177 jeff [sched_ule] wrong CPU usage reported by top(1)/ps(1) w o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage f bin/128088 vwe who(1) not listing all logged in users. o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/128076 [panic] Fatal trap 12: page fault while in kernel mode o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to o kern/128035 [ata] unexpexted detach of external SATA drive s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o ports/128028 portmgr bsd.port.mk - Ports-Script do not recognize dialog-ret o bin/128001 net wpa_supplicant(8), wlan(4), and wi(4) issues p bin/127986 [patch] ee(1): fix compiler warnings caused by use of a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/127930 ed auto-logout does not work p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up o usb/127926 usb [boot] USB Timeout during bootup o docs/127923 loader Please mention qemu in the FreeBSD Handbook o kern/127920 pf [pf] ipv6 and synproxy don't play well together s bin/127918 [ata] [request] [patch] ATA Security support for ataco o bin/127912 In theory, uncompress(1) may crash and SEGV f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki o docs/127908 eadler [patch] readdir(3) error documentation p docs/127890 trhodes socket(2) man page should explain that protocol can be o ports/127889 ruby ports-mgmt/portupgrade detects spurious failures and s o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/127842 murray list of hardware devices missing from the relnotes p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o bin/127633 edwin [patch] Update top(1) to 3.8b1 o kern/127623 [headers] header definition for cftime is missing. o kern/127553 [build] (errata) in kernel generic et al, device ural o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s f kern/127528 net [icmp]: icmp socket receives icmp replies not owned by a ports/127496 office devel/icu 3.8.1_1 does not build when Danish locale is f kern/127492 pjd [zfs] System hang on ZFS input-output o ports/127467 portmgr bsd.port.mk: fix checking DISTDIR for writeability s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127439 pf [pf] deadlock in pf o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o i386/127374 i386 Suspend/Resume with Keystroke only once on Thinkpad T4 p kern/127360 net [socket] TOE socket options missing from sosetopt() o docs/127359 keramida Undocumented firewall_xxx options for rc.conf in stabl f kern/127345 pf [pf] Problem with PF on FreeBSD7.0 [regression] o i386/127343 i386 [hang] System locks -- simular to PR 123729 o usb/127342 usb [boot] [panic] enabling usb keyboard and mouse support o i386/127337 i386 [boot] FreeBSD 7.1/i386 BTX boot problem on Pavilion d o ports/127292 timur net/samba3: not work cancel inheritance on share o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127276 [patch] ldd(1) invokes linux yes o bin/127270 fs fsck_msdosfs(8) may crash if BytesPerSec is zero o bin/127265 [patch] ddb(4): Adding the ddb command set from module o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o bin/127192 net routed(8) removes the secondary alias IP of interface f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode p kern/127057 bz [udp] Unable to send UDP packet via IPv6 socket to IPv s bin/127056 lp(1) doesn't use -o options p kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi o kern/127048 systat(1) information leak when security.bsd.see_other o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o kern/127029 fs [panic] mount(8): trying to mount a write protected zi o ports/127019 ruby ports-mgmt/portupgrade does not recognize fail conditi o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126971 [boot] loader/kernel does not obey comconsole_speed p kern/126945 glebius [carp] CARP interface destruction with ifconfig destro o bin/126936 locate.updatedb(8): updatedb fails silently when attem s ports/126932 itetcu gapcmon option in sysutils/apcupsd conflicts with sysu o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o ports/126853 secteam ports-mgmt/portaudit: speed up audit of installed pack o usb/126848 usb [usb]: USB Keyboard hangs during Installation o kern/126821 [panic] Fatal trap 12 (kdeinit) o bin/126819 randi sysinstall(8) During install if initial name look-up f o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o bin/126721 gcc(1) g++(1) Compiling, assembling and linking code w p kern/126714 glebius [carp] CARP interface renaming makes system no longer o kern/126695 net rtfree messages and network disruption upon use of if_ o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and o i386/126666 i386 [boot] [hang] boot failure for nForce 630i / GeForce 7 p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/126546 des pam_nologin(8) in auth causes log spam o usb/126519 usb [usb] [panic] panic when plugging in an iphone o docs/126484 doc libc function res-zonscut2 is not documented o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o bin/126433 [patch] some missing checks in rm(1) o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126384 [request] find(1) doesn't support whiteout entries yet o kern/126339 net [ipw] ipw driver drops the connection p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o misc/126312 [build] debug message going to stderr while doing "mak o conf/126305 nsmb.conf(5): Hostnames in nsmb.conf seem to be ignore o bin/126301 portmgr pkg_version(1) can induce unexpected parsing of INDEX o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o kern/126230 [libc] select(2) causing weird process cpu usage and l p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/126142 [ata] M5281: READ DMA faults, device detaching f ports/126140 ruby ports-mgmt/portupgrade runtime error o misc/126131 cperciva portsnap(8) fetch error with HTTP_PROXY or HTTP_PROXY_ o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom o ports/126083 office textproc/aspell core dumps o kern/126075 net [inet] [patch] internet control accesses beyond end of o bin/125932 portmgr pkg_add(1) doesn't prompt for root credentials and the o bin/125922 net [patch] Deadlock in arp(8) o docs/125921 doc lpd(8) talks about blocks in minfree while it is KB in o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg o kern/125806 np [cxgb] cxgb packet counters do not work o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o stand/125751 brucec man 3 pthread_getschedparam section ERRORS incomplete s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o docs/125717 keramida minor wpa_supplicant.conf(5) buglet o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125704 [ng_nat] kernel libalias: repeatable panic o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/125647 [ciss] [panic] System randomly crashes - ciss driver o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o kern/125617 wireless [ath] [panic] ath(4) related panic a kern/125613 trasz [ufs] [patch] ACL problems with special files o i386/125592 i386 [hang] FreeBSD 7 server in hang o i386/125516 gavin [install] 7.0-RELEASE install dies o usb/125510 usb [panic] repeated plug and unplug of USB mass storage d o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125467 pf [pf] pf keep state bug while handling sessions between o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo f usb/125450 usb [panic] Removing USB flash card while being accessed c o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde o docs/125329 keramida PACKAGEROOT should be documented in the Handbook o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/125239 net [gre] kernel crash when using gre o bin/125184 des sshd(8) does not always log IP address for login failu o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o conf/125041 [patch] periodic(8) new file: /etc/periodic/security/8 o ports/125012 bf problems in math/ldouble for 128bit long double on i38 o kern/124989 [mfi] mfi driver error - unexpected sense o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o gnu/124970 gdb(1): gdb crashes after setting hardware watchpoint o kern/124969 geom gvinum(8): gvinum raid5 plex does not detect missing s o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC o kern/124881 [devfs] [patch] [request] Add possibility to check whi o stand/124860 standards flockfile(3) doesn't work when the memory has been exh o bin/124825 mlaier tcpdump(8) does not support pfsync(4) data o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o ports/124765 ume sysutils/gkrellm2 shows wrong number of users in proc o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/124753 wireless [ieee80211] net80211 discards power-save queue packets o conf/124747 rc [patch] savecore can't create dump from encrypted swap a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o usb/124708 usb [panic] Kernel panic on USB KVM reattach o kern/124670 [ata] large file operation on RAID cause many GEOM err o i386/124633 i386 [boot] [panic] 7.0 does not boot from CD s misc/124541 cperciva portsnap: portsnap3.FreeBSD.org mirror on error for ov f i386/124516 xen [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o docs/124470 remko incomplete (and out of sync) glabel(8) manpage p docs/124468 remko sticky(8) should be sticky(7) o misc/124431 bde [build] [patch] minor revision of BDECFLAGS o bin/124409 fsck(8) requires exact entry for mountpoints when exec p bin/124392 [patch] bootparamd(8) does not work on arm o kern/124389 [build] make installkernel fails with KMODDIR iff $(KM p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile o ports/124375 apache security/heimdal: www/mod_auth_kerb doesn't compile ag o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o bin/124320 pam_radius(8): Login with ssh using pam_radius and a t o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o docs/124253 sam Broken command in the handbook for configuring a wirel o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net s kern/124174 [panic] Panic after installing audio/oss on an Asus A8 p misc/124164 markm [patch] Add SHA-256/512 hash algorithm to crypt(3) o kern/124160 net [libc] connect(2) function loops indefinitely o conf/124151 winbind is ignored in compat mode in nsswitch.conf(5) o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o i386/124124 i386 [boot] [panic] Page fault while booting livefs iso of o bin/124119 edwin locate(1) doesn't check /etc/locate.rc for the default o bin/124084 find(1): find -execdir does not prepend ./ to filename p bin/124052 [patch] adduser(8) throws errors when -f input file in o bin/124049 ntpd(8): ntpd is crashing at startup o kern/124021 net [ip6] [panic] page fault in nd6_output() o i386/123990 i386 [boot] BTX halted on Thinkpad x60s o i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i p bin/123977 Segmentation fault in dialog(1) with ghostscript-gpl-n o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/123939 fs [msdosfs] corrupts new files o bin/123932 amd(8) core dumps while load high a kern/123904 [ipmi] ipmi(4) reports negative temperature values on o kern/123892 net [tap] [patch] No buffer space available o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/123858 net [stf] [patch] stf not usable behind a NAT o kern/123855 philip moused(8): spontaneous mouse events o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 o kern/123758 net [panic] panic while restarting net/freenet6 o kern/123755 dfr [nfs] fstat() fails to return ESTALE with rename()d fi o kern/123735 [panic] 7.0-STABLE kernel panic "AP #1 (PHY# 1) failed o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o kern/123674 scsi [ahc] ahc driver dumping o bin/123633 net ifconfig(8) doesn't set inet and ether address in one f kern/123617 andre [tcp] breaking connection when client downloading file o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o kern/123603 andre [tcp] tcp_do_segment and Received duplicate SYN o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o ports/123570 itetcu audio/cpige version 1.5 coredumps if new .conf entries f sparc/123566 fs [zfs] zpool import issue: EOVERFLOW o kern/123559 net [iwi] iwi periodically disassociates/associates [regre o java/123555 java linux-sun-jdk15, linux-sun-jdk16 produce a coredump o misc/123554 [build] buildworld with TARGET_ARCH=i386 fails on amd6 o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o kern/123520 scsi [ahd] unable to boot from net while using ahd f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 a ports/123468 itetcu mail/postgrey: information leak, privacy issue o bin/123465 net [ip6] route(8): route add -inet6 -interfac o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o misc/123452 brd trustedbsd-audit email list not archiving f bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c s bin/123304 sysinstall sysinstall(8): missing sensible and user friendly prog o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o kern/123160 net [ip] Panic and reboot at sysctl kern.polling.enable=0 o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/123122 geom [geom] GEOM / gjournal kernel lock o conf/123119 rc [patch] rc script for ipfw does not handle IPv6 o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o threa/122923 threads 'nice' does not prevent background process from steali o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t a i386/122887 acpi [panic] [atkbdc] 7.0-RELEASE on IBM HS20 panics immed o conf/122883 [patch] login class for ukrainian users accounts f kern/122880 vwe [hang] Kernel lock-up during 7.0 installation disc boo o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/122813 usb [udbp] [request] udbp driver should be removed in favo f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122685 net It is not visible passing packets in tcpdump(1) a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/122588 [lor] 4 Lock Order Reversal o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o ports/122524 demon www/links1 uses 7-bit us-ascii codepage only when usin o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o java/122513 java native JDKs unbuildable with Linux ones f kern/122493 gavin [boot] BTX Halted - Cause is Promise Fastrack SATA PCI o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o conf/122445 Unable to override EDITOR in /etc/profile due to defau o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, o conf/122170 rc [patch] [request] New feature: notify admin via page o s kern/122145 sam [build] error while compiling with device ath_rate_amr p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint o usb/122119 usb [umass] umass device causes creation of daX but not da o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab o kern/122067 geom [geom] [panic] Geom crashed during boot f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/122058 jfv [em] [panic] Panic on em1: taskq f docs/122052 doc minor update on handbook section 20.7.1 o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o bin/122043 [patch] du(1) does not support byte-count-based report p kern/122038 delphij [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc o conf/122037 [patch] add rsync example for inetd.conf o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o docs/121952 doc Handbook chapter on Network Address Translation wrong o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg p kern/121907 [request] output to console can obscure other messages o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl s kern/121807 ipfw [request] TCP and UDP port_table in ipfw s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o ports/121745 vd misc/ossp-uuid - PostgreSQL contrib ossp-uuid crashes o usb/121734 usb [ugen] ugen HP1022 printer device not working since up p docs/121721 trhodes telnetd(8) not describing -X authentication types o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k f java/121692 java java/jdk16: Java 1.5 1.5.0.14p8 crashes in RMI TCP Con o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o docs/121585 doc [handbook] Wrong multicast specification o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug a docs/121565 brooks dhcp-options(5) manpage incorrectly formatted omitting o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport o kern/121555 net [panic] Fatal trap 12: current process = 12 (swi1: net s docs/121541 doc [request] no man pages for wlan_scan_ap o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o bin/121503 sysinstall sysinstall(8): 7.0 upgrade doesn't let me mount all of s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup o docs/121440 keramida rc(8) and rcorder(8) unclear about PROVIDE keyword bei o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o ports/121420 glewis java/jdk16: Java applet fails to find class under fire o ports/121416 glewis java/jdk15 can't build if BIN environment variable is o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already o ports/121347 hrs print/teTeX-base and print/texinfo install files in th f kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati o threa/121336 threads lang/neko threading ok on UP, broken on SMP (FreeBSD 7 o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 o kern/121298 jfv [em] [panic] Fatal trap 12: page fault while in kernel o usb/121275 usb [boot] [panic] FreeBSD fails to boot with usb legacy s o kern/121274 darrenr [panic] Panic in ether_input() with different NIC's. o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o kern/121181 net [panic] Fatal trap 3: breakpoint instruction fault whi o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a o usb/121169 usb [umass] Issues with usb mp3 player o bin/121165 pkg_add(1) prints a weird message: PKG_TMPDIR environm p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o i386/121148 gavin [panic] Repeatable sysctl crash (Fatal Trap 12) with A a bin/121124 sysinstall sysinstall(8): FreeBSD 6.3 installation deletes MBR pa o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o conf/121064 [patch] Use ASCII characters for box/line characters i o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o bin/121059 ntpd(8) doesn't sync with servers after dhclient chang o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o ports/120947 x11 x11/xsm ignores system.xsm and .xsmstartup s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/120749 [request] Suggest upping the default kern.ps_arg_cache o kern/120733 cperciva libbsm.so.1 missing after upgrading to 6.3-RELEASE o usb/120729 usb [panic] fault while in kernel mode with connecting USB f kern/120717 [ata] boot problem when recognizing ata1 a misc/120608 gmirror(8) command set on livecd is minimal [regressio o kern/120566 net [request]: ifconfig(8) make order of arguments more fr o bin/120552 cperciva freebsd-update(8): freebsd-update - -r should check ex o docs/120539 doc Inconsistent ipfw's man page o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120487 scsi [sg] scsi_sg incompatible with scanners o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o docs/120456 wireless ath(4) needs to specify requirement on wlan_scan_sta o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o ports/120372 java java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' o kern/120344 rwatson [panic] FreeBSD 6.3-STABLE panics on high loaded web s p kern/120343 ups [panic] Reproducible Crash - network interface related o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o conf/120263 [patch] 800.loginfail misses relevant security informa p bin/120256 gavin [patch] ftp(1): ftp -u URL/ returns a -1 o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/120177 [ata] ATA DMA modes don't work on CF cards o java/120146 java java/jdk15: netbeans 6.0 causes java core dump on amd6 p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va p kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o ports/120101 cy security/krb5 utilities link against wrong libcom_err o bin/120095 gdb(1) fails to catch signals when threading is involv o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/120066 [geli] geli boot password input fail when using serial o bin/120064 routed(8) marks 802.11 interfaces broken o bin/120060 net routed(8) deletes link-level routes in the presence of o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119891 slow halt, reboot when remote network shares which doe o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying o bin/119801 dhclient(8): dhclient changes alias to address o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w o kern/119696 [irq] [ral] ral device causes massive interrupt storm o bin/119695 pw(8) does not interact with nscd(8) o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch s bin/119645 [request] mount_ntfs(8) -- files permissions mask is i o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o kern/119618 [fdc] Double Density Disks do not work correctly o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o i386/119574 bde [i386] 7.0-RC1 times out in calibrate_clocks() [regres o kern/119572 firewire [sbp] PowerBook not accessable when in target mode o conf/119550 [ppp] ppp not starting during bootup. o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o bin/119524 cron(8) suddenly stops working, not crash f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119432 net [arp] route add -host -iface causes arp e o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose f bin/119354 csup(1) in free(): error: chunk is already free p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 s bin/119196 des fetch(1): [request] parallel download from multiple se o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/119068 dd(1) yields a bogus error when input file is to small o java/119063 java An unexpected error has been detected by Java Runtime o java/118956 java eclipse and netbeans break on diablo-jdk15 o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118912 fs [2tb] disk sizing/geometry problem with large array o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o bin/118759 cvs(1): cvs -R doesn't handle non-existent tags o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118734 xen [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o docs/118693 jfv Update for "em" man page for RELENG_7 o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118571 [boot] [request] fix BTX issues when booting FreeBSD 7 o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o bin/118501 Sending SIGINT to cvs(1) gives segmentation fault o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o bin/118449 randi sysinstall(8): Installer failing dns lookups o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( o gnu/118415 nm -D fails if a file has no symbols p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se o docs/118332 arundel man page for top(1) does not describe STATE column wai o bin/118325 rc [patch] [request] new periodic script to test statuses o bin/118318 mohans [nfs] NFS server hangs under special circumstances p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib p kern/118304 kib freebsd 7 delivers unanticipated signal for page fault o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o i386/118285 [i386] Segmentation fault in reloc_non_plt. p bin/118260 bin: more informative error message for install(1) o conf/118255 rc savecore never finding kernel core dumps (rcorder prob o bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o bin/118248 gavin newsyslog(8) does not obey -s (nosignal) flag s kern/118230 acm [linux] games/linux-quake4 fails to start o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o docs/118214 doc close(2) error returns incomplete o bin/118207 burncd(8) gives I/O error writing CD on Pioneer DVDR-1 o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft f kern/118161 [atapicam] failure message from ATAPI CDROM in the boo s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/118126 fs [nfs] [patch] Poor NFS server write performance s kern/118124 [request] HZ value on slow computers should by dynamic o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t a bin/118071 darrenr ipnat(8): ipnat -s expired counter does not update [re o bin/118069 [patch] camcontrol(8) should be able to leave device s o conf/118047 Move /etc/printcap to /usr/share/examples/ o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o docs/118020 doc ipfilter(4): man pages query for man 4 ipfilter return p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a kern/117987 rwatson read(2) on directories might leak filenames of deleted o kern/117972 [ata] SATA DLT V4 not recognized properly o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o kern/117954 fs [ufs] dirhash on very large directories blocks the mac o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o bin/117922 ftpd(8): remote ftp user possible leave chrooted envir o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o usb/117893 usb [umass] Lacie USB DVD writing failing o kern/117867 [heimdal] kinit generates bad tickets on multihomed IP s bin/117830 [patch] who(1) no longer displays entries for folk log o bin/117812 passwd(1): incapable of changing LDAP passowrds using f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o usb/117712 [reboot] unexpected reboot after mount USB flash drive f kern/117711 [rpc] rpcbind binds to all interfaces on random ports o kern/117688 [mpt] mpt disk timeout and hang o bin/117687 [patch] fstab(5) format cannot handle spaces f kern/117655 sam [ral] ral%d: device timeout when running as an access o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o bin/117520 [patch] csup(1) not-really-equivalent to cvsup s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o gnu/117481 sort(1) incorrect numeric sort in very specific cases p kern/117448 glebius [carp] 6.2 kernel crash [regression] o kern/117443 [ata] [hang] system hang with ataidle o kern/117423 net [vlan] Duplicate IP on different interfaces o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/117420 jeff [sched_ule] round off in sched_balance_pair() o kern/117374 vidcontrol(1) videomode: Operation not supported by de o kern/117348 [libedit] Loading history file sometimes fails in libe o bin/117339 net [patch] route(8): loading routing management commands o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount f kern/117314 fs [ntfs] Long-filename only NTFS fs'es cause kernel pani o usb/117313 usb [umass] [panic] panic on usb camera insertion p bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap o kern/117242 [syscons] [hang] console hangs when powerd is adaptive p bin/117214 bz ipfw(8) fwd with IPv6 treats input as IPv4 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov o kern/117188 [geli] System crashes/reboots on access to file on GEL p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o kern/117043 jfv [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM a conf/117027 yar rc.subr doesnt deal with perl daemons p docs/117013 trhodes mount_smbfs(8) doesn't document -U (username) argument p kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o misc/116946 holographic shell breaks live CD shell o kern/116935 [ata] Intermittent error with Promise PDC40718 o conf/116931 fs lack of fsck_cd9660 prevents mounting iso images with p stand/116826 jilles [patch] sh(1) support for POSIX character classes o bin/116784 mount_msdosfs(8): mount_msdosfs -L ru_RU.KOI8-R -W koi o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o threa/116668 threads can no longer use jdk15 with libthr on -stable SMP o java/116667 java linux-sun-javac1.4 hangs on SMP o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o docs/116588 remko No IPFW tables or dummynet in Handbook o kern/116583 fs [ffs] [hang] System freezes for short time when using o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o kern/116515 rwatson [ntfs] NTFS mount does not check that user has permiss o stand/116477 standards rm(1): rm behaves unexpectedly when using -r and relat s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o bin/116413 standards incorrect getconf(1) handling of unsigned constants gi a kern/116335 andre [tcp] Excessive TCP window updates s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 s ports/116222 portmgr files installed with the wrong UID/GID via make instal o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116185 net [iwi] if_iwi driver leads system to reboot p threa/116181 attilio /dev/io-related io access permissions are not propagat o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o kern/116133 Recursive lock panic when w_mtx falls into DELAY o docs/116116 doc mktemp (3) re/move note o ports/116082 java java/linux-sun-jdk16 jconsole is unable to connect to o stand/116081 standards make does not work with the directive sinclude o docs/116080 doc PREFIX is documented, but not the more important LOCAL o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/116005 des [libfetch] libfetch accepts invalid URLs o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o ports/115957 itetcu Questionable ownership and security on dspam port o bin/115951 [tun] pppoed(8): tun not closed after client abruptly f kern/115947 acpi [hang] Dell poweredge 860 hangs when stressed and ACPI o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115930 jfv [em] Dell nic enumeration problem s conf/115923 [request] rc.subr - logger should be using priorities o kern/115856 geom [geli] ZFS thought it was degraded when it should have s docs/115716 jhb remove cue from supported hardware list p kern/115695 [crypto] When "device padlock" defined first ssh to ma o kern/115651 vanhu Racoon(ipsec-tools) enters sbwait state or 100% CPU ut o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/115526 [libalias] libalias doesn't free memory o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o kern/115479 [ata] [request] ASUS P5K SE need more support p bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o kern/115253 [keyboard] Wireless keyboard not working at boot o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o threa/115211 threads pthread_atfork misbehaves in initial thread s kern/115202 [request] memory error diagnostic o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 p docs/115065 doc [patch] sync ps.1 with p_flag and keywords o bin/115054 ntpd(8): NTP errors out on startup but restart of NTP o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/114970 Wrong system time (last) when machine is crashed due t o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/114928 green_saver does not switch DVI monitor power off o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/114808 [panic] Kernel panic when use USB SpeedTouch ADSL mode o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s ports/114725 portmgr bsd.port.mk - No dependencies in the package if there p kern/114714 bz [gre] [patch] gre(4) is not MPSAFE and does not suppor o usb/114682 usb [umass] generic USB media-card reader unusable o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo f kern/114667 [umass] UMASS device error log problem f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs s kern/114578 [libc] wide character printing using swprintf(dst, n, o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c f i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114550 [cbb] Cardbus WiFi card activation problem o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s bin/114392 [request] add default ssl definitions for openssl(1) o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references o kern/114213 [ata] optical drive not detected in the 6.x series of o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha p kern/114057 jh [devfs] devfs symlink over device doesn't work o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o usb/113977 gavin [request] Need a way to set mode of USB disk's write c f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat o bin/113912 tunefs(8): silent failure setting glabel on boot parti o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o bin/113850 sshd(8): unable to debug sshd with strace/truss/gdb o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o kern/113837 geom [geom] unable to access 1024 sector size storage o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o kern/113785 firewire [firewire] dropouts when playing DV on firewire o ports/113751 java java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 o bin/113669 ftpchroot(5) / ftpusers(5) doesn't do globbing o conf/113552 [request] ntpd(8) driftfile default location inconsist o bin/113518 [patch] make(1): Prevent execution when command is a c o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o kern/113419 geom [geom] geom fox multipathing not failing back o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o gnu/113338 gcc(1): GNU gcc __thread as class member o kern/113256 [headers] _limits.h for some CPU has wrong definitions o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o kern/113098 [amr] Cannot read from amrd while under heavy load o bin/113074 [patch] ppp(8): include for strcasecmp(3) s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o ports/112818 ruby ports-mgmt/portupgrade -a fails with database error o docs/112804 doc groff(1) command should be called to explicitly use "p o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file o bin/112757 sysinstall sysinstall(8): sysinstall(8): in the FDISK tool we can o ports/112745 portmgr bsd.port.mk: Add a package-smart target o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 o docs/112682 doc Handbook GEOM_GPT explanation does not provide accurat o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b a bin/112613 vwe ls(1): 'ls -l' is very slow or doesn't work at all o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o o docs/112579 mlaier [request] No ipv6 related pf examples in /usr/share/ex o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/112477 marius [ofw] [patch] Add support to set the node and type on o conf/112441 deprecated lines in /etc/hosts.allow o bin/112408 mp [regression] tcsh(1): tcsh causes gdb to hang (regress o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112370 getfacl(1): incorrect display group name by ``getfacl' o bin/112336 [patch] install(1): install -S (safe copy) with -C or p bin/112288 gavin ftp(1): /usr/src/usr.bin/ftp/config.h is redundant and s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o kern/112256 [hang] SC_PIXEL_MODE hangs system s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/112053 [hang] deadlock with almost full filesystem and rtorre o bin/111978 [patch] [request] make syspath list for mount(8) confi f kern/111967 [geli] glabel - label is seemingly not written to disk o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111843 fs [msdosfs] Long Names of files are incorrectly created s www/111791 www FreeBSD website messes up while using "links" browser o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/111766 [panic] "panic: ffs_blkfree: freeing free block" durin o conf/111557 [gre] link1 flag doesn't work as intended when specifi o kern/111537 net [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via o kern/111457 net [ral] ral(4) freeze o docs/111425 doc Missing chunks of text in historical manpages o ports/111399 doceng print/ghostscript8 (was ghostscript-gpl): WITH_FT_BRID a ports/111356 csjp net/bpfstat: man bpfstat has no descption for the flag o docs/111265 doc [request] Clarify how to set common shell variables p kern/111260 csjp [hang] FreeBSD kernel dead lock and a solution o www/111228 bugmeister [request] Usability improvements for bug search query o kern/111185 console color depth set to 0 at boot causes flat scree o kern/111162 [nfs] nfs_getpages does not restart interrupted system o docs/111147 doc hostapd.conf is not documented s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/111077 date(1): /bin/date -j -f "%b %Y" "Feb 2007" +%m return o ports/111066 secteam ports-mgmt/portaudit does not skip ports fixed listed s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta s kern/111001 [hang] can't install 6.2-RELEASE-amd64 (SuperMicro PDS o docs/110999 doc carp(4) should document unsupported interface types o kern/110995 [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o gnu/110971 gdb(1) crashes f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. s ports/110826 dinoex port graphics/tiff: tiff2pdf tints images with wrong c o docs/110692 doc wi(4) man page doesn't say WPA is not supported a kern/110662 sam [safe] safenet driver causes kernel panic o threa/110636 threads [request] gdb(1): using gdb with multi thread applicat o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o threa/110306 threads apache 2.0 segmentation violation when calling gethost o kern/110284 net [if_ethersubr] Invalid Assumption in SIOCSIFADDR in et o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110151 sysinstall sysinstall(8): sysinstall(8) don't respects install ro o bin/110146 joerg [patch] [request] Allow arbitrary gdb(1) options to by o bin/110068 [patch] rewrite of mdmfs(8) in shell o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit p docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled o docs/109981 doc No manual entry for post-grohtml o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o docs/109977 doc No manual entry for ksu p docs/109975 trhodes No manual entry for elf2aout o docs/109973 doc No manual entry for c++filt o docs/109972 doc No manual entry for zless/bzless o bin/109911 mountd(8) does not accept identical host sets on diffe o bin/109827 mount_smbfs(8) didn't handle password authentication c o kern/109762 [hang] deadlock in g_down -> ahd_action -> contigmallo o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109569 mail(1) command not parsing sendmail parameters o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac o conf/109354 [request] /etc/periodic/daily/110.clean-tmps does not o bin/109334 portmgr pkg_add(1) using chroot exits with error if wrong dire o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o conf/109272 rc [request] increase default rc shutdown timeout o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd o kern/109161 philip [psm] synaptic touchpad doesn't work o docs/109105 trhodes security.mac.bsdextended.firstmatch_enabled is not ena o docs/109104 trhodes man mac_bsdextended is not consistent with systl outpu o bin/109102 csjp sysctl security.mac.bsdextended is not consistent with o kern/109024 fs [msdosfs] [iconv] mount_msdosfs: msdosfs_iconv: Operat o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) a docs/108980 doc list of missing man pages o bin/108895 net pppd(8): PPPoE dead connections on 6.2 [regression] o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o conf/108589 rc rtsol(8) fails due to default ipfw rules o bin/108462 [request] pkg_info(1) shouldn't have a hard width limi s kern/108442 [request] UTF-8 support for console o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o bin/108191 sysinstall sysinstall(8): Disklabel editor help text (by F1 key) s ports/108169 apache www/apache20 wrong AP_SAFE_PATH for suEXEC s ports/108153 portmgr ports extraction with package uid/gid and quota proble o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o bin/108118 [libc] files should not cache their EOF status o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o bin/108020 comsat(8) does not verify return values of getpwnam an o kern/107944 net [wi] [patch] Forget to unlock mutex-locks f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o bin/107830 sysinstall sysinstall(8): Change Units (Z) in fdisk doesn't work o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found s kern/107759 Unable to load a kernel after clean install o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 f kern/107446 gavin problems with usb and fw disks o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device o ports/107354 edwin net/icmpinfo: icmpinfo -vvv does not recocnize any ICM s www/107291 murray Keyboard accessibility sabotaged by www/share/sgml/hea p kern/107285 [panic] freeze and reboot by mounting CDROM volume twi f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent s sparc/107087 sparc64 [hang] system is hung during boot from CD o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n f kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o kern/106786 No reboot with FreeBSD and Mylex Acceleraid 352 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening s ports/106616 portmgr bsd.port.mk: Default file modes set incorrect for non- f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/106432 [ata] Record of disks (DVD-R) through the k3b program o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o bin/106355 [headers] macros in stdio.h non-portable (e.g., C++ :: o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/106275 [hifn] Hifn 7955 on Soekris Engineering vpn1401 return o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o docs/106135 doc [request] articles/vinum needs to be updated o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p p docs/105997 trhodes sys/kern/sys_pipe.c refer to tuning(7), but there is n o kern/105945 net Address can disappear from network interface s kern/105943 net Network stack may modify read-only mbuf chain copies o bin/105925 net problems with ifconfig(8) and vlan(4) [regression] o bin/105860 top(1) user ID misalignment in mixer username/uid mode o conf/105689 rc [ppp] [request] syslogd starts too late at boot o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105608 doc fdc(4) debugging description staled o kern/105579 [libalias] dcc resume over natd in 6.x o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o docs/105456 keramida [patch] overhaul of the security chapter (14) o kern/105368 [geli] geli passphrase prompt malfunctioning when moun f kern/105348 wireless [ath] ath device stopps TX o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o kern/105241 [nfs] problem with Linux NFS server up/down combined w o gnu/105221 grep(1): `grep -w -F ""` issue o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last s kern/104950 [ata] [request] no support for SATA controller Initio o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o ports/104910 nobutaka portsdb -Uu fails on building lsdb when EMACS_NAME is o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104809 cron(8): incorrect cron behavior with mday field = "*/ o kern/104751 net [netgraph] kernel panic, when getting info about my tr o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w o java/104744 glewis java/berkeley-db installation error p stand/104743 jilles [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/104675 [bktr] METEORSINPUT seemingly not setting input f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and o kern/104486 TI1131 Cardbus Bridge cannot detect card insertion on o bin/104432 jilles sh(1): remove undocumented "exp" and "let" builtins o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems a bin/104092 keramida [patch] iostat(8): missing blanks in iostat output o threa/103975 threads Implicit loading/unloading of libpthread.so may crash o www/103938 brd cvs-src archive does not rebuild since 12 Mar 2006 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o bin/103890 w(1) doesn't see sessreg'd entries in utmp o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra a bin/103873 csjp login(1) SEGFAULT on unsuccessful login o bin/103845 sha256(1): sha256 /dev/acd0 returns immediately o conf/103794 adding other login class to login.conf in case one is o bin/103762 ppp(8): some tun interfaces with a mtu of 1500 while i o ports/103751 nork databases/linux-oracle-instantclient-sqlplus: ldconfig o bin/103712 amd(8): Automounter is apparently not passing flags to o bin/103682 [patch] [request] nfsstat(1) should use %u instead of s kern/103578 [ums] ums does not recognize mouse buttons s www/103522 www Search interface oddity o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/103283 pf pfsync fails to sucessfully transfer some sessions o kern/103281 pf pfsync reports bulk update failures o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/103253 thompsa inconsistent behaviour in arp reply of a bridge o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/103191 net Unpredictable reboot o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/103022 cperciva [headers] /usr/include/crypto/rijndael.h is wrong o ports/102946 secteam [patch] ports-mgmt/portaudit o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o bin/102515 [libc] fsck_ufs crashes if no console at all o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o bin/102498 sysinstall sysinstall(8): Cursor doesn't track sysinstall hilight o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? f kern/102252 acpi acpi thermal does not work on Abit AW8D (intel 975) o bin/102232 gad Defects in -O option to ps(1) o bin/102205 kdc(8): login failure: ssh + gssapi + dual stacks + pa o bin/102162 [patch] tftpd(8): Limit port range for tftpd f usb/102066 gavin [ukbd] usb keyboard and multimedia keys don't work o kern/102035 net [plip] plip networking disables parallel port printing o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o bin/101921 [request] security.bsd.see_other_uids for further prog o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker a bin/101762 sysinstall sysinstall(8) does not obey /usr/ports symlink while i o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o docs/101271 remko serial console documentation implies kernel rebuild re o kern/101226 jfv [em] Access to IPMI module is lost when the em driver f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o kern/100974 rwatson [panic] sorele. FreeBSD 6.1 RELEASE i386 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup s bin/100805 yar WITHOUT_INET6 is ignored by many src/ components o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/100709 net [libc] getaddrinfo(3) should return TTL info o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o conf/100616 [patch] syslog.conf: lines after exclamation point ign o kern/100519 net [netisr] suggestion to fix suboptimal network polling a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100442 obrien ftpd(8): lukemftpd core dumps on anonymous login o bin/100436 kensmith sysinstall(8): live CD fixit mount does not find mount o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam p docs/100242 trhodes sysctl(3) description of KERN_PROC is not correct anym o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o docs/100196 doc man login.conf does explain not "unlimited" s kern/100170 [request] Support login class in ldap directory o misc/100133 [boot] keyhit function in boot2.c that falls into an i o bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ s bin/99973 yar systat(1): systat -ifstat traffic counter overflow o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o bin/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o bin/99662 rpc.rquotad(8): quota information leak while rpc.rquot o misc/99643 request to remove src/tools/tools/portsinfo because it o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid f kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o docs/99506 doc FreeBSD Handbook addition: IPv6 Server Settings o kern/99485 Disk IO Causes multimedia/mplayer To Drop Frames o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar s kern/99421 [request] Option Globetrotter Fusion card not recogniz a docs/99356 ru man page of sendmsg(2) does not include EINVAL o conf/99328 [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o www/99305 bugmeister [request] send-pr.html is frustrating/broken o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l a www/99184 wosch Viewing HP-UX manpages with http://www.freebsd.org/cgi o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o docs/98974 doc Missing tunables in loader(8) manpage o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the s www/98798 gjb Our statistics page is out of date o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98597 net [inet6] Bug in FreeBSD 6.1 IPv6 link-local DAD procedu o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o bin/98468 newsyslog(8): Value over 99 in newsyslog.conf count fi o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled p misc/98383 yar [request] include the mt command in the rescue CD o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 s bin/98220 wpa_supplicant(8) operation does not match documentati o bin/98218 net wpa_supplicant(8) blacklist not working s kern/98162 adrian [request] AcerHK driver port needed for enabling WiFi o docs/98115 doc Missing parts after rendering handbook to RTF format o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to a kern/97921 rwatson [socket] close() socket deadlocks blocked threads o kern/97665 [sio] hang in sio driver o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/97505 [procfs] file entry of procfs points to "unknown" s bin/97498 fs [request] newfs(8) has no option to clear the first 12 o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97306 net [netgraph] NG_L2TP locks after connection with failed s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o usb/97175 usb [umass] [hang] USB cardreader hangs system o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97108 sysinstall sysinstall(8): write failure on transfer (wrote -1 byt o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o conf/97014 net [gif] gifconfig_gif? in rc.conf does not recognize IPv o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96538 multimedia [sound] emu10k1-driver inverts channels o usb/96457 usb [umass] [panic] fatback on umass = reboot o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync o docs/96207 doc Comments of a sockaddr_un structure could confuse one o kern/96171 [ata] burncd(8): (ATA driver) fails to write in vcd mo s usb/96120 usb [ums] [request] USB mouse not always detected o conf/96094 [gif] startup scripts do not configure gif interfaces p conf/96015 jilles uncommenting the msgs invocation in /etc/profile can f o gnu/95936 egrep(1) misparses multiline parenthetical grouping o bin/95698 philip [patch] moused(8): Software control of sysmouse o gnu/95691 GDB segfaults on my programme in both FreeBSD 6 and 5 s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o kern/95559 RELENG_6: write(2) fails with EPERM on TCP socket unde o kern/95532 [gif] if_gif has artificial limitations o kern/95519 net [ral] ral0 could not map mbuf o kern/95459 Rebooting the system while rebuilding RAID (Intel Matr o docs/95408 remko install over serial console does not work as documente o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95267 net packet drops periodically appear o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o usb/95037 usb [umass] USB disk not recognized on hot-plug. o bin/95002 [libc] hash db source code has a bug which prevents us o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o ports/94935 cy security/aide: propose an AIDE_CONF knob for make.conf o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o bin/94810 fs fsck(8) incorrectly reports 'file system marked clean' o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o kern/94733 fs [smbfs] smbfs may cause double unlock p stand/94729 gnn [libc] fcntl() throws undocumented ENOTTY o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o gnu/94695 bugmeister send-pr.el is missing from send-pr distribution o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/94632 geom [geom] Kernel output resets input while GELI asks for o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind s www/94423 danger [patch] XML'ified release todo list o kern/94393 [ar] PseudoRAID loses track of the master disk o usb/94384 usb [panic] kernel panic with usb2 hardware o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests s kern/94182 [altq] [request] altq support for vlan driver p bin/94181 ume portsnap(8) should remove the trailing dot from the se p bin/94180 ume portsnap(8) does not handle HTTP_PROXY_AUTH correctly o kern/94166 [boot] btx halted with a flashcard plugged s bin/94159 [request] ipsecctl ported from openbsd o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94051 login(1): IP network in login.access ignored unless DN o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o conf/93899 mount_smbfs can't load libiconv.so during boot up o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o www/93854 postmaster Cannot proceed to page after the first in mailing list o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o kern/93825 pf [pf] pf reply-to doesn't work o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p a kern/93790 cperciva cpufreq missing frequencies o i386/93787 gavin [hang] freebsd 6.0 hangs on atkbd0 on Proliant 1850r s o docs/93785 obrien The man page for ftpchroot(5)/ftpusers(5) contradicts o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/93771 [ar] [panic] atacontrol status ar1 causes panic o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may p kern/93685 jilles [pipe] select on pipe write fails from '0' end o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93629 GNU sort(1) tool dumps core within non-regular locale o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o kern/93381 reboot(8) works but 'reboot -n' hangs f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo p kern/93331 [kernel] [patch] broken asm in kernel o bin/93317 ld-elf.so doesn't translate unresolved weak symbol int o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o ports/93279 skv devel/cvsmonitor: not useable (/dev/mem: Permission de o bin/93275 sysinstall sysinstall(8): Failure to install after restarting ins o kern/93197 [libc] strptime(3) succeeds on formats it should fail o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o bin/92866 portmgr pkg_add(1) should return a different result code if pa o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92716 [hifn] [hang] hifn driver hangs after a short while wh o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o ports/92651 graphics/gmt - WITH_EVERYTHING doesn't fetch o docs/92626 doc jail manpage should mention disabling some periodic sc f kern/92552 yongari A serious bug in most network drivers from 5.X to 6.X o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o kern/92518 [hptmv] Intense disk activity (large FS newfs and/or m o kern/92512 multimedia [sound] distorted mono output with emu10k1 s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o kern/92104 des [panic] kernel panic near readlink syscall o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o bin/91993 sam dhclient(8) option missing, script incompability o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg f usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o conf/91732 [patch] 800.loginfail: fix log message grep expression o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin o bin/91606 sha1(1): sha1 /dev is suspended o kern/91594 acpi [acpi] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/ o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work p www/91539 gjb FreeBSD web site renders very badly o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o bin/91536 burncd(8): burncd -t feature strangeness o docs/91506 doc ndis(4) man page should be more specific about support f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o ports/91393 trhodes misc/window changes console cursor shape to blink o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/91311 net [aue] aue interface hanging o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o kern/91134 fs [smbfs] [patch] Preserve access and modification time a conf/91106 versus [locale] date definitions in pl_PL locale are wrong f bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90656 sysinstall sysinstall(8): 6.0-RELEASE (i386) cannot be installed o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o bin/90524 reset(1) doesn't fully restore terminal state o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd s bin/90367 [request] libmap.conf needs exclusivity support o bin/90311 [patch] add "eject" to mt(1) o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o bin/90266 philip bsnmpd(1) returns bad data during a snmpwalk of the en o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 o bin/90093 geom fdisk(8) incapable of altering in-core geometry s kern/90086 net [hang] 5.4p8 on supermicro P8SCT hangs during boot if s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o bin/89959 brooks dhclient(8): dhcp: ip length 314 disagrees with bytes o usb/89954 usb [umass] [panic] USB Disk driver race condition? o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks a conf/89589 secteam virecover follows hardlinks, possibly exposing sensiti o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o docs/89492 attilio vfs doc: some VOP_*(9) manual pages are outdated with o ports/89441 hrs TeX support in FreeBSD is problematic. o bin/89403 fetch(1) doesn't honour authentication credentials whe o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr o kern/89166 [mouse] jumpy mouse movement s usb/89003 usb [request] LaCie Firewire drive not properly supported o conf/88913 rc [patch] wrapper support for rc.subr o bin/88826 randi sysinstall(8): sysinstall infinity wait for da0 o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( o kern/88555 fs [panic] ffs_blkfree: freeing free frag on AMD 64 a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o kern/88518 rodrigc cannot mount root rw at boot o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88450 andre SYN+ACK reports strange size of window o usb/88408 usb [axe] axe0 read PHY failed o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 fs [patch] newfs(8): introduce -A flag for newfs to enabl o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o kern/87859 fs [smbfs] System reboot while umount smbfs. o docs/87857 doc ifconfig(8) wireless options order matters o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup p bin/87726 dfr gssapi.h is not c++ aware s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo s bin/87529 [request] pw(8): "pw lock", "pw unlock" should support o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/87515 Splash screen fails to load on boot o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so f kern/87368 bde [msdosfs] fat32 is very slow f usb/87224 usb [usb] Cannot mount USB Zip750 o www/87119 hrs [patch] encode copyright and such symbolically o kern/87074 mlaier pf does not log dropped packets when max-* stateful tr o bin/87022 telnet(1) hang in ptcout o kern/87010 pjd Reading kernel memory & pagefault under non-root o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s s bin/86859 sysinstall sysinstall(8): Installer should ask about Linux earlie o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the a kern/86752 mlaier pf does not use default timeouts when reloading config o bin/86665 randi sysinstall(8): sysinstall binary upgrade clobbers name o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o kern/86619 emulation [linux] linux emulator interacts oddly with cp o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files a bin/86485 eadler [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o bin/86454 sysinstall sysinstall(8): sysinstall terminates with signal 10 if o kern/86427 net [lor] Deadlock with FASTIPSEC and nat o bin/86405 more(1) segmentation fault o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur o usb/86298 usb [mouse] Known good USB mouse won't work with correct s o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o bin/86012 kpasswd(1) fails if one of the KDC are unreachable. s kern/85975 [cam] devfs does not create entries when removable med o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci o gnu/85824 obrien gas crashes when assembling this file o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/85809 darrenr panic: mutex "ipf state entry" already initialized o kern/85780 net 'panic: bogus refcnt 0' in routing/ipv6 o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o bin/85712 uncompress(1) program emits bogus "overwrite?" prompt s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou f i386/85656 jhb [i386] [patch] expose more i386 specific CPU informati f i386/85655 jhb [i386] [patch] expose cpu info for i386 systems o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o bin/85494 fs fsck_ffs: unchecked use of cg_inosused macro etc. o bin/85445 net ifconfig(8): deprecated keyword to ifconfig inoperativ p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85123 [iir] Improper serialization in iir_ioctl() allows iir o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device o bin/85011 restore(8) on 5.4 will not read Solaris-sparc dumps, w o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o bin/78131 geom gbde(8) "destroy" not working. o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/78021 sem_open(3) doesn't mention fnctl.h include requiremen o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo a bin/77651 [patch] init(8) can lose shutdown related signals o kern/77341 net [ip6] problems with IPV6 implementation f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o kern/77273 net [ipf] ipfilter breaks ipv6 statefull filtering on 5.3 o bin/77261 login(1) doesn't chdir into a group-protected home dir s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/77156 FreeBSD does not redirect packets on proper interface. o bin/77089 natd(8) ignores -u with passive FTP o bin/77001 randi sysinstall(8): sysinstall binary upgrade clobbers /etc o kern/76972 64-bit integer overflow computing user cpu time in cal o bin/76756 des function pw_equal in pw_util.c does not test pw_passwd o bin/76736 dwmalone syslogd(8) pipelines losing messages o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi p bin/76697 simon newsyslog(8) keeps one more archive files than documen s threa/76694 threads fork cause hang in dup()/close() function in child (-l o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o bin/76590 adding -mapall in nfs exports requires reboot o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) o kern/76504 silby Keep-alives doesn't work on half-closed sockets. s conf/76491 Addition into /etc/security few new functions o kern/76398 [libc] stdio can lose data in the presence of signals f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 o bin/76362 [patch] sys directory link points to wrong location o conf/76226 Default local.9600 gettytab initially uses parity o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system o gnu/76169 [patch] Add PAM support to cvs pserver f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed o bin/76134 fetch(1) doesn't like 401 errors with -A o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o kern/75873 net Usability problem with non-RFC-compliant IP spoof prot o kern/75855 [libc] getpwent(3) functions on 5.3 with large passwor o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn s bin/75767 [libc] [request] "fdclose" function in libc o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o kern/75710 [cue] cue0 device configuration causes kernel panic f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) s kern/75407 net [an] an(4): no carrier after short time o bin/75378 login(1): login/wtmp/utmp not updating properly o bin/75362 mount_smbfs(8) No buffer space available o bin/75258 [patch] dd(1) has not async signal safe interrupt hand s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o bin/75177 philip Bug selecting psm operation level in moused(8) o kern/75157 Cannot print to /dev/lpt0 with HP Laserjet 1005 : Devi o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula o kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 gifs? s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74827 [fdc] Problem writing data to floppies a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o bin/74779 fs Background-fsck checks one filesystem twice and omits f usb/74771 usb [umass] [hang] mounting write-protected umass device a s kern/74708 [umapfs] [panic] UMAPFS kernel panic o gnu/74654 libsupc++.a lacks necessary functions o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 o conf/74610 Hostname resolution failure causes firewall rules to s s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma s kern/74352 NFSCLIENT and booting to an mfsroot via TFTP are mutua o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection s kern/74242 rwatson Write to fifo with no reader fails in 6.0 current o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect o conf/74004 [patch] add fam support to inetd.conf o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/73823 acpi [request] acpi / power-on by timer support o conf/73786 [patch] added WARNING in spanish to stable-supfile o conf/73677 rc [patch] add support for powernow states to power_profi s bin/73617 sysinstall sysinstall(8): fdisk editor unmarks active partition s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/73549 brd [request] fix mail list archive navigation difficulty o gnu/73512 gdb -> Abort trap (core dumped) s kern/73496 [request] A more flexible version of mkstemp() s kern/73492 [request] Reliable Temporary Files o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o bin/73422 portmap forks ad infinitum when the NIS domain name is s bin/73411 [request] ftpd(8) could set attributes to 0600 while u o bin/73410 sysinstall sysinstall(8): Sysinstall could not allocate disklabel o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o bin/73261 Suspending su(1) sometimes hangs o kern/73171 imp fwohci driver stating cardbus firewire card has incorr o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/72906 [twe] twe0 idefinite wait buffer o conf/72901 [patch]: dot.profile: prevent printing when doing an s o bin/72895 sysinstall sysinstall(8): Sysinstall generates invalid partition o bin/72875 des Some utilities used in debugging do not function prope o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o bin/72398 whatis(8): emulators/mtools man pages are too funky fo o bin/72355 Can't run strings(1) on a (disk) device, even if you w o conf/72277 [patch] update for /usr/share/skel o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/72210 darrenr ipnat problem with IP Fastforward enabled s ports/72202 simon portaudit warns about the CVS server vulnerability whi o bin/72173 csplit(1) ver 1.9 wrong behaviour with negative offset s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o conf/71994 [patch] dot.login: login shell may unnecessarily print s kern/71965 andre TCP MSS issue in combination with ipfw fwd o conf/71952 missing past participles in /usr/share/dict/words o bin/71928 Disk quota doesn't work with numeric login o kern/71833 multiple process disc access / injustice o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem o bin/71749 [patch] truss -f causes circular wait when traced proc o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71602 [patch] uninitialized "len" used instead of "slen" wit o kern/71532 Multiple SCSI-Busses are seen differently by BIOS, loa a kern/71474 net [route] route lookup does not skip interfaces marked d o kern/71469 net default route to internet magically disappears with mu o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: s bin/71290 des [patch] passwd(1) cannot change passwords other than N o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) o kern/71219 /proc/*/map dont tell file offset o gnu/71210 Update to GNU sdiff: add user-preference for merge key o kern/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o bin/70756 indent(1) mishandles code that is protected for c++ co f kern/70753 gavin [boot] Device for firewire hard disk not created in ti o conf/70715 [periodic] Lack of year in dates in auth.log can cause o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea o bin/70600 fs fsck(8) throws files away when it can't grow lost+foun o bin/70536 reboot(8) -dp tries to dump when powering off o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters o kern/70511 [libc] When fread(3)ing with buffering turned off, man o bin/70476 [patch] reboot(8) change, -p behavior default for halt o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k o bin/70336 telnetd(8) always exits with value 1 o bin/70335 inetd(8) inconsistent syslog behavior when max childre o i386/70330 Re-Open 33262? - gdb does not handle pending signals p o bin/70297 amd(8) request to make amd timeouts per-mount local o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o bin/70002 sysinstall sysinstall(8): fails to locate FTP dirs if the OS has o kern/69989 killing process that uses snp + unloading module + lis o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69942 sysinstall sysinstall(8): sysinstall changes /etc/rc.conf after i o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o bin/69723 sysinstall sysinstall(8): [request] allow to continue from packag o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi f bin/69362 mbr amd(8) does not properly detect the local network sett o ports/69309 ale mysql database backup script for periodic/daily o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge s i386/69218 simokawa [boot] failure: 4.10-BETA and later do not boot on Asu o bin/69164 gdb(1) amd64: coredump while debugging a core file. o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po a kern/68905 secteam [patch] core dumps are assigned wrong ownership o kern/68889 net [panic] m_copym, length > size of mbuf chain o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68727 gdb(1) coredumps after recent CURRENT upgrade o kern/68690 [libc] write(2) returns wrong value when EFAULT o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o conf/68108 [patch] Adding mac-address /conf selector to diskless o bin/68062 standalone repeat(1) command o bin/67943 find(1) fails when current directory is not readable b o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67723 restore(8) FreeBSD 5.x restore cannot handle other pla s kern/67580 [request] add hints for boot failures s kern/67545 [nfs] NFS Diskless Mount Option Suggestion o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o usb/67301 usb [uftdi] [panic] RTS and system panic o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/66677 mv(1) incorrectly copies somedir/.. to ./.. when it cr s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o docs/66505 trhodes escaping '~' and '$' characters in login.conf setenv o o stand/66357 standards make POSIX conformance problem ('sh -e' & '+' command- s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a s kern/66270 [hang] dump(8) causes machine freeze o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message a kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/66162 [gbde] gbde destroy error o bin/66103 ppp(8) macro HISADDR is not sticky in filters o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o bin/65774 randi sysinstall(8): cannot run repair disk when booted from o kern/65616 net IPSEC can't detunnel GRE packets after real ESP encryp o kern/65448 jhb _mtx_unlock_sleep() race condition if ADAPTIVE_MUTEXES f kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65299 vi(1) temp path contains double / o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on s kern/64588 [joy] [request] Extend joystick driver architecture to o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes o bin/63608 Add a -c option to time(1) to display csh output o www/63552 gabor Validation errors due to CAPs in attribute values o bin/63489 top(1) finger(1) segfault when using NIS groups to res o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o a bin/63197 [patch] tftp(1) Bus error, core dumped o docs/63084 des Several Man-pages reference non-existant pam.conf(5) a s bin/62965 portmgr pkg_add(1) -r fails if fetching multiple packages at a o kern/62890 ups proc pointer set by fork1 can be stale in fork,rfork,v f bin/62885 des pam_radius(8) doesn't maintain multiple state fields o bin/62766 systat(1) -vm does not work on diskless machines o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o bin/62711 kensmith sysinstall(8): installation: "Insert Next CD" Prompt i o bin/62702 sysinstall sysinstall(8): backup of /etc and /root during sysinst o conf/62417 luigi diskless op script failed o docs/62412 trhodes one of the diskless boot methods described in the Hand o bin/62367 sysinstall sysinstall(8): 5.2.1-RC installation problems a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o kern/62102 alc obreak update o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME o bin/61971 kinit(1) --renewable fails o bin/61890 sysinstall sysinstall(8): fdisk(8) uses incorrect calculations fo a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s kern/61677 Unable to open CDROM tray if boot_cdrom is in loader.c s kern/61622 Intel Pro/100 Intelligent Server Adapter unsupported N o docs/61605 doc [request] Improve documentation for i386 disk geometry o bin/61603 sysinstall sysinstall(8): wrong geometry guessed o kern/61503 fs [smbfs] mount_smbfs does not work as non-root s i386/61481 [patch] a mechanism to wire io-channel-check to userla o kern/61404 silby RFC1323 timestamps with HZ > 1000 o bin/61355 login(1) does not restore terminal ownership on exit o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o conf/61289 /etc/pccard_ether: please use ifn value on pccard scri s kern/61165 scsi [panic] kernel page fault after calling cam_send_ccb o bin/60892 [patch] added -p option to kldxref(8) to allow creatio s kern/60874 [request] auto-assign devfs ruleset numbers o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load o bin/60632 sysinstall sysinstall(8): UI bug in partition label screen in sys s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/60598 scsi wire down of scsi devices conflicts with config s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o docs/60529 ume resolver(5) man page is badly out of date o kern/60313 data destruction: lseek(2) misalignment silently ignor p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o kern/60174 debugging a kernel module in load/attach routines s kern/59912 mremap() implementation lacking o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans s bin/59638 des passwd(1) does not use PAM to change the password o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o docs/59477 doc Outdated Info Documents at http://docs.freebsd.org/inf o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o ports/59254 portmgr ports that write something after bsd.port.mk o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o kern/58967 Kernel kills processes in spite of cputime parameter i o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o bin/58483 [patch] mount(8): allow type special or node relative o bin/58293 vi(1) replace with CR (ASCII 13) doesn't work o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement a stand/57911 fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) returns FNM_ o bin/57715 [patch] tcopy(1) enhancement a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets p bin/57630 lptcontrol(8) gives "device busy" if device turned off o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back o ports/57498 HEIMDAL_HOME should be defined in src or ports Makefil s bin/57407 [patch] Better NTP support for dhclient(8) and friends s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o kern/57350 [panic] using old monocrome printer port (IO_LPT3 / 0x o docs/57298 doc [patch] add using compact flash cards info to handbook o stand/57295 harti make's handling of MAKEFLAGS is not POSIX conform s bin/57255 usb [patch] usbd(8) and multi-function devices o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c o bin/57045 trpt(8) option -t was disabled on -current s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface s kern/56720 [libc] [request] UNICODE support in Resolver o kern/56664 bad file# in MTIO status buffer after MTEOD until MTRE o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56339 select(2) call (poll(2) too) hangs, yet call works per o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o bin/56249 obrien ftpd(8) has two bugs (motd, munged utmp) o kern/56245 [bktr] Distorted and choppy video with bktr-driver on a kern/56233 net IPsec tunnel (ESP) over IPv6: MTU computation is wrong o kern/56031 luigi [ipfw] ipfw hangs on every invocation o kern/56024 acpi ACPI suspend drains battery while in S3 s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s bin/55965 sshd(8) problems with HostBasedAuthentication and NSS o gnu/55936 bugmeister send-pr(1) does not set mail envelope from o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR s kern/55802 [request] Make kernel.GENERIC suitable for diskless us o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 f i386/55661 acpi ACPI suspend/resume problem on ARMADA M700 o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o i386/55603 [mly] unable to reboot when system runs from Mylex A35 o bin/55546 [patch] cdcontrol(1) play tr m:s.f interface is partia o bin/55539 [patch] Parse fstab(5) with spaces in path names o kern/55448 dbm(3): dbm_nextkey() misbehaves after dbm_store() in f misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi f bin/55349 mbr amd(8) mixes up symlinks in its virtual filesystem. o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o stand/54410 standards one-true-awk not POSIX compliant (no extended REs) o kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o conf/54170 [patch] error from weekly periodic script 330.catman o bin/54141 wrong behavour of cu(1) o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW s stand/53682 [feature request] [patch] add fuser(1) utility o docs/53596 doc Updates to mt(1) manual page o bin/53560 logging domain names in wtmp is retarded o bin/53520 su(1) to another user does not update utmp o kern/53506 [partial patch] support gzipped modules o bin/53475 cp(1) copies files in reverse order to destination o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is o bin/53288 edwin tail(1) will sometimes display more lines than it is t o docs/53271 doc bus_dma(9) fails to document alignment restrictions o bin/53131 randi sysinstall(8): "ALL" could not turn check BOXes ON at s bin/52826 portmgr [request] Adding Timestamps to pkg info upon pkg_add(1 s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o bin/52743 ppp(8) /etc/ppp/ppp.linkup instability issues o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52638 scsi [panic] SCSI U320 on SMP server won't run faster than o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 [request] [patch] New functionality for mail(1) o bin/52469 ppp(8) Multiple devices using UDP don't work. o misc/52256 embedded [picobsd] picobsd build script does not read in user/s s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o kern/51982 remko [sio] sio1: interrupt-level buffer overflows s usb/51958 usb [urio] [patch] update for urio driver o kern/51685 fs [hang] Unbounded inode allocation causes kernel to loc o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/51583 fs [nullfs] [patch] allow to work with devices and socket o docs/51480 doc Multiple undefined references in the FreeBSD manual pa s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee o bin/51137 [patch] config(8) should check if a scheduler is selec s www/51135 www Problems with the mailing-lists search interface p docs/51133 murray RSH environmental variable not described in rcmd(3) o kern/51009 [aue] [patch] buggy aue driver fixed. o bin/50949 mtree(8) doesn't honor the -P when checking/changing o s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge a kern/50687 jmg ioctl(.., CDIOCCAPABILITY, ...) always reports "Inappr p bin/50656 cp(1) - wrong error on copying of multiple files p bin/50569 jilles sh(1) doesn't handles ${HOME}/.profile correctly o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation f bin/50118 edwin calendar(1) dumps core if there is ./calendar/ o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename o bin/48989 sysinstall sysinstall(8): Sysinstall's partition editor gets con f kern/48976 gavin [modules] nwfs.ko oddity s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu s threa/48856 threads Setting SIGCHLD to SIG_IGN still leaves zombies under o kern/48741 darrenr ipnat corrupts packets on gre interface with rul o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files s bin/48341 sysinstall sysinstall(8): changes the active slice flag when it p o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48309 ppp(8) pppoe connections fail to establish if throughp s kern/48279 [bktr] Brooktre878 may cause freeze o conf/48195 /var/db/mounttab error on diskless boot o bin/48183 [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] Add documentation on the fixit disk o bin/47815 [patch] stty(1) -all should work. s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with o conf/47596 [periodic] daily security run complains if timezone ch o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit a kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals s conf/46913 darrenr ipf denied packets of security run output contains non o bin/46905 sysinstall sysinstall(8): FreeBSD 5.x cannot be installed from mu o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o bin/46758 [patch] moused(8) enhancements s conf/46746 No way to set link addresses through rc.conf o stand/46441 stefanf /bin/sh does not do parameter expansion in PS1, PS2, P o conf/46409 Certain periodic scripts check broken NFS mounts. o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o bin/46235 sysinstall sysinstall(8): NTP servers for Finland require updatin o bin/46163 gad lpc(8) problem. Only root can modify despite man page o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o stand/46119 standards Priority problems for SCHED_OTHER using pthreads o conf/46062 remko Remove skel from BSD.root.dist. s kern/46036 [RFE] select is unsuitable for implementing a periodic o bin/45990 dwmalone top(1) dumps core if specific errors in password file o kern/45896 dwmalone setnetgrent(3) should return error code o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45608 randi sysinstall(8): install should config all ether devices s kern/45568 gibbs [ahc] ahc(A19160) pci parity error o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o docs/45303 remko Bug in PDF DocBook rendering o conf/45222 [patch] daily rejected mail hosts report too long o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o bin/44915 randi sysinstall(8): 'choose installation media' choose CD-R o bin/44894 markm telnet(1): as a local non-root user and remote it's po o kern/44587 scsi dev/dpt/dpt.h is missing defines required for DPT_HAND o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o docs/44519 obrien ftpd.conf(5) contains references to ftpd(8) when it is s bin/44518 yar ftpd(8) does not show OPIE OTP challenge o kern/44372 roberto some kernel options prevent NTP clock synchronization o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar o conf/44286 roberto /etc/defaults/rc.conf uses the obsolete ntpdate o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o bin/44212 [request] Unify 'recursive' options -r and -R o kern/44202 [rp] [patch] -stable rp driver does not work with mult o www/44181 re www "Release Information" organization o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start s bin/44122 ppp(8) tun0 gets a second ip adress after a disconnect o docs/44034 trhodes Multiple sysctl variables are not documented o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls f kern/43716 eadler [puc] [patch] puc driver does not recognize Lava Dual- o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43592 mktime(3) rejects dates at the start of daylight savin o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements s bin/43497 mount(8): mount -t nfs -> crunchgen incompatible o docs/43470 blackend solid-state article out of date (x109). o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43368 portmgr pkg_create(1) fails if target directory does not exist o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42658 markm recompile telnetd(8) and log NULL ip in /var/wtmp o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o bin/42162 sysinstall sysinstall(8): after restart, installation crashes, md o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o kern/42089 ntp_gettime returns time in wrong scale o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o bin/42022 randi sysinstall(8): non-interactive mode prompts when only o bin/42018 portmgr pkg_info(1) with PKG_PATH searches through tarred pkgs s bin/42004 [quotas] quota is still IPv4 only, and not INET indepe o bin/41949 sysinstall sysinstall(8): sysinstall sorts /etc/rc.conf during ne a bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o bin/41850 sysinstall sysinstall(8): sysinstall fails to create root filesys o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login s bin/41647 net ifconfig(8) doesn't accept lladdr along with inet addr o kern/41632 luigi bridging when one interface has no carrier a bin/41583 [patch] mtree(8) assorted mtree bugs a stand/41576 standards ln(1): replacing old dir-symlinks o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o bin/41526 mount(8) symlinked mount points get mounted more than o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41297 mp tcsh(1)/csh(1) backquote/braces expansion bug o bin/41271 [patch] non-suid crontab(1) o bin/41213 top(1) blocks if NIS-related entries in passwd(5) are o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o docs/41089 doc pax(1) -B option does not mention interaction with -z o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o conf/40777 [patch] disktab does not support 2.88MB floppies o bin/40597 [patch] add fdisk(8) ability of showing extended parti o bin/40572 vipw(8) prints silly message if $EDITOR fails o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o bin/40260 sysinstall sysinstall(8): hang when detecting devices (No CD/DVD o bin/40215 [nis] NIS host search not terminate o gnu/40057 bugmeister send-pr -a flag does not work with -f s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di s kern/39937 net ipstealth issue o bin/39849 restore(8) fails to overwrite files with schg flag set o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR s conf/39580 sysinstall sysinstall(8): [request] more secure mount options o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o bin/39439 tcopy(1) will not duplicate tapes with block size larg o kern/39388 scsi ncr/sym drivers fail with 53c810 and more than 256MB m o stand/39256 standards snprintf/vsnprintf aren't POSIX-conformant for strings o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix o bin/38940 [request] an option to *stat to allow supressing of he o misc/38937 delay between tracks in digital audio dumps from CD wi o bin/38854 sysinstall sysinstall(8): resetting during setup causes the targe o kern/38749 kientzle Diskless booting fails with some DHCP servers (no root s kern/38730 philip Memorex scrollpro mouse is not fully functional a bin/38727 [patch] mptable(1) should complain about garbage argum o kern/38626 luigi dummynet/traffic shaper: RED: max_th and min_th are li o bin/38610 randi sysinstall(8): should be able to mount ISO images on D s bin/38609 sysinstall sysinstall(8): [request] sysinstall should know the si s ports/38593 portmgr [request] Third level ports o docs/38556 doc EPS file of beastie, as addition to existing examples a kern/38554 net [patch] changing interface ipaddress doesn't seem to w o bin/38478 sysinstall sysinstall(8): In Choose Distributions screen, it's di s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o bin/38057 sysinstall sysinstall(8): "install" document doesn't display corr o bin/38056 sysinstall sysinstall(8): User (creation)'s "Member groups" item o bin/38055 sysinstall sysinstall(8): Groups (creation) item should be before o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o docs/37719 kensmith [request] Detail VOP_ naming in a relevant man-page o bin/37710 sysinstall sysinstall(8): LAN interface in wrong state after atte o bin/37672 pw(8) prints warnings after successful NIS map updates o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" o bin/37083 [patch] [request] small improvement to talk(1): add cl o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36911 [ata] ATA cannot be disabled with hints or through BIO o kern/36902 [libc] [patch] proposed new format code %N for strftim s bin/36786 make ps(1) use 24-hour time by default s bin/36740 make ps(1) obey locale (particularly for times) o docs/36724 darrenr ipnat(5) manpage grammar is incomplete and inconsisten o kern/36626 login_cap(3) incorrectly claims that all resources fre o kern/36566 fs [smbfs] System reboot with dead smb mount and umount o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect f docs/36432 gabor Proposal for doc/share/mk: make folded books using psu o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36385 luigi crunchgen(1) does not handle Makefiles with includes p o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce a bin/36110 dmesg(8) output corrupt if /dev/console is busy o bin/35886 [patch] pax(1) enhancement: custom time format for lis s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f o bin/35769 w(1) does not correctly interpret X sessions s docs/35678 doc docproj Makefiles for web are broken for paths with sp o kern/35669 [nfs] NFSROOT breaks without a gateway o docs/35652 trhodes bsd.README seriously obsolete o bin/35568 make(1) declares target out of date, but $? is empty o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35429 select(2)/poll(2)/kevent(2) can't/don't notice lost co o bin/35400 randi sysinstall(8): sysinstall could improve manipulation o o kern/35399 poll(2) botches revents on dropped socket connections o kern/35396 poll(2) doesn't set POLLERR for failed connect(2) atte o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/35234 scsi World access to /dev/pass? (for scanner) requires acce o bin/35214 obrien dump(8) program hangs while exiting o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34811 jilles sh(1) "jobs" is not pipeable o bin/34788 dwmalone dmesg(8) issues with console output o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md s threa/34536 threads accept() blocks other threads o kern/34470 bde Modem gets sio1 interrupt-level buffer overflows' o bin/34412 [patch] tftp(1) will still try and receive traffic eve o bin/34309 gad lpd(8) does not garantie that controlfiles begin with p bin/34270 man(1) -k could be used to execute any command. o docs/34239 trhodes tunefs(8) man page doesn't describe arguments. s bin/34171 yar ftpd(8) indiscrete about unprivileged user accounts o gnu/34128 sdiff(1) "e" doesn't work with some editors o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o kern/33834 strptime(3) is misleading o bin/33809 [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) a bin/33661 PAP AuthAck/AuthNak parsing problem in pppd(8) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/33182 gdb(1) seg faults when given handle SIGALRM nopass for o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/32667 systat(1) waste too much time reading input o bin/32501 maxim quot(8) is stupid regarding the filesystem option a bin/32411 shutdown(8) absolute-time handling could be more usefu a bin/32375 sysinstall sysinstall(8): sysinstall doesn't respect User generat s conf/32108 Proposed Firewall (IPv4) configuration script o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o bin/31985 New /etc/remote flag for tip(1) to append LF to CR o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31940 net ip queue length too short for >500kpps o bin/31933 pw(8) can interpret numeric name as userid during user o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31890 [syscons] [patch] new syscons font o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind s kern/31686 andre Problem with the timestamp option when flag equals zer o kern/31647 net [libc] socket calls can return undocumented EINVAL o bin/31588 change request to allow mount(8) to set the MNT_IGNORE o bin/31387 mailwrapper(8): When getuid(2)=0, mailwrapper should d o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o bin/31363 sysinstall sysinstall(8): "partition editor" silently corrects pa o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o bin/31034 dwmalone regularly add original address logging for tcpwrappers o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30863 bootpd(8) dovend.c Win95 compatibility improvement and o bin/30854 bootpd(8) bootpgw change - skip ARP modifications by o a bin/30737 sysinstall sysinstall(8): sysinstall leaks file descriptors on re o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o conf/30590 /etc/hosts.equiv and ~/.rhosts interaction violates PO o bin/30542 [patch] add -q option to shut up killall(1) o bin/30517 randi sysinstall(8): using sysinstall with install.cfg has n s threa/30464 threads [patch] pthread mutex attributes -- pshared o bin/30424 Generalization of vipw(8) to lock pwdb while being edi a bin/30360 vmstat(8) returns impossible data o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt p bin/29893 kensmith sysinstall(8): suggestions for 4.4 sysinstall o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/29516 markm telnet(1) from an non FreeBSD host still uses /etc/tty s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/29375 sysinstall sysinstall(8): disk editor gets confused by slices tha p bin/29363 simon [patch] newsyslog(8) can support time as extension f kern/29355 [kernel] [patch] add lchflags support a bin/29253 natd(8) forgets about udp connections o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol s i386/28975 [rp] RocketPort problems o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28424 remko mtree(8) fails to report directory hierarchy mismatch o bin/28364 bapt [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u a bin/28223 remko su(1) doesn't look at login.conf all the time o bin/27972 losing information with talk(1) a conf/27896 Error in /etc/exports invalidates entire line, not jus o bin/27829 pax(1) uid/gid cache is read-only o bin/27687 fs fsck(8) wrapper is not properly passing options to fsc o docs/27605 doc [patch] Cross-document references () o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c o kern/27403 [lpt] lpt driver doesn't handle flags anymore o bin/27319 obrien df(1) displays amd(4) pid processes o bin/27306 [patch] hw watchpoints work unreliable under gdb(1) o bin/27281 vidcontrol(1) does not have error codes o bin/27258 getty(8) didn't check if if= isn't empty o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o bin/27216 randi sysinstall(8): can not get to shell prompt from serial o kern/27008 kernel function sysbeep(xxx, 0) does produce sound o bin/26803 fetch(1) Fix fetch to allow FTP puts in '-o' & allow ' o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain s gnu/26362 "cvs server" doesn't honour the global --allow-root o docs/26286 doc *printf(3) etc should gain format string warnings o kern/26261 [sio] silo overflow problem in sio driver o bin/26005 vis(1)/unvis(1) MIME quoted-printable encoding added t a docs/26003 standards getgroups(2) lists NGROUPS_MAX but not syslimits.h f kern/25986 silby Socket would hang at LAST_ACK forever. o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o bin/25736 ac(8) -d option probrem with overdays logon o kern/25733 [intpm] mismatch between error reporting in smbus fram s bin/25598 yar patch to let ftpd(8) output message when changing dire s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password o kern/25445 kernel statistics are displayed in wrong types and wra o bin/25218 mailwrapper(8) invokes sendmail when resources are tig o bin/25015 cp(1) options -i and -f do not work as documented f kern/24959 net [patch] proper TCP_NOPUSH/TCP_CORK compatibility o docs/24786 doc missing FILES descriptions in sa(4) o bin/24757 yar ftpd(8) not RFC compliant f kern/24629 harti ng_socket failes to declare connected data sockets as s stand/24590 standards timezone function not compatible witn Single Unix Spec o kern/24528 Bad tracking of Modem status o bin/24485 [patch] to make cron(8) handle clock jumps o bin/24461 [nis] Being able to increase the YP timeout without re f bin/24066 gdb(1) can't detach from programs linked with libc_r a bin/23912 vi(1) underflow of cnt in vs_paint() by O_NUMBER_LENGT o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23402 sysinstall sysinstall(8): upgrade ought to check partition sizes a bin/23254 bapt [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network o misc/22914 [bootinst] bootinst messages are not updated o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted o bin/22182 vi(1) options noprint/print/octal broken s bin/22034 [request] nfsstat(1) lacks useful features found in So o kern/21998 net [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o i386/21672 [i386] AMD Duron Rev. A0 reports incorrect L2 cache si o stand/21519 standards sys/dir.h should be deprecated some more s kern/21463 eadler [linux] Linux compatability mode should not allow setu o bin/21008 gad lpr(1) Fix for lpr's handling of lots of jobs in a que o bin/20944 natd(8) enhancements, default config file and manpage o kern/20529 [ti] gigabit cards fail to link s bin/20521 rmt(8) /etc/rmt several problems o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o bin/20391 jhb sysinstall(8): sysinstall should check debug.boothowto s kern/20333 des [libpam] ftp login fails on unix password when s/key a o bin/20282 randi sysinstall(8): sysinstall does not recover some /etc f o bin/20054 yar ftpd(8) rotating _PATH_FTPDSTATFILE losts xferlog s docs/20028 doc ASCII docs should reflect tags in the sourc o gnu/19882 obrien ld does not detect all undefined symbols! a kern/19782 mkisofs 1.12.1 (i386-unknown-freebsd4.0) doesn't prese o bin/19772 [unionfs] df(1) output wrong for union-mounts o kern/19756 [patch] Inability to use linux extended partition (typ o bin/19683 mount(8) displays incorrect mount point on failed moun s conf/19573 des Dot Files for Optional Shells s kern/19535 [procfs] [patch] procfs_rlimit tidyup s kern/19402 Signals 127 and 128 cannot be detected in wait4() inte o kern/18909 dwmalone select(2) timeout limited to 100000000 seconds o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t s kern/18704 GLOB_ERR not handled correctly by glob() s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad o bin/18498 jhb allowing ELF_VERBOSE in /etc/make.conf o bin/18326 dwmalone no /usr/libdata/lint/llib-lc.ln o bin/18319 dump(8) fails with "cannot reopen disk: interrupted sy o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o conf/17993 obrien improving on the default /etc/amd.map s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer s kern/17109 darrenr fastroute crashes for lo0 udp s kern/17108 [nfs] SecureRPC not supported in mount_nfs command o bin/16948 sysinstall sysinstall(8): sysinstall/disklabel: bad partition tab o kern/16765 bde Add support for mark/space parity o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16422 [patch] [request] newfs(8) always make root's / direct o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c s kern/15478 incorrect utmp/wtmp records update upon connection bei s kern/15436 [syscons] syscons extension: "propellers" o bin/15168 [patch] Adding tracklist support to fdformat(1) a kern/15095 silby TCP's advertised window is not scaled immediately upon o bin/15038 sysinstall sysinstall(8): easy to not notice that selection lists p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k s bin/14925 standards getsubopt isn't poisonous enough a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/14562 ioctl() codes should be provided for ejecting all remo o bin/14318 randi sysinstall(8): sysinstall upon install has some counte s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai o bin/13882 mount(8) mount -p is missing the quota options p bin/13869 man(1) program saves multiple cached copies of the sam s conf/13775 multi-user boot may hang in NIS environment o bin/13397 vi(1) nvi mishandles tags files under certain conditio s kern/13326 [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c o bin/13108 authunix_create_default includes egid twice o bin/13042 make(1) doesn't handle wildcards in subdirectory paths o bin/12801 nvi infinite recursion with options "leftright" and "c o bin/12545 peter kldload(8) should be more sensitive to errors in *_mod s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 s bin/11114 harti make(1) does not work as documented with .POSIX: targe a kern/11024 mtm [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9619 rodrigc Restarting mountd kills existing mounts o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o kern/8498 silby Race condition between unp_gc() and accept(). o bin/7973 gad lpd(8) Bad control file owner in case of remote printi s kern/7556 sl_compress_init() will fail if called anything else t o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/7232 sysinstall sysinstall(8): suggestion for FreeBSD installation dia s bin/6785 place for all the default dump flags o kern/5877 net [socket] sb_cc counts control data as well as data dat s bin/5712 /bin/chio code cleaup and option added o bin/5609 gad lpd(8) cannot send long files to HP's JetDirect interf s bin/5296 slattach fails creating pidfile with ioctl(TIOCSCTTY): o bin/5031 gad lpr(1) does not remove original file if -s is used o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry o bin/4116 [patch] [kerberos] Kerberized login as .root fai s bin/3170 vi(1): vi freaks and dump core if user doesn't exist s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2137 [vm] systat(1) total vm statistics are bad s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 6280 problems total. From jrs at tds-net.net Mon Feb 6 15:40:16 2012 From: jrs at tds-net.net (Rob Stanfield) Date: Mon Feb 6 15:40:22 2012 Subject: misc/164827: cvsup10.us.FreeBSD.org not updated with recent ports changes Message-ID: <201202061532.q16FWPDr070576@red.freebsd.org> >Number: 164827 >Category: misc >Synopsis: cvsup10.us.FreeBSD.org not updated with recent ports changes >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 Feb 06 15:40:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Rob Stanfield >Release: 8.2 Stable >Organization: >Environment: FreeBSD compact.home 8.2-STABLE FreeBSD 8.2-STABLE #11: Tue Jan 24 01:36:35 EST 2012 root@:/usr/obj/usr/src/sys/GENERIC i386 >Description: Updating the ports collection via cvsup to my local machine, cvsup10.us.FreeBSD.org does not have the latest updates. Switching to a different mirror resolved the problem. >How-To-Repeat: Point your cvsup server to cvsup10.us.FreeBSD.org. >Fix: Use a different cvsup server, e.g. cvsup9.us.FreeBSD.org. >Release-Note: >Audit-Trail: >Unformatted: From kes-kes at yandex.ru Mon Feb 6 19:30:11 2012 From: kes-kes at yandex.ru (Eugen Konkov) Date: Mon Feb 6 19:30:18 2012 Subject: misc/164830: scp could not copy files Message-ID: <201202061920.q16JK87o085376@red.freebsd.org> >Number: 164830 >Category: misc >Synopsis: scp could not copy files >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 Feb 06 19:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugen Konkov >Release: 9-CURRENT >Organization: ISP FreeLine >Environment: >Description: I try to copy file from mail directory # ls -l 1328517293* -rw------- 1 vmail mail 14033 Feb 6 08:34 1328517293.M104652P74802.flux2,S=14033,W=14349:2, # scp '1328517293.M104652P74802.flux2,S=14033,W=14349:2,' adm@10.1.1.1:/home/adm/in ssh: Could not resolve hostname 1328517293.M104652P74802.flux2,S=14033,W=14349: hostname nor servname provided, or not known >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From gpalmer at freebsd.org Mon Feb 6 20:10:16 2012 From: gpalmer at freebsd.org (Gary Palmer) Date: Mon Feb 6 20:10:22 2012 Subject: misc/164830: scp could not copy files Message-ID: <201202062010.q16KAFTR009871@freefall.freebsd.org> The following reply was made to PR misc/164830; it has been noted by GNATS. From: Gary Palmer To: Eugen Konkov Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/164830: scp could not copy files Date: Mon, 6 Feb 2012 15:08:54 -0500 On Mon, Feb 06, 2012 at 07:20:08PM +0000, Eugen Konkov wrote: > > >Number: 164830 > >Category: misc > >Synopsis: scp could not copy files > >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 Feb 06 19:30:10 UTC 2012 > >Closed-Date: > >Last-Modified: > >Originator: Eugen Konkov > >Release: 9-CURRENT > >Organization: > ISP FreeLine > >Environment: > >Description: > I try to copy file from mail directory > # ls -l 1328517293* > -rw------- 1 vmail mail 14033 Feb 6 08:34 1328517293.M104652P74802.flux2,S=14033,W=14349:2, > > # scp '1328517293.M104652P74802.flux2,S=14033,W=14349:2,' adm@10.1.1.1:/home/adm/in > ssh: Could not resolve hostname 1328517293.M104652P74802.flux2,S=14033,W=14349: hostname nor servname provided, or not known Your file name has a : in it. scp is treating the part before the colon as a hostname. If you read scp(1) then you'll see: File names may contain a user and host specification to indicate that the file is to be copied to/from that host. Local file names can be made explicit using absolute or relative pathnames to avoid scp treating file names containing `:' as host specifiers. Copies between two remote hosts are also permitted. Try scp './1328517293.M104652P74802.flux2,S=14033,W=14349:2,' adm@10.1.1.1:/home/adm/in From kes-kes at yandex.ru Mon Feb 6 21:30:15 2012 From: kes-kes at yandex.ru (=?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?=) Date: Mon Feb 6 21:30:22 2012 Subject: misc/164830: scp could not copy files Message-ID: <201202062130.q16LUEx1086124@freefall.freebsd.org> The following reply was made to PR misc/164830; it has been noted by GNATS. From: =?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?= To: Gary Palmer Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re[2]: misc/164830: scp could not copy files Date: Mon, 6 Feb 2012 23:22:17 +0200 , Gary. 6 2012 ., 22:08:54: GP> On Mon, Feb 06, 2012 at 07:20:08PM +0000, Eugen Konkov wrote: >> >> >Number: 164830 >> >Category: misc >> >Synopsis: scp could not copy files >> >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 Feb 06 19:30:10 UTC 2012 >> >Closed-Date: >> >Last-Modified: >> >Originator: Eugen Konkov >> >Release: 9-CURRENT >> >Organization: >> ISP FreeLine >> >Environment: >> >Description: >> I try to copy file from mail directory >> # ls -l 1328517293* >> -rw------- 1 vmail mail 14033 Feb 6 08:34 1328517293.M104652P74802.flux2,S=14033,W=14349:2, >> >> # scp '1328517293.M104652P74802.flux2,S=14033,W=14349:2,' adm@10.1.1.1:/home/adm/in >> ssh: Could not resolve hostname 1328517293.M104652P74802.flux2,S=14033,W=14349: hostname nor servname provided, or not known GP> Your file name has a : in it. scp is treating the part before the colon GP> as a hostname. If you read scp(1) then you'll see: GP> File names may contain a user and host specification to indicate that the GP> file is to be copied to/from that host. Local file names can be made GP> explicit using absolute or relative pathnames to avoid scp treating file GP> names containing `:' as host specifiers. Copies between two remote hosts GP> are also permitted. GP> Try GP> scp './1328517293.M104652P74802.flux2,S=14033,W=14349:2,' adm@10.1.1.1:/home/adm/in I understand that scp use ':' as delimeter to get hostname, but I think that just quoting will force scp do not look into name I forget about ./ sintax, Thank you. It works fine even without quoting scp ./1328517293.M104652P74802.flux2,S=14033,W=14349:2, adm@10.1.1.1:/home/adm/in Thank you. -- , mailto:kes-kes@yandex.ru From rlampe at tqhosting.com Mon Feb 6 23:10:10 2012 From: rlampe at tqhosting.com (Robert Lampe) Date: Mon Feb 6 23:10:18 2012 Subject: misc/164834: freebsd-update(8) does not operate on mounted system Message-ID: <201202062306.q16N6nj7096953@red.freebsd.org> >Number: 164834 >Category: misc >Synopsis: freebsd-update(8) does not operate on mounted system >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 Feb 06 23:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Robert Lampe >Release: 8.2-RELEASE >Organization: RootBSD >Environment: FreeBSD qb21 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I am trying to run freebsd-update on different versions of FreeBSD (mostly 8.2 and 9.0) from a 8.2 LiveFS. I mount / of the system I want to run freebsd-update on under /tmp/mnt. It still, however, seems to want to update the LiveFS. When we run freebsd-update with -b, -d, and -f, it still wants to update the LiveFS which we is read only except for /tmp. Output when the mounted system is 9.0-RELEASE: # uname -a FreeBSD qb21 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 # freebsd-update -b /tmp/mnt -d /tmp/mnt/var/db/freebsd-update -f /tmp/mnt/etc/freebsd-update.conf fetch Looking up update.FreeBSD.org mirrors... 4 mirrors found. Fetching metadata signature for 8.2-RELEASE from update4.FreeBSD.org... done. Fetching metadata index... done. Fetching 2 metadata patches.. done. Applying metadata patches... done. Inspecting system... done. Preparing to download files... done. Fetching 356 files... done. The following files are affected by updates, but no changes have been downloaded because the files have been modified locally: /var/db/mergemaster.mtree The following files will be added as part of updating to 8.2-RELEASE-p6: /usr/src/lib/libc/gen/libc_dlopen.c The following files will be updated as part of updating to 8.2-RELEASE-p6: /bin/chmod /bin/csh /bin/ed /bin/ls ... # freebsd-update -b /tmp/mnt -d /tmp/mnt/var/db/freebsd-update -f /tmp/mnt/etc/freebsd-update.conf install # head -1 /tmp/mnt/etc/freebsd-update.conf # $FreeBSD: release/9.0.0/etc/freebsd-update.conf 196392 2009-08-19 20:47:31Z simon $ Installing updates...mkdir: /boot/kernel.old: Read-only file system mtree: /boot/kernel.old: No such file or directory touch: /boot/kernel.old/.freebsd-update: No such file or directory Could not create kernel backup directory >How-To-Repeat: (Assume the root filesystem that we want to update is on /dev/ad0p2) 1. Boot into 8.2-RELEASE LiveFS 2. Mount /dev/ad0p2 to /tmp/mnt 3. # freebsd-update -b /tmp/mnt -d /tmp/mnt/var/db/freebsd-update -f /tmp/mnt/etc/freebsd-update.conf fetch See above for output. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From c.kworr at gmail.com Tue Feb 7 01:10:12 2012 From: c.kworr at gmail.com (Volodymyr Kostyrko) Date: Tue Feb 7 01:10:19 2012 Subject: kern/149857: [kqueue] kqueue not reporting EOF under certain circumstances Message-ID: <201202070110.q171ACj8092326@freefall.freebsd.org> The following reply was made to PR kern/149857; it has been noted by GNATS. From: Volodymyr Kostyrko To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/149857: [kqueue] kqueue not reporting EOF under certain circumstances Date: Tue, 7 Feb 2012 03:06:16 +0200 Pinging up: * reproducible on python 3.2 / RELENG_9; * still present after r228510. -- Sphinx of black quartz judge my vow. From emaste at FreeBSD.org Tue Feb 7 02:56:29 2012 From: emaste at FreeBSD.org (emaste@FreeBSD.org) Date: Tue Feb 7 02:56:35 2012 Subject: kern/156540: [hwmpc] hwpmc(4) crash when loaded on unknown AMD cpu Message-ID: <201202070256.q172uSWQ093244@freefall.freebsd.org> Synopsis: [hwmpc] hwpmc(4) crash when loaded on unknown AMD cpu State-Changed-From-To: open->patched State-Changed-By: emaste State-Changed-When: Tue Feb 7 02:55:50 UTC 2012 State-Changed-Why: Fixed in r230636 http://www.freebsd.org/cgi/query-pr.cgi?pr=156540 From johnny at interpro.com.hk Tue Feb 7 03:30:09 2012 From: johnny at interpro.com.hk (Johnny Sun) Date: Tue Feb 7 03:30:17 2012 Subject: misc/164838: Precompile package smartmontools-5.42_2 is not working properly in 9.0-RELEASE-i386 Message-ID: <201202070327.q173RJLK090243@red.freebsd.org> >Number: 164838 >Category: misc >Synopsis: Precompile package smartmontools-5.42_2 is not working properly in 9.0-RELEASE-i386 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 07 03:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Johnny Sun >Release: 9.0-RELEASE-i386 >Organization: >Environment: FreeBSD server1.local 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: When install smartmontools via pkg_add -r smartmontools The software is not working properly. However if it is install via port tree, the software will working without problem. Only happen in i386 version. AMD64 does not have problems. >How-To-Repeat: server1# pkg_add -r smartmontools Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-9.0-release/Latest/smartmontools.tbz... Done. smartmontools has been installed To check the status of drives, use the following: /usr/local/sbin/smartctl -a /dev/ad0 for first ATA/SATA drive /usr/local/sbin/smartctl -a /dev/da0 for first SCSI drive /usr/local/sbin/smartctl -a /dev/ada0 for first SATA drive To include drive health information in your daily status reports, add a line like the following to /etc/periodic.conf: daily_status_smart_devices="/dev/ad0 /dev/da0" substituting the appropriate device names for your SMART-capable disks. To enable drive monitoring, you can use /usr/local/sbin/smartd. A sample configuration file has been installed as /usr/local/etc/smartd.conf.sample Copy this file to /usr/local/etc/smartd.conf and edit appropriately To have smartd start at boot echo 'smartd_enable="YES"' >> /etc/rc.conf server1# /usr/local/sbin/smartctl -a /dev/ada0 smartctl 5.42 2011-10-20 r3458 [FreeBSD 9.0-RELEASE i386] (local build) Copyright (C) 2002-11 by Bruce Allen, http://smartmontools.sourceforge.net error sending CAMIOCOMMAND ioctl: Inappropriate ioctl for device Unable to get CAM device list /dev/ada0: Unable to detect device type Smartctl: please specify device type with the -d option. Use smartctl -h to get a usage summary server1# pkg_delete smartmontools-5.42_2 ===> Stopping smartd ... server1# cd /usr/ports/sysutils/smartmontools/ server1# make install clean > /dev/null smartmontools-5.42.tar.gz 100% of 724 kB 166 kBps server1# /usr/local/sbin/smartctl -a /dev/ada0 smartctl 5.42 2011-10-20 r3458 [FreeBSD 9.0-RELEASE i386] (local build) Copyright (C) 2002-11 by Bruce Allen, http://smartmontools.sourceforge.net === START OF INFORMATION SECTION === Model Family: Hitachi Deskstar 7K2000 Device Model: Hitachi HDS722020ALA330 Serial Number: LU WWN Device Id: 5 000cca 221e82bfc Firmware Version: JKAOA3EA User Capacity: 2,000,398,934,016 bytes [2.00 TB] Sector Size: 512 bytes logical/physical Device is: In smartctl database [for details use: -P show] ATA Version is: 8 ATA Standard is: ATA-8-ACS revision 4 Local Time is: Fri Feb 3 14:12:57 2012 HKT SMART support is: Available - device has SMART capability. SMART support is: Enabled === START OF READ SMART DATA SECTION === SMART overall-health self-assessment test result: PASSED General SMART Values: Offline data collection status: (0x82) Offline data collection activity was completed without error. Auto Offline Data Collection: Enabled. Self-test execution status: ( 0) The previous self-test routine completed without error or no self-test has ever been run. Total time to complete Offline data collection: (23212) seconds. Offline data collection capabilities: (0x5b) SMART execute Offline immediate. Auto Offline data collection on/off support. Suspend Offline collection upon new command. Offline surface scan supported. Self-test supported. No Conveyance Self-test supported. Selective Self-test supported. SMART capabilities: (0x0003) Saves SMART data before entering power-saving mode. Supports SMART auto save timer. Error logging capability: (0x01) Error logging supported. General Purpose Logging supported. Short self-test routine recommended polling time: ( 1) minutes. Extended self-test routine recommended polling time: ( 255) minutes. SCT capabilities: (0x003d) SCT Status supported. SCT Error Recovery Control supported. SCT Feature Control supported. SCT Data Table supported. SMART Attributes Data Structure revision number: 16 Vendor Specific SMART Attributes with Thresholds: ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE 1 Raw_Read_Error_Rate 0x000b 100 100 016 Pre-fail Always - 65536 2 Throughput_Performance 0x0005 132 132 054 Pre-fail Offline - 105 3 Spin_Up_Time 0x0007 132 132 024 Pre-fail Always - 564 (Average 532) 4 Start_Stop_Count 0x0012 100 100 000 Old_age Always - 25 5 Reallocated_Sector_Ct 0x0033 100 100 005 Pre-fail Always - 0 7 Seek_Error_Rate 0x000b 100 100 067 Pre-fail Always - 0 8 Seek_Time_Performance 0x0005 119 119 020 Pre-fail Offline - 36 9 Power_On_Hours 0x0012 099 099 000 Old_age Always - 9712 10 Spin_Retry_Count 0x0013 100 100 060 Pre-fail Always - 0 12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 25 192 Power-Off_Retract_Count 0x0032 100 100 000 Old_age Always - 341 193 Load_Cycle_Count 0x0012 100 100 000 Old_age Always - 341 194 Temperature_Celsius 0x0002 146 146 000 Old_age Always - 41 (Min/Max 23/48) 196 Reallocated_Event_Count 0x0032 100 100 000 Old_age Always - 0 197 Current_Pending_Sector 0x0022 100 100 000 Old_age Always - 0 198 Offline_Uncorrectable 0x0008 100 100 000 Old_age Offline - 0 199 UDMA_CRC_Error_Count 0x000a 200 200 000 Old_age Always - 0 SMART Error Log Version: 0 No Errors Logged SMART Self-test log structure revision number 1 Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error # 1 Short offline Completed without error 00% 8907 - # 2 Short offline Completed without error 00% 5332 - # 3 Short offline Completed without error 00% 2763 - # 4 Short offline Completed without error 00% 149 - SMART Selective self-test log data structure revision number 1 SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS 1 0 0 Not_testing 2 0 0 Not_testing 3 0 0 Not_testing 4 0 0 Not_testing 5 0 0 Not_testing Selective self-test flags (0x0): After scanning selected spans, do NOT read-scan remainder of disk. If Selective self-test is pending on power-up, resume after 0 minute delay. server1# uname -i -p -v FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 GENERIC >Fix: Recompile the software from ports tree and update to package >Release-Note: >Audit-Trail: >Unformatted: From bobf at mrp3.com Tue Feb 7 05:50:11 2012 From: bobf at mrp3.com (bob frazier) Date: Tue Feb 7 05:50:19 2012 Subject: kern/164839: upgrade from 7-STABLE to 8-STABLE causes wifi / wlan failure Message-ID: <201202070543.q175hUlV023066@red.freebsd.org> >Number: 164839 >Category: kern >Synopsis: upgrade from 7-STABLE to 8-STABLE causes wifi / wlan failure >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 07 05:50:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: bob frazier >Release: 8.2 (STABLE) amd64 >Organization: S.F.T. Inc. >Environment: FreeBSD BSDSilver.SFT.local 8.2-STABLE FreeBSD 8.2-STABLE #0: Mon Feb 6 18:42:35 PST 2012 root@BSDSilver.SFT.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: prior to upgrading from FreeBSD 7-STABLE to FreeBSD 8-STABLE the wifi interface was working as expected. after upgrading, every ifconfig operation that attempts to change the setting of ANY wireless device (ath, urtw) results in an error similar to the following: ifconfig: SIOCS80211: Invalid argument I attempted this with 3 different devices, one a built-in atheros device (one that had NOT been recognized in 7-STABLE), one an external (cardbus) atheros device, and the third a USB device that was recognized as 'urtw0'. The kernel drivers recognized all 3 of the devices. I also removed the built-in radio to see if there was any chance it was interfering, but it made no difference whatsoever (and after removing the device, 'ath0' was no longer discovered by the drivers on bootup). computer model: HP Pavilion dv7 tested with these wireless adaptors: atheros AR5BXB92 (internal mini PCI, now removed) Airlink 101 AWLC4030-II (atheros AR5212, in dmesg) Trendnet TEW-424UB (USB wireless, realtek) dmesg output (with Airlink 101 in cardbus adaptor, in 'express' slot): Copyright (c) 1992-2012 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 8.2-STABLE #0: Mon Feb 6 18:42:35 PST 2012 root@BSDSilver.SFT.local:/usr/obj/usr/src/sys/GENERIC amd64 Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Turion(tm) X2 Dual-Core Mobile RM-72 (2100.09-MHz K8-class CPU) Origin = "AuthenticAMD" Id = 0x200f31 Family = 11 Model = 3 Stepping = 1 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x131f TSC: P-state invariant real memory = 4294967296 (4096 MB) avail memory = 3824381952 (3647 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0: Changing APIC ID to 4 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <32-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 cpu0: on acpi0 cpu1: on acpi0 acpi_ec0: port 0x62,0x66 on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 vgapci0: port 0x7000-0x70ff mem 0xc0000000-0xcfffffff,0xd2400000-0xd240ffff,0xd2300000-0xd23fffff irq 18 at device 5.0 on pci1 pci1: at device 5.1 (no driver attached) pcib2: at device 4.0 on pci0 pci2: on pcib2 pcib3: at device 0.0 on pci2 pci3: on pcib3 ath0: mem 0xd1200000-0xd120ffff irq 16 at device 0.0 on pci3 ath0: [ITHREAD] ath0: AR2413 mac 7.9 RF2413 phy 4.5 pcib4: at device 5.0 on pci0 pci8: on pcib4 pci8: at device 0.0 (no driver attached) pci8: at device 0.2 (no driver attached) pci8: at device 0.3 (no driver attached) pci8: at device 0.4 (no driver attached) pcib5: at device 7.0 on pci0 pci9: on pcib5 re0: port 0x2000-0x20ff mem 0xd1010000-0xd1010fff,0xd1000000-0xd100ffff irq 19 at device 0.0 on pci9 re0: Using 1 MSI-X message re0: Chip rev. 0x24800000 re0: MAC rev. 0x00000000 miibus0: on re0 rlphy0: PHY 1 on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow re0: Ethernet address: 00:1e:ec:fe:df:1a re0: [ITHREAD] atapci0: port 0x8038-0x803f,0x804c-0x804f,0x8030-0x8037,0x8048-0x804b,0x8010-0x801f mem 0xd2508000-0xd25083ff irq 22 at device 17.0 on pci0 atapci0: [ITHREAD] atapci0: AHCI v1.10 controller with 6 3Gbps ports, PM supported ata2: at channel 0 on atapci0 ata2: port is not ready (timeout 0ms) tfd = 000001d0 ata2: software reset clear timeout ata2: [ITHREAD] ata3: at channel 1 on atapci0 ata3: [ITHREAD] ata4: at channel 2 on atapci0 ata4: [ITHREAD] ata5: at channel 3 on atapci0 ata5: port is not ready (timeout 0ms) tfd = 00000180 ata5: software reset clear timeout ata5: [ITHREAD] ata6: at channel 4 on atapci0 ata6: [ITHREAD] ata7: at channel 5 on atapci0 ata7: [ITHREAD] ohci0: mem 0xd2507000-0xd2507fff irq 16 at device 18.0 on pci0 ohci0: [ITHREAD] usbus0: on ohci0 ohci1: mem 0xd2506000-0xd2506fff irq 16 at device 18.1 on pci0 ohci1: [ITHREAD] usbus1: on ohci1 ehci0: mem 0xd2508500-0xd25085ff irq 17 at device 18.2 on pci0 ehci0: [ITHREAD] ehci0: AMD SB600/700 quirk applied usbus2: EHCI version 1.0 usbus2: on ehci0 ohci2: mem 0xd2505000-0xd2505fff irq 18 at device 19.0 on pci0 ohci2: [ITHREAD] usbus3: on ohci2 ohci3: mem 0xd2504000-0xd2504fff irq 18 at device 19.1 on pci0 ohci3: [ITHREAD] usbus4: on ohci3 ehci1: mem 0xd2508400-0xd25084ff irq 19 at device 19.2 on pci0 ehci1: [ITHREAD] ehci1: AMD SB600/700 quirk applied usbus5: EHCI version 1.0 usbus5: on ehci1 pci0: at device 20.0 (no driver attached) atapci1: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x8000-0x800f irq 16 at device 20.1 on pci0 ata1: at channel 1 on atapci1 ata1: [ITHREAD] pci0: at device 20.2 (no driver attached) isab0: at device 20.3 on pci0 isa0: on isab0 pcib6: at device 20.4 on pci0 pci128: on pcib6 acpi_acad0: on acpi0 acpi_lid0: on acpi0 acpi_tz0: on acpi0 atrtc0: port 0x70-0x71 on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: [ITHREAD] psm0: model Generic PS/2 mouse, device ID 0 battery0: on acpi0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 ppc0: cannot reserve I/O port range acpi_throttle0: on cpu0 hwpstate0: on cpu0 RTC BIOS diagnostic error 80 Timecounters tick every 1.000 msec usbus0: 12Mbps Full Speed USB v1.0 usbus1: 12Mbps Full Speed USB v1.0 usbus2: 480Mbps High Speed USB v2.0 usbus3: 12Mbps Full Speed USB v1.0 usbus4: 12Mbps Full Speed USB v1.0 usbus5: 480Mbps High Speed USB v2.0 ad4: 305245MB at ata2-master UDMA100 SATA 3Gb/s ugen0.1: at usbus0 uhub0: on usbus0 ugen1.1: at usbus1 uhub1: on usbus1 ugen2.1: at usbus2 uhub2: on usbus2 ugen3.1: at usbus3 uhub3: on usbus3 ugen4.1: at usbus4 uhub4: on usbus4 ugen5.1: at usbus5 uhub5: on usbus5 uhub0: 3 ports with 3 removable, self powered uhub1: 3 ports with 3 removable, self powered uhub3: 3 ports with 3 removable, self powered uhub4: 3 ports with 3 removable, self powered GEOM: ad4s1: geometry does not match label (255h,63s != 16h,63s). acd0: DVDR at ata5-master UDMA100 SATA 1.5Gb/s SMP: AP CPU #1 Launched! Root mount waiting for: usbus5 usbus2 Root mount waiting for: usbus5 usbus2 uhub2: 6 ports with 6 removable, self powered uhub5: 6 ports with 6 removable, self powered ugen2.2: at usbus2 Trying to mount root from ufs:/dev/ad4s1a hdac0: mem 0xd2500000-0xd2503fff irq 16 at device 20.2 on pci0 hdac0: HDA Driver Revision: 20100226_0142 hdac0: [ITHREAD] hdac0: HDA Codec #0: IDT 92HD71B7 hdac0: HDA Codec #1: Lucent/Agere Systems (Unknown) hdac1: mem 0xd2410000-0xd2413fff irq 19 at device 5.1 on pci1 hdac1: HDA Driver Revision: 20100226_0142 hdac1: [ITHREAD] hdac1: HDA Codec #0: ATI RS690/780 HDMI pcm0: at cad 0 nid 1 on hdac0 pcm1: at cad 0 nid 1 on hdac0 pcm2: at cad 0 nid 1 on hdac0 pcm3: at cad 0 nid 1 on hdac1 re0: link state changed to UP output of pciconf -lv hostb0@pci0:0:0:0: class=0x060000 card=0x30fc103c chip=0x96001022 rev=0x00 hdr=0x00 vendor = 'Advanced Micro Devices (AMD)' class = bridge subclass = HOST-PCI pcib1@pci0:0:1:0: class=0x060400 card=0x30fc103c chip=0x9602103c rev=0x00 hdr=0x01 vendor = 'Hewlett-Packard Company' class = bridge subclass = PCI-PCI pcib2@pci0:0:4:0: class=0x060400 card=0x30fc103c chip=0x96041022 rev=0x00 hdr=0x01 vendor = 'Advanced Micro Devices (AMD)' class = bridge subclass = PCI-PCI pcib4@pci0:0:5:0: class=0x060400 card=0x30fc103c chip=0x96051022 rev=0x00 hdr=0x01 vendor = 'Advanced Micro Devices (AMD)' class = bridge subclass = PCI-PCI pcib5@pci0:0:7:0: class=0x060400 card=0x30fc103c chip=0x96071022 rev=0x00 hdr=0x01 vendor = 'Advanced Micro Devices (AMD)' class = bridge subclass = PCI-PCI atapci0@pci0:0:17:0: class=0x010601 card=0x30fc103c chip=0x43911002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'SB700 SATA Controller [AHCI mode]' class = mass storage subclass = SATA ohci0@pci0:0:18:0: class=0x0c0310 card=0x30fc103c chip=0x43971002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'SB700 USB OHCI0 Controller' class = serial bus subclass = USB ohci1@pci0:0:18:1: class=0x0c0310 card=0x30fc103c chip=0x43981002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'Standard OpenHCD USB-Hostcontroller (SB700)' class = serial bus subclass = USB ehci0@pci0:0:18:2: class=0x0c0320 card=0x30fc103c chip=0x43961002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'SB700 USB EHCI Controller' class = serial bus subclass = USB ohci2@pci0:0:19:0: class=0x0c0310 card=0x30fc103c chip=0x43971002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'SB700 USB OHCI0 Controller' class = serial bus subclass = USB ohci3@pci0:0:19:1: class=0x0c0310 card=0x30fc103c chip=0x43981002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'Standard OpenHCD USB-Hostcontroller (SB700)' class = serial bus subclass = USB ehci1@pci0:0:19:2: class=0x0c0320 card=0x30fc103c chip=0x43961002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'SB700 USB EHCI Controller' class = serial bus subclass = USB none0@pci0:0:20:0: class=0x0c0500 card=0x30fc103c chip=0x43851002 rev=0x3a hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'ATI SMBus (ATI RD600/RS600)' class = serial bus subclass = SMBus atapci1@pci0:0:20:1: class=0x01018a card=0x30fc103c chip=0x439c1002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'PATA 133 Controller (SB7xx)' class = mass storage subclass = ATA hdac0@pci0:0:20:2: class=0x040300 card=0x30fc103c chip=0x43831002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'IXP SB600 High Definition Audio Controller' class = multimedia subclass = HDA isab0@pci0:0:20:3: class=0x060100 card=0x30fc103c chip=0x439d1002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'SB700 LPC host controller' class = bridge subclass = PCI-ISA pcib6@pci0:0:20:4: class=0x060401 card=0x00000000 chip=0x43841002 rev=0x00 hdr=0x01 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'IXP SB600 PCI to PCI Bridge' class = bridge subclass = PCI-PCI hostb1@pci0:0:24:0: class=0x060000 card=0x00000000 chip=0x13001022 rev=0x40 hdr=0x00 vendor = 'Advanced Micro Devices (AMD)' device = '(Family 11h) Athlon64/Opteron/Sempron HyperTransport Technology Configuration' class = bridge subclass = HOST-PCI hostb2@pci0:0:24:1: class=0x060000 card=0x00000000 chip=0x13011022 rev=0x00 hdr=0x00 vendor = 'Advanced Micro Devices (AMD)' device = '(Family 11h) Athlon64/Opteron/Sempron Address Map' class = bridge subclass = HOST-PCI hostb3@pci0:0:24:2: class=0x060000 card=0x00000000 chip=0x13021022 rev=0x00 hdr=0x00 vendor = 'Advanced Micro Devices (AMD)' device = '(Family 11h) Athlon64/Opteron/Sempron DRAM Controller' class = bridge subclass = HOST-PCI hostb4@pci0:0:24:3: class=0x060000 card=0x00000000 chip=0x13031022 rev=0x00 hdr=0x00 vendor = 'Advanced Micro Devices (AMD)' device = '(Family 11h) Athlon64/Opteron/Sempron Miscellaneous Control' class = bridge subclass = HOST-PCI hostb5@pci0:0:24:4: class=0x060000 card=0x00000000 chip=0x13041022 rev=0x00 hdr=0x00 vendor = 'Advanced Micro Devices (AMD)' device = '(Family 11h) Athlon64/Opteron/Sempron Link Control' class = bridge subclass = HOST-PCI vgapci0@pci0:1:5:0: class=0x030000 card=0x30fc103c chip=0x96121002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' device = 'ATI RADEON HD 3200 Graphics (RS780M)' class = display subclass = VGA hdac1@pci0:1:5:1: class=0x040300 card=0x960f1002 chip=0x960f1002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.' class = multimedia subclass = HDA pcib3@pci0:2:0:0: class=0x060400 card=0x00000000 chip=0x8231104c rev=0x03 hdr=0x01 vendor = 'Texas Instruments (TI)' device = 'PCI-Express to PCI/PCI-X bridge (XIO2000A)' class = bridge subclass = PCI-PCI ath0@pci0:3:0:0: class=0x020000 card=0x001017f9 chip=0x0013168c rev=0x01 hdr=0x00 vendor = 'Atheros Communications Inc.' device = '802.11a/b/g Wireless Adapter (AR2312)' class = network subclass = ethernet none1@pci0:8:0:0: class=0x088000 card=0x30fc103c chip=0x2382197b rev=0x00 hdr=0x00 vendor = 'JMicron Technology Corp.' device = 'JMB38X SD/MMC Host Controller (JMB38X)' class = base peripheral none2@pci0:8:0:2: class=0x080501 card=0x30fc103c chip=0x2381197b rev=0x00 hdr=0x00 vendor = 'JMicron Technology Corp.' class = base peripheral subclass = SD host controller none3@pci0:8:0:3: class=0x088000 card=0x30fc103c chip=0x2383197b rev=0x00 hdr=0x00 vendor = 'JMicron Technology Corp.' device = 'JMB38X MS Host Controller (JMB38X)' class = base peripheral none4@pci0:8:0:4: class=0x088000 card=0x30fc103c chip=0x2384197b rev=0x00 hdr=0x00 vendor = 'JMicron Technology Corp.' device = 'JMB38X xD Host Controller (JMB38X)' class = base peripheral re0@pci0:9:0:0: class=0x020000 card=0x30fc103c chip=0x813610ec rev=0x02 hdr=0x00 vendor = 'Realtek Semiconductor' device = 'Realtek 10/100/1000 PCI-E NIC Family all in one NDIS Driver v5.728.0604.2009 06/04/2009 (Rtl8023)' class = network subclass = ethernet >How-To-Repeat: for the 'ath0' device, this is sufficient ifconfig ath0 up ssid "" expected result: ifconfig: SIOCS80211: Invalid argument (all of this hardware worked properly in 7-STABLE prior to the upgrade) >Fix: >Release-Note: >Audit-Trail: >Unformatted: From johannes.reinhard at physik.uni-erlangen.de Tue Feb 7 11:10:12 2012 From: johannes.reinhard at physik.uni-erlangen.de (Johannes Reinhard) Date: Tue Feb 7 11:10:20 2012 Subject: kern/164844: [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SATA controller Message-ID: <201202071101.q17B1ch8082640@red.freebsd.org> >Number: 164844 >Category: kern >Synopsis: [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SATA controller >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 07 11:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Johannes Reinhard >Release: FreeBSD 8.1 >Organization: FAU Erlangen-Nrnberg >Environment: FreeBSD fileserv 8.1-RELEASE-p5 FreeBSD 8.1-RELEASE-p5 #0: Tue Sep 27 16:49:00 UTC 2011 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: We are using a SUN Fire v40z with two different LSI controllers both managed by the mpt driver. One is used for the system drives (mpt0), the other one (mpt1) for an external storage enclosure in JBOD mode (Sun J4200). # pciconf -lvv | grep <...> mpt0@pci0:2:4:0: class=0x010000 card=0x002017c2 chip=0x00301000 rev=0x08 hdr=0x00 vendor = 'LSI Logic (Was: Symbios Logic, NCR)' device = 'PCI-X to Ultra320 SCSI Controller (LSI53C1020/1030)' class = mass storage subclass = SCSI mpt1@pci0:36:1:0: class=0x010000 card=0x30e01000 chip=0x00541000 rev=0x02 hdr=0x00 vendor = 'LSI Logic (Was: Symbios Logic, NCR)' device = 'SAS 3000 series, 8-port with 1068 -StorPort' class = mass storage subclass = SCSI # mptutil -u 0 show adapter mpt0 Adapter: Board Name: 0 Board Assembly: 0 Chip Name: C1030 Chip Revision: 0 RAID Levels: RAID1, RAID1E # mptutil -u 1 show adapter mpt1 Adapter: Board Name: SAS3801X Board Assembly: L3-00146-02D Chip Name: C1068 Chip Revision: UNUSED RAID Levels: none On the JBOD we are using ZFS. When the kernel panic occurs, typical symptoms in /var/log/messages look like this .. Feb 5 15:14:55 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da8 offset=654675777536 size=14848 Feb 5 15:14:55 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da2 offset=654676050432 size=14848 Feb 5 15:14:55 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da9 offset=654676182016 size=14848 Feb 5 15:15:12 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da1 offset=655119295488 size=14848 Feb 5 15:15:12 fileserv kernel: mpt1: mpt_intr: no target cmd ptrs Feb 5 15:15:16 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da8 offset=461695998976 size=14848 Feb 5 15:15:50 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da10 offset=655741660160 size=14336 Feb 5 15:15:50 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da8 offset=655741674496 size=14336 Feb 5 15:15:52 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da4 offset=655768189440 size=14848 Feb 5 15:15:52 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da4 offset=655768204288 size=14848 .. or immediately before failure like this (captured via remote console, normally most of the log is lost after reboot) .. Feb 7 00:21:01 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da1 offset=909219043840 size=14848 Feb 7 00:21:01 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da5 offset=909219087872 size=14848 Feb 7 00:21:01 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da3 offset=909219293184 size=14848 Feb 7 00:21:03 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da1 offset=323225315328 size=14336 Feb 7 00:21:03 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da11 offset=323225417728 size=14336 Feb 7 00:21:09 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da1 offset=323291898880 size=14336 Feb 7 00:21:09 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da4 offset=323291869184 size=14336 Feb 7 00:21:27 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da8 offset=516894794752 size=14336 Feb 7 00:21:27 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da1 offset=516894795264 size=14336 Feb 7 00:21:31 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da9 offset=517280401920 size=14336 Feb 7 00:21:31 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da6 offset=517280489984 size=14848 Feb 7 00:21:31 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da3 offset=517280182272 size=14336 Feb 7 00:21:33 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da2 offset=813396810240 size=14848 Feb 7 00:21:37 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da12 offset=813434911744 size=14336 Feb 7 00:21:37 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da8 offset=813435424768 size=14336 Feb 7 00:21:38 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da4 offset=517349635584 size=14336 Feb 7 00:21:38 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da3 offset=517349723648 size=14848 Feb 7 00:21:38 fileserv kernel: mpt1: Context Reply 0x00000003? Feb 7 00:21:38 fileserv kernel: Feb 7 00:21:40 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da2 offset=517380763648 size=14848 Feb 7 00:21:40 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da1 offset=517380807680 size=14848 Feb 7 00:21:44 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da5 offset=517434250752 size=14848 Feb 7 00:21:44 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da3 offset=517434368512 size=14336 Feb 7 00:21:44 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da6 offset=517434265600 size=14336 Feb 7 00:21:45 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da5 offset=813524531200 size=14336 Feb 7 00:21:45 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da2 offset=813524502016 size=14336 Feb 7 00:22:38 fileserv kernel: mpt1: request 0xffffff80003dc610:58518 timed out for ccb 0xffffff0011cf1000 (req->ccb 0xffffff0011cf1000) Feb 7 00:22:38 fileserv kernel: mpt1: Feb 7 00:22:38 fileserv kernel: attempting to abort req 0xffffff80003dc610:58518 function 0 Feb 7 00:22:39 fileserv kernel: mpt1: mpt_wait_req(1) timed out Feb 7 00:22:39 fileserv kernel: Feb 7 00:22:39 fileserv kernel: mpt1: mpt_recover_commands: abort timed-out. Resetting controller Feb 7 00:22:39 fileserv kernel: mpt1: mpt_cam_event: 0x0 Feb 7 00:22:39 fileserv kernel: mpt1: mpt_cam_event: 0x0 Feb 7 00:22:39 fileserv kernel: mpt1: completing timedout/aborted req 0xffffff80003dc610:58518 Feb 7 00:22:51 fileserv kernel: mpt1: mpt_cam_event: 0x16 Feb 7 00:22:51 fileserv kernel: mpt1: mpt_cam_event: 0x12 Feb 7 00:22:51 fileserv kernel: mpt1: mpt_cam_event: 0x1b Feb 7 00:22:51 fileserv kernel: mpt1: mpt_cam_event: 0x12 Feb 7 00:22:51 fileserv last message repeated 19 times Feb 7 00:22:51 fileserv kernel: mpt1: mpt_cam_event: 0x16 Feb 7 00:22:51 fileserv last message repeated 2 times Feb 7 00:22:51 fileserv kernel: (da5:mpt1:0:4:0): READ(10). CDB: 28 0 3c 3a 6b 64 0 0 72 0 Feb 7 00:22:51 fileserv kernel: (da5:mpt1:0:4:0): CAM status: SCSI Status Error Feb 7 00:22:51 fileserv kernel: (da5:mpt1:0:4:0): SCSI status: Check Condition Feb 7 00:22:51 fileserv kernel: (da5:mpt1:0:4:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Feb 7 00:22:51 fileserv kernel: (da6:mpt1:0:5:0): READ(10). CDB: 28 0 a 4e dd 3 0 0 1c 0 Feb 7 00:22:54 fileserv kernel: Feb 7 00:22:54 fileserv kernel: (da6:mpt1:0:5:0): CAM status: SCSI Status Error Feb 7 00:22:54 fileserv kernel: (da6:mpt1:0:5:0): SCSI status: Check Condition Feb 7 00:22:54 fileserv kernel: (da6:mpt1:0:5:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Feb 7 00:22:54 fileserv kernel: (da3:mpt1:0:2:0): READ(10). CDB: 28 0 a 4e dd 3 0 0 1c 0 Feb 7 00:22:54 fileserv kernel: (da3:mpt1:0:2:0): CAM status: SCSI Status Error Feb 7 00:22:54 fileserv kernel: (da3:mpt1:0:2:0): SCSI status: Check Condition Feb 7 00:22:54 fileserv kernel: (da3:mpt1:0:2:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Feb 7 00:22:54 fileserv kernel: (da2:mpt1:0:1:0): READ(10). CDB: 28 0 a 4e dd 3 0 0 1c 0 Feb 7 00:22:54 fileserv kernel: (da2:mpt1:0:1:0): CAM status: SCSI Status Error Feb 7 00:22:54 fileserv kernel: (da2:mpt1:0:1:0): SCSI status: Check Condition Feb 7 00:22:54 fileserv kernel: (da2:mpt1:0:1:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Feb 7 00:22:54 fileserv kernel: (da1:mpt1:0:0:0): READ(10). CDB: 28 0 a 4e dd 3 0 0 1c 0 Feb 7 00:22:54 fileserv kernel: (da1:mpt1:0:0:0): CAM status: SCSI Status Error Feb 7 00:22:54 fileserv kernel: (da1:mpt1:0:0:0): SCSI status: Check Condition Feb 7 00:22:54 fileserv kernel: (da1:mpt1:0:0:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Feb 7 00:22:54 fileserv kernel: (da8:mpt1:0:7:0): READ(10). CDB: 28 0 a 4e dd 2 0 0 1d 0 Feb 7 00:22:54 fileserv kernel: (da8:mpt1:0:7:0): CAM status: SCSI Status Error Feb 7 00:22:54 fileserv kernel: (da8:mpt1:0:7:0): SCSI status: Check Condition Feb 7 00:22:54 fileserv kernel: (da8:mpt1:0:7:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Feb 7 00:22:54 fileserv kernel: (da4:mpt1:0:3:0): READ(10). CDB: 28 0 a 4e dd 2 0 0 1d 0 Feb 7 00:22:54 fileserv kernel: (da4:mpt1:0:3:0): CAM status: SCSI Status Error Feb 7 00:22:54 fileserv kernel: (da4:mpt1:0:3:0): SCSI status: Check Condition Feb 7 00:22:54 fileserv kernel: (da4:mpt1:0:3:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Feb 7 00:22:54 fileserv kernel: (da9:mpt1:0:8:0): READ(10). CDB: 28 0 a 4e dd 2 0 0 1d 0 Feb 7 00:22:54 fileserv kernel: (da9:mpt1:0:8:0): CAM status: SCSI Status Error Feb 7 00:22:54 fileserv kernel: (da9:mpt1:0:8:0): SCSI status: Check Condition Feb 7 00:22:54 fileserv kernel: (da9:mpt1:0:8:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Feb 7 00:22:54 fileserv kernel: (da11:mpt1:0:10:0): READ(10). CDB: 28 0 a 4e dd 2 0 0 1d 0 Feb 7 00:22:54 fileserv kernel: (da11:mpt1:0:10:0): CAM status: SCSI Status Error Feb 7 00:22:54 fileserv kernel: (da11:mpt1:0:10:0): SCSI status: Check Condition Feb 7 00:22:54 fileserv kernel: (da11:mpt1:0:10:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Feb 7 00:22:55 fileserv kernel: (da10:mpt1:0:9:0): READ(10). CDB: 28 0 a 4e dc e6 0 0 1c 0 Feb 7 00:22:55 fileserv kernel: (da10:mpt1:0:9:0): CAM status: SCSI Status Error Feb 7 00:22:55 fileserv kernel: (da10:mpt1:0:9:0): SCSI status: Check Condition Feb 7 00:22:55 fileserv kernel: (da10:mpt1:0:9:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Feb 7 00:22:55 fileserv kernel: (da12:mpt1:0:11:0): READ(10). CDB: 28 0 a 4e dc e6 0 0 1c 0 Feb 7 00:22:55 fileserv kernel: (da12:mpt1:0:11:0): CAM status: SCSI Status Error Feb 7 00:22:55 fileserv kernel: (da12:mpt1:0:11:0): SCSI status: Check Condition Feb 7 00:22:55 fileserv kernel: (da12:mpt1:0:11:0): SCSI sense: UNIT ATTENTION asc:29,0 (Power on, reset, or bus device reset occurred) Feb 7 00:22:55 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da1 offset=517352114176 size=14848 Feb 7 00:23:09 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da8 offset=813768227840 size=14848 Feb 7 00:23:09 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da4 offset=813768081408 size=14336 Feb 7 00:23:09 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da10 offset=813768580096 size=14336 Feb 7 00:23:33 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da5 offset=193050448896 size=14336 Feb 7 00:23:39 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da3 offset=193222309888 size=14336 Feb 7 00:23:39 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da4 offset=193222353408 size=14336 Feb 7 00:23:44 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da2 offset=193329220096 size=14848 Feb 7 00:23:44 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da8 offset=193329454592 size=14336 Feb 7 00:23:44 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da11 offset=193329483776 size=14848 Feb 7 00:23:54 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da4 offset=188087916032 size=14848 Feb 7 00:23:59 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da5 offset=188941305344 size=14848 Feb 7 00:23:59 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da10 offset=188941773312 size=14848 Feb 7 00:23:59 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da1 offset=188941847552 size=14336 Feb 7 00:23:59 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da1 offset=188941861888 size=14848 Feb 7 00:23:59 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da9 offset=188942083584 size=14336 Feb 7 00:24:01 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da11 offset=189180443648 size=14848 Feb 7 00:24:01 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da4 offset=189179795456 size=14336 Feb 7 00:24:05 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da5 offset=189496972800 size=14848 Feb 7 00:24:05 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da10 offset=189496565248 size=14848 Feb 7 00:24:05 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da3 offset=189497314816 size=14848 Feb 7 00:24:09 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da12 offset=187531636736 size=14848 Feb 7 00:24:09 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da4 offset=187531988480 size=14848 Feb 7 00:24:09 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da8 offset=187528953344 size=14848 Feb 7 00:24:09 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da11 offset=187528983040 size=14848 Feb 7 00:24:12 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da3 offset=188422677504 size=14336 Feb 7 00:24:12 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da6 offset=188423581184 size=14336 Feb 7 00:24:12 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da12 offset=188424466432 size=14336 Feb 7 00:24:13 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da5 offset=189423034880 size=14848 Feb 7 00:24:13 fileserv root: ZFS: checksum mismatch, zpool=bigpond path=/dev/da11 offset=189424520192 size=14848 .. We updated the firmware to the latest version, but unfortunately the problem still occured. We debugged a lot and the problem boiled down to probably being a driver issue. The fail typically occurs when both drives are used heavily at the same time, e.g. when a scrub is running on the zpool. Our current workaround is to avoid these moments (e.g. by chosing backup schedule in an appropriate way) and everything works fine so far. Worst thing that can happen is the need to reboot -- at least no data loss. However, this is still not very satisfying and assuring. >How-To-Repeat: Start zpool scrub. Additionally put some load on the system drives. Wait. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From marketing at vellance.com Tue Feb 7 13:30:14 2012 From: marketing at vellance.com (Michiel Kreijger) Date: Tue Feb 7 13:30:21 2012 Subject: misc/164848: Vellance B.V. Message-ID: <201202071322.q17DMIHu035020@red.freebsd.org> >Number: 164848 >Category: misc >Synopsis: Vellance B.V. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 07 13:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Michiel Kreijger >Release: >Organization: Vellance B.V. >Environment: >Description: Vellance LogoVellance B.V. is a Dutch managed hosting provider located in Amsterdam. Our core-business is delivering advanced Managed hosting platforms. Vellance primarily works with FreeBSD (since the 90's), so it's not a surprise our managed hosting platforms and Virtual Enterprise Cloud environment is completely based on a FreeBSD infrastructure. Next to Virtual Dedicated Servers we offer many products like Private Cloud infrastructures, Media hosting, datacentre facilities and hosting consultancy. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From chris at cjones.org Tue Feb 7 17:10:15 2012 From: chris at cjones.org (Chris Jones) Date: Tue Feb 7 17:10:52 2012 Subject: kern/164861: Cannot boot from zfs built in degraded mode Message-ID: <20120207165312.AC9AD4A64D6@maxwell.cjones.org> >Number: 164861 >Category: kern >Synopsis: Cannot boot from zfs built in degraded mode >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 07 17:10:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Chris Jones >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD dee.mt.sri.com 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: If a raidz1 or mirror is built in degraded mode, it will be unbootable (using GPT). Adding the missing disk and resilvering will render it bootable, even if the replaced disk is removed again prior to boot. I've reproduced this in various combinations of raidz1 and mirror; USB flash disks and SATA drives; i386 and amd64. Upon booting, these messages are printed by the primary/secondary bootstrap loader: ZFS: can only boot from disk, mirror, raidz1, raidz2 and raidz3 vdevs ZFS: i/o error - all block copies unavailable ZFS: can't read MOS ZFS: unexpected object set type 0 ...then it tries to directly load the kernel a couple of times and gives up. >How-To-Repeat: Using a 4GB USB flash drive da0: gpart create -s gpt da0 gpart add -s 64k -t freebsd-boot -l boot0 da0 gpart add -t freebsd-zfs -l disk0 da0 gpart bootcode -b /boot/pmbr -p /boot/gptzfsboot -i 1 da0 dd if=/dev/zero of=/usr/bigfile oseek=4G count=1 zpool create -f -o altroot=/mnt zroot raidz1 /dev/gpt/disk0 /usr/bigfile dump 0afL - / | ( cd /mnt && restore rf - ) echo 'zfs_enable="YES"' >> /mnt/etc/rc.conf echo 'zfs_load="YES"' >> /mnt/boot/loader.conf echo 'vfs.root.mountfrom="zfs:zroot"' >> /mnt/boot/loader.conf zpool export zroot zpool import -o altroot=/mnt -o cachefile=/tmp/zpool.cache zroot mv /tmp/zpool.cache /mnt/boot/zfs/zpool.cache zfs unmount -a zpool set bootfs=zroot zroot zpool set cachefile='' zroot zfs set mountpoint=legacy zroot reboot >Fix: Going back to a running system, I inserted the 4GB flash disk da0 plus another 4GB flash disk da1. Then: gpart create -s gpt da1 gpart add -s 64k -t freebsd-boot -l boot1 da1 gpart add -t freebsd-zfs -l disk1 da1 gpart bootcode -b /boot/pmbr -p /boot/gptzfsboot -i 1 da1 zpool replace zroot da1p2 reboot It booted just fine. Then I powered off the machine, removed da1, and powered on again. It booted just fine. >Release-Note: >Audit-Trail: >Unformatted: From killing at multiplay.co.uk Tue Feb 7 20:30:22 2012 From: killing at multiplay.co.uk (Steven Hartland) Date: Tue Feb 7 20:30:34 2012 Subject: bin/134919: [patch] add information to truss(1) when tracing linux apps Message-ID: <201202072030.q17KUMQi003140@freefall.freebsd.org> The following reply was made to PR bin/134919; it has been noted by GNATS. From: "Steven Hartland" To: Cc: Subject: Re: bin/134919: [patch] add information to truss(1) when tracing linux apps Date: Tue, 7 Feb 2012 09:25:18 -0000 Any update on this? From killing at multiplay.co.uk Tue Feb 7 20:30:35 2012 From: killing at multiplay.co.uk (Steven Hartland) Date: Tue Feb 7 20:30:49 2012 Subject: kern/161901: [cam] [patch] cam / ata timeout limited to 2147 due to overflow Message-ID: <201202072030.q17KUYnX004244@freefall.freebsd.org> The following reply was made to PR kern/161901; it has been noted by GNATS. From: "Steven Hartland" To: Cc: Subject: Re: kern/161901: [cam] [patch] cam / ata timeout limited to 2147 due to overflow Date: Tue, 7 Feb 2012 09:26:51 -0000 Any update on this? From mm at FreeBSD.org Tue Feb 7 21:42:39 2012 From: mm at FreeBSD.org (mm@FreeBSD.org) Date: Tue Feb 7 21:42:45 2012 Subject: bin/164802: Can't destroy zfs snapshots in 8-stable w/o -R Message-ID: <201202072142.q17LgcvK078763@freefall.freebsd.org> Synopsis: Can't destroy zfs snapshots in 8-stable w/o -R Responsible-Changed-From-To: freebsd-bugs->mm Responsible-Changed-By: mm Responsible-Changed-When: Tue Feb 7 21:42:38 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=164802 From eugen at eg.sd.rdtc.ru Wed Feb 8 09:00:21 2012 From: eugen at eg.sd.rdtc.ru (Eugene Grosbein) Date: Wed Feb 8 09:00:28 2012 Subject: kern/164901: [regression] [patch] [lagg] igb/lagg poor traffic distribution Message-ID: <201202080850.q188oNrw099468@eg.sd.rdtc.ru> >Number: 164901 >Category: kern >Synopsis: [regression] [patch] [lagg] igb/lagg poor traffic distribution >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 08 09:00:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 8.2-STABLE i386 >Organization: RDTC JSC >Environment: System: FreeBSD eg.sd.rdtc.ru 8.2-STABLE FreeBSD 8.2-STABLE #36: Fri Dec 23 15:04:05 NOVT 2011 root@eg.sd.rdtc.ru:/usr/local/obj/usr/local/src/sys/EG i386 >Description: Suppose, we have a router (BRAS) using two lagg(4) interfaces in LACP mode. Two-port lagg0 has IP address and its ports carry untagged IPoE frames. lagg1 has no IP address and has two ports (82576-based igb0 and igb1) that carry 1000 dot-q vlans with PPPoE frames only. In RELENG_7, lagg(4) evenly distributes traffic going from lagg1 to lagg0. Since 8.0-RELEASE all this traffic goes out through one of lagg0's ports only. 82576-based NICs and igb(4) support Microsoft Receive-Side Scaling (RSS), see http://download.intel.com/design/network/datashts/82576_Datasheet.pdf RSS states that queue number for non-IP frames (PPPoE/GRE/etc.) is not computed with hash. So, all these frames get same (zero) queue number and igb(4) assigns tag M_FLOWID=0 to mbufs. Since 8.0-RELEASE, lagg(4) skips its own hash computation for mbuts having M_FLOWID tag attached. Hence, it directs all such traffic to its first port only in this setup. >How-To-Repeat: See above. >Fix: The following patch fixes the regression by introducing new sysctls that disable usage of M_FLOWID per lagg interface: net.link.lagg.0.use_flowid net.link.lagg.1.use_flowid Default value is 1 that corresponds to current behaviour of lagg(4). To fix our issue, we set net.link.lagg.0.use_flowid=0 that restores pre-8 behaviour for lagg0 only, so it ignores misleading M_FLOWID assigned to mbufs by lagg1's ports. --- sys/net/if_lagg.h.orig 2010-12-27 12:59:59.000000000 +0600 +++ sys/net/if_lagg.h 2012-01-23 16:34:15.000000000 +0700 @@ -21,6 +21,8 @@ #ifndef _NET_LAGG_H #define _NET_LAGG_H +#include + /* * Global definitions */ @@ -202,6 +204,8 @@ struct lagg_softc { eventhandler_tag vlan_attach; eventhandler_tag vlan_detach; #endif + struct sysctl_ctx_list ctx; /* sysctl variables */ + int use_flowid; /* use M_FLOWID */ }; struct lagg_port { --- sys/net/if_lagg.c.orig 2011-08-08 19:16:42.000000000 +0700 +++ sys/net/if_lagg.c 2012-01-23 16:33:04.000000000 +0700 @@ -257,6 +257,8 @@ lagg_clone_create(struct if_clone *ifc, struct ifnet *ifp; int i, error = 0; static const u_char eaddr[6]; /* 00:00:00:00:00:00 */ + struct sysctl_oid *oid; + char num[14]; /* sufficient for 32 bits */ sc = malloc(sizeof(*sc), M_DEVBUF, M_WAITOK|M_ZERO); ifp = sc->sc_ifp = if_alloc(IFT_ETHER); @@ -265,6 +267,15 @@ lagg_clone_create(struct if_clone *ifc, return (ENOSPC); } + sysctl_ctx_init(&sc->ctx); + snprintf(num, sizeof(num), "%u", unit); + sc->use_flowid = 1; + oid = SYSCTL_ADD_NODE(&sc->ctx, &SYSCTL_NODE_CHILDREN(_net_link, lagg), + OID_AUTO, num, CTLFLAG_RD, NULL, ""); + SYSCTL_ADD_INT(&sc->ctx, SYSCTL_CHILDREN(oid), OID_AUTO, + "use_flowid", CTLTYPE_INT|CTLFLAG_RW, &sc->use_flowid, sc->use_flowid, + "Use flow id for load sharing"); + sc->sc_proto = LAGG_PROTO_NONE; for (i = 0; lagg_protos[i].ti_proto != LAGG_PROTO_NONE; i++) { if (lagg_protos[i].ti_proto == LAGG_PROTO_DEFAULT) { @@ -344,6 +355,7 @@ lagg_clone_destroy(struct ifnet *ifp) LAGG_WUNLOCK(sc); + sysctl_ctx_free(&sc->ctx); ifmedia_removeall(&sc->sc_media); ether_ifdetach(ifp); if_free_type(ifp, IFT_ETHER); @@ -1668,7 +1680,7 @@ lagg_lb_start(struct lagg_softc *sc, str struct lagg_port *lp = NULL; uint32_t p = 0; - if (m->m_flags & M_FLOWID) + if (sc->use_flowid && (m->m_flags & M_FLOWID)) p = m->m_pkthdr.flowid; else p = lagg_hashmbuf(m, lb->lb_key); --- sys/net/ieee8023ad_lacp.c.orig 2009-08-03 16:13:06.000000000 +0800 +++ sys/net/ieee8023ad_lacp.c 2012-01-23 13:44:00.000000000 +0700 @@ -812,7 +812,7 @@ lacp_select_tx_port(struct lagg_softc *s return (NULL); } - if (m->m_flags & M_FLOWID) + if (sc->use_flowid && (m->m_flags & M_FLOWID)) hash = m->m_pkthdr.flowid; else hash = lagg_hashmbuf(m, lsc->lsc_hashkey); >Release-Note: >Audit-Trail: >Unformatted: From dougb at FreeBSD.org Wed Feb 8 09:25:32 2012 From: dougb at FreeBSD.org (dougb@FreeBSD.org) Date: Wed Feb 8 09:25:38 2012 Subject: kern/87836: [devfs] If using ATAPICAM with cd(dvd)rw without media, devfs.conf has no effect on cd0 and pass0 Message-ID: <201202080925.q189PVr8066899@freefall.freebsd.org> Synopsis: [devfs] If using ATAPICAM with cd(dvd)rw without media, devfs.conf has no effect on cd0 and pass0 State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Wed Feb 8 09:24:34 UTC 2012 State-Changed-Why: We no longer support 6.x, and the landscape for these devices has changed quite a bit. If this is still a problem for a supported version of FreeBSD please open a new PR. Responsible-Changed-From-To: freebsd-bugs->dougb Responsible-Changed-By: dougb Responsible-Changed-When: Wed Feb 8 09:24:34 UTC 2012 Responsible-Changed-Why: I'm closing this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=87836 From dougb at FreeBSD.org Wed Feb 8 09:27:18 2012 From: dougb at FreeBSD.org (dougb@FreeBSD.org) Date: Wed Feb 8 09:27:25 2012 Subject: kern/60874: [request] auto-assign devfs ruleset numbers Message-ID: <201202080927.q189RIfj066991@freefall.freebsd.org> Synopsis: [request] auto-assign devfs ruleset numbers State-Changed-From-To: suspended->closed State-Changed-By: dougb State-Changed-When: Wed Feb 8 09:26:43 UTC 2012 State-Changed-Why: Nine years and no patches. Responsible-Changed-From-To: freebsd-bugs->dougb Responsible-Changed-By: dougb Responsible-Changed-When: Wed Feb 8 09:26:43 UTC 2012 Responsible-Changed-Why: I'm closing this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=60874 From dougb at FreeBSD.org Wed Feb 8 09:32:13 2012 From: dougb at FreeBSD.org (dougb@FreeBSD.org) Date: Wed Feb 8 09:32:19 2012 Subject: kern/85975: [cam] devfs does not create entries when removable media is inserted Message-ID: <201202080932.q189WDdj075997@freefall.freebsd.org> Synopsis: [cam] devfs does not create entries when removable media is inserted State-Changed-From-To: suspended->closed State-Changed-By: dougb State-Changed-When: Wed Feb 8 09:31:06 UTC 2012 State-Changed-Why: We no longer support FreeBSD 5, and the landscape has changed quite a bit. If you can reproduce this with a supported version of FreeBSD please file a new PR. Responsible-Changed-From-To: freebsd-bugs->dougb Responsible-Changed-By: dougb Responsible-Changed-When: Wed Feb 8 09:31:06 UTC 2012 Responsible-Changed-Why: I closed this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=85975 From Andre.Albsmeier at siemens.com Wed Feb 8 16:20:14 2012 From: Andre.Albsmeier at siemens.com (Andre Albsmeier) Date: Wed Feb 8 16:20:21 2012 Subject: kern/164909: [cam] devfs does not create entries when removable media is inserted Message-ID: <201202081551.q18Fp8EE090815@curry.mchp.siemens.de> >Number: 164909 >Category: kern >Synopsis: [cam] devfs does not create entries when removable media is inserted >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 08 16:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 7.4-STABLE i386 >Organization: >Environment: System: FreeBSD FreeBSD 7.4-STABLE #0: Thu Jan 26 19:17:46 CET 2012 with SD card slot. >Description: devfs does not create slice entries when media containing slices is inserted into slot. >How-To-Repeat: SD card slot is attached to da10. Before inserting card: root@voyager:~>ls -l /dev/da10* crw-r----- 1 root operator 0, 89 8 Feb 16:26 /dev/da10 After inserting card: root@voyager:~>ls -l /dev/da10* crw-r----- 1 root operator 0, 89 8 Feb 16:26 /dev/da10 After issuing "true > /dev/da10" as noted in PR# 85975: root@voyager:~>ls -l /dev/da10* crw-r----- 1 root operator 0, 89 8 Feb 16:26 /dev/da10 crw-r----- 1 root operator 0, 158 8 Feb 16:26 /dev/da10s1 >Fix: Apparently none ;-(. >Release-Note: >Audit-Trail: >Unformatted: From bobf at mrp3.com Wed Feb 8 19:00:55 2012 From: bobf at mrp3.com (Bob Frazier) Date: Wed Feb 8 19:01:02 2012 Subject: kern/164839: upgrade from 7-STABLE to 8-STABLE causes wifi / wlan failure Message-ID: <201202081900.q18J0sVL099369@freefall.freebsd.org> The following reply was made to PR kern/164839; it has been noted by GNATS. From: Bob Frazier To: bug-followup@FreeBSD.org, bobf@mrp3.com Cc: Subject: Re: kern/164839: upgrade from 7-STABLE to 8-STABLE causes wifi / wlan failure Date: Wed, 08 Feb 2012 11:02:05 -0800 request cancel. re-definition of wlan device for cloning purposes confused me From torfinn.ingolfsen at broadpark.no Wed Feb 8 19:10:14 2012 From: torfinn.ingolfsen at broadpark.no (Torfinn Ingolfsen) Date: Wed Feb 8 19:10:21 2012 Subject: bin/140462: devd(8): [regression] devd.pid locked by /etc/rc.d and dhclient Message-ID: <201202081910.q18JADov008172@freefall.freebsd.org> The following reply was made to PR bin/140462; it has been noted by GNATS. From: Torfinn Ingolfsen To: bug-followup@FreeBSD.org Cc: wblock@wonkity.com Subject: Re: bin/140462: devd(8): [regression] devd.pid locked by /etc/rc.d and dhclient Date: Wed, 08 Feb 2012 19:00:23 +0100 Hello, This problenm still exists in 8.2-stable. Here is an example: root@kg-v7# uname -a FreeBSD kg-v7.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #7: Sat Jul 9 23:00:31 CEST 2011 root@kg-v7.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 root@kg-v7# service devd status devd is not running. root@kg-v7# ll /var/run/devd.pid -rw------- 1 root wheel 3 Jan 12 20:40 /var/run/devd.pid root@kg-v7# lsof /var/run/devd.pid COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME dhclient 1075 root 5w VREG 0,70 3 918547 /var/run/devd.pid dhclient 1091 _dhcp 5w VREG 0,70 3 918547 /var/run/devd.pid -- Regards, Torfinn Ingolfsen From wblock at wonkity.com Wed Feb 8 20:40:16 2012 From: wblock at wonkity.com (Warren Block) Date: Wed Feb 8 20:40:24 2012 Subject: bin/140462: devd(8): [regression] devd.pid locked by /etc/rc.d and dhclient Message-ID: <201202082040.q18KeFkw098653@freefall.freebsd.org> The following reply was made to PR bin/140462; it has been noted by GNATS. From: Warren Block To: Torfinn Ingolfsen Cc: bug-followup@FreeBSD.org Subject: Re: bin/140462: devd(8): [regression] devd.pid locked by /etc/rc.d and dhclient Date: Wed, 8 Feb 2012 13:21:35 -0700 (MST) On Wed, 8 Feb 2012, Torfinn Ingolfsen wrote: > Hello, > This problenm still exists in 8.2-stable. Here is an example: > root@kg-v7# uname -a > FreeBSD kg-v7.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #7: Sat Jul 9 23:00:31 CEST 2011 root@kg-v7.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 > root@kg-v7# service devd status > devd is not running. > root@kg-v7# ll /var/run/devd.pid > -rw------- 1 root wheel 3 Jan 12 20:40 /var/run/devd.pid > root@kg-v7# lsof /var/run/devd.pid > COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME > dhclient 1075 root 5w VREG 0,70 3 918547 /var/run/devd.pid > dhclient 1091 _dhcp 5w VREG 0,70 3 918547 /var/run/devd.pid It seems to be fixed in 9-STABLE: COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME devd 900 root 5w VREG 0,101 3 190860 /var/run/devd.pid Maybe it just needs an MFC to 8-stable. From kes-kes at yandex.ru Wed Feb 8 21:50:09 2012 From: kes-kes at yandex.ru (Eugen Konkov) Date: Wed Feb 8 21:50:14 2012 Subject: misc/164914: interface still accept packets even without IP address Message-ID: <201202082142.q18Lgxf8003583@red.freebsd.org> >Number: 164914 >Category: misc >Synopsis: interface still accept packets even without IP address >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 08 21:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugen Konkov >Release: 9.0-CURRENT >Organization: ISP FreeLine >Environment: # uname -a FreeBSD 9.0-CURRENT FreeBSD 9.0-CURRENT #4: Fri Jun 10 01:30:12 UTC 2011 @:/usr/obj/usr/src/sys/PAE_KES i386 >Description: SERVER2 # ifconfig vlan70 vlan70: flags=8843 metric 0 mtu 1500 options=3 ether 00:30:67:9d:8f:26 inet6 fe80::230:67ff:fe9d:8f26%vlan70 prefixlen 64 scopeid 0xa nd6 options=29 media: Ethernet autoselect (1000baseT ) status: active vlan: 70 parent interface: re0 # ifconfig vlan408 vlan408: flags=8843 metric 0 mtu 1500 options=3 ether 00:30:67:9d:8f:26 inet 10.11.19.53 netmask 0xfffffff8 broadcast 10.11.19.55 inet6 fe80::230:67ff:fe9d:8f26%vlan408 prefixlen 64 scopeid 0x22 nd6 options=29 media: Ethernet autoselect (1000baseT ) status: active vlan: 408 parent interface: re0 # tcpdump -n -i vlan70 tcpdump: WARNING: vlan70: no IPv4 address assigned tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on vlan70, link-type EN10MB (Ethernet), capture size 65535 bytes 23:29:17.882594 IP 10.7.18.90 > 10.11.19.54: GREv1, call 52218, seq 1416932, ack 2420899, length 60: IP 192.168.24.17.50762 > 88.81.253.182.80: Flags [.], ack 3084092892, win 16544, length 0 23:29:18.358144 CDPv1, ttl: 120s, Device-ID 'unknown', length 74 23:29:18.532881 IP 10.7.18.90 > 10.11.19.54: GREv1, call 52218, seq 1416933, ack 2420910, length 60: IP 192.168.24.17.50762 > 88.81.253.182.80: Flags [.], ack 2761, win 16560, length 0 ^C 3 packets captured 14 packets received by filter 0 packets dropped by kernel # tcpdump -n -i vlan408 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on vlan408, link-type EN10MB (Ethernet), capture size 65535 bytes 23:32:18.587860 IP 10.11.19.53.22 > 10.10.1.40.2897: Flags [P.], seq 2116288012:2116288208, ack 3239226069, win 65535, length 196 23:32:18.588346 IP 10.10.1.40.2897 > 10.11.19.53.22: Flags [.], ack 196, win 65219, length 0 23:32:18.613808 IP 10.7.18.90 > 10.11.19.54: GREv1, call 52218, seq 1426479, ack 2439179, length 60: IP 192.168.24.17.50836 > 38.113.165.86.443: Flags [F.], seq 659475120, ack 3124981189, win 16559, length 0 23:32:18.771754 IP 10.7.18.90 > 10.11.19.54: GREv1, call 52218, seq 1426480, ack 2439181, length 60: IP 192.168.24.17.50836 > 38.113.165.86.443: Flags [.], ack 2, win 16559, length 0 23:32:18.780879 ARP, Request who-has 10.11.19.51 tell 10.11.19.52, length 42 23:32:18.894536 IP 10.7.18.90 > 10.11.19.54: GREv1, call 52218, seq 1426481, ack 2439188, length 60: IP 192.168.24.17.50824 > 88.81.253.184.80: Flags [.], ack 1476863292, win 16560, length 0 23:32:18.898075 IP 10.7.18.90 > 10.11.19.54: GREv1, call 52218, seq 1426482, length 56: IP 192.168.24.17.50824 > 88.81.253.184.80: Flags [.], ack 2761, win 16560, length 0 23:32:18.919120 IP 10.7.18.90 > 10.11.19.54: GREv1, call 52218, seq 1426484, ack 2439192, length 60: IP 192.168.24.17.50824 > 88.81.253.184.80: Flags [.], ack 8281, win 16560, length 0 23:32:18.939557 IP 10.7.18.90 > 10.11.19.54: GREv1, call 52218, seq 1426486, ack 2439196, length 60: IP 192.168.24.17.50824 > 88.81.253.184.80: Flags [.], ack 13801, win 16560, length 0 23:32:18.940032 IP 10.7.18.90 > 10.11.19.54: GREv1, call 52218, seq 1426487, length 56: IP 192.168.24.17.50824 > 88.81.253.184.80: Flags [.], ack 16561, win 16560, length 0 23:32:18.961147 IP 10.7.18.90 > 10.11.19.54: GREv1, call 52218, seq 1426488, ack 2439200, length 60: IP 192.168.24.17.50824 > 88.81.253.184.80: Flags [.], ack 19321, win 16560, length 0 23:32:18.978187 IP 10.7.18.90 > 10.11.19.54: GREv1, call 52218, seq 1426490, ack 2439201, length 60: IP 192.168.24.17.50824 > 88.81.253.184.80: Flags [.], ack 24841, win 16560, length 0 >How-To-Repeat: ..............CLIENT .........vlan70:10.7.18.90 ........../...............\ SERVER1....................SERVER2 vlan70:10.7.18.2 vlan70:10.7.18.1 vlan408:10.7.19.54<-->vlan408:10.7.19.53 If I move IP 10.7.18.1 from SERVER2:vlan70 to SERVER1:vlan70 ..............CLIENT .........vlan70:10.7.18.90 ........../...............\ SERVER1....................SERVER2 vlan70:10.7.18.2 vlan70:NOIP_HERE_NOW vlan70:10.7.18.1 vlan408:10.7.19.54<-->vlan408:10.7.19.53 Traffic still flows through SERVER2 This is very interesting feature or maybe a bug? wich touch security issues: some host on LAN can send packets to MAC address of FreeBSD server, now server accept packets even if frame is not in its subnet and pass them further %-) >Fix: >Release-Note: >Audit-Trail: >Unformatted: From glebius at FreeBSD.org Thu Feb 9 11:40:10 2012 From: glebius at FreeBSD.org (Gleb Smirnoff) Date: Thu Feb 9 11:40:16 2012 Subject: misc/164914: interface still accept packets even without IP address Message-ID: <201202091140.q19Be9Dm067707@freefall.freebsd.org> The following reply was made to PR misc/164914; it has been noted by GNATS. From: Gleb Smirnoff To: Eugen Konkov Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/164914: interface still accept packets even without IP address Date: Thu, 9 Feb 2012 15:35:20 +0400 On Wed, Feb 08, 2012 at 09:42:59PM +0000, Eugen Konkov wrote: E> >How-To-Repeat: E> ..............CLIENT E> .........vlan70:10.7.18.90 E> ........../...............\ E> SERVER1....................SERVER2 E> vlan70:10.7.18.2 vlan70:10.7.18.1 E> vlan408:10.7.19.54<-->vlan408:10.7.19.53 E> E> If I move IP 10.7.18.1 from SERVER2:vlan70 to SERVER1:vlan70 E> E> ..............CLIENT E> .........vlan70:10.7.18.90 E> ........../...............\ E> SERVER1....................SERVER2 E> vlan70:10.7.18.2 vlan70:NOIP_HERE_NOW E> vlan70:10.7.18.1 E> vlan408:10.7.19.54<-->vlan408:10.7.19.53 E> E> Traffic still flows through SERVER2 E> E> This is very interesting feature or maybe a bug? wich touch security issues: E> some host on LAN can send packets to MAC address of FreeBSD server, now server accept packets even if frame is not in its subnet and pass them further %-) This is not a bug, but the way IP and Ethernet works. If a box receives a frame that has its linklevel address, then the frame is passes to appropriate protocol layer. And if IP protocol receives a packet that is destined to some address we don't have, and forwarding is enabled, then the packet is forwarded. -- Totus tuus, Glebius. From jh at FreeBSD.org Thu Feb 9 15:46:44 2012 From: jh at FreeBSD.org (jh@FreeBSD.org) Date: Thu Feb 9 15:46:51 2012 Subject: junk/164848: Vellance B.V. Message-ID: <201202091546.q19Fkh0n096705@freefall.freebsd.org> Synopsis: Vellance B.V. State-Changed-From-To: open->closed State-Changed-By: jh State-Changed-When: Thu Feb 9 15:45:13 UTC 2012 State-Changed-Why: Spam. Responsible-Changed-From-To: freebsd-bugs->gnats-admin Responsible-Changed-By: jh Responsible-Changed-When: Thu Feb 9 15:45:13 UTC 2012 Responsible-Changed-Why: Spam. http://www.freebsd.org/cgi/query-pr.cgi?pr=164848 From attila.bogar at gmail.com Thu Feb 9 16:30:10 2012 From: attila.bogar at gmail.com (Attila Bogr) Date: Thu Feb 9 16:30:17 2012 Subject: bin/164933: [nfs] [patch] mountd(8) drops mixed security flavors for multiple lines per same share Message-ID: <201202091622.q19GMY3h091558@red.freebsd.org> >Number: 164933 >Category: bin >Synopsis: [nfs] [patch] mountd(8) drops mixed security flavors for multiple lines per same share >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 09 16:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Attila Bogr >Release: 8.2-STABLE >Organization: Linguamatics >Environment: FreeBSD topaz.linguamatics.com 8.2-RELEASE-p6 FreeBSD 8.2-RELEASE-p6 #1: Wed Feb 8 14:21:11 GMT 2012 system@topaz.linguamatics.com:/usr/obj/usr/src/sys/LINGUAMATICS amd64 >Description: When multiple lines per share are present with different security flavors, the last line's security flavour is preserved for mountd(8) and the ones from previous linues are dropped from mountd. However the exports are pushed correctly into the kernel line-by-line with the correct security flavor. When trying to mount the nfs share from a client machine, mountd responds with a list of possible security flavors from the share's last line only. >How-To-Repeat: Compile a kernel: - deselect NFSSERVER option - select NFSD, KGSSAPI options - add devices: crypto, cryptodev Add to /etc/rc.conf: nfs_server_enable="YES" nfsv4_server_enable="NO" nfsuserd_enable="YES" nfsuserd_flags="16" mountd_enable="YES" rpc_lockd_enable="YES" rpc_statd_enable="YES" rpcbind_enable="YES" gssd_enable="YES" Add nfs/fqdn@REALM keytab to /etc/krb5.keytab. Set up /etc/krb5.conf Create sample /etc/exports: /export/share -sec=sys host1.example.com /export/share -sec=krb5i host2.example.com Try mounting /export/share from host1 using sec=sys. Mount will fail. >Fix: My proposed patch takes an union of the used security flavours per filesystem handle. Although this is not the perfect solution as clients still can mount a share with a flavour they had not been exported to. If doing such, they get permission denied from nfsd or error message saying the (nfs) server requires stronger authentication. struct exportlist contains the security flavours per filesystem handle. It would be more thorough if the security flavours were registered on a per host/network/default entry, similar to as they are pushed into the kernel with do_mount() function. Patch attached with submission follows: --- ./usr.sbin/mountd/mountd.c.orig 2011-04-20 22:00:24.000000000 +0100 +++ ./usr.sbin/mountd/mountd.c 2012-02-09 11:54:50.000000000 +0000 @@ -1170,6 +1170,7 @@ struct xucred anon; char *cp, *endcp, *dirp, *hst, *usr, *dom, savedc; int len, has_host, exflags, got_nondir, dirplen, netgrp; + int xx_numsecflavors, xx_secflavors[MAXSECFLAVORS]; v4root_phase = 0; dirhead = (struct dirlist *)NULL; @@ -1191,6 +1192,7 @@ opt_flags = 0; ep = (struct exportlist *)NULL; dirp = NULL; + xx_numsecflavors = 0; /* * Handle the V4 root dir. @@ -1299,10 +1301,13 @@ "making new ep fs=0x%x,0x%x", fsb.f_fsid.val[0], fsb.f_fsid.val[1]); - } else if (debug) + } else { if (debug) warnx("found ep fs=0x%x,0x%x", fsb.f_fsid.val[0], fsb.f_fsid.val[1]); + xx_numsecflavors = ep->ex_numsecflavors; + bcopy(ep->ex_secflavors, &xx_secflavors, sizeof(int)*xx_numsecflavors); + } } /* @@ -1429,6 +1434,19 @@ } /* + * Merge security flavours + */ + + int ci, cj; + + for(ci=0;ciex_numsecflavors && xx_secflavors[ci]!=ep->ex_secflavors[cj];cj++); + if (cj==ep->ex_numsecflavors) { + ep->ex_secflavors[ep->ex_numsecflavors++] = xx_secflavors[ci]; + } + } + + /* * Success. Update the data structures. */ if (has_host) { >Release-Note: >Audit-Trail: >Unformatted: From jh at FreeBSD.org Thu Feb 9 16:48:30 2012 From: jh at FreeBSD.org (jh@FreeBSD.org) Date: Thu Feb 9 16:48:36 2012 Subject: misc/164830: scp could not copy files Message-ID: <201202091648.q19GmTWn052383@freefall.freebsd.org> Synopsis: scp could not copy files State-Changed-From-To: open->closed State-Changed-By: jh State-Changed-When: Thu Feb 9 16:48:28 UTC 2012 State-Changed-Why: This is a documented feature rather than a bug. http://www.freebsd.org/cgi/query-pr.cgi?pr=164830 From remko at elvandar.org Thu Feb 9 18:57:01 2012 From: remko at elvandar.org (Remko Lodder) Date: Thu Feb 9 18:57:08 2012 Subject: junk/164848: Vellance B.V. In-Reply-To: <201202091546.q19Fkh0n096705@freefall.freebsd.org> References: <201202091546.q19Fkh0n096705@freefall.freebsd.org> Message-ID: <0f5fd923e9e7c25369fef1f41e5a5931@evilcoder.org> On 09.02.2012 16:46, jh@FreeBSD.org wrote: > Synopsis: Vellance B.V. > > State-Changed-From-To: open->closed > State-Changed-By: jh > State-Changed-When: Thu Feb 9 15:45:13 UTC 2012 > State-Changed-Why: > Spam. > is it? Without looking at the actual links it seems to me that this is more something for the commercial gallery. It mentions that they are using FreeBSD. The website is in the dutch language (my native language) and i cannot see why this would be spam. Wrong category: yes, wrong group: yes, spam: no. But on the other hand I seem to miss the reference to FreeBSD itself, it would be nice to point to that more and for the record: we do not add images to our entries, so IF jkois wants to add this to the gallery, that will be removed. Thanks Remko -- /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News From remko at elvandar.org Fri Feb 10 07:07:31 2012 From: remko at elvandar.org (Remko Lodder) Date: Fri Feb 10 07:07:38 2012 Subject: junk/164848: Vellance B.V. In-Reply-To: <20120210065709.GA35625@jh> References: <201202091546.q19Fkh0n096705@freefall.freebsd.org> <0f5fd923e9e7c25369fef1f41e5a5931@evilcoder.org> <20120210065709.GA35625@jh> Message-ID: No problem, the massive amount of hyperlinks and the added image doesn't make it a very nice similiar entry like the other ones. In the past I took out a few of them and only pointed to one or two hyperlinks (either hosting or consultancy and things like that). It would be really ugly to have an entry with solely 's :-) Thank you for your battle against unwanted records, sure we miss one or two somethines (I do too!) but in general life gets much better because of this, thanks! Remko On Feb 10, 2012, at 7:57 AM, Jaakko Heinonen wrote: > On 2012-02-09, Remko Lodder wrote: >>> Spam. >> >> is it? Without looking at the actual links it seems to me that this >> is more something for the commercial gallery. >> It mentions that they are using FreeBSD. The website is in the dutch >> language (my native language) and i cannot >> see why this would be spam. Wrong category: yes, wrong group: yes, >> spam: no. > > I am sorry if I misjudged the report. Feel free to correct my mistake. I > am not sure how it should be categorized and assigned. > > Thanks. > -- > Jaakko -- /"\ With kind regards, | remko@elvandar.org \ / Remko Lodder | remko@FreeBSD.org X FreeBSD | http://www.evilcoder.org / \ The Power to Serve | Quis custodiet ipsos custodes From dds at aueb.gr Fri Feb 10 07:10:09 2012 From: dds at aueb.gr (Diomidis Spinellis) Date: Fri Feb 10 07:10:16 2012 Subject: bin/164947: tee looses data when writing to non-blocking file descriptors Message-ID: <201202100704.q1A74f98051744@red.freebsd.org> >Number: 164947 >Category: bin >Synopsis: tee looses data when writing to non-blocking file descriptors >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 10 07:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Diomidis Spinellis >Release: 8.1 >Organization: AUEB >Environment: FreeBSD istlab.dmst.aueb.gr 8.1-RELEASE-p6 FreeBSD 8.1-RELEASE-p6 #0: Tue Nov 1 15:16:34 EET 2011 dds@istlab.dmst.aueb.gr:/usr/obj/usr/src/sys/ISTLAB i386 You have new mail in /var/mail/dds >Description: When tee(1) tries to write to a file descriptor that has been set to non-blocking mode the write(2) call may fail with EAGAIN. Instead of retrying the operation, tee will throw that chunk of data away. >How-To-Repeat: Run the following: #!/usr/local/bin/bash # bash needed for the >(...) functionality # ssh apparently sets O_NONBLOCK # Remove the 2>/dev/null to see tee complaining dd count=100000 if=/dev/zero | tee >(ssh localhost dd of=/dev/null) 2>/dev/null | (ssh localhost dd of=/dev/null) 100000+0 records in 100000+0 records out 51200000 bytes transferred in 9.224390 secs (5550503 bytes/sec) 100000+0 records in 100000+0 records out 51200000 bytes transferred in 9.061471 secs (5650297 bytes/sec) 92080+0 records in 92080+0 records out 47144960 bytes transferred in 9.101738 secs (5179776 bytes/sec) >Fix: I attach a patch that fixes the problem. Patch attached with submission follows: --- tee.c 2012/02/08 14:50:10 1.1 +++ tee.c 2012/02/08 14:59:10 @@ -46,8 +46,10 @@ #endif /* not lint */ #include +#include #include #include +#include #include #include #include @@ -64,6 +66,7 @@ void add(int, const char *); static void usage(void); +static void waitfor(int fd); int main(int argc, char *argv[]) @@ -110,9 +113,14 @@ bp = buf; do { if ((wval = write(p->fd, bp, n)) == -1) { - warn("%s", p->name); - exitval = 1; - break; + if (errno == EAGAIN) { + waitfor(p->fd); + wval = 0; + } else { + warn("%s", p->name); + exitval = 1; + break; + } } bp += wval; } while (n -= wval); @@ -141,3 +149,15 @@ p->next = head; head = p; } + +/* Wait for the specified fd to be ready for writing */ +static void +waitfor(int fd) +{ + fd_set writefds; + + FD_ZERO(&writefds); + FD_SET(fd, &writefds); + if (select(fd + 1, NULL, &writefds, NULL, NULL) == -1) + err(1, "select"); +} >Release-Note: >Audit-Trail: >Unformatted: From jh at FreeBSD.org Fri Feb 10 07:15:03 2012 From: jh at FreeBSD.org (Jaakko Heinonen) Date: Fri Feb 10 07:15:10 2012 Subject: junk/164848: Vellance B.V. In-Reply-To: <0f5fd923e9e7c25369fef1f41e5a5931@evilcoder.org> References: <201202091546.q19Fkh0n096705@freefall.freebsd.org> <0f5fd923e9e7c25369fef1f41e5a5931@evilcoder.org> Message-ID: <20120210065709.GA35625@jh> On 2012-02-09, Remko Lodder wrote: > >Spam. > > is it? Without looking at the actual links it seems to me that this > is more something for the commercial gallery. > It mentions that they are using FreeBSD. The website is in the dutch > language (my native language) and i cannot > see why this would be spam. Wrong category: yes, wrong group: yes, > spam: no. I am sorry if I misjudged the report. Feel free to correct my mistake. I am not sure how it should be categorized and assigned. Thanks. -- Jaakko From remko at elvandar.org Fri Feb 10 09:09:49 2012 From: remko at elvandar.org (Remko Lodder) Date: Fri Feb 10 09:09:58 2012 Subject: junk/164848: Vellance B.V. In-Reply-To: <4F34DBD9.6000603@vellance.com> References: <201202091546.q19Fkh0n096705@freefall.freebsd.org> <0f5fd923e9e7c25369fef1f41e5a5931@evilcoder.org> <20120210065709.GA35625@jh> <4F34DBD9.6000603@vellance.com> Message-ID: <8cc516c58df0955513c0351634957a64@evilcoder.org> On 10.02.2012 09:56, Mathijs de Bildt wrote: Dear Mathijs, Goedemorgen, This seems much better indeed! beyond the target=_blanC(k?) I think this looks much better. I have assigned the ticket to Johann Kois, who is now leading the Commercial Gallery, so I am sure he will do the right thing with this :-) Thank you for using FreeBSD as your choice of platform, and are willing to share that with the world. It would be nice to see a FreeBSD reference on your site or a logo or something that even more clearly demonstrates that you are using FreeBSD to power your shop :-) Thanks! Remko > Goodmorning, > > I am sorry for the massive 's. I thought of linkbuilding, > not > on how it would look on your website. My apologies. > > I wanted to submit our company Vellance on the commercial Vendor > page > http://www.freebsd.org/commercial/isp.html [4] > > What is the right path to follow to get Vellance with a small piece > of text (like the 4 lines below with just 1 :-)) on the > commercial vendor page? > > Vellance B.V. is a Dutch managed hosting provider located in > Amsterdam. Our core-business is delivering advanced href="http://www.vellance.com" [5] title="Managed hosting " > target="_blanc">Managed hosting platforms. Vellance primarily > works with FreeBSD (since the 90's), so it's not a surprise our > managed hosting platforms and Virtual Enterprise Cloud environment is > completely based on a FreeBSD infrastructure. Next to Virtual > Dedicated Servers we offer many products like Private Cloud > infrastructures, Media hosting, datacentre facilities and hosting > consultancy. > > With kind regards, > > Mathijs de Bildt > Marketing Manager Vellance > > Op 10/02/2012 8:07 AM, Remko Lodder schreef: > >> No problem, the massive amount of hyperlinks and the added image >> doesn't make it a very nice similiar >> entry like the other ones. In the past I took out a few of them and >> only pointed to one or two hyperlinks >> (either hosting or consultancy and things like that). It would be >> really ugly to have an entry with solely >> 's :-) >> >> Thank you for your battle against unwanted records, sure we miss one >> or two somethines (I do too!) but >> in general life gets much better because of this, thanks! >> Remko >> >> On Feb 10, 2012, at 7:57 AM, Jaakko Heinonen wrote: >> >>> On 2012-02-09, Remko Lodder wrote: >>> >>>>> Spam. >>> >>>> >>> is it? Without looking at the actual links it seems to me that >>> >>>> blockquote> is more something for the commercial >>> language (my native language) and >>> >>>> br> see why this would be spam. Wrong >>> category: yes, wrong group: yes, >> >> -- >> /" With kind regards, | remko@elvandar.org [1] >> / Remko Lodder | remko@FreeBSD.org [2] >> X FreeBSD | http://www.evilcoder.org [3] >> / The Power to Serve | Quis custodiet ipsos custodes > > -- > > Mathijs de Bildt > > mathijs.debildt@vellance.com [6] > > Vellance > > Zocherstraat 42-1 > > 1054 LZ Amsterdam > > T: > > +31 (0)20 489 24 55 > > F: > > +31 (0)20 489 24 58 > > W: > > http://www.vellance.com [7] > > De informatie m.b.t. deze email kan vertrouwelijk van aard zijn. Het > is alleen > > bedoeld voor de geadresseerde van deze email. Wanneer u dit niet bent > > brengt u ons dan aub op de hoogte en verwijder dit document. Aan deze > email > > kunnen geen rechten worden ontleend. Fouten en/of wijzigingen > voorbehouden. > > (c) Vellance B.V. > > The information in this document is confidential. It is for the use > of > the intended > > recipient only. If you are not the intended recipient, please notify > us and delete > > this document. No rights can be derived from this email. All rights > reserved. > > (c) Vellance B.V. > > Links: > ------ > [1] mailto:remko@elvandar.org > [2] mailto:remko@FreeBSD.org > [3] http://www.evilcoder.org > [4] http://www.freebsd.org/commercial/isp.html > [5] http://www.vellance.com > [6] mailto:mathijs.debildt@vellance.com > [7] http://www.vellance.com/ -- /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News From mathijs.debildt at vellance.com Fri Feb 10 09:14:26 2012 From: mathijs.debildt at vellance.com (Mathijs de Bildt) Date: Fri Feb 10 09:14:33 2012 Subject: junk/164848: Vellance B.V. In-Reply-To: References: <201202091546.q19Fkh0n096705@freefall.freebsd.org> <0f5fd923e9e7c25369fef1f41e5a5931@evilcoder.org> <20120210065709.GA35625@jh> Message-ID: <4F34DBD9.6000603@vellance.com> Goodmorning, I am sorry for the massive 's. I thought of linkbuilding, not on how it would look on your website. My apologies. I wanted to submit our company Vellance on the commercial Vendor page http://www.freebsd.org/commercial/isp.html What is the right path to follow to get Vellance with a small piece of text (like the 4 lines below with just 1 :-)) on the commercial vendor page? Vellance B.V. is a Dutch managed hosting provider located in Amsterdam. Our core-business is delivering advanced Managed hosting platforms. Vellance primarily works with FreeBSD (since the 90's), so it's not a surprise our managed hosting platforms and Virtual Enterprise Cloud environment is completely based on a FreeBSD infrastructure. Next to Virtual Dedicated Servers we offer many products like Private Cloud infrastructures, Media hosting, datacentre facilities and hosting consultancy. With kind regards, Mathijs de Bildt Marketing Manager Vellance Op 10/02/2012 8:07 AM, Remko Lodder schreef: > > > No problem, the massive amount of hyperlinks and the added image > doesn't make it a very nice similiar > entry like the other ones. In the past I took out a few of them and > only pointed to one or two hyperlinks > (either hosting or consultancy and things like that). It would be > really ugly to have an entry with solely > 's :-) > > Thank you for your battle against unwanted records, sure we miss one > or two somethines (I do too!) but > in general life gets much better because of this, thanks! > Remko > > On Feb 10, 2012, at 7:57 AM, Jaakko Heinonen wrote: > >> On 2012-02-09, Remko Lodder wrote: >>>> Spam. >>> >>> is it? Without looking at the actual links it seems to me that this >>> is more something for the commercial gallery. >>> It mentions that they are using FreeBSD. The website is in the dutch >>> language (my native language) and i cannot >>> see why this would be spam. Wrong category: yes, wrong group: yes, >>> spam: no. >> >> I am sorry if I misjudged the report. Feel free to correct my mistake. I >> am not sure how it should be categorized and assigned. >> >> Thanks. >> -- >> Jaakko > > -- > /"\ With kind regards,| remko@elvandar.org > \ / Remko Lodder| remko@FreeBSD.org > X FreeBSD| http://www.evilcoder.org > / \ The Power to Serve| Quis custodiet ipsos custodes > -- Mathijs de Bildt mathijs.debildt@vellance.com Vellance Zocherstraat 42-1 1054 LZ Amsterdam T: +31 (0)20 489 24 55 F: +31 (0)20 489 24 58 W: http://www.vellance.com De informatie m.b.t. deze email kan vertrouwelijk van aard zijn. Het is alleen bedoeld voor de geadresseerde van deze email. Wanneer u dit niet bent brengt u ons dan aub op de hoogte en verwijder dit document. Aan deze email kunnen geen rechten worden ontleend. Fouten en/of wijzigingen voorbehouden. ? Vellance B.V. The information in this document is confidential. It is for the use of the intended recipient only. If you are not the intended recipient, please notify us and delete this document. No rights can be derived from this email. All rights reserved. ? Vellance B.V. From mathijs.debildt at vellance.com Fri Feb 10 09:27:17 2012 From: mathijs.debildt at vellance.com (Mathijs de Bildt) Date: Fri Feb 10 09:27:25 2012 Subject: junk/164848: Vellance B.V. In-Reply-To: <8cc516c58df0955513c0351634957a64@evilcoder.org> References: <201202091546.q19Fkh0n096705@freefall.freebsd.org> <0f5fd923e9e7c25369fef1f41e5a5931@evilcoder.org> <20120210065709.GA35625@jh> <4F34DBD9.6000603@vellance.com> <8cc516c58df0955513c0351634957a64@evilcoder.org> Message-ID: <4F34E2F3.1000508@vellance.com> Hi Remko, Thanks (bedankt :-) for the effort! We already have written an article about FreeBSD, but it needs to be reviewed internally. Can you send me a logo of FreedBSD? Kind regards, Mathijs Op 10/02/2012 10:09 AM, Remko Lodder schreef: > On 10.02.2012 09:56, Mathijs de Bildt wrote: > > Dear Mathijs, Goedemorgen, > > This seems much better indeed! beyond the target=_blanC(k?) I think > this looks much better. > I have assigned the ticket to Johann Kois, who is now leading the > Commercial Gallery, so > I am sure he will do the right thing with this :-) > > Thank you for using FreeBSD as your choice of platform, and are > willing to share that with > the world. It would be nice to see a FreeBSD reference on your site or > a logo or something > that even more clearly demonstrates that you are using FreeBSD to > power your shop :-) > > Thanks! > Remko > >> Goodmorning, >> >> I am sorry for the massive 's. I thought of linkbuilding, not >> on how it would look on your website. My apologies. >> >> I wanted to submit our company Vellance on the commercial Vendor page >> http://www.freebsd.org/commercial/isp.html [4] >> >> What is the right path to follow to get Vellance with a small piece >> of text (like the 4 lines below with just 1 :-)) on the >> commercial vendor page? >> >> Vellance B.V. is a Dutch managed hosting provider located in >> Amsterdam. Our core-business is delivering advanced > href="http://www.vellance.com" [5] title="Managed hosting " >> target="_blanc">Managed hosting platforms. Vellance primarily >> works with FreeBSD (since the 90's), so it's not a surprise our >> managed hosting platforms and Virtual Enterprise Cloud environment is >> completely based on a FreeBSD infrastructure. Next to Virtual >> Dedicated Servers we offer many products like Private Cloud >> infrastructures, Media hosting, datacentre facilities and hosting >> consultancy. >> >> With kind regards, >> >> Mathijs de Bildt >> Marketing Manager Vellance >> >> Op 10/02/2012 8:07 AM, Remko Lodder schreef: >> >>> No problem, the massive amount of hyperlinks and the added image >>> doesn't make it a very nice similiar >>> entry like the other ones. In the past I took out a few of them and >>> only pointed to one or two hyperlinks >>> (either hosting or consultancy and things like that). It would be >>> really ugly to have an entry with solely >>> 's :-) >>> >>> Thank you for your battle against unwanted records, sure we miss one >>> or two somethines (I do too!) but >>> in general life gets much better because of this, thanks! >>> Remko >>> >>> On Feb 10, 2012, at 7:57 AM, Jaakko Heinonen wrote: >>> >>>> On 2012-02-09, Remko Lodder wrote: >>>> >>>>>> Spam. >>>> >>>>> >>>> is it? Without looking at the actual links it seems to me that >>>> >>>>> blockquote> is more something for the commercial >>>> language (my native language) and >>>> >>>>> br> see why this would be spam. Wrong >>>> category: yes, wrong group: yes, >>> >>> -- >>> /" With kind regards, | remko@elvandar.org [1] >>> / Remko Lodder | remko@FreeBSD.org [2] >>> X FreeBSD | http://www.evilcoder.org [3] >>> / The Power to Serve | Quis custodiet ipsos custodes >> >> -- >> >> Mathijs de Bildt >> >> mathijs.debildt@vellance.com [6] >> >> Vellance >> >> Zocherstraat 42-1 >> >> 1054 LZ Amsterdam >> >> T: >> >> +31 (0)20 489 24 55 >> >> F: >> >> +31 (0)20 489 24 58 >> >> W: >> >> http://www.vellance.com [7] >> >> De informatie m.b.t. deze email kan vertrouwelijk van aard zijn. Het >> is alleen >> >> bedoeld voor de geadresseerde van deze email. Wanneer u dit niet bent >> >> brengt u ons dan aub op de hoogte en verwijder dit document. Aan deze >> email >> >> kunnen geen rechten worden ontleend. Fouten en/of wijzigingen >> voorbehouden. >> >> (c) Vellance B.V. >> >> The information in this document is confidential. It is for the use of >> the intended >> >> recipient only. If you are not the intended recipient, please notify >> us and delete >> >> this document. No rights can be derived from this email. All rights >> reserved. >> >> (c) Vellance B.V. >> >> Links: >> ------ >> [1] mailto:remko@elvandar.org >> [2] mailto:remko@FreeBSD.org >> [3] http://www.evilcoder.org >> [4] http://www.freebsd.org/commercial/isp.html >> [5] http://www.vellance.com >> [6] mailto:mathijs.debildt@vellance.com >> [7] http://www.vellance.com/ > -- Mathijs de Bildt mathijs.debildt@vellance.com Vellance Zocherstraat 42-1 1054 LZ Amsterdam T: +31 (0)20 489 24 55 F: +31 (0)20 489 24 58 W: http://www.vellance.com De informatie m.b.t. deze email kan vertrouwelijk van aard zijn. Het is alleen bedoeld voor de geadresseerde van deze email. Wanneer u dit niet bent brengt u ons dan aub op de hoogte en verwijder dit document. Aan deze email kunnen geen rechten worden ontleend. Fouten en/of wijzigingen voorbehouden. ? Vellance B.V. The information in this document is confidential. It is for the use of the intended recipient only. If you are not the intended recipient, please notify us and delete this document. No rights can be derived from this email. All rights reserved. ? Vellance B.V. From benamrun at yandex.ru Fri Feb 10 11:40:08 2012 From: benamrun at yandex.ru (Alexander Kirillov) Date: Fri Feb 10 11:40:15 2012 Subject: misc/164950: new bsd installer, pc-style partitions: no way to set 'bootable' ('active') flag Message-ID: <201202101139.q1ABdlYZ054188@red.freebsd.org> >Number: 164950 >Category: misc >Synopsis: new bsd installer, pc-style partitions: no way to set 'bootable' ('active') flag >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 10 11:40:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Alexander Kirillov >Release: 9.0 >Organization: private person >Environment: After-install boot problem, so no 'uname -a' available. >Description: New installer allows create more than one slices, but not allows to set 'active' or 'bootable' flag to any slice (see old sysinstall -> configure -> fdisk -> "(S)et bootable" option). In case of single slice, probably, this bit is not needed. But multiple slices sometimes is also usable. In case of multiple slices, if no slice with 'bootable' bit, "standard" mbr boot code will not be able to boot the system ("/boot/kernel/kernel not found"). "Boot manager" mbr code, i thing, will be stopped at the same point with message like "Press F1 to boot FreeBSD\nPress F2 to boot FreeBSD" (not good for server systems). Please add ability to set this bit in new bsd installer. >How-To-Repeat: In process of standard installation: -- created 2 slices in master boot record of FreeBSD (type 165), -- created bsd partitions: /, swap, /var, /tmp and /usr in 1st slice; /etc/nfsshare in 2nd slice with "standard" mbr boot code; -- proceed installation process; -- reboot. After reboot got the message "/boot/kernel/kernel not found" and can't go into installed system. >Fix: Run FreeBSD in LiveCD mode, run sysinstall and set "active partition" bit on the 1st slice. >Release-Note: >Audit-Trail: >Unformatted: From misho at elwix.org Fri Feb 10 11:50:05 2012 From: misho at elwix.org (Michael Pounov) Date: Fri Feb 10 11:50:20 2012 Subject: kern/164951: Problem build of if_ath driver with certain mode Message-ID: <201202101147.q1ABlxoH072416@red.freebsd.org> >Number: 164951 >Category: kern >Synopsis: Problem build of if_ath driver with certain mode >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 10 11:50:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Michael Pounov >Release: FreeBSD-CURRENT >Organization: ELWIX >Environment: FreeBSD elwix.aitnet.org 10.0-CURRENT FreeBSD 10.0-CURRENT #15: Wed Jan 11 15:00:02 EET 2012 root@elwix.aitnet.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: After last build of -current with my kernel config, I found crash in build process. After some investigation I found missing variable *ic if you use IEEE80211_SUPPORT_SUPERG. >How-To-Repeat: Add this line in kernel config:: options IEEE80211_SUPPORT_SUPERG >Fix: Index: sys/dev/ath/if_ath.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ath/if_ath.c,v retrieving revision 1.380 diff -r1.380 if_ath.c 4891a4892,4893 > struct ifnet *ifp = sc->sc_ifp; > struct ieee80211com *ic = ifp->if_l2com; >Release-Note: >Audit-Trail: >Unformatted: From misho at elwix.org Fri Feb 10 12:40:19 2012 From: misho at elwix.org (Michael Pounov) Date: Fri Feb 10 12:40:25 2012 Subject: kern/164957: Linux emulation freezes machine after heavy usage of cpu and memory Message-ID: <201202101239.q1ACdoc9066011@red.freebsd.org> >Number: 164957 >Category: kern >Synopsis: Linux emulation freezes machine after heavy usage of cpu and memory >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 10 12:40:15 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Michael Pounov >Release: FreeBSD 9.0-STABLE >Organization: ELWIX >Environment: FreeBSD misho.batmbg.com 9.0-STABLE FreeBSD 9.0-STABLE #1: Thu Feb 9 09:59:10 EET 2012 root@misho.batmbg.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: Linux emulation freezes machine after heavy usage of cpu and memory After randomly time, since begin cross-compiling within linux emulation environment. Machine totally freeze. I not see any kind of useful clues like memory dumps or entering into internal kernel debug DDB* ... (* remark:: I configured dump device and ddb kernel support ;-)) P.S. Products of Wind River with which I work has not native support for FreeBSD. This problem is important for me! I worked from many time like that and after upgrade from FreeBSD-8 to FreeBSD-9 I faced with this strange problem ... >How-To-Repeat: Compile into linux emulation some big source tree or I guess to see similar result when you get all physical memory and cpu time. >Fix: Fast workaround: Install virtualbox or qemu. Install inside it some linux distribution. Export your home directory through NFS and mount from linux distro home dir ;) And all your further linux related tasks you should execute into linux guest :> That is fast and ugly workaround solution ... :):) >Release-Note: >Audit-Trail: >Unformatted: From vlada at devnull.cz Fri Feb 10 14:20:13 2012 From: vlada at devnull.cz (Vladimir Kotal) Date: Fri Feb 10 14:20:19 2012 Subject: misc/164958: anonymous SSH based access to anoncvs1.freebsd.org no longer works Message-ID: <201202101419.q1AEJX6K085076@red.freebsd.org> >Number: 164958 >Category: misc >Synopsis: anonymous SSH based access to anoncvs1.freebsd.org no longer works >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 10 14:20:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Vladimir Kotal >Release: 6.1-PRERELEASE >Organization: >Environment: not relevant >Description: The instructions on http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/anoncvs.html say this: cvs -d anoncvs@anoncvs1.FreeBSD.org:/home/ncvs co src However, the server requires password authentication: $ cvs -d anoncvs@anoncvs1.FreeBSD.org:/home/ncvs co src The authenticity of host 'anoncvs1.freebsd.org (96.47.72.116)' can't be established. DSA key fingerprint is 4e:bc:48:a0:e1:27:0a:62:c8:da:45:31:d4:ad:b2:00. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'anoncvs1.freebsd.org' (DSA) to the list of known hosts. Password: ^C $ cvs -d anoncvs@anoncvs1.FreeBSD.org:/home/ncvs login cvs login: can only use `login' command with the 'pserver' method cvs [login aborted]: CVSROOT: anoncvs@anoncvs1.FreeBSD.org:/home/ncvs >How-To-Repeat: run the above command afresh >Fix: fix the anoncvs server configuration or the documentation >Release-Note: >Audit-Trail: >Unformatted: From remko at FreeBSD.org Fri Feb 10 16:47:18 2012 From: remko at FreeBSD.org (remko@FreeBSD.org) Date: Fri Feb 10 16:47:24 2012 Subject: docs/164958: mirror: anonymous SSH based access to anoncvs1.freebsd.org no longer works Message-ID: <201202101647.q1AGlIvm044979@freefall.freebsd.org> Old Synopsis: anonymous SSH based access to anoncvs1.freebsd.org no longer works New Synopsis: mirror: anonymous SSH based access to anoncvs1.freebsd.org no longer works Responsible-Changed-From-To: freebsd-bugs->freebsd-docs Responsible-Changed-By: remko Responsible-Changed-When: Fri Feb 10 16:46:21 UTC 2012 Responsible-Changed-Why: We might want to either update the documentation for this or we need to talk to the hostmaster of the device. I dont know who this is so I am going to forward this report to the hubs team as well. http://www.freebsd.org/cgi/query-pr.cgi?pr=164958 From cracauer at cons.org Fri Feb 10 19:20:13 2012 From: cracauer at cons.org (Martin Cracauer) Date: Fri Feb 10 19:20:20 2012 Subject: bin/164947: tee looses data when writing to non-blocking file descriptors Message-ID: <201202101920.q1AJKCtb081889@freefall.freebsd.org> The following reply was made to PR bin/164947; it has been noted by GNATS. From: Martin Cracauer To: Diomidis Spinellis Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/164947: tee looses data when writing to non-blocking file descriptors Date: Fri, 10 Feb 2012 14:17:36 -0500 Diomidis Spinellis wrote on Fri, Feb 10, 2012 at 07:04:41AM +0000: > > >Number: 164947 > >Category: bin > >Synopsis: tee looses data when writing to non-blocking file descriptors > >Confidential: no > >Severity: serious > >Priority: medium > >Responsible: freebsd-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Fri Feb 10 07:10:09 UTC 2012 > >Closed-Date: > >Last-Modified: > >Originator: Diomidis Spinellis > >Release: 8.1 > >Organization: > AUEB > >Environment: > FreeBSD istlab.dmst.aueb.gr 8.1-RELEASE-p6 FreeBSD 8.1-RELEASE-p6 #0: Tue Nov 1 15:16:34 EET 2011 dds@istlab.dmst.aueb.gr:/usr/obj/usr/src/sys/ISTLAB i386 > You have new mail in /var/mail/dds > > >Description: > When tee(1) tries to write to a file descriptor that has been set to non-blocking mode the write(2) call may fail with EAGAIN. Instead of retrying the operation, tee will throw that chunk of data away. > >How-To-Repeat: > Run the following: > #!/usr/local/bin/bash > # bash needed for the >(...) functionality > # ssh apparently sets O_NONBLOCK > # Remove the 2>/dev/null to see tee complaining > dd count=100000 if=/dev/zero | > tee >(ssh localhost dd of=/dev/null) 2>/dev/null | > (ssh localhost dd of=/dev/null) I don't think it is ssh that is causing this. If you use a named pipe explicitly and hook ssh up to that the error doesn't appear. Seems to be something that bash is doing there. That doesn't mean I am opposed to handling EAGAIN. The way I normally do it is a simple retry loop, not using select. I'm aware of the tradeoffs, so far I was always better off not investing a second system call into every retry. Martin > 100000+0 records in > 100000+0 records out > 51200000 bytes transferred in 9.224390 secs (5550503 bytes/sec) > 100000+0 records in > 100000+0 records out > 51200000 bytes transferred in 9.061471 secs (5650297 bytes/sec) > 92080+0 records in > 92080+0 records out > 47144960 bytes transferred in 9.101738 secs (5179776 bytes/sec) > > >Fix: > I attach a patch that fixes the problem. > > Patch attached with submission follows: > > --- tee.c 2012/02/08 14:50:10 1.1 > +++ tee.c 2012/02/08 14:59:10 > @@ -46,8 +46,10 @@ > #endif /* not lint */ > > #include > +#include > #include > #include > +#include > #include > #include > #include > @@ -64,6 +66,7 @@ > > void add(int, const char *); > static void usage(void); > +static void waitfor(int fd); > > int > main(int argc, char *argv[]) > @@ -110,9 +113,14 @@ > bp = buf; > do { > if ((wval = write(p->fd, bp, n)) == -1) { > - warn("%s", p->name); > - exitval = 1; > - break; > + if (errno == EAGAIN) { > + waitfor(p->fd); > + wval = 0; > + } else { > + warn("%s", p->name); > + exitval = 1; > + break; > + } > } > bp += wval; > } while (n -= wval); > @@ -141,3 +149,15 @@ > p->next = head; > head = p; > } > + > +/* Wait for the specified fd to be ready for writing */ > +static void > +waitfor(int fd) > +{ > + fd_set writefds; > + > + FD_ZERO(&writefds); > + FD_SET(fd, &writefds); > + if (select(fd + 1, NULL, &writefds, NULL, NULL) == -1) > + err(1, "select"); > +} > > > >Release-Note: > >Audit-Trail: > >Unformatted: > _______________________________________________ > freebsd-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-bugs > To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer/ From mckusick at FreeBSD.org Fri Feb 10 20:07:42 2012 From: mckusick at FreeBSD.org (mckusick@FreeBSD.org) Date: Fri Feb 10 20:07:48 2012 Subject: kern/158711: [usb] [panic] panic in ffs_blkfree and ffs_valloc Message-ID: <201202102007.q1AK7faL026423@freefall.freebsd.org> Synopsis: [usb] [panic] panic in ffs_blkfree and ffs_valloc Responsible-Changed-From-To: freebsd-fs->freebsd-bugs Responsible-Changed-By: mckusick Responsible-Changed-When: Fri Feb 10 20:06:52 UTC 2012 Responsible-Changed-Why: While looking through old bugs classified to the filesystem maintainers I came across this one. The panic's experienced here came about because of failed updates to the filesystem metadata that apparently were not reported back as errors to the filesystem. In any event, the bug lies in the USB subsystem and not in the filesystem, so this bug should be redirected to the USB maintainers. It may well have been fixed by now, but if not should be investigated by them. http://www.freebsd.org/cgi/query-pr.cgi?pr=158711 From remko at FreeBSD.org Fri Feb 10 20:49:41 2012 From: remko at FreeBSD.org (remko@FreeBSD.org) Date: Fri Feb 10 20:49:48 2012 Subject: kern/158711: [usb] [panic] panic in ffs_blkfree and ffs_valloc Message-ID: <201202102049.q1AKneMr064334@freefall.freebsd.org> Synopsis: [usb] [panic] panic in ffs_blkfree and ffs_valloc Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: remko Responsible-Changed-When: Fri Feb 10 20:49:18 UTC 2012 Responsible-Changed-Why: Make the transition to -usb complete. http://www.freebsd.org/cgi/query-pr.cgi?pr=158711 From dds at aueb.gr Fri Feb 10 20:50:12 2012 From: dds at aueb.gr (Diomidis Spinellis) Date: Fri Feb 10 20:50:19 2012 Subject: bin/164947: tee looses data when writing to non-blocking file descriptors Message-ID: <201202102050.q1AKoCe6064490@freefall.freebsd.org> The following reply was made to PR bin/164947; it has been noted by GNATS. From: Diomidis Spinellis To: Martin Cracauer Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/164947: tee looses data when writing to non-blocking file descriptors Date: Fri, 10 Feb 2012 22:32:02 +0200 On 10/02/2012 21:17, Martin Cracauer wrote: > Diomidis Spinellis wrote on Fri, Feb 10, 2012 at 07:04:41AM +0000: >> >>> Number: 164947 [...] >>> How-To-Repeat: >> Run the following: >> #!/usr/local/bin/bash >> # bash needed for the>(...) functionality >> # ssh apparently sets O_NONBLOCK >> # Remove the 2>/dev/null to see tee complaining >> dd count=100000 if=/dev/zero | >> tee>(ssh localhost dd of=/dev/null) 2>/dev/null | >> (ssh localhost dd of=/dev/null) > > I don't think it is ssh that is causing this. If you use a named pipe > explicitly and hook ssh up to that the error doesn't appear. Seems to > be something that bash is doing there. I think the named pipe isolates the write fd from the ssh end. If you use cat or dd instead of ssh the problem goes away. > That doesn't mean I am opposed to handling EAGAIN. > > The way I normally do it is a simple retry loop, not using select. > I'm aware of the tradeoffs, so far I was always better off not > investing a second system call into every retry. I agree this can be cheaper for many cases, but it can become very expensive for long waits. From cracauer at cons.org Fri Feb 10 21:10:14 2012 From: cracauer at cons.org (Martin Cracauer) Date: Fri Feb 10 21:10:20 2012 Subject: bin/164947: tee looses data when writing to non-blocking file descriptors Message-ID: <201202102110.q1ALADJe081542@freefall.freebsd.org> The following reply was made to PR bin/164947; it has been noted by GNATS. From: Martin Cracauer To: Diomidis Spinellis Cc: Martin Cracauer , freebsd-gnats-submit@freebsd.org Subject: Re: bin/164947: tee looses data when writing to non-blocking file descriptors Date: Fri, 10 Feb 2012 16:03:02 -0500 Diomidis Spinellis wrote on Fri, Feb 10, 2012 at 10:32:02PM +0200: > On 10/02/2012 21:17, Martin Cracauer wrote: > >Diomidis Spinellis wrote on Fri, Feb 10, 2012 at 07:04:41AM +0000: > >> > >>>Number: 164947 > [...] > > >>>How-To-Repeat: > >>Run the following: > >>#!/usr/local/bin/bash > >># bash needed for the>(...) functionality > >># ssh apparently sets O_NONBLOCK > >># Remove the 2>/dev/null to see tee complaining > >>dd count=100000 if=/dev/zero | > >>tee>(ssh localhost dd of=/dev/null) 2>/dev/null | > >>(ssh localhost dd of=/dev/null) > > > >I don't think it is ssh that is causing this. If you use a named pipe > >explicitly and hook ssh up to that the error doesn't appear. Seems to > >be something that bash is doing there. > > I think the named pipe isolates the write fd from the ssh end. If you > use cat or dd instead of ssh the problem goes away. Do you happen to know what bash does there, exactly? I was assuming it is creating a named pipe behind the user's back. I noticed that if you do ssh on the "tee part" and something else on the end of the regular pipe then things also fail. On the other hand if you put the "tee part" on something else and the regular pipe on ssh things never seem to fail. tee treats both fds the same, and obviously ssh is always setting up it's input the same way, so the difference must be in what bash is doing there with that "pipe emulation". > >That doesn't mean I am opposed to handling EAGAIN. > > > >The way I normally do it is a simple retry loop, not using select. > >I'm aware of the tradeoffs, so far I was always better off not > >investing a second system call into every retry. > > I agree this can be cheaper for many cases, but it can become very > expensive for long waits. I'd like to understand what exactly is special about the way bash implements that feature so that we can make a more educated decision about the tradeoff of using select or not. Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer/ From dds at aueb.gr Fri Feb 10 21:20:12 2012 From: dds at aueb.gr (Diomidis Spinellis) Date: Fri Feb 10 21:20:18 2012 Subject: bin/164947: tee looses data when writing to non-blocking file descriptors Message-ID: <201202102120.q1ALKCGp091543@freefall.freebsd.org> The following reply was made to PR bin/164947; it has been noted by GNATS. From: Diomidis Spinellis To: Martin Cracauer Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/164947: tee looses data when writing to non-blocking file descriptors Date: Fri, 10 Feb 2012 23:17:03 +0200 On 10/02/2012 23:03, Martin Cracauer wrote: > Diomidis Spinellis wrote on Fri, Feb 10, 2012 at 10:32:02PM +0200: >> On 10/02/2012 21:17, Martin Cracauer wrote: >>> Diomidis Spinellis wrote on Fri, Feb 10, 2012 at 07:04:41AM +0000: >>>> >>>>> Number: 164947 >> [...] >> >>>>> How-To-Repeat: >>>> Run the following: >>>> #!/usr/local/bin/bash >>>> # bash needed for the>(...) functionality >>>> # ssh apparently sets O_NONBLOCK >>>> # Remove the 2>/dev/null to see tee complaining >>>> dd count=100000 if=/dev/zero | >>>> tee>(ssh localhost dd of=/dev/null) 2>/dev/null | >>>> (ssh localhost dd of=/dev/null) >>> >>> I don't think it is ssh that is causing this. If you use a named pipe >>> explicitly and hook ssh up to that the error doesn't appear. Seems to >>> be something that bash is doing there. >> >> I think the named pipe isolates the write fd from the ssh end. If you >> use cat or dd instead of ssh the problem goes away. > > Do you happen to know what bash does there, exactly? I was assuming it > is creating a named pipe behind the user's back. It is creating a normal pipe and providing it as an argument through /dev/fd. Try ls -l /dev/fd >(wc -l) > I noticed that if you do ssh on the "tee part" and something else on > the end of the regular pipe then things also fail. On the other hand > if you put the "tee part" on something else and the regular pipe on > ssh things never seem to fail. On 8.1 release I needed both ends to run ssh to see the problem. BTW The problem also manifests itself on Mac OS X and Linux :-) From cracauer at cons.org Fri Feb 10 22:20:09 2012 From: cracauer at cons.org (Martin Cracauer) Date: Fri Feb 10 22:20:18 2012 Subject: bin/164947: tee looses data when writing to non-blocking file descriptors Message-ID: <201202102220.q1AMK8fw046595@freefall.freebsd.org> The following reply was made to PR bin/164947; it has been noted by GNATS. From: Martin Cracauer To: Diomidis Spinellis Cc: Martin Cracauer , freebsd-gnats-submit@freebsd.org Subject: Re: bin/164947: tee looses data when writing to non-blocking file descriptors Date: Fri, 10 Feb 2012 17:16:32 -0500 Diomidis Spinellis wrote on Fri, Feb 10, 2012 at 11:17:03PM +0200: > On 10/02/2012 23:03, Martin Cracauer wrote: > >Diomidis Spinellis wrote on Fri, Feb 10, 2012 at 10:32:02PM +0200: > >>On 10/02/2012 21:17, Martin Cracauer wrote: > >>>Diomidis Spinellis wrote on Fri, Feb 10, 2012 at 07:04:41AM +0000: > >>>> > >>>>>Number: 164947 > >>[...] > >> > >>>>>How-To-Repeat: > >>>>Run the following: > >>>>#!/usr/local/bin/bash > >>>># bash needed for the>(...) functionality > >>>># ssh apparently sets O_NONBLOCK > >>>># Remove the 2>/dev/null to see tee complaining > >>>>dd count=100000 if=/dev/zero | > >>>>tee>(ssh localhost dd of=/dev/null) 2>/dev/null | > >>>>(ssh localhost dd of=/dev/null) > >>> > >>>I don't think it is ssh that is causing this. If you use a named pipe > >>>explicitly and hook ssh up to that the error doesn't appear. Seems to > >>>be something that bash is doing there. > >> > >>I think the named pipe isolates the write fd from the ssh end. If you > >>use cat or dd instead of ssh the problem goes away. > > > >Do you happen to know what bash does there, exactly? I was assuming it > >is creating a named pipe behind the user's back. > > It is creating a normal pipe and providing it as an argument through > /dev/fd. Try > > ls -l /dev/fd >(wc -l) Hmmm, this is what I get in ps from this pipe: 28571 1 T 0:01.56 emacs -nw tee.c.rej 29598 1 T 0:00.00 cstream -n 10m -i- -v2 29599 1 T 0:00.00 -bash (bash) 29600 1 T 0:00.02 ssh localhost dd of=/dev/null 29603 1 T 0:00.00 tee /tmp/cracauer/sh-np-1328937382 29609 1 R+ 0:00.00 ps usr.bin/tee(wings)152% ls -l /tmp/cracauer/sh-np-1328937382 prw------- 1 cracauer wheel 0 Feb 10 16:38 /tmp/cracauer/sh-np-1328937382| Either way, I tested your patch, it fixes the problem and it's obviously correct (EAGAIN needs to be taken into account) so I'm gonna commit it. > >I noticed that if you do ssh on the "tee part" and something else on > >the end of the regular pipe then things also fail. On the other hand > >if you put the "tee part" on something else and the regular pipe on > >ssh things never seem to fail. > > On 8.1 release I needed both ends to run ssh to see the problem. > > > BTW The problem also manifests itself on Mac OS X and Linux :-) -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer/ From peterjeremy at acm.org Fri Feb 10 22:50:12 2012 From: peterjeremy at acm.org (Peter Jeremy) Date: Fri Feb 10 22:50:19 2012 Subject: kern/164970: dup2(2) incorrectly returns EMFILE instead of EBADF Message-ID: <201202102246.q1AMkAhN019307@server.vk2pj.dyndns.org> >Number: 164970 >Category: kern >Synopsis: dup2(2) incorrectly returns EMFILE instead of EBADF >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 10 22:50:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD server.vk2pj.dyndns.org 8.2-STABLE FreeBSD 8.2-STABLE #15: Thu Feb 2 11:02:29 EST 2012 root@server.vk2pj.dyndns.org:/var/obj/usr/src/sys/server amd64 >Description: http://pubs.opengroup.org/onlinepubs/9699919799/functions/dup.html states that dup2() should return EBADF if the second argumunt is "greater than or equal to {OPEN_MAX}." FreeBSD returns EMFILE in this case (this was broken in r124548). FreeBSD also returns EMFILE for fcntl(F_DUP2FD) but this operation is not defined by The Open Group. Note that GNU autotools disables the use of dup2() on FreeBSD due to this error. >How-To-Repeat: ktrace the execution of: #include int main(int argc, char **argv) { return dup2(1,1000000); } >Fix: Index: sys/kern/kern_descrip.c =================================================================== --- sys/kern/kern_descrip.c (revision 231385) +++ sys/kern/kern_descrip.c (working copy) @@ -813,7 +813,7 @@ maxfd = min((int)lim_cur(p, RLIMIT_NOFILE), maxfilesperproc); PROC_UNLOCK(p); if (new >= maxfd) - return (flags & DUP_FCNTL ? EINVAL : EMFILE); + return (flags & DUP_FCNTL ? EINVAL : EBADF); FILEDESC_XLOCK(fdp); if (old >= fdp->fd_nfiles || fdp->fd_ofiles[old] == NULL) { Index: lib/libc/sys/fcntl.2 =================================================================== --- lib/libc/sys/fcntl.2 (revision 231385) +++ lib/libc/sys/fcntl.2 (working copy) @@ -539,8 +539,6 @@ .Fa cmd is .Dv F_DUPFD -or -.Dv F_DUP2FD and the maximum number of file descriptors permitted for the process are already in use, or no file descriptors greater than or equal to Index: lib/libc/sys/dup.2 =================================================================== --- lib/libc/sys/dup.2 (revision 231385) +++ lib/libc/sys/dup.2 (working copy) @@ -128,20 +128,27 @@ .Sh ERRORS The .Fn dup -and -.Fn dup2 -system calls fail if: +system call fails if: .Bl -tag -width Er .It Bq Er EBADF The .Fa oldd -or -.Fa newd argument is not a valid active descriptor .It Bq Er EMFILE Too many descriptors are active. .El +The +.Fn dup2 +system call fails if: +.Bl -tag -width Er +.It Bq Er EBADF +The +.Fa oldd +argument is not a valid active descriptor or the +.Fa newd +argument is negative or exceeds the maximum allowable descriptor number +.El .Sh SEE ALSO .Xr accept 2 , .Xr cap_new 2 , >Release-Note: >Audit-Trail: >Unformatted: From eadler at FreeBSD.org Fri Feb 10 23:07:43 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Fri Feb 10 23:07:49 2012 Subject: kern/164970: dup2(2) incorrectly returns EMFILE instead of EBADF Message-ID: <201202102307.q1AN7g7I091423@freefall.freebsd.org> Synopsis: dup2(2) incorrectly returns EMFILE instead of EBADF Responsible-Changed-From-To: freebsd-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Fri Feb 10 23:07:42 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=164970 From listlog2011 at gmail.com Sat Feb 11 03:30:15 2012 From: listlog2011 at gmail.com (David Xu) Date: Sat Feb 11 03:30:28 2012 Subject: bin/164947: tee looses data when writing to non-blocking file descriptors Message-ID: <201202110330.q1B3UF1V033278@freefall.freebsd.org> The following reply was made to PR bin/164947; it has been noted by GNATS. From: David Xu To: Diomidis Spinellis Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/164947: tee looses data when writing to non-blocking file descriptors Date: Sat, 11 Feb 2012 11:21:38 +0800 On 2012/2/10 15:04, Diomidis Spinellis wrote: >> Number: 164947 >> Category: bin >> Synopsis: tee looses data when writing to non-blocking file descriptors >> Confidential: no >> Severity: serious >> Priority: medium >> Responsible: freebsd-bugs >> State: open >> Quarter: >> Keywords: >> Date-Required: >> Class: sw-bug >> Submitter-Id: current-users >> Arrival-Date: Fri Feb 10 07:10:09 UTC 2012 >> Closed-Date: >> Last-Modified: >> Originator: Diomidis Spinellis >> Release: 8.1 >> Organization: > AUEB >> Environment: > FreeBSD istlab.dmst.aueb.gr 8.1-RELEASE-p6 FreeBSD 8.1-RELEASE-p6 #0: Tue Nov 1 15:16:34 EET 2011 dds@istlab.dmst.aueb.gr:/usr/obj/usr/src/sys/ISTLAB i386 > You have new mail in /var/mail/dds > >> Description: > When tee(1) tries to write to a file descriptor that has been set to non-blocking mode the write(2) call may fail with EAGAIN. Instead of retrying the operation, tee will throw that chunk of data away. so tee should also work with non-blocking read, your patch is incomplete. From Devin.Teske at FreeBSD.org Sat Feb 11 07:20:08 2012 From: Devin.Teske at FreeBSD.org (dteske@vicor.com) Date: Sat Feb 11 07:20:16 2012 Subject: misc/164976: [PATCH] tzsetup(8): Fix VERBOSE reporting on results when removing _PATH_LOCALTIME for UTC option Message-ID: <201202110717.q1B7HTZn083181@red.freebsd.org> >Number: 164976 >Category: misc >Synopsis: [PATCH] tzsetup(8): Fix VERBOSE reporting on results when removing _PATH_LOCALTIME for UTC option >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 11 07:20:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: dteske@vicor.com >Release: 9.0-RELEASE >Organization: FIS Global, Inc. >Environment: FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: In SVN 230299, the hunk at line 702 (r230299) is incomplete (shown below): 705 +#ifdef VERBOSE 706 + snprintf(prompt, sizeof(prompt), 707 + "Removed %s", path_localtime); 708 +#endif 709 return (DITEM_LEAVE_MENU); Two issues: 1. prompt is assigned a value but then not used (evident by the return which occurs after assignment). 2. prompt is not global in nature and thus the value is lost upon return. Attached patch.txt: 1. Adds code to utilize the assigned value. >How-To-Repeat: Compiled with VERBOSE and select the "UTC" menu option. Before this patch, you are not informed that /etc/localtime was unlink(2)ed. This is inconsistent with selecting other options (informs you that you have created a symlink or copied a zonefile). After this patch, selecting the UTC option informs you that /etc/localtime was removed. >Fix: See attached patch.txt. Patch attached with submission follows: --- src/usr.sbin/tzsetup/tzsetup.c.orig Tue Feb 7 21:03:04 2012 +++ src/usr.sbin/tzsetup/tzsetup.c Fri Feb 10 22:59:18 2012 @@ -703,8 +703,13 @@ install_zoneinfo_file(const char *zonein return (DITEM_FAILURE | DITEM_RECREATE); } #ifdef VERBOSE + snprintf(title, sizeof(title), "Done"); snprintf(prompt, sizeof(prompt), "Removed %s", path_localtime); + if (usedialog) + dialog_msgbox(title, prompt, 8, 72, 1); + else + fprintf(stderr, "%s\n", prompt); #endif return (DITEM_LEAVE_MENU); } >Release-Note: >Audit-Trail: >Unformatted: From dds at aueb.gr Sat Feb 11 07:30:14 2012 From: dds at aueb.gr (Diomidis Spinellis) Date: Sat Feb 11 07:30:20 2012 Subject: bin/164947: tee looses data when writing to non-blocking file descriptors Message-ID: <201202110730.q1B7UDp2074053@freefall.freebsd.org> The following reply was made to PR bin/164947; it has been noted by GNATS. From: Diomidis Spinellis To: davidxu@FreeBSD.org Cc: David Xu , freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/164947: tee looses data when writing to non-blocking file descriptors Date: Sat, 11 Feb 2012 09:25:34 +0200 On 11/02/2012 05:21, David Xu wrote: > On 2012/2/10 15:04, Diomidis Spinellis wrote: >>> Number: 164947 >>> Category: bin >>> Synopsis: tee looses data when writing to non-blocking file descriptors >>> Confidential: no >>> Severity: serious >>> Priority: medium >>> Responsible: freebsd-bugs >>> State: open >>> Quarter: >>> Keywords: >>> Date-Required: >>> Class: sw-bug >>> Submitter-Id: current-users >>> Arrival-Date: Fri Feb 10 07:10:09 UTC 2012 >>> Closed-Date: >>> Last-Modified: >>> Originator: Diomidis Spinellis >>> Release: 8.1 >>> Organization: >> AUEB >>> Environment: >> FreeBSD istlab.dmst.aueb.gr 8.1-RELEASE-p6 FreeBSD 8.1-RELEASE-p6 #0: >> Tue Nov 1 15:16:34 EET 2011 >> dds@istlab.dmst.aueb.gr:/usr/obj/usr/src/sys/ISTLAB i386 >> You have new mail in /var/mail/dds >> >>> Description: >> When tee(1) tries to write to a file descriptor that has been set to >> non-blocking mode the write(2) call may fail with EAGAIN. Instead of >> retrying the operation, tee will throw that chunk of data away. > so tee should also work with non-blocking read, your patch is incomplete. You're right. By the same argument all other utilities should also be fixed. However, this may create new bugs and instability. For the specific case of tee writing I offered a test case, demonstrating the problem. This was distilled from an actual production use (scattering a dump to tape and disk). I think it's best to fix each utility as the need arises. From brde at optusnet.com.au Sat Feb 11 08:32:17 2012 From: brde at optusnet.com.au (Bruce Evans) Date: Sat Feb 11 08:32:24 2012 Subject: bin/164947: tee looses data when writing to non-blocking file descriptors In-Reply-To: <201202110330.q1B3UF1V033278@freefall.freebsd.org> References: <201202110330.q1B3UF1V033278@freefall.freebsd.org> Message-ID: <20120211185842.Y2039@besplex.bde.org> On Sat, 11 Feb 2012, David Xu wrote: > [... excessive quoting removed] > >> Description: > > When tee(1) tries to write to a file descriptor that has been set to non-blocking mode the write(2) call may fail with EAGAIN. Instead of retrying the operation, tee will throw that chunk of data away. > so tee should also work with non-blocking read, your patch is incomplete. Not just for tee :-). Just about every filter utility starting with cat(1) doesn't even dream of EAGAIN. I once helped implement a stdio that retried unconditionally after EAGAIN. This isn't quite right, but it automatically fixes any utility that makes the mistake of using stdio for anything important, starting with filter utilities that make this mistake (fortunately, not cat(1) in FreeBSD). The stdio interface also doesn't even dream of EAGAIN. Unless stdio's internals know about it and retries automatically, it has to treat EAGAIN as a fatal error like EIO, and return an error and set ferror() on the stream, and it should set errno to EAGAIN. This is what FreeBSD stdio does (no retry). Applications can check for EAGAIN and retry, but this is not portable and applications that use stdio are probably doing it because they want to be portable and/or don't want to handle the details, so they are further from dreaming about EAGAIN that the average application. The correct behaviour for stdio is probably to retry conditionally depending on a flag set by ffcntl(3new) that defaults to on. You would clear the flag in the unusual case where you actual want to use non-blocking i/o and see EAGAIN. Stdio doesn't really support non- blocking i/o, but it might work. ffcntl() could also use ordinary fcntl() to clear O_NONBLOCK. The old stdio might have retried because the system didn't support fcntl(). But even with fcntl(), clearing O_NONBLOCK should be a separate option, since this action might have side effects on the file, so you shouldn't do it unless you know what the file is, and in particular you shouldn't do it in filters. Side effects are more common than they should be, since most implementations of fcntl(... O_NONBLOCK) are buggy. They tend to set O_NONBLOCK on the device (when the file is for a device) where they should set it only on the open file. Thus they affect other opens of the device. The old stdio also couldn't have used select() to avoid possibly spinning doing i/o's. Yet another ffcntl() flag could be used to control whether select()/poll()/kqueue is used. This would be even more unportable and device-dependent (for best results). Bruce From pluknet at FreeBSD.org Sat Feb 11 16:33:08 2012 From: pluknet at FreeBSD.org (pluknet@FreeBSD.org) Date: Sat Feb 11 16:33:15 2012 Subject: kern/143521: [irq] [panic] nmi_calltrap in siopoll() Message-ID: <201202111633.q1BGX8Fe002552@freefall.freebsd.org> Synopsis: [irq] [panic] nmi_calltrap in siopoll() State-Changed-From-To: open->closed State-Changed-By: pluknet State-Changed-When: Sat Feb 11 16:32:27 UTC 2012 State-Changed-Why: Never reproduced on newer versions, so close this PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=143521 From pluknet at FreeBSD.org Sat Feb 11 16:33:45 2012 From: pluknet at FreeBSD.org (pluknet@FreeBSD.org) Date: Sat Feb 11 16:33:51 2012 Subject: kern/143837: [irq] [panic] nmi_calltrap in irq257: bce1 Message-ID: <201202111633.q1BGXisY002684@freefall.freebsd.org> Synopsis: [irq] [panic] nmi_calltrap in irq257: bce1 State-Changed-From-To: open->closed State-Changed-By: pluknet State-Changed-When: Sat Feb 11 16:33:30 UTC 2012 State-Changed-Why: Never reproduced on newer versions, so close this PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=143837 From kidhtc at gmail.com Sat Feb 11 16:50:10 2012 From: kidhtc at gmail.com (Andrey Berezhkov) Date: Sat Feb 11 16:50:16 2012 Subject: misc/164982: sysinstall core dump Message-ID: <201202111643.q1BGhF1Q055942@red.freebsd.org> >Number: 164982 >Category: misc >Synopsis: sysinstall core dump >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: Sat Feb 11 16:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Andrey Berezhkov >Release: 9.0-RELEASE >Organization: Home >Environment: nas# uname -a FreeBSD nas.local 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Just installed FreeBSD, try run sysinstall and get core dump... >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From adrian at FreeBSD.org Sun Feb 12 03:00:26 2012 From: adrian at FreeBSD.org (Adrian Chadd) Date: Sun Feb 12 03:00:32 2012 Subject: misc/165021: [ath] ath device timeout during scan/attach, if wlan_ccmp/wlan_tkip isn't loaded Message-ID: <201202120251.q1C2piEe081649@red.freebsd.org> >Number: 165021 >Category: misc >Synopsis: [ath] ath device timeout during scan/attach, if wlan_ccmp/wlan_tkip isn't loaded >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 Feb 12 03:00:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Adrian Chadd >Release: 9.0-RELEASE >Organization: >Environment: 9.0-RELEASE i386, but with -HEAD net80211/ath driver. >Description: If wlan_tkip/wlan_ccmp aren't loaded but are required by the hostap, the station mode code will: * attempt to associate * succeed * mark wlanX as UP * note that the required encryption type is not active * mark wlanX as DOWN . then 5 seconds later, "ath0: device timeout" shows up. >How-To-Repeat: * compile ath/net80211 as modules * load wlan and ath/ath_pci - but don't load wlan_wep/wlan_tkip/wlan_ccmp * attempt to associate to a network which requires encryption >Fix: After enabling debugging, I discovered this sequence of events: * a frame was being queued to the hardware - in this instance, a DISCONNECT frame; * the state would then transition to DOWN; * the IER was disabled - ie, HAL_INT_GLOBAL was cleared and something called ath_hal_intrset(); so the interrupt wouldn't occur; * the watchdog timer would kick in and call ath_reset(); * there'd be at least one completed frame in the TX queue, status OK - so it did go out. The actual cause seems to be that the state transition is going from RUN -> INIT, and this is causing interrupts to be disabled. ath_newstate() is causing a state transition to INIT, which disables interrupts and blocks the ath taskqueue. Trouble is, this doesn't stop/flush any of the currently pending hardware TX and this is what's eventually causing the watchdog timeout - although the hardware has completed the TX, the driver has disabled all methods of actually being notified about it. >Release-Note: >Audit-Trail: >Unformatted: From a at amilanov.com Sun Feb 12 14:20:07 2012 From: a at amilanov.com (Alexander Milanov) Date: Sun Feb 12 14:20:25 2012 Subject: kern/165032: brgphy(4) is not used for BCM57780 Message-ID: <201202121412.q1CECpor048267@red.freebsd.org> >Number: 165032 >Category: kern >Synopsis: brgphy(4) is not used for BCM57780 >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 Feb 12 14:20:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Alexander Milanov >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: ukphy(4) is used instead of brgphy(4) for Broadcom BCM57780. See output of dmesg: bge0: mem 0xfebf0000-0xfebfffff irq 17 at device 0.0 on pci4 bge0: attempting to allocate 1 MSI vectors (1 supported) msi: routing MSI IRQ 257 to local APIC 0 vector 54 bge0: using IRQ 257 for MSI bge0: CHIP ID 0x57780001; ASIC REV 0x57780; CHIP REV 0x577800; PCI-E bge0: Disabling fastboot bge0: Disabling fastboot miibus0: on bge0 ukphy0: PHY 1 on miibus0 ukphy0: OUI 0x001be9, model 0x0019, rev. 1 ukphy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow bge0: bpf attached >How-To-Repeat: >Fix: Add OUIs for BCM57780 to brgphy(4). The following patch also adds a check for BGE_FLAG_JUMBO, as suggested by Pyun YongHyeon[1] and as seen in OpenBSD[2]. [1] http://lists.freebsd.org/pipermail/freebsd-stable/2010-March/055793.html [2] http://www.openbsd.org/cgi-bin/cvsweb/src/sys/dev/mii/brgphy.c?rev=1.94 Patch attached with submission follows: Index: sys/dev/mii/miidevs =================================================================== --- sys/dev/mii/miidevs (revision 231557) +++ sys/dev/mii/miidevs (working copy) @@ -84,6 +84,8 @@ oui xxATHEROS 0x00c82e Atheros Communications oui xxBROADCOM 0x000818 Broadcom Corporation oui xxBROADCOM_ALT1 0x0050ef Broadcom Corporation +oui xxBROADCOM_ALT2 0x00d897 Broadcom Corporation +oui xxBROADCOM_ALT3 0x001be9 Broadcom Corporation oui xxDAVICOM 0x000676 Davicom Semiconductor oui yyINTEL 0x005500 Intel Corporation oui xxJATO 0x0007c1 Jato Technologies @@ -184,6 +186,8 @@ model BROADCOM3 BCM57765 0x0024 BCM57765 1000BASE-T media interface model BROADCOM3 BCM5720C 0x0036 BCM5720C 1000BASE-T media interface model xxBROADCOM_ALT1 BCM5906 0x0004 BCM5906 10/100baseTX media interface +model xxBROADCOM_ALT2 BCM57780 0x0019 BCM57780 10/100/1000baseT PHY +model xxBROADCOM_ALT3 BCM57780 0x0019 BCM57780 10/100/1000baseT PHY /* Cicada Semiconductor PHYs (now owned by Vitesse?) */ model xxCICADA CS8201 0x0001 Cicada CS8201 10/100/1000TX PHY Index: sys/dev/mii/brgphy.c =================================================================== --- sys/dev/mii/brgphy.c (revision 231557) +++ sys/dev/mii/brgphy.c (working copy) @@ -147,6 +147,8 @@ MII_PHY_DESC(BROADCOM3, BCM5720C), MII_PHY_DESC(BROADCOM3, BCM57765), MII_PHY_DESC(xxBROADCOM_ALT1, BCM5906), + MII_PHY_DESC(xxBROADCOM_ALT2, BCM57780), + MII_PHY_DESC(xxBROADCOM_ALT3, BCM57780), MII_PHY_END }; @@ -942,7 +944,8 @@ if (bge_sc->bge_phy_flags & BGE_PHY_JITTER_BUG) brgphy_fixup_jitter_bug(sc); - brgphy_jumbo_settings(sc, ifp->if_mtu); + if (bge_sc->bge_phy_flags & BGE_FLAG_JUMBO) + brgphy_jumbo_settings(sc, ifp->if_mtu); if ((bge_sc->bge_phy_flags & BGE_PHY_NO_WIRESPEED) == 0) brgphy_ethernet_wirespeed(sc); >Release-Note: >Audit-Trail: >Unformatted: From support at verisign.co.nz Sun Feb 12 14:50:01 2012 From: support at verisign.co.nz (RIkjICkiDhUoBlpob) Date: Sun Feb 12 14:50:07 2012 Subject: misc/165034: IuZGAgtbSkICMKHB Message-ID: <201202121441.q1CEfeHa001596@red.freebsd.org> >Number: 165034 >Category: misc >Synopsis: IuZGAgtbSkICMKHB >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 12 14:50:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: RIkjICkiDhUoBlpob >Release: vvIMiNtVjIhVNlYf >Organization: jEmVMlHdwaP >Environment: Hello!How to dowalond books? I can not understand. There is a description and size, but no links.Thank you for your reply (renatovski@mail.ru). >Description: Hello!How to dowalond books? I can not understand. There is a description and size, but no links.Thank you for your reply (renatovski@mail.ru). >How-To-Repeat: Hello!How to dowalond books? I can not understand. There is a description and size, but no links.Thank you for your reply (renatovski@mail.ru). >Fix: Hello!How to dowalond books? I can not understand. There is a description and size, but no links.Thank you for your reply (renatovski@mail.ru). >Release-Note: >Audit-Trail: >Unformatted: From eadler at FreeBSD.org Sun Feb 12 14:51:21 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Sun Feb 12 14:51:27 2012 Subject: junk/165034: IuZGAgtbSkICMKHB Message-ID: <201202121451.q1CEpKLW019654@freefall.freebsd.org> Synopsis: IuZGAgtbSkICMKHB State-Changed-From-To: open->closed State-Changed-By: eadler State-Changed-When: Sun Feb 12 14:50:34 UTC 2012 State-Changed-Why: You, you may say I'm a dreamer, but I'm not the only one I hope some day you'll join us And the world will be as one Responsible-Changed-From-To: freebsd-bugs->gnats-admin Responsible-Changed-By: eadler Responsible-Changed-When: Sun Feb 12 14:50:34 UTC 2012 Responsible-Changed-Why: You, you may say I'm a dreamer, but I'm not the only one I hope some day you'll join us And the world will be as one http://www.freebsd.org/cgi/query-pr.cgi?pr=165034 From gavin at FreeBSD.org Sun Feb 12 19:55:00 2012 From: gavin at FreeBSD.org (gavin@FreeBSD.org) Date: Sun Feb 12 19:55:07 2012 Subject: bin/164982: sysinstall(8) core dump Message-ID: <201202121955.q1CJt0GF095755@freefall.freebsd.org> Old Synopsis: sysinstall core dump New Synopsis: sysinstall(8) core dump State-Changed-From-To: open->feedback State-Changed-By: gavin State-Changed-When: Sun Feb 12 19:46:05 UTC 2012 State-Changed-Why: Hi, Can you please give some more details about what you are seeing? I caon't recreate this at all. At what stage does sysinstall crash? Do you see any menus, or does it die before it shows anything? Is there anything unusual about your system that might mean that you see this but others don't? Gavin Responsible-Changed-From-To: freebsd-bugs->gavin Responsible-Changed-By: gavin Responsible-Changed-When: Sun Feb 12 19:46:05 UTC 2012 Responsible-Changed-Why: Track http://www.freebsd.org/cgi/query-pr.cgi?pr=164982 From t42 at pobox.com Sun Feb 12 21:20:12 2012 From: t42 at pobox.com (David Talkington) Date: Sun Feb 12 21:20:18 2012 Subject: misc/165059: virtio_kmod: networking breaks with a router using virtio net driver on KVM host Message-ID: <201202122116.q1CLGTdH017656@red.freebsd.org> >Number: 165059 >Category: misc >Synopsis: virtio_kmod: networking breaks with a router using virtio net driver on KVM host >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 Feb 12 21:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: David Talkington >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD atlantis02.flyingjoke.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: When the router for a FreeBSD guest on KVM is also a FreeBSD guest on the same KVM host, and which is using the virtio network driver from virtio_kmod, ping will work between guests on different subnets, but no userland network daemons will respond. If I switch to the e1000 driver on the router, but change nothing else, everything works correctly. >How-To-Repeat: I created three FreeBSD guests on one Linux KVM host. I am using bridged networking on the KVM host, as br0 and br1. One of the guests has two network interfaces and acts as a router between two subnets, as follows: router1: br0, 192.168.1.1; br1, 192.168.2.1 client1: br0, 192.168.1.100; default route 192.168.1.1 client2: br1, 192.168.2.100; default route 192.168.2.1 I configured virtio network interfaces on all three hosts. I enabled forwarding on router1, but no packet filtering. No NAT is in use. Result: * client1 can ping client2, and vice versa. * ssh works from router1 to client1 and vice versa, and from router1 to client2 and vice versa. * ssh from client1 to client2 will fail (and vice versa); the client simply hangs indefinitely while trying to connect. * tcpdump on client2 will show that the SYN is arriving at client2 port 22, but client2 never replies, nor generates any debug or log output that suggests it ever saw the connection attempt. * any other userland network service I try (both tcp and udp) will show the same thing -- packets arrive at client2 from client1, but the daemon seems to never see them. Since ping works, I know the kernel is getting them. * If I switch back to the e1000 driver on router1, but make no other changes, and make no changes at all to client1 and client2, then ssh will work properly from client1 to client2 and the problem is resolved. * If I let router1 continue to use virtio interfaces, but move router1 onto a different KVM host -- so that the traffic from client1 to client2 must leave the KVM host via the bridged interface and then return on a different interface - then ssh will work properly from client1 to client2 and the problem is resolved. KVM guests: FreeBSD 9 virtio-kmod: 0.228301 KVM host: Ubuntu 11.10 qemu-kvm: 0.14.1 >Fix: Unknown. >Release-Note: >Audit-Trail: >Unformatted: From adrian at FreeBSD.org Sun Feb 12 23:40:06 2012 From: adrian at FreeBSD.org (Adrian Chadd) Date: Sun Feb 12 23:40:38 2012 Subject: misc/165060: [ath] vap->iv_bss race conditions causing crashes inside ath_beacon_alloc and similar Message-ID: <201202122334.q1CNYLcM064924@red.freebsd.org> >Number: 165060 >Category: misc >Synopsis: [ath] vap->iv_bss race conditions causing crashes inside ath_beacon_alloc and similar >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 Feb 12 23:40:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Adrian Chadd >Release: 9.0-RELEASE, running -HEAD ath/net80211 >Organization: >Environment: >Description: There are a variety of crashes inside the ath driver which can be traced down to races between iv->iv_bss modify/reallocate/free. >From an email I sent to freebsd-wireless: I've noticed some kernel panics in net80211/ath in -HEAD. It in all instances boils down to a now-invalid ieee80211_node - either it's partially allocated/copied, or it's been recently freed. This became increasingly obvious when doing DFS CAC, as the kernel was now changing the channel quite frequently on me whilst simulating/processing radar events. I've since found I can mostly reproduce it in the lab (when surrounded by ridiculous levels of RX intereference traffic, triggering all kinds of events) whilst creating/destroying VAPs. Now that I have debugging code in place (which as a side effect makes it very difficult now to cause a crash, let alone tickle the race condition) it's glaringly obvious what's going on. There's five contexts stuff can occur, at least in the net80211/ath case: * the swi (ie ath_intr(), ath_beacon_proc) * the ath taskqueue; * the net80211 taskqueue; * the ioctl() context, coming up from a userland process; * a callout running in the clock thread. Now, callouts should _hopefully_ be grabbing and releasing locks correctly. We've found a few spots where they weren't (leading to quite silly state races and crashes.) I'm going to ignore the obvious possible problems with multiple concurrent processes doing ioctl()s. l'm simply going to operate on the principle that the multiple-ioctl() path is fine. It seems that -obtaining- references to vap->iv_bss aren't locked. So in (say) ieee80211_sta_join1() the iv_bss node can be dereferenced and freed. If this is going on concurrently with (say) something going on in the net80211 taskqueue (eg a newstate call) then I _think_ it's possible for the ath_newstate() code to get a reference to vap->iv_bss simultaneously with it being freed in ieee80211_sta_join1() (or similar.) So the ath_newstate() code will be assigned a 'ni' that has just been freed. I've seen another crash in the net80211_ht code where it _looks_ like the bss node wasn't entirely setup - bsschan was 0xffff - so the kernel paniced hard there. This likely explains a lot of the "weird stuff" people have been reporting. I also think the bgscan race is related to this - I can't help but wonder if the bgscan callout/event is also coinciding with wpa_supplicant doing stuff, and a race condition ends up leaving the vap w/ the sta power save flag set. I don't yet have a solution to all of this - I just wanted to brain dump what I've seen thus far. >How-To-Repeat: It's unfortunately not easy to reproduce in a clean environment. It seemed very easy to reproduce in a radio-noisy environment where the RX handler is constantly being scheduled. >Fix: Someone pointed this out: Here is my brain dump. While ago usb wifi drivers had the slimier issue (race in 80211 stack). It's worth checking this rev. http://svnweb.freebsd.org/base?view=revision&revision=212127 >Release-Note: >Audit-Trail: >Unformatted: From adrian at FreeBSD.org Mon Feb 13 00:14:16 2012 From: adrian at FreeBSD.org (adrian@FreeBSD.org) Date: Mon Feb 13 00:14:23 2012 Subject: kern/165060: [ath] vap->iv_bss race conditions causing crashes inside ath_beacon_alloc and similar Message-ID: <201202130014.q1D0EG89042620@freefall.freebsd.org> Synopsis: [ath] vap->iv_bss race conditions causing crashes inside ath_beacon_alloc and similar Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Mon Feb 13 00:14:06 UTC 2012 Responsible-Changed-Why: Assign http://www.freebsd.org/cgi/query-pr.cgi?pr=165060 From amdmi3 at FreeBSD.org Mon Feb 13 01:20:06 2012 From: amdmi3 at FreeBSD.org (Dmitry Marakasov) Date: Mon Feb 13 01:20:12 2012 Subject: bin/165075: rtld error messages are missing a newline Message-ID: <20120213011727.D419B381@hades.panopticon> >Number: 165075 >Category: bin >Synopsis: rtld error messages are missing a newline >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 Feb 13 01:20:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 10 01:33:18 MSK 2012 root@hades.panopticon:/usr/obj/usr/src/sys/HADES amd64 >Description: There's a regression somewhere between 8.2 and 9.0 which removed newline characters from rtld error messages, which makes them less- or unreadable depending on shell used. >How-To-Repeat: Get rtld error (missing library for example) on 9.0-RELEASE or later. % perl -e 'print "TEST\n";' % echo $? 1 % perl; echo Shared object "libm.so.5" not found, required by "perl" % perl 2>&1 | hexdump -C 00000000 53 68 61 72 65 64 20 6f 62 6a 65 63 74 20 22 6c |Shared object "l| 00000010 69 62 6d 2e 73 6f 2e 35 22 20 6e 6f 74 20 66 6f |ibm.so.5" not fo| 00000020 75 6e 64 2c 20 72 65 71 75 69 72 65 64 20 62 79 |und, required by| 00000030 20 22 70 65 72 6c 22 | "perl"| ^^ no newline :( ^ >Fix: >Release-Note: >Audit-Trail: >Unformatted: From alen.martin6 at gmail.com Mon Feb 13 06:30:11 2012 From: alen.martin6 at gmail.com (Alen Martin) Date: Mon Feb 13 06:30:21 2012 Subject: misc/165083: Search Value is a Digital Marketing Agency offering comprehensive Internet Marketing Solutions. Our result oriented Search Marketing processes are designed to provide you business comprehensive online exposure. Message-ID: <201202130624.q1D6OZYN042687@red.freebsd.org> >Number: 165083 >Category: misc >Synopsis: Search Value is a Digital Marketing Agency offering comprehensive Internet Marketing Solutions. Our result oriented Search Marketing processes are designed to provide you business comprehensive online exposure. >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 Feb 13 06:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Alen Martin >Release: >Organization: Search Value >Environment: >Description: Search Value is a Digital Marketing Agency offering comprehensive Internet Marketing Solutions. Our result oriented Search Marketing processes are designed to provide you business comprehensive online exposure. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From eugene at zhegan.in Mon Feb 13 06:50:12 2012 From: eugene at zhegan.in (Eugene M. Zheganin) Date: Mon Feb 13 06:50:31 2012 Subject: misc/165085: nanobsd building broken Message-ID: <201202130648.q1D6mGo6077998@red.freebsd.org> >Number: 165085 >Category: misc >Synopsis: nanobsd building broken >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 13 06:50:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugene M. Zheganin >Release: 9.0-RELEASE >Organization: RealService LLC >Environment: FreeBSD zombie.hq.norma.perm.ru 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Fri Feb 10 01:44:44 YEKT 2012 emz@zombie.hq.norma.perm.ru:/usr/obj/usr/src/sys/GENERIC i386 >Description: nanobsd building broken. install is missing from the PATH, PATH looks weird. Console log: [emz@zombie:/usr/local/etc/nanobsd]# sh -x /usr/src/tools/tools/nanobsd/nanobsd.sh -b -c /usr/local/etc/nanobsd/nanobsd.conf + set -e + NANO_NAME=full + NANO_SRC=/usr/src + NANO_TOOLS=tools/tools/nanobsd + NANO_PACKAGE_DIR=/usr/src/tools/tools/nanobsd/Pkg + NANO_PACKAGE_LIST='*' + NANO_PMAKE='make -j 3' + NANO_IMGNAME=_.disk.full + CONF_BUILD=' ' + CONF_INSTALL=' ' + CONF_WORLD=' ' + NANO_KERNEL=GENERIC + NANO_MODULES='' + NANO_CUSTOMIZE='' + NANO_LATE_CUSTOMIZE='' + NANO_NEWFS='-b 4096 -f 512 -i 8192 -O1 -U' + NANO_DRIVE=ad0 + NANO_MEDIASIZE=1500000 + NANO_IMAGES=2 + NANO_INIT_IMG2=1 + NANO_CODESIZE=0 + NANO_CONFSIZE=2048 + NANO_DATASIZE=0 + NANO_RAM_ETCSIZE=10240 + NANO_RAM_TMPVARSIZE=10240 + NANO_SECTS=63 + NANO_HEADS=16 + NANO_BOOT0CFG='-o packet -s 1 -m 3' + NANO_BOOTLOADER=boot/boot0sio + NANO_BOOT2CFG=-h + NANO_MD_BACKING=file + PPLEVEL=3 + NANO_LABEL='' + uname -p + NANO_ARCH=i386 + NANO_CFGDIR='' + NANO_DATADIR='' + do_clean=true + do_kernel=true + do_world=true + do_image=true + do_copyout_partition=true + set +e + getopt bc:fhiknqvw -b -c /usr/local/etc/nanobsd/nanobsd.conf + args=' -b -c /usr/local/etc/nanobsd/nanobsd.conf --' + [ 0 -ne 0 ] + set -e + set -- -b -c /usr/local/etc/nanobsd/nanobsd.conf -- + do_world=false + do_kernel=false + shift + . /usr/local/etc/nanobsd/nanobsd.conf + NANO_NAME=alix + NANO_KERNEL=ALIX + NANO_BOOTLOADER=boot/boot0 + NANO_PMAKE='make -j 3' + CONF_WORLD='MODULES_OVERRIDE=if_vlan if_bridge if_carp if_gif if_gre if_tun' + NANO_MEDIASIZE=7372512 + NANO_HEADS=255 + NANO_SECTS=63 + customize_cmd install_packages + NANO_CUSTOMIZE=' install_packages' + customize_cmd cust_comconsole + NANO_CUSTOMIZE=' install_packages cust_comconsole' + shift + shift + shift + break + [ 0 -gt 0 ] + test -n '' + NANO_OBJ=/usr/obj/nanobsd.alix/ + test -n '' + MAKEOBJDIRPREFIX=/usr/obj/nanobsd.alix/ + test -n '' + NANO_DISKIMGDIR=/usr/obj/nanobsd.alix/ + NANO_WORLDDIR=/usr/obj/nanobsd.alix//_.w + NANO_MAKE_CONF_BUILD=/usr/obj/nanobsd.alix//make.conf.build + NANO_MAKE_CONF_INSTALL=/usr/obj/nanobsd.alix//make.conf.install + [ -d tools/tools/nanobsd ] + [ -d /usr/src/tools/tools/nanobsd ] + NANO_TOOLS=/usr/src/tools/tools/nanobsd + true + true + [ ! -z '' ] + export MAKEOBJDIRPREFIX + export NANO_ARCH + export NANO_CODESIZE + export NANO_CONFSIZE + export NANO_CUSTOMIZE + export NANO_DATASIZE + export NANO_DRIVE + export NANO_HEADS + export NANO_IMAGES + export NANO_IMGNAME + export NANO_MAKE_CONF_BUILD + export NANO_MAKE_CONF_INSTALL + export NANO_MEDIASIZE + export NANO_NAME + export NANO_NEWFS + export NANO_OBJ + export NANO_PMAKE + export NANO_SECTS + export NANO_SRC + export NANO_TOOLS + export NANO_WORLDDIR + export NANO_BOOT0CFG + export NANO_BOOTLOADER + export NANO_LABEL + exec + date +%s + NANO_STARTTIME=1329083392 + pprint 1 'NanoBSD image alix build starting' + [ 1 -le 3 ] + date +%s + runtime=0 + date -u -r 0 +%H:%M:%S + printf '%s %.1s %s\n' 00:00:00 '#####' 'NanoBSD image alix build starting' 00:00:00 # NanoBSD image alix build starting + false + pprint 2 'Skipping buildworld (as instructed)' + [ 2 -le 3 ] + date +%s + runtime=0 + date -u -r 0 +%H:%M:%S + printf '%s %.2s %s\n' 00:00:00 '#####' 'Skipping buildworld (as instructed)' 00:00:00 ## Skipping buildworld (as instructed) + false + pprint 2 'Skipping buildkernel (as instructed)' + [ 2 -le 3 ] + date +%s + runtime=1 + date -u -r 1 +%H:%M:%S + printf '%s %.2s %s\n' 00:00:01 '#####' 'Skipping buildkernel (as instructed)' 00:00:01 ## Skipping buildkernel (as instructed) + clean_world + [ /usr/obj/nanobsd.alix/ != /usr/obj/nanobsd.alix/ ] + pprint 2 'Clean and create world directory (/usr/obj/nanobsd.alix//_.w)' + [ 2 -le 3 ] + date +%s + runtime=1 + date -u -r 1 +%H:%M:%S + printf '%s %.2s %s\n' 00:00:01 '#####' 'Clean and create world directory (/usr/obj/nanobsd.alix//_.w)' 00:00:01 ## Clean and create world directory (/usr/obj/nanobsd.alix//_.w) + rm -rf /usr/obj/nanobsd.alix//_.w/ + chflags -R noschg /usr/obj/nanobsd.alix//_.w + rm -rf /usr/obj/nanobsd.alix//_.w + mkdir -p /usr/obj/nanobsd.alix//_.w + make_conf_install + pprint 2 'Construct install make.conf (/usr/obj/nanobsd.alix//make.conf.install)' + [ 2 -le 3 ] + date +%s + runtime=2 + date -u -r 2 +%H:%M:%S + printf '%s %.2s %s\n' 00:00:02 '#####' 'Construct install make.conf (/usr/obj/nanobsd.alix//make.conf.install)' 00:00:02 ## Construct install make.conf (/usr/obj/nanobsd.alix//make.conf.install) + echo 'MODULES_OVERRIDE=if_vlan if_bridge if_carp if_gif if_gre if_tun' + echo ' ' + echo SRCCONF=/dev/null + install_world + pprint 2 installworld + [ 2 -le 3 ] + date +%s + runtime=2 + date -u -r 2 +%H:%M:%S + printf '%s %.2s %s\n' 00:00:02 '#####' installworld 00:00:02 ## installworld + pprint 3 'log: /usr/obj/nanobsd.alix//_.iw' + [ 3 -le 3 ] + date +%s + runtime=2 + date -u -r 2 +%H:%M:%S + printf '%s %.3s %s\n' 00:00:02 '#####' 'log: /usr/obj/nanobsd.alix//_.iw' 00:00:02 ### log: /usr/obj/nanobsd.alix//_.iw + cd /usr/src + env TARGET_ARCH=i386 make -j 3 __MAKE_CONF=/usr/obj/nanobsd.alix//make.conf.install installworld DESTDIR=/usr/obj/nanobsd.alix//_.w Installworld log: [emz@zombie:/usr/obj/nanobsd.alix]# cat _.iw mkdir -p /tmp/install.IulAS0Ej progs=$(for prog in [ awk cap_mkdb cat chflags chmod chown date echo egrep find grep install-info ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl test true uname wc zic tzsetup; do if progpath=`which $prog`; then echo $progpath; else echo "Required tool $prog not found in PATH." >&2; exit 1; fi; done); libs=$(ldd -f "%o %p\n" -f "%o %p\n" $progs 2>/dev/null | sort -u | while read line; do $line; if [ "$2 $3" != "not found" ]; then echo $2; else echo "Required library $1 not found." >&2; exit 1; fi; done); cp $libs $progs /tmp/install.IulAS0Ej cp -R ${PATH_LOCALE:-"/usr/share/locale"} /tmp/install.IulAS0Ej/locale cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj/nanobsd.alix/ MACHINE_ARCH=i386 MACHINE=i386 CPUTYPE= GROFF_BIN_PATH=/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr/bin GROFF_FONT_PATH=/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr/share/groff_font GROFF_TMAC_PATH=/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr/share/tmac PATH=/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr/sbin:/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr/bin:/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr/games:/usr/obj/nanobsd.alix//usr/src/tmp/usr/sbin:/usr/obj/nanobsd.alix//usr/src/tmp/usr/bin:/usr/obj/nanobsd.alix//usr/src/tmp/usr/games:/tmp/install.IulAS0Ej LD_LIBRARY_PATH=/tmp/install.IulAS0Ej PATH_LOCALE=/tmp/install.IulAS0Ej/locale make -f Makefile.inc1 __MAKE_SHELL=/tmp/install.IulAS0Ej/sh reinstall; MAKEOBJDIRPREFIX=/usr/obj/nanobsd.alix/ MACHINE_ARCH=i386 MACHINE=i386 CPUTYPE= GROFF_BIN_PATH=/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr/bin GROFF_FONT_PATH=/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr /share/groff_font GROFF_TMAC_PATH=/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr/share/tmac PATH=/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr/sbin:/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr/bin:/usr/obj/nanobsd.alix//usr/src/tmp/legacy/usr/games:/usr/obj/nanobsd.alix//usr/src/tmp/usr/sbin:/usr/obj/nanobsd.alix//usr/src/tmp/usr/bin:/usr/obj/nanobsd.alix//usr/src/tmp/usr/games:/tmp/install.IulAS0Ej LD_LIBRARY_PATH=/tmp/install.IulAS0Ej PATH_LOCALE=/tmp/install.IulAS0Ej/locale rm -rf /tmp/install.IulAS0Ej -------------------------------------------------------------- >How-To-Repeat: Try to build nanobsd from 9.0. >Fix: >Release-Note: >Audit-Trail: >Unformatted: >>> Making hierarchy -------------------------------------------------------------- cd /usr/src; make -f Makefile.inc1 hierarchy cd /usr/src/etc; make distrib-dirs mtree -eU -f /usr/src/etc/mtree/BSD.root.dist -p /usr/obj/nanobsd.alix//_.w/ ./bin missing (created) ./boot missing (created) ./boot/defaults missing (created) ./boot/firmware missing (created) ./boot/kernel missing (created) ./boot/modules missing (created) ./boot/zfs missing (created) ./dev missing (created) ./etc missing (created) ./etc/X11 missing (created) ./etc/bluetooth missing (created) ./etc/defaults missing (created) ./etc/devd missing (created) ./etc/gnats missing (created) ./etc/gss missing (created) ./etc/mail missing (created) ./etc/mtree missing (created) ./etc/ntp missing (created) ./etc/pam.d missing (created) ./etc/periodic missing (created) ./etc/periodic/daily missing (created) ./etc/periodic/monthly missing (created) ./etc/periodic/security missing (created) ./etc/periodic/weekly missing (created) ./etc/ppp missing (created) ./etc/rc.d missing (created) ./etc/security missing (created) ./etc/skel missing (created) ./etc/ssh missing (created) ./etc/ssl missing (created) ./etc/zfs missing (created) ./lib missing (created) ./lib/geom missing (created) ./libexec missing (created) ./libexec/resolvconf missing (created) ./media missing (created) ./mnt missing (created) ./proc missing (created) ./rescue missing (created) ./root missing (created) ./sbin missing (created) ./tmp missing (created) ./usr missing (created) ./var missing (created) mtree -eU -f /usr/src/etc/mtree/BSD.var.dist -p /usr/obj/nanobsd.alix//_.w/var ./account missing (created) ./at missing (created) ./at/jobs missing (created) ./at/spool missing (created) ./audit missing (created) ./backups missing (created) ./cache missing (created) ./crash missing (created) ./cron missing (created) ./cron/tabs missing (created) ./db missing (created) ./db/entropy missing (created) ./db/freebsd-update missing (created) ./db/ipf missing (created) ./db/pkg missing (created) ./db/ports missing (created) ./db/portsnap missing (created) ./empty missing (created) ./games missing (created) ./heimdal missing (created) ./log missing (created) ./mail missing (created) ./msgs missing (created) ./named missing (created) ./preserve missing (created) ./run missing (created) ./run/named missing (created) ./run/ppp missing (created) ./run/wpa_supplicant missing (created) ./rwho missing (created) ./spool missing (created) ./spool/lock missing (created) ./spool/lpd missing (created) ./spool/mqueue missing (created) ./spool/opielocks missing (created) ./spool/output missing (created) ./spool/output/lpd missing (created) ./tmp missing (created) ./tmp/vi.recover missing (created) ./yp missing (created) mtree -eU -f /usr/src/etc/mtree/BSD.usr.dist -p /usr/obj/nanobsd.alix//_.w/usr ./bin missing (created) ./games missing (created) ./include missing (created) ./lib missing (created) ./lib/aout missing (created) ./lib/compat missing (created) ./lib/compat/aout missing (created) ./lib/dtrace missing (created) ./lib/engines missing (created) ./lib/i18n missing (created) ./lib32 missing (created) ./lib32/dtrace missing (created) ./lib32/i18n missing (created) ./libdata missing (created) ./libdata/gcc missing (created) ./libdata/ldscripts missing (created) ./libdata/lint missing (created) ./libexec missing (created) ./libexec/bsdinstall missing (created) ./libexec/lpr missing (created) ./libexec/lpr/ru missing (created) ./libexec/sendmail missing (created) ./libexec/sm.bin missing (created) ./local missing (created) ./obj missing (created) ./sbin missing (created) ./share missing (created) ./share/calendar missing (created) ./share/calendar/de_DE.ISO8859-1 missing (created) ./share/calendar/fr_FR.ISO8859-1 missing (created) ./share/calendar/hr_HR.ISO8859-2 missing (created) ./share/calendar/hu_HU.ISO8859-2 missing (created) ./share/calendar/ru_RU.KOI8-R missing (created) ./share/calendar/uk_UA.KOI8-U missing (created) ./share/dict missing (created) ./share/doc missing (created) ./share/doc/IPv6 missing (created) ./share/doc/atm missing (created) ./share/doc/bind9 missing (created) ./share/doc/bind9/arm missing (created) ./share/doc/bind9/misc missing (created) ./share/doc/legal missing (created) ./share/doc/legal/intel_ipw missing (created) ./share/doc/legal/intel_iwi missing (created) ./share/doc/legal/intel_wpi missing (created) ./share/doc/llvm missing (created) ./share/doc/llvm/clang missing (created) ./share/doc/ncurses missing (created) ./share/doc/ntp missing (created) ./share/doc/papers missing (created) ./share/doc/psd missing (created) ./share/doc/psd/01.cacm missing (created) ./share/doc/psd/02.implement missing (created) ./share/doc/psd/03.iosys missing (created) ./share/doc/psd/04.uprog missing (created) ./share/doc/psd/05.sysman missing (created) ./share/doc/psd/06.Clang missing (created) ./share/doc/psd/12.make missing (created) ./share/doc/psd/13.rcs missing (created) ./share/doc/psd/15.yacc missing (created) ./share/doc/psd/16.lex missing (created) ./share/doc/psd/17.m4 missing (created) ./share/doc/psd/18.gprof missing (created) ./share/doc/psd/20.ipctut missing (created) ./share/doc/psd/21.ipc missing (created) ./share/doc/psd/22.rpcgen missing (created) ./share/doc/psd/23.rpc missing (created) ./share/doc/psd/24.xdr missing (created) ./share/doc/psd/25.xdrrfc missing (created) ./share/doc/psd/26.rpcrfc missing (created) ./share/doc/psd/27.nfsrfc missing (created) ./share/doc/psd/28.cvs missing (created) ./share/doc/smm missing (created) ./share/doc/smm/01.setup missing (created) ./share/doc/smm/02.config missing (created) ./share/doc/smm/03.fsck missing (created) ./share/doc/smm/04.quotas missing (created) ./share/doc/smm/05.fastfs missing (created) ./share/doc/smm/06.nfs missing (created) ./share/doc/smm/07.lpd missing (created) ./share/doc/smm/08.sendmailop missing (created) ./share/doc/smm/11.timedop missing (created) ./share/doc/smm/12.timed missing (created) ./share/doc/smm/18.net missing (created) ./share/doc/usd missing (created) ./share/doc/usd/04.csh missing (created) ./share/doc/usd/05.dc missing (created) ./share/doc/usd/06.bc missing (created) ./share/doc/usd/07.mail missing (created) ./share/doc/usd/10.exref missing (created) ./share/doc/usd/11.edit missing (created) ./share/doc/usd/12.vi missing (created) ./share/doc/usd/13.viref missing (created) ./share/doc/usd/18.msdiffs missing (created) ./share/doc/usd/19.memacros missing (created) ./share/doc/usd/20.meref missing (created) ./share/doc/usd/21.troff missing (created) ./share/doc/usd/22.trofftut missing (created) ./share/examples missing (created) ./share/examples/BSD_daemon missing (created) ./share/examples/FreeBSD_version missing (created) ./share/examples/IPv6 missing (created) ./share/examples/bootforth missing (created) ./share/examples/cvs missing (created) ./share/examples/cvs/contrib missing (created) ./share/examples/cvsup missing (created) ./share/examples/diskless missing (created) ./share/examples/drivers missing (created) ./share/examples/etc missing (created) ./share/examples/etc/defaults missing (created) ./share/examples/find_interface missing (created) ./share/examples/hast missing (created) ./share/examples/hostapd missing (created) ./share/examples/ibcs2 missing (created) ./share/examples/indent missing (created) ./share/examples/ipfilter missing (created) ./share/examples/ipfw missing (created) ./share/examples/iscsi missing (created) ./share/examples/jails missing (created) ./share/examples/kld missing (created) ./share/examples/kld/cdev missing (created) ./share/examples/kld/cdev/module missing (created) ./share/examples/kld/cdev/test missing (created) ./share/examples/kld/dyn_sysctl missing (created) ./share/examples/kld/firmware missing (created) ./share/examples/kld/firmware/fwconsumer missing (created) ./share/examples/kld/firmware/fwimage missing (created) ./share/examples/kld/khelp missing (created) ./share/examples/kld/syscall missing (created) ./share/examples/kld/syscall/module missing (created) ./share/examples/kld/syscall/test missing (created) ./share/examples/libvgl missing (created) ./share/examples/mdoc missing (created) ./share/examples/netgraph missing (created) ./share/examples/netgraph/bluetooth missing (created) ./share/examples/nwclient missing (created) ./share/examples/pc-sysinstall missing (created) ./share/examples/perfmon missing (created) ./share/examples/pf missing (created) ./share/examples/portal missing (created) ./share/examples/ppi missing (created) ./share/examples/ppp missing (created) ./share/examples/printing missing (created) ./share/examples/scsi_target missing (created) ./share/examples/ses missing (created) ./share/examples/ses/getencstat missing (created) ./share/examples/ses/sesd missing (created) ./share/examples/ses/setencstat missing (created) ./share/examples/ses/setobjstat missing (created) ./share/examples/ses/srcs missing (created) ./share/examples/smbfs missing (created) ./share/examples/smbfs/print missing (created) ./share/examples/sunrpc missing (created) ./share/examples/sunrpc/dir missing (created) ./share/examples/sunrpc/msg missing (created) ./share/examples/sunrpc/sort missing (created) ./share/examples/tcsh missing (created) ./share/games missing (created) ./share/games/fortune missing (created) ./share/info missing (created) ./share/i18n missing (created) ./share/i18n/csmapper missing (created) ./share/i18n/csmapper/APPLE missing (created) ./share/i18n/csmapper/AST missing (created) ./share/i18n/csmapper/BIG5 missing (created) ./share/i18n/csmapper/CNS missing (created) ./share/i18n/csmapper/CP missing (created) ./share/i18n/csmapper/EBCDIC missing (created) ./share/i18n/csmapper/GB missing (created) ./share/i18n/csmapper/GEORGIAN missing (created) ./share/i18n/csmapper/ISO-8859 missing (created) ./share/i18n/csmapper/ISO646 missing (created) ./share/i18n/csmapper/JIS missing (created) ./share/i18n/csmapper/KAZAKH missing (created) ./share/i18n/csmapper/KOI missing (created) ./share/i18n/csmapper/KS missing (created) ./share/i18n/csmapper/MISC missing (created) ./share/i18n/csmapper/TCVN missing (created) ./share/i18n/esdb missing (created) ./share/i18n/esdb/APPLE missing (created) ./share/i18n/esdb/AST missing (created) ./share/i18n/esdb/BIG5 missing (created) ./share/i18n/esdb/CP missing (created) ./share/i18n/esdb/DEC missing (created) ./share/i18n/esdb/EBCDIC missing (created) ./share/i18n/esdb/EUC missing (created) ./share/i18n/esdb/GB missing (created) ./share/i18n/esdb/GEORGIAN missing (created) ./share/i18n/esdb/ISO-2022 missing (created) ./share/i18n/esdb/ISO-8859 missing (created) ./share/i18n/esdb/ISO646 missing (created) ./share/i18n/esdb/KAZAKH missing (created) ./share/i18n/esdb/KOI missing (created) ./share/i18n/esdb/MISC missing (created) ./share/i18n/esdb/TCVN missing (created) ./share/i18n/esdb/UTF missing (created) ./share/locale missing (created) ./share/locale/UTF-8 missing (created) ./share/locale/af_ZA.ISO8859-1 missing (created) ./share/locale/af_ZA.ISO8859-15 missing (created) ./share/locale/af_ZA.UTF-8 missing (created) ./share/locale/am_ET.UTF-8 missing (created) ./share/locale/be_BY.CP1131 missing (created) ./share/locale/be_BY.CP1251 missing (created) ./share/locale/be_BY.ISO8859-5 missing (created) ./share/locale/be_BY.UTF-8 missing (created) ./share/locale/bg_BG.CP1251 missing (created) ./share/locale/bg_BG.UTF-8 missing (created) ./share/locale/ca_AD.ISO8859-1 missing (created) ./share/locale/ca_ES.ISO8859-1 missing (created) ./share/locale/ca_FR.ISO8859-1 missing (created) ./share/locale/ca_IT.ISO8859-1 missing (created) ./share/locale/ca_AD.ISO8859-15 missing (created) ./share/locale/ca_ES.ISO8859-15 missing (created) ./share/locale/ca_FR.ISO8859-15 missing (created) ./share/locale/ca_IT.ISO8859-15 missing (created) ./share/locale/ca_AD.UTF-8 missing (created) ./share/locale/ca_ES.UTF-8 missing (created) ./share/locale/ca_FR.UTF-8 missing (created) ./share/locale/ca_IT.UTF-8 missing (created) ./share/locale/cs_CZ.ISO8859-2 missing (created) ./share/locale/cs_CZ.UTF-8 missing (created) ./share/locale/da_DK.ISO8859-1 missing (created) ./share/locale/da_DK.ISO8859-15 missing (created) ./share/locale/da_DK.UTF-8 missing (created) ./share/locale/de_AT.ISO8859-1 missing (created) ./share/locale/de_AT.ISO8859-15 missing (created) ./share/locale/de_AT.UTF-8 missing (created) ./share/locale/de_CH.ISO8859-1 missing (created) ./share/locale/de_CH.ISO8859-15 missing (created) ./share/locale/de_CH.UTF-8 missing (created) ./share/locale/de_DE.ISO8859-1 missing (created) ./share/locale/de_DE.ISO8859-15 missing (created) ./share/locale/de_DE.UTF-8 missing (created) ./share/locale/el_GR.ISO8859-7 missing (created) ./share/locale/el_GR.UTF-8 missing (created) ./share/locale/en_AU.ISO8859-1 missing (created) ./share/locale/en_AU.ISO8859-15 missing (created) ./share/locale/en_AU.US-ASCII missing (created) ./share/locale/en_AU.UTF-8 missing (created) ./share/locale/en_CA.ISO8859-1 missing (created) ./share/locale/en_CA.ISO8859-15 missing (created) ./share/locale/en_CA.US-ASCII missing (created) ./share/locale/en_CA.UTF-8 missing (created) ./share/locale/en_GB.ISO8859-1 missing (created) ./share/locale/en_GB.ISO8859-15 missing (created) ./share/locale/en_GB.US-ASCII missing (created) ./share/locale/en_GB.UTF-8 missing (created) ./share/locale/en_IE.UTF-8 missing (created) ./share/locale/en_NZ.ISO8859-1 missing (created) ./share/locale/en_NZ.ISO8859-15 missing (created) ./share/locale/en_NZ.US-ASCII missing (created) ./share/locale/en_NZ.UTF-8 missing (created) ./share/locale/en_US.ISO8859-1 missing (created) ./share/locale/en_US.ISO8859-15 missing (created) ./share/locale/en_US.US-ASCII missing (created) ./share/locale/en_US.UTF-8 missing (created) ./share/locale/es_ES.ISO8859-1 missing (created) ./share/locale/es_ES.ISO8859-15 missing (created) ./share/locale/es_ES.UTF-8 missing (created) ./share/locale/et_EE.ISO8859-15 missing (created) ./share/locale/et_EE.UTF-8 missing (created) ./share/locale/eu_ES.ISO8859-1 missing (created) ./share/locale/eu_ES.ISO8859-15 missing (created) ./share/locale/eu_ES.UTF-8 missing (created) ./share/locale/fi_FI.ISO8859-1 missing (created) ./share/locale/fi_FI.ISO8859-15 missing (created) ./share/locale/fi_FI.UTF-8 missing (created) ./share/locale/fr_BE.ISO8859-1 missing (created) ./share/locale/fr_BE.ISO8859-15 missing (created) ./share/locale/fr_BE.UTF-8 missing (created) ./share/locale/fr_CA.ISO8859-1 missing (created) ./share/locale/fr_CA.ISO8859-15 missing (created) ./share/locale/fr_CA.UTF-8 missing (created) ./share/locale/fr_CH.ISO8859-1 missing (created) ./share/locale/fr_CH.ISO8859-15 missing (created) ./share/locale/fr_CH.UTF-8 missing (created) ./share/locale/fr_FR.ISO8859-1 missing (created) ./share/locale/fr_FR.ISO8859-15 missing (created) ./share/locale/fr_FR.UTF-8 missing (created) ./share/locale/he_IL.UTF-8 missing (created) ./share/locale/hi_IN.ISCII-DEV missing (created) ./share/locale/hr_HR.ISO8859-2 missing (created) ./share/locale/hr_HR.UTF-8 missing (created) ./share/locale/hu_HU.ISO8859-2 missing (created) ./share/locale/hu_HU.UTF-8 missing (created) ./share/locale/hy_AM.ARMSCII-8 missing (created) ./share/locale/hy_AM.UTF-8 missing (created) ./share/locale/is_IS.ISO8859-1 missing (created) ./share/locale/is_IS.ISO8859-15 missing (created) ./share/locale/is_IS.UTF-8 missing (created) ./share/locale/it_CH.ISO8859-1 missing (created) ./share/locale/it_CH.ISO8859-15 missing (created) ./share/locale/it_CH.UTF-8 missing (created) ./share/locale/it_IT.ISO8859-1 missing (created) ./share/locale/it_IT.ISO8859-15 missing (created) ./share/locale/it_IT.UTF-8 missing (created) ./share/locale/ja_JP.SJIS missing (created) ./share/locale/ja_JP.UTF-8 missing (created) ./share/locale/ja_JP.eucJP missing (created) ./share/locale/kk_KZ.PT154 missing (created) ./share/locale/kk_KZ.UTF-8 missing (created) ./share/locale/ko_KR.CP949 missing (created) ./share/locale/ko_KR.UTF-8 missing (created) ./share/locale/ko_KR.eucKR missing (created) ./share/locale/la_LN.ISO8859-1 missing (created) ./share/locale/la_LN.ISO8859-13 missing (created) ./share/locale/la_LN.ISO8859-15 missing (created) ./share/locale/la_LN.ISO8859-2 missing (created) ./share/locale/la_LN.ISO8859-4 missing (created) ./share/locale/la_LN.US-ASCII missing (created) ./share/locale/lt_LT.ISO8859-13 missing (created) ./share/locale/lt_LT.ISO8859-4 missing (created) ./share/locale/lt_LT.UTF-8 missing (created) ./share/locale/lv_LV.ISO8859-13 missing (created) ./share/locale/lv_LV.UTF-8 missing (created) ./share/locale/mn_MN.UTF-8 missing (created) ./share/locale/nb_NO.ISO8859-1 missing (created) ./share/locale/nb_NO.ISO8859-15 missing (created) ./share/locale/nb_NO.UTF-8 missing (created) ./share/locale/nl_BE.ISO8859-1 missing (created) ./share/locale/nl_BE.ISO8859-15 missing (created) ./share/locale/nl_BE.UTF-8 missing (created) ./share/locale/nl_NL.ISO8859-1 missing (created) ./share/locale/nl_NL.ISO8859-15 missing (created) ./share/locale/nl_NL.UTF-8 missing (created) ./share/locale/nn_NO.ISO8859-1 missing (created) ./share/locale/nn_NO.ISO8859-15 missing (created) ./share/locale/nn_NO.UTF-8 missing (created) ./share/locale/no_NO.ISO8859-1 missing (created) ./share/locale/no_NO.ISO8859-15 missing (created) ./share/locale/no_NO.UTF-8 missing (created) ./share/locale/pl_PL.ISO8859-2 missing (created) ./share/locale/pl_PL.UTF-8 missing (created) ./share/locale/pt_BR.ISO8859-1 missing (created) ./share/locale/pt_BR.UTF-8 missing (created) ./share/locale/pt_PT.ISO8859-1 missing (created) ./share/locale/pt_PT.ISO8859-15 missing (created) ./share/locale/pt_PT.UTF-8 missing (created) ./share/locale/ro_RO.ISO8859-2 missing (created) ./share/locale/ro_RO.UTF-8 missing (created) ./share/locale/ru_RU.CP1251 missing (created) ./share/locale/ru_RU.CP866 missing (created) ./share/locale/ru_RU.ISO8859-5 missing (created) ./share/locale/ru_RU.KOI8-R missing (created) ./share/locale/ru_RU.UTF-8 missing (created) ./share/locale/sk_SK.ISO8859-2 missing (created) ./share/locale/sk_SK.UTF-8 missing (created) ./share/locale/sl_SI.ISO8859-2 missing (created) ./share/locale/sl_SI.UTF-8 missing (created) ./share/locale/sr_YU.ISO8859-2 missing (created) ./share/locale/sr_YU.ISO8859-5 missing (created) ./share/locale/sr_YU.UTF-8 missing (created) ./share/locale/sv_SE.ISO8859-1 missing (created) ./share/locale/sv_SE.ISO8859-15 missing (created) ./share/locale/sv_SE.UTF-8 missing (created) ./share/locale/tr_TR.ISO8859-9 missing (created) ./share/locale/tr_TR.UTF-8 missing (created) ./share/locale/uk_UA.CP1251 missing (created) ./share/locale/uk_UA.ISO8859-5 missing (created) ./share/locale/uk_UA.KOI8-U missing (created) ./share/locale/uk_UA.UTF-8 missing (created) ./share/locale/zh_CN.GB18030 missing (created) ./share/locale/zh_CN.GB2312 missing (created) ./share/locale/zh_CN.GBK missing (created) ./share/locale/zh_CN.UTF-8 missing (created) ./share/locale/zh_CN.eucCN missing (created) ./share/locale/zh_HK.Big5HKSCS missing (created) ./share/locale/zh_HK.UTF-8 missing (created) ./share/locale/zh_TW.Big5 missing (created) ./share/locale/zh_TW.UTF-8 missing (created) ./share/man missing (created) ./share/man/cat1 missing (created) ./share/man/cat1aout missing (created) ./share/man/cat2 missing (created) ./share/man/cat3 missing (created) ./share/man/cat4 missing (created) ./share/man/cat4/amd64 missing (created) ./share/man/cat4/arm missing (created) ./share/man/cat4/i386 missing (created) ./share/man/cat4/powerpc missing (created) ./share/man/cat4/sparc64 missing (created) ./share/man/cat5 missing (created) ./share/man/cat6 missing (created) ./share/man/cat7 missing (created) ./share/man/cat8 missing (created) ./share/man/cat8/amd64 missing (created) ./share/man/cat8/i386 missing (created) ./share/man/cat8/powerpc missing (created) ./share/man/cat8/sparc64 missing (created) ./share/man/cat9 missing (created) ./share/man/en.ISO8859-1 missing (created) ./share/man/en.ISO8859-1/cat1 missing (created) ./share/man/en.ISO8859-1/cat1aout missing (created) ./share/man/en.ISO8859-1/cat2 missing (created) ./share/man/en.ISO8859-1/cat3 missing (created) ./share/man/en.ISO8859-1/cat4 missing (created) ./share/man/en.ISO8859-1/cat4/amd64 missing (created) ./share/man/en.ISO8859-1/cat4/arm missing (created) ./share/man/en.ISO8859-1/cat4/i386 missing (created) ./share/man/en.ISO8859-1/cat4/powerpc missing (created) ./share/man/en.ISO8859-1/cat4/sparc64 missing (created) ./share/man/en.ISO8859-1/cat5 missing (created) ./share/man/en.ISO8859-1/cat6 missing (created) ./share/man/en.ISO8859-1/cat7 missing (created) ./share/man/en.ISO8859-1/cat8 missing (created) ./share/man/en.ISO8859-1/cat8/amd64 missing (created) ./share/man/en.ISO8859-1/cat8/i386 missing (created) ./share/man/en.ISO8859-1/cat8/powerpc missing (created) ./share/man/en.ISO8859-1/cat8/sparc64 missing (created) ./share/man/en.ISO8859-1/cat9 missing (created) ./share/man/en.UTF-8 missing (created) ./share/man/en.UTF-8/cat1 missing (created) ./share/man/en.UTF-8/cat1aout missing (created) ./share/man/en.UTF-8/cat2 missing (created) ./share/man/en.UTF-8/cat3 missing (created) ./share/man/en.UTF-8/cat4 missing (created) ./share/man/en.UTF-8/cat4/amd64 missing (created) ./share/man/en.UTF-8/cat4/arm missing (created) ./share/man/en.UTF-8/cat4/i386 missing (created) ./share/man/en.UTF-8/cat4/powerpc missing (created) ./share/man/en.UTF-8/cat4/sparc64 missing (created) ./share/man/en.UTF-8/cat5 missing (created) ./share/man/en.UTF-8/cat6 missing (created) ./share/man/en.UTF-8/cat7 missing (created) ./share/man/en.UTF-8/cat8 missing (created) ./share/man/en.UTF-8/cat8/amd64 missing (created) ./share/man/en.UTF-8/cat8/i386 missing (created) ./share/man/en.UTF-8/cat8/powerpc missing (created) ./share/man/en.UTF-8/cat8/sparc64 missing (created) ./share/man/en.UTF-8/cat9 missing (created) ./share/man/ja missing (created) ./share/man/ja/cat1 missing (created) ./share/man/ja/cat2 missing (created) ./share/man/ja/cat3 missing (created) ./share/man/ja/cat4 missing (created) ./share/man/ja/cat5 missing (created) ./share/man/ja/cat6 missing (created) ./share/man/ja/cat7 missing (created) ./share/man/ja/cat8 missing (created) ./share/man/ja/cat9 missing (created) ./share/man/ja/man1 missing (created) ./share/man/ja/man2 missing (created) ./share/man/ja/man3 missing (created) ./share/man/ja/man4 missing (created) ./share/man/ja/man5 missing (created) ./share/man/ja/man6 missing (created) ./share/man/ja/man7 missing (created) ./share/man/ja/man8 missing (created) ./share/man/ja/man9 missing (created) ./share/man/man1 missing (created) ./share/man/man1aout missing (created) ./share/man/man2 missing (created) ./share/man/man3 missing (created) ./share/man/man4 missing (created) ./share/man/man4/amd64 missing (created) ./share/man/man4/arm missing (created) ./share/man/man4/i386 missing (created) ./share/man/man4/powerpc missing (created) ./share/man/man4/sparc64 missing (created) ./share/man/man5 missing (created) ./share/man/man6 missing (created) ./share/man/man7 missing (created) ./share/man/man8 missing (created) ./share/man/man8/amd64 missing (created) ./share/man/man8/i386 missing (created) ./share/man/man8/powerpc missing (created) ./share/man/man8/sparc64 missing (created) ./share/man/man9 missing (created) ./share/misc missing (created) ./share/misc/fonts missing (created) ./share/mk missing (created) ./share/nls missing (created) ./share/nls/C missing (created) ./share/nls/af_ZA.ISO8859-1 missing (created) ./share/nls/af_ZA.ISO8859-15 missing (created) ./share/nls/af_ZA.UTF-8 missing (created) ./share/nls/am_ET.UTF-8 missing (created) ./share/nls/be_BY.CP1131 missing (created) ./share/nls/be_BY.CP1251 missing (created) ./share/nls/be_BY.ISO8859-5 missing (created) ./share/nls/be_BY.UTF-8 missing (created) ./share/nls/bg_BG.CP1251 missing (created) ./share/nls/bg_BG.UTF-8 missing (created) ./share/nls/ca_ES.ISO8859-1 missing (created) ./share/nls/ca_ES.ISO8859-15 missing (created) ./share/nls/ca_ES.UTF-8 missing (created) ./share/nls/cs_CZ.ISO8859-2 missing (created) ./share/nls/cs_CZ.UTF-8 missing (created) ./share/nls/da_DK.ISO8859-1 missing (created) ./share/nls/da_DK.ISO8859-15 missing (created) ./share/nls/da_DK.UTF-8 missing (created) ./share/nls/de_AT.ISO8859-1 missing (created) ./share/nls/de_AT.ISO8859-15 missing (created) ./share/nls/de_AT.UTF-8 missing (created) ./share/nls/de_CH.ISO8859-1 missing (created) ./share/nls/de_CH.ISO8859-15 missing (created) ./share/nls/de_CH.UTF-8 missing (created) ./share/nls/de_DE.ISO8859-1 missing (created) ./share/nls/de_DE.ISO8859-15 missing (created) ./share/nls/de_DE.UTF-8 missing (created) ./share/nls/el_GR.ISO8859-7 missing (created) ./share/nls/el_GR.UTF-8 missing (created) ./share/nls/en_AU.ISO8859-1 missing (created) ./share/nls/en_AU.ISO8859-15 missing (created) ./share/nls/en_AU.US-ASCII missing (created) ./share/nls/en_AU.UTF-8 missing (created) ./share/nls/en_CA.ISO8859-1 missing (created) ./share/nls/en_CA.ISO8859-15 missing (created) ./share/nls/en_CA.US-ASCII missing (created) ./share/nls/en_CA.UTF-8 missing (created) ./share/nls/en_GB.ISO8859-1 missing (created) ./share/nls/en_GB.ISO8859-15 missing (created) ./share/nls/en_GB.US-ASCII missing (created) ./share/nls/en_GB.UTF-8 missing (created) ./share/nls/en_IE.UTF-8 missing (created) ./share/nls/en_NZ.ISO8859-1 missing (created) ./share/nls/en_NZ.ISO8859-15 missing (created) ./share/nls/en_NZ.US-ASCII missing (created) ./share/nls/en_NZ.UTF-8 missing (created) ./share/nls/en_US.ISO8859-1 missing (created) ./share/nls/en_US.ISO8859-15 missing (created) ./share/nls/en_US.UTF-8 missing (created) ./share/nls/es_ES.ISO8859-1 missing (created) ./share/nls/es_ES.ISO8859-15 missing (created) ./share/nls/es_ES.UTF-8 missing (created) ./share/nls/et_EE.ISO8859-15 missing (created) ./share/nls/et_EE.UTF-8 missing (created) ./share/nls/fi_FI.ISO8859-1 missing (created) ./share/nls/fi_FI.ISO8859-15 missing (created) ./share/nls/fi_FI.UTF-8 missing (created) ./share/nls/fr_BE.ISO8859-1 missing (created) ./share/nls/fr_BE.ISO8859-15 missing (created) ./share/nls/fr_BE.UTF-8 missing (created) ./share/nls/fr_CA.ISO8859-1 missing (created) ./share/nls/fr_CA.ISO8859-15 missing (created) ./share/nls/fr_CA.UTF-8 missing (created) ./share/nls/fr_CH.ISO8859-1 missing (created) ./share/nls/fr_CH.ISO8859-15 missing (created) ./share/nls/fr_CH.UTF-8 missing (created) ./share/nls/fr_FR.ISO8859-1 missing (created) ./share/nls/fr_FR.ISO8859-15 missing (created) ./share/nls/fr_FR.UTF-8 missing (created) ./share/nls/gl_ES.ISO8859-1 missing (created) ./share/nls/he_IL.UTF-8 missing (created) ./share/nls/hi_IN.ISCII-DEV missing (created) ./share/nls/hr_HR.ISO8859-2 missing (created) ./share/nls/hr_HR.UTF-8 missing (created) ./share/nls/hu_HU.ISO8859-2 missing (created) ./share/nls/hu_HU.UTF-8 missing (created) ./share/nls/hy_AM.ARMSCII-8 missing (created) ./share/nls/hy_AM.UTF-8 missing (created) ./share/nls/is_IS.ISO8859-1 missing (created) ./share/nls/is_IS.ISO8859-15 missing (created) ./share/nls/is_IS.UTF-8 missing (created) ./share/nls/it_CH.ISO8859-1 missing (created) ./share/nls/it_CH.ISO8859-15 missing (created) ./share/nls/it_CH.UTF-8 missing (created) ./share/nls/it_IT.ISO8859-1 missing (created) ./share/nls/it_IT.ISO8859-15 missing (created) ./share/nls/it_IT.UTF-8 missing (created) ./share/nls/ja_JP.SJIS missing (created) ./share/nls/ja_JP.UTF-8 missing (created) ./share/nls/ja_JP.eucJP missing (created) ./share/nls/kk_KZ.PT154 missing (created) ./share/nls/kk_KZ.UTF-8 missing (created) ./share/nls/ko_KR.CP949 missing (created) ./share/nls/ko_KR.UTF-8 missing (created) ./share/nls/ko_KR.eucKR missing (created) ./share/nls/la_LN.ISO8859-1 missing (created) ./share/nls/la_LN.ISO8859-13 missing (created) ./share/nls/la_LN.ISO8859-15 missing (created) ./share/nls/la_LN.ISO8859-2 missing (created) ./share/nls/la_LN.ISO8859-4 missing (created) ./share/nls/la_LN.US-ASCII missing (created) ./share/nls/lt_LT.ISO8859-13 missing (created) ./share/nls/lt_LT.ISO8859-4 missing (created) ./share/nls/lt_LT.UTF-8 missing (created) ./share/nls/lv_LV.ISO8859-13 missing (created) ./share/nls/lv_LV.UTF-8 missing (created) ./share/nls/mn_MN.UTF-8 missing (created) ./share/nls/nl_BE.ISO8859-1 missing (created) ./share/nls/nl_BE.ISO8859-15 missing (created) ./share/nls/nl_BE.UTF-8 missing (created) ./share/nls/nl_NL.ISO8859-1 missing (created) ./share/nls/nl_NL.ISO8859-15 missing (created) ./share/nls/nl_NL.UTF-8 missing (created) ./share/nls/no_NO.ISO8859-1 missing (created) ./share/nls/no_NO.ISO8859-15 missing (created) ./share/nls/no_NO.UTF-8 missing (created) ./share/nls/pl_PL.ISO8859-2 missing (created) ./share/nls/pl_PL.UTF-8 missing (created) ./share/nls/pt_BR.ISO8859-1 missing (created) ./share/nls/pt_BR.UTF-8 missing (created) ./share/nls/pt_PT.ISO8859-1 missing (created) ./share/nls/pt_PT.ISO8859-15 missing (created) ./share/nls/pt_PT.UTF-8 missing (created) ./share/nls/ro_RO.ISO8859-2 missing (created) ./share/nls/ro_RO.UTF-8 missing (created) ./share/nls/ru_RU.CP1251 missing (created) ./share/nls/ru_RU.CP866 missing (created) ./share/nls/ru_RU.ISO8859-5 missing (created) ./share/nls/ru_RU.KOI8-R missing (created) ./share/nls/ru_RU.UTF-8 missing (created) ./share/nls/sk_SK.ISO8859-2 missing (created) ./share/nls/sk_SK.UTF-8 missing (created) ./share/nls/sl_SI.ISO8859-2 missing (created) ./share/nls/sl_SI.UTF-8 missing (created) ./share/nls/sr_YU.ISO8859-2 missing (created) ./share/nls/sr_YU.ISO8859-5 missing (created) ./share/nls/sr_YU.UTF-8 missing (created) ./share/nls/sv_SE.ISO8859-1 missing (created) ./share/nls/sv_SE.ISO8859-15 missing (created) ./share/nls/sv_SE.UTF-8 missing (created) ./share/nls/tr_TR.ISO8859-9 missing (created) ./share/nls/tr_TR.UTF-8 missing (created) ./share/nls/uk_UA.ISO8859-5 missing (created) ./share/nls/uk_UA.KOI8-U missing (created) ./share/nls/uk_UA.UTF-8 missing (created) ./share/nls/zh_CN.GB18030 missing (created) ./share/nls/zh_CN.GB2312 missing (created) ./share/nls/zh_CN.GBK missing (created) ./share/nls/zh_CN.UTF-8 missing (created) ./share/nls/zh_CN.eucCN missing (created) ./share/nls/zh_HK.Big5HKSCS missing (created) ./share/nls/zh_HK.UTF-8 missing (created) ./share/nls/zh_TW.Big5 missing (created) ./share/nls/zh_TW.UTF-8 missing (created) ./share/openssl missing (created) ./share/openssl/man missing (created) ./share/openssl/man/cat1 missing (created) ./share/openssl/man/cat3 missing (created) ./share/openssl/man/en.ISO8859-1 missing (created) ./share/openssl/man/en.ISO8859-1/cat1 missing (created) ./share/openssl/man/en.ISO8859-1/cat3 missing (created) ./share/openssl/man/man1 missing (created) ./share/openssl/man/man3 missing (created) ./share/pc-sysinstall missing (created) ./share/pc-sysinstall/backend missing (created) ./share/pc-sysinstall/backend-partmanager missing (created) ./share/pc-sysinstall/backend-query missing (created) ./share/pc-sysinstall/conf missing (created) ./share/pc-sysinstall/conf/license missing (created) ./share/pc-sysinstall/doc missing (created) ./share/security missing (created) ./share/sendmail missing (created) ./share/skel missing (created) ./share/snmp missing (created) ./share/snmp/defs missing (created) ./share/snmp/mibs missing (created) ./share/syscons missing (created) ./share/syscons/fonts missing (created) ./share/syscons/keymaps missing (created) ./share/syscons/scrnmaps missing (created) ./share/tabset missing (created) ./share/vi missing (created) ./share/vi/catalog missing (created) ./share/zoneinfo missing (created) ./share/zoneinfo/Africa missing (created) ./share/zoneinfo/America missing (created) ./share/zoneinfo/America/Argentina missing (created) ./share/zoneinfo/America/Indiana missing (created) ./share/zoneinfo/America/Kentucky missing (created) ./share/zoneinfo/America/North_Dakota missing (created) ./share/zoneinfo/Antarctica missing (created) ./share/zoneinfo/Arctic missing (created) ./share/zoneinfo/Asia missing (created) ./share/zoneinfo/Atlantic missing (created) ./share/zoneinfo/Australia missing (created) ./share/zoneinfo/Etc missing (created) ./share/zoneinfo/Europe missing (created) ./share/zoneinfo/Indian missing (created) ./share/zoneinfo/Pacific missing (created) ./share/zoneinfo/SystemV missing (created) ./src missing (created) mtree -eU -f /usr/src/etc/mtree/BSD.include.dist -p /usr/obj/nanobsd.alix//_.w/usr/include ./altq missing (created) ./arpa missing (created) ./bsm missing (created) ./bsnmp missing (created) ./c++ missing (created) ./c++/4.2 missing (created) ./c++/4.2/backward missing (created) ./c++/4.2/bits missing (created) ./c++/4.2/debug missing (created) ./c++/4.2/ext missing (created) ./c++/4.2/ext/pb_ds missing (created) ./c++/4.2/ext/pb_ds/detail missing (created) ./c++/4.2/ext/pb_ds/detail/basic_tree_policy missing (created) ./c++/4.2/ext/pb_ds/detail/bin_search_tree_ missing (created) ./c++/4.2/ext/pb_ds/detail/binary_heap_ missing (created) ./c++/4.2/ext/pb_ds/detail/binomial_heap_ missing (created) ./c++/4.2/ext/pb_ds/detail/binomial_heap_base_ missing (created) ./c++/4.2/ext/pb_ds/detail/cc_hash_table_map_ missing (created) ./c++/4.2/ext/pb_ds/detail/eq_fn missing (created) ./c++/4.2/ext/pb_ds/detail/gp_hash_table_map_ missing (created) ./c++/4.2/ext/pb_ds/detail/hash_fn missing (created) ./c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_ missing (created) ./c++/4.2/ext/pb_ds/detail/list_update_map_ missing (created) ./c++/4.2/ext/pb_ds/detail/list_update_policy missing (created) ./c++/4.2/ext/pb_ds/detail/ov_tree_map_ missing (created) ./c++/4.2/ext/pb_ds/detail/pairing_heap_ missing (created) ./c++/4.2/ext/pb_ds/detail/pat_trie_ missing (created) ./c++/4.2/ext/pb_ds/detail/rb_tree_map_ missing (created) ./c++/4.2/ext/pb_ds/detail/rc_binomial_heap_ missing (created) ./c++/4.2/ext/pb_ds/detail/resize_policy missing (created) ./c++/4.2/ext/pb_ds/detail/splay_tree_ missing (created) ./c++/4.2/ext/pb_ds/detail/thin_heap_ missing (created) ./c++/4.2/ext/pb_ds/detail/tree_policy missing (created) ./c++/4.2/ext/pb_ds/detail/trie_policy missing (created) ./c++/4.2/ext/pb_ds/detail/unordered_iterator missing (created) ./c++/4.2/tr1 missing (created) ./cam missing (created) ./cam/ata missing (created) ./cam/scsi missing (created) ./clang missing (created) ./clang/3.0 missing (created) ./crypto missing (created) ./dev missing (created) ./dev/acpica missing (created) ./dev/an missing (created) ./dev/bktr missing (created) ./dev/ciss missing (created) ./dev/firewire missing (created) ./dev/hwpmc missing (created) ./dev/ic missing (created) ./dev/ieee488 missing (created) ./dev/iicbus missing (created) ./dev/io missing (created) ./dev/lmc missing (created) ./dev/mfi missing (created) ./dev/mpt missing (created) ./dev/mpt/mpilib missing (created) ./dev/ofw missing (created) ./dev/pbio missing (created) ./dev/powermac_nvram missing (created) ./dev/ppbus missing (created) ./dev/smbus missing (created) ./dev/speaker missing (created) ./dev/usb missing (created) ./dev/utopia missing (created) ./dev/vkbd missing (created) ./dev/wi missing (created) ./edit missing (created) ./edit/readline missing (created) ./fs missing (created) ./fs/devfs missing (created) ./fs/fdescfs missing (created) ./fs/fifofs missing (created) ./fs/msdosfs missing (created) ./fs/nfs missing (created) ./fs/ntfs missing (created) ./fs/nullfs missing (created) ./fs/nwfs missing (created) ./fs/portalfs missing (created) ./fs/procfs missing (created) ./fs/smbfs missing (created) ./fs/udf missing (created) ./fs/unionfs missing (created) ./gcc missing (created) ./gcc/4.2 missing (created) ./geom missing (created) ./geom/cache missing (created) ./geom/concat missing (created) ./geom/eli missing (created) ./geom/gate missing (created) ./geom/journal missing (created) ./geom/label missing (created) ./geom/mirror missing (created) ./geom/mountver missing (created) ./geom/multipath missing (created) ./geom/nop missing (created) ./geom/raid missing (created) ./geom/raid3 missing (created) ./geom/shsec missing (created) ./geom/stripe missing (created) ./geom/virstor missing (created) ./gnu missing (created) ./gnu/posix missing (created) ./gpib missing (created) ./gssapi missing (created) ./infiniband missing (created) ./infiniband/complib missing (created) ./infiniband/iba missing (created) ./infiniband/opensm missing (created) ./infiniband/vendor missing (created) ./isofs missing (created) ./isofs/cd9660 missing (created) ./kadm5 missing (created) ./libmilter missing (created) ./lwres missing (created) ./lzma missing (created) ./machine missing (created) ./machine/pc missing (created) ./net missing (created) ./net80211 missing (created) ./netatalk missing (created) ./netgraph missing (created) ./netgraph/atm missing (created) ./netgraph/bluetooth missing (created) ./netgraph/bluetooth/include missing (created) ./netgraph/netflow missing (created) ./netinet missing (created) ./netinet6 missing (created) ./netipsec missing (created) ./netipx missing (created) ./netnatm missing (created) ./netnatm/api missing (created) ./netnatm/msg missing (created) ./netnatm/saal missing (created) ./netnatm/sig missing (created) ./netncp missing (created) ./netsmb missing (created) ./nfs missing (created) ./nfsclient missing (created) ./nfsserver missing (created) ./openssl missing (created) ./pcap missing (created) ./protocols missing (created) ./rdma missing (created) ./readline missing (created) ./rpc missing (created) ./rpcsvc missing (created) ./security missing (created) ./security/audit missing (created) ./security/mac_biba missing (created) ./security/mac_bsdextended missing (created) ./security/mac_lomac missing (created) ./security/mac_mls missing (created) ./security/mac_partition missing (created) ./ssp missing (created) ./sys missing (created) ./ufs missing (created) ./ufs/ffs missing (created) ./ufs/ufs missing (created) ./vm missing (created) mtree -deU -f /usr/src/etc/mtree/BIND.chroot.dist -p /usr/obj/nanobsd.alix//_.w/var/named ./dev missing (created) ./etc missing (created) ./etc/namedb missing (created) ./etc/namedb/dynamic missing (created) ./etc/namedb/master missing (created) ./etc/namedb/slave missing (created) ./etc/namedb/working missing (created) ./var missing (created) ./var/dump missing (created) ./var/log missing (created) ./var/run missing (created) ./var/run/named missing (created) ./var/stats missing (created) mtree -deU -f /usr/src/etc/mtree/BSD.groff.dist -p /usr/obj/nanobsd.alix//_.w/usr ./share/groff_font missing (created) ./share/groff_font/devX100 missing (created) ./share/groff_font/devX100-12 missing (created) ./share/groff_font/devX75 missing (created) ./share/groff_font/devX75-12 missing (created) ./share/groff_font/devascii missing (created) ./share/groff_font/devcp1047 missing (created) ./share/groff_font/devdvi missing (created) ./share/groff_font/devhtml missing (created) ./share/groff_font/devkoi8-r missing (created) ./share/groff_font/devlatin1 missing (created) ./share/groff_font/devlbp missing (created) ./share/groff_font/devlj4 missing (created) ./share/groff_font/devps missing (created) ./share/groff_font/devutf8 missing (created) ./share/me missing (created) ./share/tmac missing (created) ./share/tmac/mdoc missing (created) ./share/tmac/mm missing (created) mtree -deU -f /usr/src/etc/mtree/BSD.sendmail.dist -p /usr/obj/nanobsd.alix//_.w/ ./var/spool/clientmqueue missing (created) cd /usr/obj/nanobsd.alix//_.w/; rm -f /usr/obj/nanobsd.alix//_.w/sys; ln -s usr/src/sys sys cd /usr/obj/nanobsd.alix//_.w/usr/share/man/en.ISO8859-1; ln -sf ../man* . cd /usr/obj/nanobsd.alix//_.w/usr/share/man/en.UTF-8; ln -sf ../man* . cd /usr/obj/nanobsd.alix//_.w/usr/share/man; `grep "^[a-zA-Z]" /usr/src/etc/man.alias`; while [ $# -gt 0 ] ; do rm -rf "$1"; ln -s "$2" "$1"; shift; shift; done -------------------------------------------------------------- >>> Installing everything -------------------------------------------------------------- cd /usr/src; make -f Makefile.inc1 install ===> share/info (install) install -o root -g wheel -m 444 dir-tmpl /usr/obj/nanobsd.alix//_.w/usr/share/info/dir install: not found *** Error code 127 1 error *** Error code 2 1 error *** Error code 2 1 error *** Error code 2 1 error *** Error code 2 1 error From emz at norma.perm.ru Mon Feb 13 07:20:08 2012 From: emz at norma.perm.ru (Eugene M. Zheganin) Date: Mon Feb 13 07:20:15 2012 Subject: misc/165085: nanobsd building broken Message-ID: <201202130720.q1D7K8j6042412@freefall.freebsd.org> The following reply was made to PR misc/165085; it has been noted by GNATS. From: "Eugene M. Zheganin" To: bug-followup@FreeBSD.org, eugene@zhegan.in Cc: Subject: Re: misc/165085: nanobsd building broken Date: Mon, 13 Feb 2012 13:11:14 +0600 This is a multi-part message in MIME format. --------------000001050708060402050203 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit The following diff make the installworld stage find the install binary and pass past first error. But the building crashes on the next issue: -------------------------------------------------------------- >>> Installing everything -------------------------------------------------------------- cd /usr/src; make -f Makefile.inc1 install ===> share/info (install) install -o root -g wheel -m 444 dir-tmpl /usr/obj/nanobsd.alix//_.w/usr/share/info/dir ===> lib (install) ===> lib/csu/i386-elf (install) install -o root -g wheel -m 444 crti.o crtn.o gcrt1.o crt1.o Scrt1.o /usr/obj/nanobsd.alix//_.w/usr/lib ===> lib/libc (install) install -C -o root -g wheel -m 444 libc.a /usr/obj/nanobsd.alix//_.w/usr/lib install: libc.a: No such file or directory *** Error code 71 1 error *** Error code 2 1 error *** Error code 2 1 error *** Error code 2 1 error *** Error code 2 1 error *** Error code 2 1 error --------------000001050708060402050203 Content-Type: text/plain; name="diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="diff.txt" --- Makefile.inc1.old 2012-02-13 04:10:40.776381435 +0600 +++ Makefile.inc1 2012-02-13 04:08:57.490391177 +0600 @@ -321,12 +321,12 @@ IMAKEENV= ${CROSSENV} IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 .if empty(.MAKEFLAGS:M-n) -IMAKEENV+= PATH=${STRICTTMPPATH}:${INSTALLTMP} \ +IMAKEENV+= PATH=${PATH}:${STRICTTMPPATH}:${INSTALLTMP} \ LD_LIBRARY_PATH=${INSTALLTMP} \ PATH_LOCALE=${INSTALLTMP}/locale IMAKE+= __MAKE_SHELL=${INSTALLTMP}/sh .else -IMAKEENV+= PATH=${TMPPATH}:${INSTALLTMP} +IMAKEENV+= PATH=${PATH}:${TMPPATH}:${INSTALLTMP} .endif # kernel stage --------------000001050708060402050203-- From bsd at kobyla.org Mon Feb 13 09:00:29 2012 From: bsd at kobyla.org (Pavel Polyakov) Date: Mon Feb 13 09:01:30 2012 Subject: kern/165087: lock violation in unionfs Message-ID: <201202130852.q1D8qB5U092471@red.freebsd.org> >Number: 165087 >Category: kern >Synopsis: lock violation in unionfs >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 Feb 13 09:00:28 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Pavel Polyakov >Release: FreeBSD 9.0-STABLE r230270 >Organization: >Environment: FreeBSD 9.0-STABLE #0 r230270M: Wed Feb 1 00:31:59 EET 2012 >Description: Dump header from device /dev/label/dump0 Architecture: amd64 Architecture Version: 2 Dump Length: 743739392B (709 MB) Blocksize: 512 Dumptime: Sun Feb 12 15:22:16 2012 Hostname: cel.home Magic: FreeBSD Kernel Dump Version String: FreeBSD 9.0-STABLE #0 r230270M: Wed Feb 1 00:31:59 EET 2012 root@cel.home:/usr/obj/usr/src/sys/PDC90 Panic String: Dump Parity: 2051880815 Bounds: 75 Dump Status: good Unread portion of the kernel message buffer: KDB: stack backtrace: db_trace_self_wrapper() at 0xffffffff802da48a = db_trace_self_wrapper+0x2a kdb_backtrace() at 0xffffffff805cc157 = kdb_backtrace+0x37 vfs_badlock() at 0xffffffff8062ee75 = vfs_badlock+0x95 assert_vop_elocked() at 0xffffffff80632ff9 = assert_vop_elocked+0x69 insmntque1() at 0xffffffff8063337a = insmntque1+0x4a unionfs_nodeget() at 0xffffffff8143469c = unionfs_nodeget+0x10c unionfs_domount() at 0xffffffff81436e2f = unionfs_domount+0x4af vfs_donmount() at 0xffffffff80629784 = vfs_donmount+0x884 sys_nmount() at 0xffffffff8062a542 = sys_nmount+0x82 amd64_syscall() at 0xffffffff80831b1b = amd64_syscall+0x27b Xfast_syscall() at 0xffffffff8081cef7 = Xfast_syscall+0xf7 --- syscall (378, FreeBSD ELF64, sys_nmount), rip = 0x8008a638c, rsp = 0x7fffffffcb48, rbp = 0x7fffffffcb70 --- insmntque: mp-safe fs and non-locked vp: 0xfffffe01d96704f0 is not exclusive locked but should be KDB: enter: lock violation Dumping 709 out of 8175 MB:..3%..12%..21%..32%..41%..52%..61%..73%..82%..91% .. Reading symbols from /boot/kernel/unionfs.ko...Reading symbols from /boot/kernel/unionfs.ko.symbols...done. done. Loaded symbols for /boot/kernel/unionfs.ko #0 doadump (textdump=1818177984) at /usr/src/sys/kern/kern_shutdown.c:260 260 if (textdump && textdump_pending) { (kgdb) #0 doadump (textdump=1818177984) at /usr/src/sys/kern/kern_shutdown.c:260 #1 0xffffffff802d7cdc in db_fncall (dummy1=Variable "dummy1" is not available. ) at /usr/src/sys/ddb/db_command.c:573 #2 0xffffffff802d8011 in db_command (last_cmdp=0xffffffff80c337c0, cmd_table=Variable "cmd_table" is not available. ) at /usr/src/sys/ddb/db_command.c:449 #3 0xffffffff802d8260 in db_command_loop () at /usr/src/sys/ddb/db_command.c:502 #4 0xffffffff802da3c9 in db_trap (type=Variable "type" is not available. ) at /usr/src/sys/ddb/db_main.c:229 #5 0xffffffff805cbf91 in kdb_trap (type=3, code=0, tf=0xffffff816c5f33f0) at /usr/src/sys/kern/subr_kdb.c:620 #6 0xffffffff808328fa in trap (frame=0xffffff816c5f33f0) at /usr/src/sys/amd64/amd64/trap.c:591 #7 0xffffffff8081cc0f in calltrap () at /usr/src/sys/amd64/amd64/exception.S:228 #8 0xffffffff805cbd3b in kdb_enter (why=0xffffffff8092b343 "vfslock", msg=0x80
) at cpufunc.h:63 #9 0xffffffff80632ff9 in assert_vop_elocked (vp=0xfffffe01d96704f0, str=0xffffffff8092c460 "insmntque: mp-safe fs and non-locked vp") at /usr/src/sys/kern/vfs_subr.c:3848 #10 0xffffffff8063337a in insmntque1 (vp=0xfffffe01d96704f0, mp=0xfffffe0120200730, dtr=0xffffffff806359f0 , dtr_arg=0x0) at /usr/src/sys/kern/vfs_subr.c:1124 #11 0xffffffff8143469c in unionfs_nodeget (mp=0xfffffe0120200730, uppervp=0xfffffe001e3919e0, lowervp=0xfffffe016974d768, dvp=0x0, vpp=0xfffffe00156a4b10, cnp=0x0, td=0xfffffe001e251460) at /usr/src/sys/modules/unionfs/../../fs/unionfs/union_subr.c:264 #12 0xffffffff81436e2f in unionfs_domount (mp=0xfffffe0120200730) at /usr/src/sys/modules/unionfs/../../fs/unionfs/union_vfsops.c:289 #13 0xffffffff80629784 in vfs_donmount (td=Variable "td" is not available. ) at /usr/src/sys/kern/vfs_mount.c:800 #14 0xffffffff8062a542 in sys_nmount (td=0xfffffe001e251460, uap=0xffffff816c5f3bc0) at /usr/src/sys/kern/vfs_mount.c:410 #15 0xffffffff80831b1b in amd64_syscall (td=0xfffffe001e251460, traced=0) at subr_syscall.c:131 #16 0xffffffff8081cef7 in Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:387 #17 0x00000008008a638c in ?? () Previous frame inner to this frame (corrupt stack?) (kgdb) db> run lockinfo db:0:lockinfo> show locks exclusive sleep mutex Giant (Giant) r = 0 (0xffffffff80c59ea0) locked @ /usr/src/sys/dev/usb/usb_transfer.c:3165 db:0:locks> show alllocks Process 9335 (mount_unionfs) thread 0xfffffe001e251460 (100436) exclusive sleep mutex Giant (Giant) r = 0 (0xffffffff80c59ea0) locked @ /usr/src/sys/dev/usb/usb_transfer.c:3165 Process 2392 (perl5.8.9) thread 0xfffffe001e26d8c0 (100444) exclusive sx so_rcv_sx (so_rcv_sx) r = 0 (0xfffffe001eb33648) locked @ /usr/src/sys/kern/uipc_sockbuf.c:148 Process 2391 (perl5.8.9) thread 0xfffffe001e83b8c0 (100476) exclusive sx so_rcv_sx (so_rcv_sx) r = 0 (0xfffffe001eb27b98) locked @ /usr/src/sys/kern/uipc_sockbuf.c:148 Process 2389 (perl5.8.9) thread 0xfffffe001e26e000 (100443) exclusive sx so_rcv_sx (so_rcv_sx) r = 0 (0xfffffe001eb330f8) locked @ /usr/src/sys/kern/uipc_sockbuf.c:148 Process 2388 (perl5.8.9) thread 0xfffffe001e47a460 (100492) exclusive sx so_rcv_sx (so_rcv_sx) r = 0 (0xfffffe001e10e8f0) locked @ /usr/src/sys/kern/uipc_sockbuf.c:148 Process 2387 (perl5.8.9) thread 0xfffffe001e8268c0 (100470) exclusive sx so_rcv_sx (so_rcv_sx) r = 0 (0xfffffe001eb270f8) locked @ /usr/src/sys/kern/uipc_sockbuf.c:148 Process 2382 (perl5.8.9) thread 0xfffffe001e56c460 (100483) exclusive sx so_rcv_sx (so_rcv_sx) r = 0 (0xfffffe001eb338f0) locked @ /usr/src/sys/kern/uipc_sockbuf.c:148 Process 2380 (perl5.8.9) thread 0xfffffe00156488c0 (100090) exclusive sx so_rcv_sx (so_rcv_sx) r = 0 (0xfffffe001eb33e40) locked @ /usr/src/sys/kern/uipc_sockbuf.c:148 db:0:alllocks> show lockedvnods Locked vnodes db> scripts lockinfo=show locks; show alllocks; show lockedvnods kdb.enter.panic=textdump set; capture on; run lockinfo; show pcpu; bt; ps; alltrace; capture off; call doadump; reset kdb.enter.witness=run lockinfo db> bt Tracing pid 9335 tid 100436 td 0xfffffe001e251460 kdb_enter() at 0xffffffff805cbd3b = kdb_enter+0x3b assert_vop_elocked() at 0xffffffff80632ff9 = assert_vop_elocked+0x69 insmntque1() at 0xffffffff8063337a = insmntque1+0x4a unionfs_nodeget() at 0xffffffff8143469c = unionfs_nodeget+0x10c unionfs_domount() at 0xffffffff81436e2f = unionfs_domount+0x4af vfs_donmount() at 0xffffffff80629784 = vfs_donmount+0x884 sys_nmount() at 0xffffffff8062a542 = sys_nmount+0x82 amd64_syscall() at 0xffffffff80831b1b = amd64_syscall+0x27b Xfast_syscall() at 0xffffffff8081cef7 = Xfast_syscall+0xf7 --- syscall (378, FreeBSD ELF64, sys_nmount), rip = 0x8008a638c, rsp = 0x7fffffffcb48, rbp = 0x7fffffffcb70 --- db> capture off USER CMD PID FD MOUNT INUM MODE SZ|DV R/W root mount_unionfs 9335 root / 2 drwxr-xr-x 1536 r root mount_unionfs 9335 wd / 26654 drwxr-xr-x 2048 r root mount_unionfs 9335 text / 52659 -r-xr-xr-x 9888 r root mount_unionfs 9335 ctty /dev 288 crw--w---- pts/9 rw root mount_unionfs 9335 0 /dev 288 crw--w---- pts/9 rw root mount_unionfs 9335 1 /dev 288 crw--w---- pts/9 rw root mount_unionfs 9335 2 /dev 288 crw--w---- pts/9 rw root mount 9334 root / 2 drwxr-xr-x 1536 r >How-To-Repeat: mount -t unionfs -o noatime /usr /mnt >Fix: >Release-Note: >Audit-Trail: >Unformatted: From egrosbein at rdtc.ru Mon Feb 13 09:10:13 2012 From: egrosbein at rdtc.ru (Eugene Grosbein) Date: Mon Feb 13 09:10:28 2012 Subject: misc/165085: nanobsd building broken Message-ID: <201202130910.q1D9ACRQ069343@freefall.freebsd.org> The following reply was made to PR misc/165085; it has been noted by GNATS. From: Eugene Grosbein To: bug-followup@FreeBSD.ORG Cc: Subject: Re: misc/165085: nanobsd building broken Date: Mon, 13 Feb 2012 16:00:07 +0700 Hi! The first nanobsd build should be done without '-b' or '-w' options, so it can populate its obj directory for installworld/installkernel. This PR should be closed as case of pilot error. Eugene Grosbein From bugmaster at FreeBSD.org Mon Feb 13 11:10:48 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 13 11:11:49 2012 Subject: Current problem reports containing patches Message-ID: <201202131110.q1DBAjlL094087@freefall.freebsd.org> (Note: an HTML version of this report is available at http://people.freebsd.org/~linimon/studies/prs/prs_for_tag_patch.html .) S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/165086 jpaetzel [PATCH] Remove net/socks5 dep from irc/xchat-gnome o ports/165084 dinoex [patch] print/cups: upgrade to 1.5.2 o ports/165082 portmgr [PATCH] exp-run required for updating bsd.emacs.mk for o ports/165081 az [PATCH] devel/p5-Class-Load: update to 0.17 f ports/165078 [PATCH] www/ap22-mod_setenvifplus: update to 0.13 f ports/165077 [PATCH] www/ap22-mod_auth_openid: update to 0.6 o ports/165076 brix [PATCH] devel/p5-Module-Runtime: update to 0.012 f ports/165074 miwi [PATCH] www/xpi-bookmarkdd: update to 0.7.5 f ports/165073 miwi [PATCH] www/xpi-yslow: update to 3.0.9 o ports/165072 nork [PATCH] www/xpi-user_agent_switcher: update to 0.7.3 f ports/165071 miwi [PATCH] www/xpi-stumbleupon: update to 3.76 f ports/165070 miwi [PATCH] www/xpi-searchstatus: update to 1.39 f ports/165069 miwi [PATCH] www/xpi-modify_headers: update to 0.7.1.2b o ports/165068 nork [PATCH] www/xpi-it_s_all_text: update to 1.6.0 o ports/165067 skreuzer [PATCH] www/xpi-httpfox: update to 0.8.10 o ports/165065 nork [PATCH] www/xpi-firemobilesimulator: update to 1.2.2 o ports/165064 skreuzer [PATCH] www/xpi-errorzilla: update to 0.42 f ports/165062 miwi [PATCH] mail/xpi-dispmua: update to 1.6.6 f ports/165055 perl [PATCH] devel/p5-Data-Throttler-Memcached: add missing o ports/165051 lwhsu [PATCH] devel/p5-Data-RoundRobin: add TEST_DEPENDS o ports/165049 perl [PATCH] devel/p5-Data-Rmap: add TEST_DEPENDS o ports/165046 sahil [PATCH] mail/postfix preserve ident in mailer.conf o ports/165045 kuriyama [PATCH] devel/p5-Data-Localize: add TEST_DEPENDS o ports/165044 rafan [PATCH] devel/p5-Data-Hierarchy: add TEST_DEPENDS o ports/165043 miwi [PATCH] devel/p5-Data-Bind: add missing DEPENDS and ot f ports/165042 perl [PATCH] devel/p5-Data-Average: add missing DEPENDS f ports/165040 mm [PATCH] mail/sqlgrey: improve port f ports/165037 perl [PATCH] devel/p5-Config-Wrest: add missing DEPENDS f ports/165030 sunpoet [PATCH] www/p5-App-gist: update to 0.05 f ports/165029 sunpoet [PATCH] sysutils/p5-Sys-HostIP: update to 1.91 f ports/165026 lwhsu [patch] update lang/pypy from 1.7 to 1.8 o sparc/165025 sparc64 [PATCH] zfsboot support for sparc64 o ports/165023 gordon [patch] devel/p4v port is marked broken and also stale f ports/165016 pgollucci [PATCH] mail/rubygem-mail: update to 2.4.1 f ports/165012 pgollucci [PATCH] devel/rubygem-unicode: update to 0.4.1 f ports/165010 pgollucci [PATCH] devel/rubygem-daemon_controller: update to 1.0 f ports/165007 dougb [PATCH] sysutils/p5-MogileFS-Server: Fix multiple issu f ports/165006 [patch] add missing dependencies to audio/audacity-dev o ports/165003 [patch] icecast-2.3.2 may leak memory and take extra C f ports/164981 swills [PATCH] sysutils/facter: update to 1.6.5 o ports/164980 [PATCH] update plasma-applet-cwp from 1.5.7 to 1.5.9 o misc/164976 [PATCH] tzsetup(8): Fix VERBOSE reporting on results w o ports/164975 clsung [PATCH] www/p5-Jifty: add missing DEPENDS o ports/164973 kuriyama [PATCH] www/p5-Plack: add TEST_DEPENDS, other changes o ports/164971 kuriyama [PATCH] devel/p5-Test-TCP: update to 1.15 o ports/164969 perl [PATCH] www/p5-HTML-Mason: add TEST_DEPENDS o ports/164968 clsung [PATCH] mail/p5-Email-MIME-CreateHTML: add missing DEP o ports/164964 brix [PATCH] devel/p5-Class-Mix: add missing DEPENDS o ports/164963 [PATCH] ports-mgmt/porttools: add submit -P to print P f ports/164960 perl [PATCH] devel/p5-Class-Declare: update to 0.17 f ports/164955 [PATCH] net-mgmt/netdisco: update to 1.1, take maintai f ports/164944 amdmi3 [PATCH] games/instead: update to 1.6.2 o docs/164940 eadler [PATCH] xref err.3 in strerror.3 o docs/164939 eadler [PATCH] add a standards section to err.3 o docs/164938 eadler [PATCH] consistently use file system in config and tun o bin/164933 [nfs] [patch] mountd(8) drops mixed security flavors f o docs/164920 eadler [PATCH] changes to swap section of config chapter o ports/164913 kuriyama [PATCH] devel/p5-Module-Metadata: update to 1.000009 o ports/164912 skv [PATCH] devel/p5-Time-Duration: add TEST_DEPENDS o ports/164911 skv [PATCH] devel/p5-BZ-Client: add TEST_DEPENDS f ports/164908 [PATCH] net-mgmt/nrpe2: Update to 2.13 o ports/164907 miwi [PATCH] security/clamtk update to 4.37 o ports/164906 crees [PATCH] graphics/libjpeg-turbo: add -fPIC o ports/164905 gecko www/seamonkey fails to build with clang [patch] o kern/164901 [regression] [patch] [lagg] igb/lagg poor traffic dist f ports/164891 pgollucci [PATCH] sysutils/rubygem-sys-filesystem: update to 1.0 f ports/164888 pgollucci [PATCH] net/rubygem-whois: update to 2.2.0 o ports/164887 clsung [PATCH] net/rubygem-amqp: update to 0.9.0 o ports/164886 clsung [PATCH] net/rubygem-amq-protocol: update to 0.9.0 o ports/164885 clsung [PATCH] net/rubygem-amq-client: update to 0.9.0 f ports/164882 pgollucci [PATCH] ftp/rubygem-curb: update to 0.7.17 f ports/164881 pgollucci [PATCH] finance/rubygem-money: update to 4.0.1 f ports/164880 pgollucci [PATCH] devel/rubygem-test-unit: update to 2.4.3 f ports/164878 pgollucci [PATCH] devel/rubygem-file-tail: update to 1.0.8 o ports/164874 joerg [patch] unbreak devel/avr-gcc o ports/164870 portmgr [PATCH] bsd.licenses.mk Set IGNORE if BATCH is set and o ports/164859 miwi [PATCH] x11-fm/filerunner update to 11.12.25.15 o ports/164855 miwi [PATCH] textproc/py-chardet f ports/164813 glewis [PATCH] www/jericho-html: update to 3.2 o ports/164788 miwi [PATCH] multimedia/miro update to 4.0.5 o ports/164786 [PATCH] devel/simian: Re-adding the deleted port o ports/164785 sylvio [patch] devel/bglibs: linking with libbg causes time(3 f ports/164784 jgh [patch] x11-toolkits/swt-devel: (correction) update to f ports/164782 swills [PATCH] devel/p5-Log-Dispatchouli: add missing BUILD_D f ports/164781 swills [PATCH] devel/p5-Log-Dispatch-Array: add TEST_DEPENDS o ports/164778 clsung [PATCH] net/p5-Net-Jifty: add TEST_DEPENDS, use new fo o ports/164774 dhn [PATCH] games/scid update to Scid 4.3 o ports/164757 lme [PATCH] games/scummvm: update to 1.4.1 f ports/164755 swills [PATCH] devel/p5-App-GitHub: add missing BUILD_DEPENDS o ports/164754 clsung [PATCH] net/p5-Net-GitHub: add missing DEPENDS, add TE o ports/164750 fluffy [PATCH] news/inn: Fix rc script f ports/164748 swills [PATCH] devel/p5-App-Cmd: add TEST_DEPENDS to enable t f ports/164747 swills [PATCH] textproc/p5-String-RewritePrefix: add TEST_DEP o kern/164724 [dtrace] [patch] Signal bug in Dtrace o ports/164719 sylvio [PATCH] irc/bip: update to fix CVE-2012-0806 o conf/164709 eadler [patch] [pc-sysinstall] add raidz3 support; permit 'ra o ports/164706 garga [PATCH] www/sarg: add PHP script install switch f ports/164701 sunpoet [PATCH] mail/p5-Email-Sender: update to 0.110003 o ports/164692 skv [PATCH] devel/otrs: update to version 3.0.11 o kern/164674 [patch] [libc] vfprintf/vfwprintf return error (EOF) o o bin/164672 [patch] mptutil(8): fix build error with DEBUG o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o ports/164625 lme [PATCH] port net-mgmt/icinga to support IDOUtils o ports/164618 lx [patch] textproc/scim: building with clang failed o ports/164609 sylvio [patch] print/scribus: update to version 1.4.0 o bin/164604 [patch] tftp(1): TFTP pxeboot: should use root-path pr f ports/164597 wxs [patch] security/py-pycrypto: update to 2.5 o ports/164588 tobez [PATCH] databases/p5-Text-Query-SQL: add TEST_DEPENDS o ports/164583 lev [PATCH] devel/subversion: chown: /home/svn/repos/dav: p bin/164570 maxim [patch] pom(6) wrong usage message o ports/164566 skv [patch] databases/pgbouncer: update to latest version o bin/164561 portmgr [patch] pkg_version(1): update references to INDEX-8 f o ports/164546 pgollucci [PATCH] databases/p5-SQL-Interp: add missing BUILD_DEP o ports/164544 miwi [patch] x11-servers/xorg-server: prune unused deps f ports/164540 miwi [PATCH] x11-themes/icons-tango: Fix fetching f ports/164539 miwi [patch] Update for audio/libmtp (from 1.0.6 to 1.1.1) o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP o bin/164535 [patch] ps(1) truncates command to screen size even wh o ports/164504 gnome [patch] net/opal3: patch configure to recognize amd64 o ports/164502 [patch] news/sabnzbdplus not starting on boot o ports/164500 gnome [patch] Build x11-toolkits/libwnck without startup_not o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu o ports/164488 timur [patch] devel/talloc,devel/tdb: fix compile with MAKE_ o ports/164449 gnome [PATCH] finance/gnucash update to 2.4.9 o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164418 miwi [PATCH] shells/mksh doesn't build with Clang. o ports/164416 kuriyama [PATCH] textproc/iso8879: Fix on 9 and 10 o ports/164413 rafan [PATCH] converters/p5-Encode: add patch to fix tests o ports/164403 portmgr [patch] Mk/bsd.licenses.mk: bring back --hline o ports/164384 lme [patch] games/scummvm update to 1.4.1 o bin/164378 [patch] improvement of pkg_info(1) warning o kern/164369 adrian [if_bridge] [patch] two STP bridges have the same id o ports/164357 skv [PATCH] databases/p5-DBIx-ContextualFetch: add TEST_DE o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak p ports/164349 x11 [PATCH] x11/libXinerama :1 LeftOf or Above :0 mouse is o ports/164341 lev [patch] sysutils/graid5: remove post-deinstall target o ports/164321 swills [PATCH] devel/p5-DateTime-Format-Natural: Add TEST_DEP o bin/164317 [patch] write(1): add multibyte character support p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method o bin/164302 [patch] mail(1) expands aliases beyond # o ports/164298 pgollucci [PATCH] Make print/foomatic-filters not eat PS files o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS f ports/164253 lwhsu [PATCH] databases/cassandra: update to 1.0.7 f ports/164243 miwi [PATCH] emulators/dosbox: Fix build with clang o ports/164239 gecko [PATCH] mail/thunderbird: crash with nss_ldap p kern/164238 eadler [patch] NULL pointer dereference in setusercontext (li f ports/164237 wxs [PATCH] security/suricata: overwrite files from libhtp f ports/164235 pgollucci [patch] graphics/vigra: update to 1.8.0 o ports/164219 wen [PATCH] databases/p5-DBIx-NoSQL: Add missing BUILD_DEP a ports/164218 scheidell [patch] sysutils/fusefs-kmod: update mount_fusefs for o docs/164217 eadler [patch] correct synchronize flag in setfacl(1) manpage o kern/164210 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164209 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164208 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164207 portmgr [PATCH] bsd.port.mk includes top-level Makefile.inc fr o misc/164206 [PATCH] buildworld WITHOUT_OPENSSL stops at lib/libarc p bin/164192 emaste [patch] wpa_supplicant(8): Fix typo intr-by SVN r21473 o ports/164190 mm [PATCH] devel/liboil: Fix build with clang o ports/164187 gnome [PATCH] net/avahi etc should use USERS f ports/164181 [PATCH] www/xxxterm: Fix ssl_ca_file path and style o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i f ports/164046 bapt [PATCH] sysutils/kkbswitch: %%DOCSDIR%%/common is syml f ports/164045 bapt [PATCH] java/dbvis: prevent dirrm beginning with a / p bin/164042 emaste [PATCH] tzsetup(8): Fix VERBOSE to work with new UTC m p bin/164041 emaste [PATCH] tzsetup(8): Remove unnecessary code duplicatio p bin/164039 emaste [PATCH] tzsetup(8): Don't write /var/db/zoneinfo eithe p bin/164038 wollman [PATCH] tzsetup(8): Increase buffer size to hold error o ports/164033 lev [patch] port devel/subversion ports change pkg-install f ports/164029 [PATCH] graphics/bmeps fix build with databases/gdbm f ports/164012 scheidell [patch] x11/dmenu version upgrade 4.5 and Xft support o ports/164010 timur [patch] net/samba36: Split up samba scripts into more o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/163978 [hwpmc] [patch] Loading hwpmc with an unknown cpuid ca o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de f ports/163924 miwi [PATCH] archivers/xarchiver, warning when delete deskt o ports/163909 bf [MAINTAINER-UPDATE][PATCH] please update math/lapacke o ports/163908 fluffy [patch] filesystem based race condition in multimedia/ o ports/163884 nivit [Patch]databases/py-sqlalchemy:strict depend on py-MyS o bin/163863 [patch] adduser(8): confusing usr.sbin/adduser output o bin/163847 [PATCH] German filename conversion scheme for mount_nw o conf/163828 [patch] /etc/periodic/daily/110.clean-tmps tries to un p conf/163789 eadler [patch] Make etc/Makefile more conflict resistant o conf/163778 imp [patch] Conditionalize tools in the source tree o bin/163775 [patch] sfxge(4) explitly sets -g -DDEBUG=1; infects k o bin/163773 eadler [patch] pc-sysinstall(8): pc-sysinstall/backend.sh - c o bin/163772 [patch] nvi(1) - don't mask O_DIRECTORY symbol o bin/163769 [patch] fix zpool(8) compile time warnings o misc/163768 [patch] [boot] fix non-ficl compile time warnings o ports/163762 pgollucci [PATCH] multimedia/mythtv still thinks it's 0.24.0 o ports/163751 lme [PATCH] games/scummvm: chase audio/fluidsynth shlib ve o docs/163742 doc [patch] document failok mount(8) option o ports/163725 swills [PATCH] emulators/open-vm-tools: Update to latest vers o kern/163724 wireless [mwl] [patch] NULL check before dereference f ports/163718 dinoex [PATCH] graphics/jasper: security updates for CVE-2011 o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c f ports/163704 gnome [PATCH] devel/ptlib26: disable ODBC by default f ports/163684 olgeni [PATCH] lang/clojure-mode.el: update to 1.11.5 o ports/163675 pgollucci [PATCH] devel/buildbot: update to 0.8.5 o ports/163674 pgollucci [PATCH] devel/buildbot-slave: update to 0.8.5 p conf/163668 jh [patch] fstab[5] 'failok' option has no effect on miss o ports/163666 jgh [PATCH] Add user "gerrit" to UIDs and GIDs f ports/163655 miwi [PATCH] games/odamex update to 0.5.6 o ports/163647 pgollucci [patch] sysutils/xosview: does not build on 10-CURRENT o ports/163643 pgollucci [patch] astro/wmspaceweather: URL changed + two minor f ports/163605 olgeni [PATCH] net-im/ttytter: update to 1.2.05 a ports/163592 dinoex [PATCH] graphics/libungif: mark conflict with giflib a ports/163591 dinoex [PATCH] graphics/giflib: mark conflicts with libungif o ports/163590 pgollucci [PATCH] devel/cdialog: update to 1.1.20111020 o ports/163583 [patch] x11/kdelibs3 conflicts with openssl-1 f ports/163555 danfe [PATCH] irc/bitchx is out of date and BitchX 1.2 does a ports/163550 dinoex [patch] ftp/vsftpd{,-ext}: respect CC/CFLAGS/STRIP uni p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi o ports/163519 gnome [patch] graphics/gimp-app: unbreak build with clang=20 o ports/163518 gnome [patch] x11/babl: unbreak SSE build with clang o bin/163515 [patch] b64encode(1)/uuencode(1) create files with no o ports/163514 itetcu [PATCH] ports-mgmt/tinderbox-devel: Report the proper o ports/163511 portmgr [PATCH] bsd.port.mk: Allow existing users on system to o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands a java/163456 java [patch] java/openjdk6: build and distribute open timez o ports/163454 gecko [patch] www/firefox-beta: unbreak with libc++ o kern/163450 [puc] [patch] new pci quad serial card supported by pu o ports/163443 gnome [patch] graphics/poppler: unbreak with libc++ o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o ports/163306 pgollucci [patch] upgrade sysutils/nut to 2.6.2 and fix misc por o ports/163291 doceng [PATCH] print/ghostscript9: Automatically disable X11 o ports/163234 pgollucci [patch] devel/ptypes: unbreak build with clang o ports/163232 bf [patch] math/metis: respect CC o ports/163226 obrien [patch] vietnamese/libviet: respect CC/CFLAGS o bin/163219 gtetlow [patch] man: fix 'zcat: standard input is a terminal - o docs/163177 doc [patch] man page for gnats(7) incorrectly lists gnatsd o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o ports/163066 eadler [patch] bsd.database.mk: Allow db5 to be selected by U o ports/163063 python [PATCH] fix for ports-mgmt/portbuilder o ports/163056 miwi [patch] audio/xmms2: update to 0.8 o ports/163055 mm [patch] multimedia/ffmpeg: broken without /usr/bin/per o bin/163053 [patch] camcontrol(8): 'camcontrol nego -D' is ignored o docs/163043 doc [patch] gsched.8: remove reference to gsched_as a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ o ports/162920 miwi [patch] respect STRIP/LDFLAGS consistently across untr o ports/162912 mm [patch] lang/tcl86: unbreak build with clang o misc/162866 [build] [patch] extract revision from hg in newvers.sh p kern/162789 glebius [PATCH] if_clone may create multiple interfaces with t o ports/162768 pgollucci [PATCH] ftp/proftpd port update which fixes mod_sql_my o docs/162765 doc [patch] lseek(2) may return successful although no see o ports/162755 gnome [PATCH] graphics/evince: segfault on showing propertie o ports/162726 miwi [PATCH] update graphics/box to 0.3.0 and graphics/boxe o ports/162721 portmgr [PATCH] bsd.port.mk: config target should complain if f ports/162694 pgollucci [patch] [update] multimedia/pitivi to 0.15.0 o ports/162686 bf atlas build tries to use 64 bit fortran compiler on AM o bin/162670 gabor [patch] libkiconv doesn't work with iconv() in libc o bin/162661 gavin [patch] ftp(8) is giving up on IPv6 o ports/162510 nork [patch] Upgrade graphics/OpenEXR to version 1.7.0 o ports/162439 olgeni [PATCH] lang/abcl: update to 1.0.0 and update WWW o ports/162414 cy [PATCH] sysutils/syslog-ng: misc. fixes o ports/162397 portmgr [patch] Mk/bsd.port.mk: add new target add-plist-build o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen f ports/162386 eadler [PATCH] Bring back games/tome o ports/162381 sunpoet [PATCH] audio/icecast2 upgrade to kh development branc o kern/162352 net [patch] Enhancement: add SO_PROTO to socket.h o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib p docs/162265 doc [Patch] ipfw.8: Documentation clarity a ports/162264 cy [patch] unbreak net/tridiavnc for non-i386 p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 o kern/162201 zec [ip] [patch] multicast forwarding cache hash always al o ports/162191 ashish [PATCH] editor/emacs: VC doesn't work with subversion o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o kern/162174 [kernel] [patch] rman_manage_region() error return pat o bin/162064 [patch] Loop in fetch(1) when sending SIGINFO after th f ports/162050 sumikawa [patch] misc/lv directory opening problem fix o ports/162042 bapt [patch] multimedia/libass: add HARFBUZZ option o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o bin/161986 [patch] netstat(1): Interface auto-width in "netstat - o ports/161984 autotools [patch] devel/libtool: don't split INFO doc (install) o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup p conf/161847 gavin [patch] reaper of the dead: remove ancient devfs examp o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o bin/161807 fs [patch] add option for explicitly specifying metadata o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico p bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks o www/161672 gavin [patch] add support for 10.x to query-pr o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/161421 gecko [patch] www/firefox: use libevent2 o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li o bin/161401 [patch] have service(8) run scripts with the same reso o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161185 pgollucci [patch] Remove unnecessary graphics/cairo dependency f p misc/161175 eadler [tools] [patch] uninitialized variables on some regres o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 lippe [patch] misc/ttyrec: don't depend on pty(4), use openp o bin/161048 sysinstall [patch] bsdinstall(8): should run a concurrent shell o o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o bin/161028 [PATCH] service(8) -- Minor improvements o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO o ports/160969 [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 x11 [patch] ports/x11/libXi broken manpages o ports/160963 x11 [patch] x11/bigreqsproto: disable specs a ports/160941 swills [PATCH] emulators/open-vm-tools: upgrade to release 20 o ports/160930 [PATCH] devel/gdb: HW watchpoint support for amd64 o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o conf/160892 eadler [network.subr] [patch] add vboxnet[0-9]* to noafif lis o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o bin/160834 [patch] grep(1): fixes for POSIX conformance o ports/160816 swills [PATCH] security/stunnel: update to 4.44 o ports/160798 pgollucci [PATCH] games/wesnoth-devel: update to latest version o ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 o bin/160596 eadler [patch] tzsetup(8): Use libodialog when doing tzsetup o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x f ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o ports/160492 bf [patch] lang/ocaml: respect CC o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries p ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn o misc/160463 eadler [build] [patch] fix build dependency for dtrace module o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i s docs/160369 gjb [patch] update sample simple makefile with new convent o bin/160295 [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o ports/160205 pgollucci [PATCH] sysutils/hyperic-sigar: update to 1.6.4 o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159947 pgollucci [patch] databases/gnats4 set default index type to pla o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 o bin/159833 camcontrol(8): [patch] add ATA security options to cam o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l a bin/159665 rik [patch] ctm(1) does not work with bzip2 or xz compress o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator f ports/159636 [patch] net/freevrrpd: RC script for freevrrpd that co o conf/159625 [PATCH] replace hardcoded /usr/local with a variable i o ports/159613 gnome [PATCH] misc/gnomehier: use dirrmtry for PREFIX/share/ o usb/159611 miwi [PATCH] USB stick extrememory Snippy needs quirks o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() o docs/159307 doc [patch] lpd smm chapter unconditionally installed o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/159279 [headers] [patch] __FreeBSD_cc_version in includes o kern/158376 [udf] [patch] The UDF file system under counts the num o bin/158363 [patch] partial restore problem in restore(8) o ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/158351 [cam] [patch] missing #includes in p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o ports/158054 matusita [PATCH] japanese/ja-skk-jisyo: update to 201106 o kern/157946 [patch] 'BSM conversion requested for unknown event' g o conf/157903 [devd.conf] [patch] automated kldload for USB class de f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o conf/157466 [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157337 eadler [handbook] [patch] Indentation changes to network serv o docs/157316 doc [patch] update devstat(9) man page o docs/157234 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o bin/156768 [patch] sockstat(1): missing spaces between long field o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156637 [headers] [patch] sys/types.h can't be included when _ p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156358 jkim [patch] make amdtemp.c compatible with Llano/Brazos pl o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o ports/156015 pgollucci [PATCH] dns/unbound add MUNIN-plugin o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o ports/155890 tabthorpe [patch] Mk/bsd.licenses.mk: don't leave temporary file o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an o bin/155567 [patch] cvs(1): add -r tag:date to CVS o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o kern/154915 [libc] [patch] Force stdio output streams to line-buff o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o bin/154570 [patch] gvinum(8) can't be built as part of the kernel o conf/154554 rc [rc.d] [patch] statd and lockd fail to start f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o conf/154484 [patch] request for new functionality. jail zfs datase o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy a ports/154455 roam [patch] security/stunnel: add aloha sendproxy support p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o ports/154352 pgollucci [patch] multimedia/xmms: update using desktop and mime f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l f ports/154254 rene [patch] asmail imap login broken with gmail at al. o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o ports/154241 pgollucci [patch] games/wesnoth: move USE_* under bsd.port.optio f ports/154209 python [PATCH] lang/python: Install symlink for ptags o conf/154062 net [vlan] [patch] change to way of auto-generatation of v p bin/154042 delphij [patch] fix several rtprio(1) issues o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153567 pgollucci [PATCH] x11/fpc-x11: doesn't respect localbase o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o bin/153527 [patch] wake(8) should use sysexits.h o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o ports/153429 [patch] Fix explicite uses of unzip in ports o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out o ports/153231 pgollucci [PATCH] net-mgmt/nrpe2 enable ssl by default p bin/153206 maxim [patch] netstat(1): "netstat -sz" doesn't reset any IP o misc/153157 [build] [patch] Add support for generating userland de o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error a docs/153012 doc [patch] iostat(8) requires an argument to -c option o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o ports/152847 pgollucci [patch] port/buildbot-slave could use a startup script o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152792 [acpica] [patch] move temperature conversion macros to o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p o kern/152485 arundel [patch] seek offset for /dev/null(4) and /dev/zero(4) o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o ports/152224 python [patch] fix installed permissions for lang/python27 o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152131 script(1): [patch] Useless code in script.c (part 1) o bin/152084 [patch] pw(8) does not allow @ or ! in gecos o ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o bin/151937 [patch] netstat(1) utility lack support of displaying o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr p bin/151866 des [libfetch] [patch] closing the cached FTP connection o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/151600 [patch] route(8) does not always flush stdout o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o bin/151186 [patch] routed(8) turns RIP off if just one network ca o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl p bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o bin/150771 [patch] csup(1) GNUmakefile missing p conf/150752 dougb [rc.subr] [patch] be not needed to eval $_pidcmd on re o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of f ports/150594 eadler [patch] graphics/dri: add support for ATI Radeon HD 42 o www/150553 www [patch] update Russian "FreeBSD Community" page o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the o kern/150251 net [patch] [ixgbe] Late cable insertion broken o bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o kern/150206 [patch] nmount(2): can't switch root partition to rw u o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a o stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o bin/149972 [patch] pw(8): usermod -u should error o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 pgollucci [PATCH] mail/dspam: important cleanup p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label p kern/149800 eadler [fdc] [patch] "driver bug: Unable to set devclass (dev p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o www/149446 www [patch] improve misleading title of "report a bug" o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o kern/149173 fs [patch] [zfs] make OpenSolaris installa o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o gnu/143254 [patch] groff(1) build in base system does not honor P p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip p kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o docs/142917 arundel [patch] top(1) man page does not include information a o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o ports/142743 [PATCH] devel/cross-binutils: installed by *-rtems-gcc a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) p docs/142367 roam [patch] wlan(4) does not document requirement for kern o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o kern/141682 [libc] [patch] Faster version of strncpy(3) o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o kern/141655 [sio] [patch] Serial Console failure on Dell servers o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o ports/140939 rea [patch] security/vuxml: fix and extend files/newentry. o kern/140728 jfv [em] [patch] Fast irq registration in em driver a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- p conf/140650 cperciva [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p docs/140457 doc [patch] Grammar fix for isspace(3) o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum o ports/140364 ruby [patch] ports-mgmt/portupgrade-devel: #! line substitu o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n a bin/140309 bapt [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/140185 [patch] expand_number(3) does not detect overflow in n o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o ports/139872 crees [PATCH] ports-mgmt/porttools: improve port's directory o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o bin/139389 pluknet [patch] Change top(1) to display thread IDs o bin/139346 net [patch] arp(8) add option to remove static entries lis a bin/139314 [patch] install(1): install -d reports success on fail p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o kern/139080 [libc] [patch] closelog() can close negative file desc a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o ports/137958 ruby [patch] ports-mgmt/portupgrade fails with recursive de o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow p bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o conf/137671 [patch][request] enhance beastie.4th: possibility to d s gnu/137665 [patch] dialog(1) goes into tight loop on encountering p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct o bin/136994 net [patch] ifconfig(8) print carp mac address o ports/136917 python [patch] lang/python26: gettext detection o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa p gnu/136705 emaste [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136669 [libc] [patch] setmode(3) should always set errno on e o bin/136661 melifaro [patch] ndp(8) ignores -f option o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE o kern/135608 [patch] sysctl(8) should be able to handle byte values o docs/135516 doc [patch] pax(1) manual not mentioning chflags unawarene o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o kern/134249 [libiconv] [patch] ignore case for character set names o kern/134225 [libexec] [patch] Reduce disk write load from save-ent p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article o bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o bin/131427 [patch] Add to fetch(1) an ability to limit a number o p bin/131250 brian [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o kern/130657 bz [ip6] [patch] ipv6 class option o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a f ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o kern/130286 [patch] hifn(4) changes o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El p bin/130159 brian [patch] ppp(8) fails to correctly set routes p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o bin/129814 [patch] support of per script nice(1) value in periodi o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di o bin/129405 [patch] tcsh(1) vfork bugs p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o kern/129352 yongari [xl] [patch] xl0 watchdog timeout o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o docs/129024 keramida [patch] ipfw(8) improvements o usb/128977 usb [usb67] [patch] uaudio is not full duplex p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct p kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o conf/128433 [patch] Add option to allow a full login when doing 's o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to p bin/127986 [patch] ee(1): fix compiler warnings caused by use of p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t s bin/127918 [ata] [request] [patch] ATA Security support for ataco p docs/127908 eadler [patch] readdir(3) error documentation o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o bin/127633 edwin [patch] Update top(1) to 3.8b1 o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127276 [patch] ldd(1) invokes linux yes o bin/127265 [patch] ddb(4): Adding the ddb command set from module o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o bin/126433 [patch] some missing checks in rm(1) o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o kern/126075 net [inet] [patch] internet control accesses beyond end of o bin/125922 net [patch] Deadlock in arp(8) o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc a kern/125613 trasz [ufs] [patch] ACL problems with special files o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o conf/125041 [patch] periodic(8) new file: /etc/periodic/security/8 o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/124963 alc [vm] [patch] old pagezero fixes for alc o kern/124881 [devfs] [patch] [request] Add possibility to check whi o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o conf/124747 rc [patch] savecore can't create dump from encrypted swap a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o misc/124431 bde [build] [patch] minor revision of BDECFLAGS p bin/124392 [patch] bootparamd(8) does not work on arm p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net p misc/124164 markm [patch] Add SHA-256/512 hash algorithm to crypt(3) p bin/124052 [patch] adduser(8) throws errors when -f input file in o kern/123892 net [tap] [patch] No buffer space available o kern/123858 net [stf] [patch] stf not usable behind a NAT o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 f bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o conf/123119 rc [patch] rc script for ipfw does not handle IPv6 f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o conf/122883 [patch] login class for ukrainian users accounts o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o conf/122170 rc [patch] [request] New feature: notify admin via page o p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab o bin/122043 [patch] du(1) does not support byte-count-based report o conf/122037 [patch] add rsync example for inetd.conf o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user o conf/121064 [patch] Use ASCII characters for box/line characters i o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o conf/120263 [patch] 800.loginfail misses relevant security informa p bin/120256 gavin [patch] ftp(1): ftp -u URL/ returns a -1 p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o bin/118325 rc [patch] [request] new periodic script to test statuses p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/118126 fs [nfs] [patch] Poor NFS server write performance o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o bin/118069 [patch] camcontrol(8) should be able to leave device s o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing s bin/117830 [patch] who(1) no longer displays entries for folk log f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o bin/117687 [patch] fstab(5) format cannot handle spaces o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o bin/117520 [patch] csup(1) not-really-equivalent to cvsup o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117339 net [patch] route(8): loading routing management commands p bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th p stand/116826 jilles [patch] sh(1) support for POSIX character classes o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c p bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's p docs/115065 doc [patch] sync ps.1 with p_flag and keywords o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which o bin/113518 [patch] make(1): Prevent execution when command is a c o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o bin/113074 [patch] ppp(8): include for strcasecmp(3) s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112477 marius [ofw] [patch] Add support to set the node and type on o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112336 [patch] install(1): install -S (safe copy) with -C or s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111537 net [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110995 [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110146 joerg [patch] [request] Allow arbitrary gdb(1) options to by o bin/110068 [patch] rewrite of mdmfs(8) in shell o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit p docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105456 keramida [patch] overhaul of the security chapter (14) o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w p stand/104743 jilles [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive a bin/104092 keramida [patch] iostat(8): missing blanks in iostat output o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o ports/102946 secteam [patch] ports-mgmt/portaudit a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o bin/102162 [patch] tftpd(8): Limit port range for tftpd o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o conf/100616 [patch] syslog.conf: lines after exclamation point ign a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o bin/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/99328 [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/96999 [procfs] [patch] procfs reports incorrect information a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o bin/95698 philip [patch] moused(8): Software control of sysmouse o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind s www/94423 danger [patch] XML'ified release todo list o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work p kern/93331 [kernel] [patch] broken asm in kernel o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o conf/92523 rc [patch] allow rc scripts to kill process after a timeo s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o conf/91732 [patch] 800.loginfail: fix log message grep expression o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command o kern/91134 fs [smbfs] [patch] Preserve access and modification time f bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o bin/90311 [patch] add "eject" to mt(1) o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco o conf/88913 rc [patch] wrapper support for rc.subr o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 fs [patch] newfs(8): introduce -A flag for newfs to enabl o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so o www/87119 hrs [patch] encode copyright and such symbolically o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o bin/86485 eadler [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou f i386/85656 jhb [i386] [patch] expose more i386 specific CPU informati f i386/85655 jhb [i386] [patch] expose cpu info for i386 systems o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( a bin/77651 [patch] init(8) can lose shutdown related signals s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o bin/76362 [patch] sys directory link points to wrong location o gnu/76169 [patch] Add PAM support to cvs pserver o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o conf/74004 [patch] add fam support to inetd.conf o conf/73786 [patch] added WARNING in spanish to stable-supfile o conf/73677 rc [patch] add support for powernow states to power_profi o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o conf/72901 [patch]: dot.profile: prevent printing when doing an s o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o conf/72277 [patch] update for /usr/share/skel o conf/71994 [patch] dot.login: login shell may unnecessarily print o bin/71749 [patch] truss -f causes circular wait when traced proc o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71602 [patch] uninitialized "len" used instead of "slen" wit s bin/71290 des [patch] passwd(1) cannot change passwords other than N o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters o bin/70476 [patch] reboot(8) change, -p behavior default for halt o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports a kern/68905 secteam [patch] core dumps are assigned wrong ownership o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) f kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE a bin/63197 [patch] tftp(1) Bus error, core dumped a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s i386/61481 [patch] a mechanism to wire io-channel-check to userla o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o bin/58483 [patch] mount(8): allow type special or node relative o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement o bin/57715 [patch] tcopy(1) enhancement o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s bin/57407 [patch] Better NTP support for dhclient(8) and friends o docs/57298 doc [patch] add using compact flash cards info to handbook s bin/57255 usb [patch] usbd(8) and multi-function devices o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR o bin/55546 [patch] cdcontrol(1) play tr m:s.f interface is partia o bin/55539 [patch] Parse fstab(5) with spaces in path names f misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o conf/54170 [patch] error from weekly periodic script 330.catman s stand/53682 [feature request] [patch] add fuser(1) utility o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 [request] [patch] New functionality for mail(1) s usb/51958 usb [urio] [patch] update for urio driver o kern/51583 fs [nullfs] [patch] allow to work with devices and socket s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee o bin/51137 [patch] config(8) should check if a scheduler is selec o kern/51009 [aue] [patch] buggy aue driver fixed. s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48183 [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] Add documentation on the fixit disk o bin/47815 [patch] stty(1) -all should work. o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit a kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals o bin/46758 [patch] moused(8) enhancements o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o conf/45222 [patch] daily rejected mail hosts report too long o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44202 [rp] [patch] -stable rp driver does not work with mult o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl a bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login a bin/41583 [patch] mtree(8) assorted mtree bugs o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41271 [patch] non-suid crontab(1) o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o conf/40777 [patch] disktab does not support 2.88MB floppies o bin/40597 [patch] add fdisk(8) ability of showing extended parti o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix a bin/38727 [patch] mptable(1) should complain about garbage argum a kern/38554 net [patch] changing interface ipaddress doesn't seem to w s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o bin/37083 [patch] [request] small improvement to talk(1): add cl o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36902 [libc] [patch] proposed new format code %N for strftim o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce o bin/35886 [patch] pax(1) enhancement: custom time format for lis o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md o bin/34412 [patch] tftp(1) will still try and receive traffic eve o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o bin/33809 [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31890 [syscons] [patch] new syscons font o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o bin/30542 [patch] add -q option to shut up killall(1) s threa/30464 threads [patch] pthread mutex attributes -- pshared o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt s kern/29423 [request] [patch] new feature: kernel security hooks i p bin/29363 simon [patch] newsyslog(8) can support time as extension f kern/29355 [kernel] [patch] add lchflags support o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28364 bapt [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u o docs/27605 doc [patch] Cross-document references () o bin/27306 [patch] hw watchpoints work unreliable under gdb(1) o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password f kern/24959 net [patch] proper TCP_NOPUSH/TCP_CORK compatibility o bin/24485 [patch] to make cron(8) handle clock jumps o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23254 bapt [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network o kern/21998 net [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o kern/19756 [patch] Inability to use linux extended partition (typ s kern/19535 [procfs] [patch] procfs_rlimit tidyup o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16422 [patch] [request] newfs(8) always make root's / direct o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15168 [patch] Adding tracklist support to fdformat(1) p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai s kern/13326 [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts a kern/11024 mtm [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry o bin/4116 [patch] [kerberos] Kerberized login as .root fai s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 1931 problems total. From kib at FreeBSD.org Mon Feb 13 11:15:57 2012 From: kib at FreeBSD.org (kib@FreeBSD.org) Date: Mon Feb 13 11:16:03 2012 Subject: bin/165075: rtld error messages are missing a newline Message-ID: <201202131115.q1DBFvqi003196@freefall.freebsd.org> Synopsis: rtld error messages are missing a newline State-Changed-From-To: open->patched State-Changed-By: kib State-Changed-When: Mon Feb 13 11:14:49 UTC 2012 State-Changed-Why: Fix in head. Responsible-Changed-From-To: freebsd-bugs->kib Responsible-Changed-By: kib Responsible-Changed-When: Mon Feb 13 11:14:49 UTC 2012 Responsible-Changed-Why: Fix in head. http://www.freebsd.org/cgi/query-pr.cgi?pr=165075 From bugmaster at FreeBSD.org Mon Feb 13 11:17:02 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 13 11:17:22 2012 Subject: Current problem reports sorted by tag Message-ID: <201202131110.q1DBAmd9094258@freefall.freebsd.org> (Note: a better version of this report is available at http://people.freebsd.org/~linimon/studies/prs/pr_tag_index.html .) Problem reports for tag '2tb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/118912 fs [2tb] disk sizing/geometry problem with large array s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t 7 problems total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148083 scsi [aac] Strange device reporting o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg 2 problems total. Problem reports for tag 'acd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/150628 [acd] [ata] burncd(1) can't write to optical drive 1 problem total. Problem reports for tag 'acl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p 2 problems total. Problem reports for tag 'acpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164329 acpi [acpi] hw.acpi.thermal.tz0.temperature shows strange v o kern/162859 acpi [acpi] ACPI battery/acline monitoring partialy working o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o kern/160838 acpi [acpi] ACPI Battery Monitor Non-Functional o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne o kern/154955 acpi [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3 o kern/152438 acpi [acpi]: patch to acpi_asus(4) to add extra sysctls for o kern/152098 acpi [acpi] Lenovo T61p does not resume o i386/146715 acpi [acpi] Suspend works, resume not on a HP Probook 4510s o kern/145306 acpi [acpi]: Can't change brightness on HP ProBook 4510s f i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A o kern/143420 acpi [acpi] ACPI issues with Toshiba o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve f kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? f i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H f i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f f kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o kern/91594 acpi [acpi] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/ 33 problems total. Problem reports for tag 'acpi_hp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163268 acpi [acpi_hp] fix driver detach in absence of CMI 1 problem total. Problem reports for tag 'acpi_ibm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP 1 problem total. Problem reports for tag 'acpi_thermal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa 1 problem total. Problem reports for tag 'acpica': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152792 [acpica] [patch] move temperature conversion macros to 1 problem total. Problem reports for tag 'ada': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157397 [ada] ahci/ada/cam NCQ timeouts on Samsung and non-dis 1 problem total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets 2 problems total. Problem reports for tag 'aha': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/83765 [aha] Adaptec 1542-CP requires plug-and-play switch se 1 problem total. Problem reports for tag 'ahc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123674 scsi [ahc] ahc driver dumping o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 s kern/45568 gibbs [ahc] ahc(A19160) pci parity error s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S 6 problems total. Problem reports for tag 'ahci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/161768 [ahci] [panic] Panics after AHCI timeouts o kern/161248 [ahci] Time out, extremly slow response while copying o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar f kern/158569 gavin [ahci] ROOT MOUNT ERROR (caused by AHCI module) o kern/155628 [ahci] ahci disables dvd device o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume 8 problems total. Problem reports for tag 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o kern/123520 scsi [ahd] unable to boot from net while using ahd o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system 6 problems total. Problem reports for tag 'aic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with 1 problem total. Problem reports for tag 'aic7xxx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c o kern/156513 scottl [aic7xxx] [patch] missing check of scb. 2 problems total. Problem reports for tag 'altq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue s kern/94182 [altq] [request] altq support for vlan driver 4 problems total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag 3 problems total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o kern/153303 [amr] amr device driver dont detect logical drive amrd o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/113098 [amr] Cannot read from amrd while under heavy load o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a 6 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci s kern/75407 net [an] an(4): no carrier after short time o kern/36170 [an] [patch] an(4) does an_init() even if interface is 4 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup 1 problem total. Problem reports for tag 'apm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in 1 problem total. Problem reports for tag 'ar': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o kern/94393 [ar] PseudoRAID loses track of the master disk o kern/93771 [ar] [panic] atacontrol status ar1 causes panic 8 problems total. Problem reports for tag 'arcmsr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154299 [arcmsr] arcmsr fails to detect all attached drives o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 2 problems total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/145300 qingli [arp] ARP table mapping is not refreshed on a MAC addr o kern/144777 qingli [arp] proxyarp broken in 8.0 [regression] o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/119432 net [arp] route add -host -iface causes arp e o conf/23063 net [arp] [patch] for static ARP tables in rc.network 10 problems total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 2 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164694 [ata] Regression in 3726 port multiplier support in 9. o kern/162620 [ata] SATA device lost when changing brightness on Len o kern/162609 [ata] Cannot write to Sony DRU-835A DVD drive o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar o kern/159511 [ata] ad0 disappear after upgrading to 8.2-STABLE, roo o kern/159326 [ata] [panic] kernel panics when accessing spindowned o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o kern/149201 [ata] DVD/CD Drive Error o kern/148675 [ata] [panic] kernel panics - reboots o kern/148361 [ata] [panic] Kernel Panic, With Faulty Drives o kern/147227 [ata] SSD preformance issues o kern/146661 [ata] damage files on ufs on ata pseudo raid when runn o kern/146270 [ata] Divide by zero in ata driver o kern/144930 [ata] SATA DVD Drive is not detected s kern/144770 [ata] hard drive spindown functionality broken? o bin/144641 [ata] burncd(8) freezes whole system while trying to b o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o kern/143126 [ata] Data loss on read timeout o kern/142802 [ata] [panic] on removing drive: recursed on non-recur o i386/142421 i386 [ata] optical drives not found o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141653 [ata] [panic] Panic in ata? o kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o kern/138537 [ata] [panic] Memory modified after free o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/136356 [ata] SATA / ICH7 problems o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/132252 [ata] No CD/DVD devices found! o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130726 [ata] DMA errors accessing multiple SATA channels f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o kern/130171 [ata] UDMA CF cards do not work with FreeBSD o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/128035 [ata] unexpexted detach of external SATA drive s bin/127918 [ata] [request] [patch] ATA Security support for ataco o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o kern/126142 [ata] M5281: READ DMA faults, device detaching o kern/125859 [ata] [patch] sata access failure [regression] a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already f kern/120717 [ata] boot problem when recognizing ata1 o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o kern/120177 [ata] ATA DMA modes don't work on CF cards o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o kern/117972 [ata] SATA DLT V4 not recognized properly o kern/117443 [ata] [hang] system hang with ataidle o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/116935 [ata] Intermittent error with Promise PDC40718 o kern/115479 [ata] [request] ASUS P5K SE need more support o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 o kern/114213 [ata] optical drive not detected in the 6.x series of s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/106432 [ata] Record of disks (DVD-R) through the k3b program s kern/104950 [ata] [request] no support for SATA controller Initio o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96171 [ata] burncd(8): (ATA driver) fails to write in vcd mo o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m s bin/81692 [patch] [ata] atacontrol(8) support for disk APM and a o kern/79783 [ata] hw.ata.atapi_dma=1 reduces HDD writing transfer o kern/78758 [ata] [patch] Add support for re-sizing ATA disks o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 101 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/118161 [atapicam] failure message from ATAPI CDROM in the boo o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi a kern/78929 [atapicam] atapicam prevents boot, system hangs o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong 6 problems total. Problem reports for tag 'ataraid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159271 [ataraid] [patch] "pseudo-raid" controllers does not w o kern/148748 [ataraid] Metadata Read Write Inconsistency o kern/134887 [ataraid] source consistency problem o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr 6 problems total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165060 wireless [ath] vap->iv_bss race conditions causing crashes insi o misc/165021 [ath] ath device timeout during scan/attach, if wlan_c o kern/164721 wireless [ath] ath device timeouts o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode o kern/163719 wireless [ath] ath interface do not receive multicast o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin o kern/163573 wireless [ath] hostap mode TX buffer hang o kern/163559 wireless [ath] kernel panic AH_DEBUG o bin/163455 [ath] "bssid" in wlanN create_args does not change wla o kern/163318 wireless [ath] ath(4) stops working o kern/163082 wireless [ath] ar9285 diversity fixes o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang p kern/162475 bschmidt [ath] functions with return type HAL_BOOL (might) retu o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o kern/156884 wireless [ath] ath instablity o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154567 wireless [ath] ath(4) lot of bad series(0) o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/153448 wireless [ath] ath networking device loses association after a o kern/152750 wireless [ath] ath0 lot of bad series hwrate o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o kern/148322 wireless [ath] Triggering atheros wifi beacon misses in hostap o kern/148317 wireless [ath] FreeBSD 7.x hostap memory leak in net80211 or At o kern/148078 wireless [ath] wireless networking stops functioning o kern/145826 wireless [panic] [ath] Unable to configure adhoc mode on ath0/w p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 wireless [ath] [panic] ath(4) related panic o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach f kern/105348 wireless [ath] ath device stopps TX 51 problems total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data o kern/91311 net [aue] aue interface hanging o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o kern/51009 [aue] [patch] buggy aue driver fixed. 6 problems total. Problem reports for tag 'axe': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack o usb/88408 usb [axe] axe0 read PHY failed 2 problems total. Problem reports for tag 'bce': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155004 yongari [bce] [panic] kernel panic in bce0 driver o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 3 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/155442 jhb [bge] bge driver is seen but does not respond to netwo o kern/136876 yongari [bge] bge will not resume properly after suspend 2 problems total. Problem reports for tag 'binutils': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD 2 problems total. Problem reports for tag 'bktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/104675 [bktr] METEORSINPUT seemingly not setting input o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/56245 [bktr] Distorted and choppy video with bktr-driver on s kern/48279 [bktr] Brooktre878 may cause freeze o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. 18 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163985 [boot0] Incorrect operand size in boot0 o kern/159222 [boot0] unusual behavior writing boot0 from single use p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive 3 problems total. Problem reports for tag 'bootinst': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/22914 [bootinst] bootinst messages are not updated 1 problem total. Problem reports for tag 'bpf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164534 csjp [bpf] net.bpf.zerocopy_enable=1 makes pflogd eat cpu a o kern/163370 csjp [bpf] [request] enable zero-copy BPF by default o kern/158930 net [bpf] BPF element leak in ifp->bpf_if->bif_dlist p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents f kern/138029 net [bpf] [panic] periodically kernel panic and reboot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. 8 problems total. Problem reports for tag 'bsd.commands.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/159725 portmgr [bsd.commands.mk] Add new command: JOT 1 problem total. Problem reports for tag 'bsd.gnome.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/162260 gnome [bsd.gnome.mk] don't add useless dependency for INSTAL 1 problem total. Problem reports for tag 'bsd.java.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo 1 problem total. Problem reports for tag 'bsd.port.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164390 portmgr [bsd.port.mk] make package-recursive fails with noise o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ s ports/162178 portmgr [bsd.port.mk] Add bsd.clang.mk with Clang/LLVM support o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/158962 portmgr [bsd.port.mk] Make EXTRACT_CMD more flexible-- support o ports/158936 portmgr [bsd.port.mk] Add a filename field to DESKTOP_ENTRIES o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to s ports/148695 portmgr [bsd.port.mk] [patch] Easier / automatic regression-te s ports/148637 portmgr [bsd.port.mk] Options are ignored for any port that de o ports/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend f ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe 24 problems total. Problem reports for tag 'bsd.python.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken 1 problem total. Problem reports for tag 'busdma': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach 1 problem total. Problem reports for tag 'bwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) 1 problem total. Problem reports for tag 'bwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall 2 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164909 [cam] devfs does not create entries when removable med o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o kern/158351 [cam] [patch] missing #includes in o kern/153514 scsi [cam] [panic] CAM related panic s kern/149927 scsi [cam] hard drive not stopped before removing power dur o kern/148070 [cam] [panic] panic: _mtx_lock_sleep: recursed on non- a usb/143790 usb [boot] [cam] can not boot from usb hdd f kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo 22 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad 6 problems total. Problem reports for tag 'carp': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/153848 bz [carp] [ipv6] backup host can't connect to master host a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash p kern/132285 glebius [carp] alias gives incorrect hash in dmesg o kern/132107 glebius [carp] carp(4) advskew setting ignored when carp IP us f kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat p kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi p kern/126945 glebius [carp] CARP interface destruction with ifconfig destro p kern/126714 glebius [carp] CARP interface renaming makes system no longer o kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg p kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste p kern/117448 glebius [carp] 6.2 kernel crash [regression] p kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) 12 problems total. Problem reports for tag 'cas': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/157932 gavin [cas] loading CAS4 at boot hangs system 1 problem total. Problem reports for tag 'cbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114550 [cbb] Cardbus WiFi card activation problem 1 problem total. Problem reports for tag 'cd': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from 1 problem total. Problem reports for tag 'cd9660': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored 3 problems total. Problem reports for tag 'cdce': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op 1 problem total. Problem reports for tag 'ciss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159412 scsi [ciss] 7.3 RELEASE: ciss0 ADAPTER HEARTBEAT FAILED err o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o kern/149219 [ciss] DL380 G6 P212 trouble o kern/146287 scsi [ciss] ciss(4) cannot see more than one SmartArray con o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125647 [ciss] [panic] System randomly crashes - ciss driver 10 problems total. Problem reports for tag 'coda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162944 fs [coda] Coda file system module looks broken in 9.0 1 problem total. Problem reports for tag 'conf': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/160276 brueffer [conf] Spelling Mistake in comments in configure-files 1 problem total. Problem reports for tag 'coretemp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158160 [coretemp] coretemp reports incorrect CPU temperature 1 problem total. Problem reports for tag 'cpufreq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146436 [cpufreq] [panic] Panic when changing profile to econo o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf f kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de 7 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac p kern/115695 [crypto] When "device padlock" defined first ssh to ma o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p 6 problems total. Problem reports for tag 'cue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75710 [cue] cue0 device configuration causes kernel panic 1 problem total. Problem reports for tag 'cxgb': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi p kern/146759 np [cxgb] [patch] cxgb panic calling cxgb_set_lro() witho o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/125806 np [cxgb] cxgb packet counters do not work 4 problems total. Problem reports for tag 'cy': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom 1 problem total. Problem reports for tag 'dc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/82070 [dc] Not all dc(4) devices can be used: MII without an o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite 7 problems total. Problem reports for tag 'de': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133495 [de] interface not properly initialized on boot o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern 2 problems total. Problem reports for tag 'devctl': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use 1 problem total. Problem reports for tag 'devd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. 1 problem total. Problem reports for tag 'devd.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/157903 [devd.conf] [patch] automated kldload for USB class de 1 problem total. Problem reports for tag 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124881 [devfs] [patch] [request] Add possibility to check whi o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ p kern/114057 jh [devfs] devfs symlink over device doesn't work 3 problems total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo o kern/83254 [digi] driver can't init Digiboard PC/4e o kern/82227 [digi] Xem: chained concentrators not recognised o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection 6 problems total. Problem reports for tag 'diskless': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i 1 problem total. Problem reports for tag 'dri': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 1 problem total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 s kern/150514 kib [drm] [request] Reorganize DRM Directory to Support Dr p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel 5 problems total. Problem reports for tag 'dtrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164724 [dtrace] [patch] Signal bug in Dtrace o kern/160307 [dtrace] dtrace -lv can not identify the args of the o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr o kern/159612 [dtrace] walltimestamp and timestamp functions incompl p kern/159046 rwatson [dtrace] [patch] dtrace library is linked with a wrong o kern/159013 rwatson [dtrace] kldunload dtraceall crashing if userland dtra o bin/158431 [dtrace] crash in dt_proc_lookup when attaching to PID o kern/130998 [dtrace] DTrace stops tracing because of struct thread 8 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162558 net [dummynet] [panic] seldom dummynet panics f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same 12 problems total. Problem reports for tag 'e1000': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c 1 problem total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement 1 problem total. Problem reports for tag 'editline': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi 1 problem total. Problem reports for tag 'ef': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le 1 problem total. Problem reports for tag 'ehci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/156596 usb [ehci] Extremely high interrupt rate on ehci/uhci IRQ1 o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci 9 problems total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162153 net [em] intel em driver 7.2.4 don't compile o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/159294 net [em] em watchdog timeouts o kern/158635 net [em] TSO breaks BPF packet captures with em driver o kern/157418 net [em] em driver lockup during boot on Supermicro X9SCM- o kern/156667 net [em] em0 fails to init on CURRENT after March 17 o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o kern/153308 net [em] em interface use 100% cpu o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o kern/150516 jfv [em] e1000 receive queue handling problem o kern/148004 jfv [em] Inconsistent networking with em driver on FreeBSD o kern/147989 jfv [em] em Receive errors / CRC Errors / Alignment Errors o kern/146263 jfv [em] [panic] Panic in em(4) SIOCADDMULTI/em_set_multi/ p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/143573 jfv [em] em(4) NIC crashes intermittently o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140778 jfv [em] randomly panic in vlan/em o kern/140728 jfv [em] [patch] Fast irq registration in em driver o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122058 jfv [em] [panic] Panic on em1: taskq o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o kern/121298 jfv [em] [panic] Fatal trap 12: page fault while in kernel o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o kern/117043 jfv [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM o kern/115930 jfv [em] Dell nic enumeration problem o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/101226 jfv [em] Access to IPMI module is lost when the em driver 50 problems total. Problem reports for tag 'endian': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA 1 problem total. Problem reports for tag 'ep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151690 net [ep] network connectivity won't work until dhclient is 1 problem total. Problem reports for tag 'est': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/145718 i386 [est] [patch] fix freq calculation from MSR for CPUs w 1 problem total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx 1 problem total. Problem reports for tag 'exp-run': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/164896 portmgr [exp-run] add support for testing perl modules o ports/164599 mva [exp-run]: SDL ports update a ports/163878 portmgr [exp-run] add -pthread to all perl language builds f ports/163524 linimon [exp-run] estimate number of ports utilizing old inter o ports/162948 portmgr [exp-run] 10.0 exp-run without libreadline in base sys o ports/160624 portmgr [exp-run] Process USE_ flags in both parts of bsd.port a ports/159117 linimon [exp-run] Clang exp-run request. o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por 12 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155199 fs [ext2fs] ext3fs mounted as ext2fs gives I/O errors o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems 3 problems total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/149800 eadler [fdc] [patch] "driver bug: Unable to set devclass (dev o kern/119618 [fdc] Double Density Disks do not work correctly o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o kern/79944 [fdc] virtual floppy controller of Virtual PC does not s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o kern/74827 [fdc] Problem writing data to floppies o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/66960 [fdc] [patch] filesystems not unmounted during reboot 11 problems total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159971 mckusick [ffs] [panic] panic with soft updates journaling durin o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/116583 fs [ffs] [hang] System freezes for short time when using o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna 7 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 2 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/113785 firewire [firewire] dropouts when playing DV on firewire o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w 14 problems total. Problem reports for tag 'flowtable': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155604 kmacy [flowtable] Flowtable excessively caches dest MAC addr o kern/148018 net [flowtable] flowtable crashes on ia64 f kern/146792 net [flowtable] flowcleaner 100% cpu's core load f kern/144917 net [flowtable] [panic] flowtable crashes system [regressi 4 problems total. Problem reports for tag 'fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, 2 problems total. Problem reports for tag 'fusefs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE 1 problem total. Problem reports for tag 'fusefs-ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/159191 usb [fusefs-ntfs] write on fusefs-ntfs mounted partition r 1 problem total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139162 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir 1 problem total. Problem reports for tag 'fwohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re 1 problem total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC 2 problems total. Problem reports for tag 'gbde': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo o kern/66162 [gbde] gbde destroy error 3 problems total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o kern/162010 geom [geli] panic: Provider's error should be set (error=0) f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during o kern/160409 geom [geli] failed to attach provider o kern/157863 geom [geli] kbdmux prevents geli passwords from being enter o kern/157722 fs [geli] unable to newfs a geli encrypted partition o arm/154227 arm [geli] using GELI leads to panic on ARM p kern/152609 pjd [geli] geli onetime on gzero panics o kern/146429 pjd [geli][panic][patch] kernel panic if geli autodetach i o kern/134113 geom [geli] Problem setting secondary GELI key o kern/133931 geom [geli] [request] intentionally wrong password to destr o bin/131415 geom [geli] keystrokes are unregulary sent to Geli when typ o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120066 [geli] geli boot password input fail when using serial o kern/117188 [geli] System crashes/reboots on access to file on GEL o kern/115856 geom [geli] ZFS thought it was degraded when it should have f kern/111967 [geli] glabel - label is seemingly not written to disk o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE 19 problems total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164254 geom [geom] gjournal not stopping on GPT partitions o kern/164252 geom [geom] gjournal overflow o kern/164143 geom [geom] Partition table not recognized after upgrade R8 o kern/162036 [geom] Fatal trap 12: page fault while in kernel mode o kern/161979 geom [geom] glabel doesn't update after newfs, and glabel s o kern/161752 geom [geom] glabel(8) doesn't get gpt label change o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra f kern/159595 geom [geom] [panic] panic on gmirror unload in vbox [regres o kern/158197 geom [geom] geom_cache with size>1000 leads to panics o kern/157739 geom [geom] GPT labels with geom_multipath o kern/157724 geom [geom] gpart(8) 'add' command must preserve gap for sc o kern/157723 geom [geom] GEOM should not process 'c' (raw) partitions fo o kern/155994 geom [geom] Long "Suspend time" when reading large files fr o kern/154226 geom [geom] GEOM label does not change when you modify them o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/150555 geom [geom] gjournal unusable on GPT partitions o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/145818 geom [geom] geom_stat_open showing cached information for n o kern/145042 geom [geom] System stops booting after printing message "GE o kern/142563 geom [geom] [hang] ioctl freeze in zpool o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o kern/140352 geom [geom] gjournal + glabel not working f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/135898 geom [geom] Severe filesystem corruption - large files or l o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o kern/131353 geom [geom] gjournal(8) kernel lock f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/129674 geom [geom] gjournal root did not mount on boot o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/123122 geom [geom] GEOM / gjournal kernel lock o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122067 geom [geom] [panic] Geom crashed during boot o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/113837 geom [geom] unable to access 1024 sector size storage o kern/113419 geom [geom] geom fox multipathing not failing back o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o kern/94632 geom [geom] Kernel output resets input while GELI asks for o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa o kern/84556 geom [geom] [panic] GBDE-encrypted swap causes panic at shu o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( 45 problems total. Problem reports for tag 'geom_part': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa 5 problems total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o kern/154943 net [gif] ifconfig gifX create on existing gifX clears IP o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o conf/97014 net [gif] gifconfig_gif? in rc.conf does not recognize IPv o conf/96094 [gif] startup scripts do not configure gif interfaces o kern/95532 [gif] if_gif has artificial limitations 12 problems total. Problem reports for tag 'gjournal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass 6 problems total. Problem reports for tag 'glxsb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec 1 problem total. Problem reports for tag 'gmirror': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147667 geom [gmirror] Booting with one component of a gmirror, the o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk f kern/128276 geom [gmirror] machine lock up when gmirror module is used o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad 5 problems total. Problem reports for tag 'gnats': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/164396 bugmeister [GNATs] add 'enhancement' class o misc/164395 bugmeister [GNATs] add support for .patch attachments o misc/164394 bugmeister [GNATS] Change some fields to 'unset' to prevent misca 3 problems total. Problem reports for tag 'gpio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m 1 problem total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164475 net [gre] gre misses RUNNING flag after a reboot o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/125239 net [gre] kernel crash when using gre f kern/122065 bz [ipsec] [gre] gre over ipsec not working o conf/111557 [gre] link1 flag doesn't work as intended when specifi p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with 8 problems total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/163879 doc [handbook] handbook does not say about how to force to o docs/162433 doc [handbook] QEMU instructions for FreeBSD guests o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 o docs/161057 doc [handbook] Error in section 18.17.4 of the handbook o docs/160460 doc [handbook] Network setup guide suggestion o docs/160447 doc [handbook] Developer's Handbook contains some outdated o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/160445 doc [handbook] Handbook does not mention ACL o docs/159374 brd [handbook] Difficulty following guide on configuring l o docs/159298 doc [handbook] document Konqueror with Webkit support to i o docs/157908 doc [handbook] Description of post-install should include o docs/157337 eadler [handbook] [patch] Indentation changes to network serv f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145631 blackend [handbook] References to ttyd0 serial devices in handb o docs/144543 chinsan [handbook] IPFW doc change o docs/144515 doc [handbook] Expand handbook Table of contents o docs/143416 doc [handbook] IPFW handbook page issues a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev o docs/140082 bland [handbook] handbook/jails: russian translation is miss o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/132718 doc [handbook] Information about adding a new mirror is ou o docs/121585 doc [handbook] Wrong multicast specification o docs/59240 blackend [patch] [handbook] update: linux MATLAB 28 problems total. Problem reports for tag 'hast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158098 pjd [hast] problem with copying data on hast-device 1 problem total. Problem reports for tag 'hdac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, o kern/152500 multimedia [hdac] play interrupt timeout, channel dead 2 problems total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h o kern/162952 [headers] Problems including netinet/tcp_var.h o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c o kern/159279 [headers] [patch] __FreeBSD_cc_version in includes o kern/156637 [headers] [patch] sys/types.h can't be included when _ o kern/155429 [headers] including malloc.h should not abort compile. o kern/149960 [headers] syntax error /usr/include/machine/endian.h a kern/149012 gavin [headers] [patch] please replace '#include -interfac s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o kern/83778 [ip6] [patch] JPv6 cannot use Jumbo Frames o kern/77341 net [ip6] problems with IPV6 implementation 32 problems total. Problem reports for tag 'ipf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/77273 net [ipf] ipfilter breaks ipv6 statefull filtering on 5.3 s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 13 problems total. Problem reports for tag 'ipfilter': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162926 net [ipfilter] Infinite loop in ipfilter with fragmented I o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o kern/131601 net [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp 6 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164690 ipfw [ipfw] Request for ipv6 support in ipfw tables o kern/163873 ipfw [ipfw] ipfw fwd does not work with 'via interface' in o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156279 net [if_bridge][divert][ipfw] unable to correctly re-injec f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo o kern/148928 hrs [ipfw] Problem with loading of ipfw NAT rules during s o kern/148827 ipfw [ipfw] divert broken with in-kernel ipfw o kern/148689 ipfw [ipfw] antispoof wrongly triggers on link local IPv6 a o kern/148430 ipfw [ipfw] IPFW schedule delete broken. o conf/148137 hrs [ipfw] call order of natd and ipfw startup scripts o kern/148091 ipfw [ipfw] ipfw ipv6 handling broken. f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o kern/137232 ipfw [ipfw] parser troubles o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/130109 net [ipfw] Can not set fib for packets originated from loc f kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o bin/83046 ipfw [ipfw] ipfw2 error: "setup" is allowed for icmp, but s o kern/82724 ipfw [ipfw] [patch] [request] Add setnexthop and defaultrou o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/56031 luigi [ipfw] ipfw hangs on every invocation s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau 48 problems total. Problem reports for tag 'ipl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 2 problems total. Problem reports for tag 'ipmi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147855 [ipmi] [patch] kernel panic when IPMI enabled on some o kern/125389 [ipmi] [bce] IPMI problem with bce a kern/123904 [ipmi] ipmi(4) reports negative temperature values on a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/79143 [ipmi] Broadcom NIC driver do not work for IPMI 5 problems total. Problem reports for tag 'ipnat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt 3 problems total. Problem reports for tag 'ips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may 1 problem total. Problem reports for tag 'ipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164400 net [ipsec] immediate crash after the start of ipsec proce o kern/159629 net [ipsec] [panic] kernel panic with IPsec in transport m o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o kern/147894 net [ipsec] IPv6-in-IPv4 does not work inside an ESP-only o kern/146190 vanhu [ipsec][patch] NAT traversal does not work in transpor o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143208 net [ipsec] [gif] IPSec over gif interface not working p kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/129517 net [ipsec] [panic] double fault / stack overflow s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs 27 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131087 bschmidt [ipw] [panic] ipw / iwi - no sent/received packets; iw o kern/126339 net [ipw] ipw driver drops the connection o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o kern/84861 thompsa [ipw] [patch] still can't get working ipw(4) with adho a kern/82926 thompsa [ipw] ipw(4) doesn't seem to do WPA, also leaves entri 5 problems total. Problem reports for tag 'ipx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi 1 problem total. Problem reports for tag 'irq': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/119696 [irq] [ral] ral device causes massive interrupt storm o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o 7 problems total. Problem reports for tag 'isa': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/37441 davidxu [isa] [patch] ISA PNP parse problem 1 problem total. Problem reports for tag 'iscsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157770 scsi [iscsi] [panic] iscsi_initiator panic o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc 2 problems total. Problem reports for tag 'isp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159414 mjacob [isp] isp(4)+gmultipath(8) : removing active fiber pat o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up 3 problems total. Problem reports for tag 'iwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164365 wireless [iwi] iwi0: UP/DOWN in f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o kern/123559 net [iwi] iwi periodically disassociates/associates [regre a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/116185 net [iwi] if_iwi driver leads system to reboot 9 problems total. Problem reports for tag 'iwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163154 [iwn] fatal firmware error on 9.0-RC3 o kern/161407 bschmidt [iwn] iwn panic on 9.0-BETA3 o kern/161293 wireless [iwn] hang at startup when starting network o kern/154826 bschmidt [iwn] iwn driver fails to power on adapter after resum f kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif 5 problems total. Problem reports for tag 'ix': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) 1 problem total. Problem reports for tag 'ixgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and 10 problems total. Problem reports for tag 'jail': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159918 jail [jail] inter-jail communication failure o kern/156584 bz [jail] ipv4 packet is not forward to v4-mapped binding o kern/156111 jail [jail] procstat -b not supported in jail o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o kern/145444 secteam [jail] sysinstall and sade can access host's disks fro o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o kern/133265 jail [jail] is there a solution how to run nfs client in ja o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o bin/78763 pjd [patch] [jail] Added jail support to ps(1) o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai 17 problems total. Problem reports for tag 'joy': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/64588 [joy] [request] Extend joystick driver architecture to 1 problem total. Problem reports for tag 'kbdmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/146793 gavin [kbdmap] [patch] Danish kbdmap for MacBook o conf/72465 [kbdmap] [patch] United States International keyboard 2 problems total. Problem reports for tag 'kbdmux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153459 [kbdmux][patch] add option to specify built-in keymap p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c 2 problems total. Problem reports for tag 'kerberos': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o kern/161888 [kerberos] nfs -sec=krb5x/ldap/krb5-heimdal fix/upgrad o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup o kern/151444 [kerberos] Kerberos5 is broken in the base system from o bin/147175 [kerberos] [patch] libhx509.so containes references to o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o bin/4116 [patch] [kerberos] Kerberized login as .root fai 8 problems total. Problem reports for tag 'kern.post.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE 1 problem total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/163623 eadler [kernel] sysctl net.inet.icmp.icmplim_output descripti o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib o kern/162174 [kernel] [patch] rman_manage_region() error return pat o kern/161949 [kernel] 64-bit structures are used even with 32-bit c o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/146588 [kernel] [patch] sys/kern/kern_uuid.c has a le16dec be p kern/145865 [kernel] [panic] kernel memory leak with disabled devd o kern/145590 [kernel] [patch] SIG_ATOMIC_{MIN,MAX} does not match s o kern/145434 [kernel] [patch] Kernel messages about processes don't o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/138117 [kernel] [panic] spin lock held too long o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o kern/129164 [kernel] Wrong priority value for normal processes o kern/121073 [kernel] [patch] run chroot as an unprivileged user o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o kern/119202 [kernel] [patch] Add generic support for disabling dev o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c p kern/93331 [kernel] [patch] broken asm in kernel o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o kern/85651 [kernel] [patch] debugging code to show entries in eve o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o kern/81588 [kernel] [patch] Devices with SI_CHEAPCLONE flag don't s kern/79339 [kernel] [patch] Kernel time code sync with improvemen s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX s kern/50827 [kernel] [patch] [request] add sane record locking o kern/50526 [kernel] [patch] update to #! line termination o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o kern/37555 [kernel] [patch] vnode flags appear to be changed in n f kern/29355 [kernel] [patch] add lchflags support 56 problems total. Problem reports for tag 'keyboard': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o conf/160227 [keyboard] Please include new keyboard mapping: French o usb/156898 usb [keyboard] usb keyboard does not work while boot (ps2 o i386/153851 usb [keyboard] keyboard issues on new Intel Mother boards. o usb/153703 usb [keyboard] My USB keyboard can not be used in 8-STABLE o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER f kern/144938 usb [keyboard] [boot] Boot Failure with Apple (MB869LL/A) o kern/142390 [keyboard] 30th console switch hangs computer complete o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o kern/135164 [keyboard] UK currency key inactive o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o kern/115253 [keyboard] Wireless keyboard not working at boot o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, f kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p o kern/80694 [keyboard] [patch] atkbd looped on Acer TravelMate 270 o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( 24 problems total. Problem reports for tag 'kld': S Tracker Resp. Description -------------------------------------------------------------------------------- p docs/142938 wkoszek [kld] share/examples: fix warnings 1 problem total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o kern/149857 [kqueue] kqueue not reporting EOF under certain circum o kern/137246 [kqueue] kevents not generated for file writes through o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i 11 problems total. Problem reports for tag 'kthread': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend 1 problem total. Problem reports for tag 'ktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot 1 problem total. Problem reports for tag 'lagg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164901 [regression] [patch] [lagg] igb/lagg poor traffic dist o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) o kern/157182 net [lagg] lagg interface not working together with epair p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o kern/156226 net [lagg]: failover does not announce the failover to swi o kern/145728 net [lagg] Stops working lagg between two servers. o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/139117 net [lagg] + wlan boot timing (EBUSY) o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge 13 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115526 [libalias] libalias doesn't free memory o kern/105579 [libalias] dcc resume over natd in 6.x o kern/74450 [libalias] [patch] enable libalias/natd to create skip o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/41307 [libalias] [patch] logging of links lifecycle (add/del 6 problems total. Problem reports for tag 'libarchive': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport 4 problems total. Problem reports for tag 'libbsdxml': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157446 [libbsdxml] base expat needs minor fixes from vendor c 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164674 [patch] [libc] vfprintf/vfwprintf return error (EOF) o o kern/164637 [libc] Problem with vsnprintf in libc.so when compiled o kern/164445 [libc] lseek(2) always returns ENXIO with SEEK_DATA/SE s kern/164425 [libc] stat(2) doesn't work in 32bit mode on amd64 o kern/162976 [libc] cron fails unnecessarily via setlogin(2) with s o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159179 [libc] close(2) emitting ECONNRESET is not POSIX compl o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o kern/156684 [libc] getaddrinfo(3) returns improper error o kern/154915 [libc] [patch] Force stdio output streams to line-buff o bin/153502 [libc] regex(3) bug with UTF-8 locale p bin/152551 gavin [libc] Remove unused variables. o kern/152036 net [libc] getifaddrs(3) returns truncated sockaddrs for n o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc o stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o kern/149323 [libc] Applications with large memory footprint failin o kern/148581 [libc] fopen(3) fails with EMFILE if there are more th o kern/148179 [libc] Possible Memory Leak in getaddrinfo(3) o kern/147839 [libc] [patch] syscall(2) with wrong argument causing o kern/147756 [libc] open_socket_in: Protocol not supported - after o kern/147647 [libc] select(2) wakes after 24 hours even if timeout o kern/147226 [libc] read(fd, buffer, len) returns -1 immediately, o kern/146889 [libc] [patch] Not having NET_RT_IFLIST #defined cause o kern/146845 net [libc] close(2) returns error 54 (connection reset by o kern/142772 net [libc] lla_lookup: new lle malloc failed o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep s stand/141705 standards [libc] [request] libc lacks cexp (and friends) o kern/141682 [libc] [patch] Faster version of strncpy(3) a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139080 [libc] [patch] closelog() can close negative file desc o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o kern/136669 [libc] [patch] setmode(3) should always set errno on e o kern/134391 [libc] dladdr(3) does effectively not work on main pro o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error a bin/130504 [libc] Serious bug in regular expression library (rege o kern/128933 kib [libc] realpath(3) does not follow SUS specification f o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/126230 [libc] select(2) causing weird process cpu usage and l o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o kern/124160 net [libc] connect(2) function loops indefinitely o kern/121656 [libc] [patch] telldir(3) issues o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware s kern/114578 [libc] wide character printing using swprintf(dst, n, o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o bin/108118 [libc] files should not cache their EOF status p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o bin/102515 [libc] fsck_ufs crashes if no console at all o kern/100709 net [libc] getaddrinfo(3) should return TTL info o bin/99800 [libc] [patch] Add support for profiling multiple exec a bin/96840 [libc] [patch] getgrent() does not return large groups o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o bin/95002 [libc] hash db source code has a bug which prevents us p stand/94729 gnn [libc] fcntl() throws undocumented ENOTTY o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o kern/82980 [libc] realpath(3) treats regular files as directories s kern/79048 [libc] realloc() copies data even when the size of all o kern/78787 [libc] [patch] sysconf(_SC_CLK_TCK) may return incorre o kern/76398 [libc] stdio can lose data in the presence of signals o kern/75855 [libc] getpwent(3) functions on 5.3 with large passwor s bin/75767 [libc] [request] "fdclose" function in libc o kern/70511 [libc] When fread(3)ing with buffering turned off, man o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/68690 [libc] write(2) returns wrong value when EFAULT s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI s kern/56720 [libc] [request] UNICODE support in Resolver o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31647 net [libc] socket calls can return undocumented EINVAL o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d 87 problems total. Problem reports for tag 'libcrypt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/75934 [libcrypt] [patch] missing blowfish functionality in p 2 problems total. Problem reports for tag 'libcrypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O 1 problem total. Problem reports for tag 'libdialog': S Tracker Resp. Description -------------------------------------------------------------------------------- p gnu/148609 imp [libdialog] [patch] printing to a checklist window on 1 problem total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/148881 [libdisk] [patch] libdisk emits errors w/ disks that c o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk 6 problems total. Problem reports for tag 'libedit': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159226 [libedit] [patch] libedit does not always restore its p bin/145528 gavin [libedit] ftp(1) crashes in libedit when cancelling a o kern/117348 [libedit] Loading history file sometimes fails in libe 3 problems total. Problem reports for tag 'libexec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/110017 [libexec] [patch] serial port console output garbled o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/45729 [libexec] [patch] make rbootd transfer the default fil 5 problems total. Problem reports for tag 'libfetch': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature p bin/151866 des [libfetch] [patch] closing the cached FTP connection o kern/140835 des [libfetch] fetchParseURL(3) returns success with inval o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o kern/116005 des [libfetch] libfetch accepts invalid URLs o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip 6 problems total. Problem reports for tag 'libgcc': S Tracker Resp. Description -------------------------------------------------------------------------------- s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi 2 problems total. Problem reports for tag 'libgeom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157879 geom [libgeom] [regression] ABI change without version bump 1 problem total. Problem reports for tag 'libgssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147454 [libgssapi] libgssapi (heimdal) broken in head/, stabl o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free 2 problems total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134249 [libiconv] [patch] ignore case for character set names 1 problem total. Problem reports for tag 'libipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in 1 problem total. Problem reports for tag 'libkrb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol 1 problem total. Problem reports for tag 'libkvm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163926 eadler [libkvm] libkvm.so.5 exports private symbols o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free 4 problems total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o stand/152415 kargl [libm] implementation of expl() o kern/147599 [libm] [patch] Import netbsd complex functions into ou 2 problems total. Problem reports for tag 'libmagic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149936 [libmagic] [patch] wrong handling of decompression uti 1 problem total. Problem reports for tag 'libmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78646 [libmap] [patch] libmap should canonicalize pathnames 1 problem total. Problem reports for tag 'libmd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file 1 problem total. Problem reports for tag 'libpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161456 [libpam] on a system bound to an LDAP server, top trie o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o bin/141016 [libpam] PAM checks in sshd too few? o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o bin/115946 des [libpam] [patch] not thread-safe o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc s kern/20333 des [libpam] ftp login fails on unix password when s/key a 13 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155370 [libpcap] [patch] description string is broken o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o bin/146592 [libpcap] [patch] libpcap 1.0.0 doesn't have error mes o kern/144325 [libpcap] tcpdump compiles complex expression to incor o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n 5 problems total. Problem reports for tag 'librpcsvc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa 1 problem total. Problem reports for tag 'libssh': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159745 [libssh] [patch] Fix improperly specified dependency l 1 problem total. Problem reports for tag 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/83424 [libstand] [patch] improper handling of malloc failure 3 problems total. Problem reports for tag 'libstdc++': Problem reports for tag 'libtacplus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will 1 problem total. Problem reports for tag 'libteken': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144743 [libteken] mouse positioning partialy working o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod 3 problems total. Problem reports for tag 'libusb': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker 2 problems total. Problem reports for tag 'libusbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83451 [libusbhid] [patch] improper handling of malloc failur 1 problem total. Problem reports for tag 'libutil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/84797 [libutil] [patch] State engine in the libutils propert s kern/38347 [libutil] [patch] [request] new library function abs2r o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f 3 problems total. Problem reports for tag 'libvgl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83426 [libvgl] [patch] improper handling of malloc failures 1 problem total. Problem reports for tag 'libwrap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all 1 problem total. Problem reports for tag 'libz': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/154073 delphij [libz] libz causes perl to exit on signal 11 1 problem total. Problem reports for tag 'linprocfs': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w 3 problems total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp p kern/148076 dchagin [linux] linux_sys_futex: unknown op 265 o kern/146237 emulation [linux] Linux binaries not reading directories mounted o kern/140156 emulation [linux] cdparanoia fails to read drive data o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails s kern/118230 acm [linux] games/linux-quake4 fails to start o kern/86619 emulation [linux] linux emulator interacts oddly with cp a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work s kern/21463 eadler [linux] Linux compatability mode should not allow setu 17 problems total. Problem reports for tag 'lo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o 2 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/155441 [loader] [patch] Firewire support in loader is broken f i386/138211 gavin [loader] Boot fails on Intel X5550 o kern/110995 [loader] [patch] loader wastes space worth symtab size o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same 9 problems total. Problem reports for tag 'locale': S Tracker Resp. Description -------------------------------------------------------------------------------- a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac p conf/105100 [patch] [locale] no support for lv (latvian) locale a conf/91106 versus [locale] date definitions in pl_PL locale are wrong 3 problems total. Problem reports for tag 'login.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/155480 [login.conf] maxproc does not work when command runnin 1 problem total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting 3 problems total. Problem reports for tag 'mac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145040 [mac] PANIC_REBOOT_WAIT_TIME not honored o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa 2 problems total. Problem reports for tag 'make.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the 2 problems total. Problem reports for tag 'mbuf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou 2 problems total. Problem reports for tag 'mca': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146590 [mca] [panic] MCA panics 7.3 1 problem total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163801 fs [md] [request] allow mfsBSD legacy installed in 'swap' o kern/162502 [md] mount -t mfs on vnode-based md device destroy him p kern/154228 fs [md] md getting stuck in wdrain state 3 problems total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164258 [mfi] mfi does not work with PERC5/i in AMD M350 mothe o kern/157293 [mfi] mfiutil/mfi does not allow adding a previously c o kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if o kern/155499 [mfi] mfi(4) command timeout loop on boot on releng/8. o kern/124989 [mfi] mfi driver error - unexpected sense 5 problems total. Problem reports for tag 'minidump': S Tracker Resp. Description -------------------------------------------------------------------------------- p amd64/139614 avg [minidump] minidumps fail when many interrupts fire o kern/118713 fs [minidump] [patch] Display media size required for a k 2 problems total. Problem reports for tag 'mips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR 2 problems total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o i386/55603 [mly] unable to reboot when system runs from Mylex A35 3 problems total. Problem reports for tag 'mmc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/141756 gavin [mmc] MMC card attached to blocks keybo 1 problem total. Problem reports for tag 'mmcsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164536 [modules] [request] disable building kernel modules th o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/114291 [RFE] [modules] [patch] add dynamic module references o kern/96346 [modules] [patch] disable build of modules that are al s kern/83738 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k f kern/48976 gavin [modules] nwfs.ko oddity 9 problems total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o kern/89166 [mouse] jumpy mouse movement o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/86298 usb [mouse] Known good USB mouse won't work with correct s 5 problems total. Problem reports for tag 'mpd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162267 qingli [mpd] mpd kernel panic 1 problem total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164844 [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SA o kern/163812 scsi [mpt] problem with mpt driver for lsi controlled conne f kern/163130 scsi [mpt] cannot dumpon to mpt connected disk o kern/162256 scsi [mpt] QUEUE FULL EVENT and 'mpt_cam_event: 0x0' o kern/147704 scsi [mpt] sys/dev/mpt: new chip revision, partially unsupp o kern/145768 scsi [mpt] can't perform I/O on SAS based SAN disk in freeb o kern/142351 scsi [mpt] LSILogic driver performance problems o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/128282 gavin [mpt] system failure on removing two drives o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/117688 [mpt] mpt disk timeout and hang 17 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154828 fs [msdosfs] Unable to create directories on external USB o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o kern/123939 fs [msdosfs] corrupts new files f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o kern/111843 fs [msdosfs] Long Names of files are incorrectly created o kern/109024 fs [msdosfs] [iconv] mount_msdosfs: msdosfs_iconv: Operat o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f kern/87368 bde [msdosfs] fat32 is very slow o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o kern/79441 trhodes [msdosfs] problem writing on mounted msdos-fs at /mnt p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c 23 problems total. Problem reports for tag 'msk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164569 net [msk] [hang] msk network driver cause freeze in FreeBS o kern/160420 net [msk] phy write timeout on HP 5310m o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel 3 problems total. Problem reports for tag 'multicast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155680 net [multicast] problems with multicast o kern/154169 net [multicast] [ip6] Node Information Query multicast add o kern/149086 net [multicast] Generic multicast join failure in 8.1 3 problems total. Problem reports for tag 'mutex': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131573 [mutex] lock_init() assumes zero-filled struct 1 problem total. Problem reports for tag 'mwl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163724 wireless [mwl] [patch] NULL check before dereference o kern/146427 net [mwl] Additional virtual access points don't work on m o kern/146426 net [mwl] 802.11n rates not possible on mwl o kern/146425 net [mwl] mwl dropping all packets during and after high u 4 problems total. Problem reports for tag 'mxge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update 1 problem total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o misc/157533 imp [nanobsd][patch] save_cfg improvements p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o misc/145962 imp [nanobsd] [patch] improved cfg save script p misc/144553 imp [nanobsd] NanoBSD's updatep* scripts fail with boot0cf p misc/140436 imp [nanobsd] pkg-add process fails when there is no /usr/ o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re 12 problems total. Problem reports for tag 'nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 3 problems total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe o kern/156016 [ncurses] Arrow keys don't work with any ncurses based o kern/154609 ed [ncurses] END key under screen not sending correct cod o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) 4 problems total. Problem reports for tag 'ndis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/131781 net [ndis] ndis keeps dropping the link f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress 11 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152569 net [net]: Multiple ppp connections and routing table prob o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad s kern/81147 jfv [net] [patch] em0 reinitialization while adding aliase s kern/12071 fanf [net] [patch] new function: large scale IP aliasing 6 problems total. Problem reports for tag 'net80211': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163574 wireless [net80211] overly-frequent HT occupancy changes 1 problem total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/154091 net [netgraph] [panic] netgraph, unaligned mbuf? o kern/153497 net [netgraph] netgraph panic due to race conditions o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/104751 net [netgraph] kernel panic, when getting info about my tr o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/97306 net [netgraph] NG_L2TP locks after connection with failed o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/82881 net [netgraph] [panic] ng_fec(4) causes kernel panic after o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE 22 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re p kern/146250 bz [netinet] [patch] Races on interface alias removal o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat 13 problems total. Problem reports for tag 'netisr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164145 [netisr] when one of netisr threads take 100% system i o kern/164130 rwatson [netisr] broken netisr initialization o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o kern/100519 net [netisr] suggestion to fix suboptimal network polling 4 problems total. Problem reports for tag 'netsmb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163135 [netsmb] Wrong check in netsmb 1 problem total. Problem reports for tag 'network.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160892 eadler [network.subr] [patch] add vboxnet[0-9]* to noafif lis o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o conf/147681 [network.subr][patch] Add inet6 keyword if it wasn't s 3 problems total. Problem reports for tag 'nfe': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/147684 yongari [nfe] nVidia MCP55 driver blocks IPMI LAN on load f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki 2 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/164933 [nfs] [patch] mountd(8) drops mixed security flavors f o kern/164462 fs [nfs] NFSv4 mounting fails to mount; asks for stronger o kern/163501 fs [nfs] NFS exporting a dir and a subdir in that dir to o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() f kern/157929 fs [nfs] NFS slow read o kern/154255 net [nfs] NFS not responding o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/147998 [nfs] [patch] NFS -mapall group permissions ignored wh o kern/146502 fs [nfs] FreeBSD 8 NFS Client Connection to Server o kern/145189 fs [nfs] nfsd performs abysmally under load o kern/143825 fs [nfs] [panic] Kernel panic on NFS client o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o kern/137327 dfr [nfs] nfs nlm memery leak o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c o kern/123755 dfr [nfs] fstat() fails to return ESTALE with rename()d fi o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown o bin/118318 mohans [nfs] NFS server hangs under special circumstances o kern/118126 fs [nfs] [patch] Poor NFS server write performance o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111162 [nfs] nfs_getpages does not restart interrupted system o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/105241 [nfs] problem with Linux NFS server up/down combined w o kern/97329 [nfs] [patch] code simplification o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur f kern/81770 [nfs] Always "NFS append race" at every NFS mount with o kern/79336 [nfs] NFS client doesn't detect file updates on Novell s kern/78884 [nfs] [patch] nfs client cache negative lookups o kern/78673 [nfs] [patch] nfs client open resets attrstamp ever if o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea s kern/67545 [nfs] NFS Diskless Mount Option Suggestion a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/35669 [nfs] NFSROOT breaks without a gateway o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo s kern/17108 [nfs] SecureRPC not supported in mount_nfs command 69 problems total. Problem reports for tag 'ng_l2tp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146082 net [ng_l2tp] a false invaliant check was performed in ng_ 1 problem total. Problem reports for tag 'ng_nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125704 [ng_nat] kernel libalias: repeatable panic 1 problem total. Problem reports for tag 'nis': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o bin/40215 [nis] NIS host search not terminate o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/24461 [nis] Being able to increase the YP timeout without re o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus 21 problems total. Problem reports for tag 'notes': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf 1 problem total. Problem reports for tag 'nsswitch.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163798 [nsswitch.conf] nsswitch.conf with nss_ldap ignore [su o conf/156945 [nsswitch.conf] Name service Switch does not work as d o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on 4 problems total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o kern/116515 rwatson [ntfs] NTFS mount does not check that user has permiss o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem 11 problems total. Problem reports for tag 'null': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139014 [null] /dev/null must be immunable to delete/unlink p kern/138526 gnn [null] /dev/null does not support nonblocking operatio 2 problems total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o kern/162591 fs [nullfs] cross-filesystem nullfs does not work as expe o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou o kern/158231 fs [nullfs] panic on unmounting nullfs mounted over ufs o o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o kern/130210 fs [nullfs] Error by check nullfs o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/51583 fs [nullfs] [patch] allow to work with devices and socket 12 problems total. Problem reports for tag 'nwfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange 1 problem total. Problem reports for tag 'ofw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112477 marius [ofw] [patch] Add support to set the node and type on 1 problem total. Problem reports for tag 'ohci': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion 6 problems total. Problem reports for tag 'openbsm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu 1 problem total. Problem reports for tag 'openpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin 1 problem total. Problem reports for tag 'oss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r 1 problem total. Problem reports for tag 'padlock': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164565 [padlock] [panic] kernel crash when kldunload'ing padl 1 problem total. Problem reports for tag 'pae': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/129550 i386 [pae] [kqueue] crash with PAE kernel 1 problem total. Problem reports for tag 'pam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o bin/113230 des [pam] [patch] const-ify PAM-headers o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/83099 des [pam] pam_login_access change causes cyrus-sasl-saslau s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password 8 problems total. Problem reports for tag 'parallels': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec f kern/138944 emulation [parallels] [regression] Parallels no longer works in 2 problems total. Problem reports for tag 'patm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 1 problem total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164189 [pccard] FreeBSD 9.0-RELEASE on Toshiba Satellite Pro o conf/160373 [pccard] [patch] pccard_ether does not take settings i o kern/147127 [pccard] [patch] Fix panic in pccard.c o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp 5 problems total. Problem reports for tag 'pccbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128608 imp [pccbb] [patch] add support for powering down and up C o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF 4 problems total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method f kern/158391 gavin [pci] Resource allocation issues with hda/ath o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m f kern/65355 [pci] [patch] TC1000 serial ports need enabling 8 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159236 multimedia [pcm] [patch] set PCM_CAP_DEFAULT for the default snd o kern/152622 multimedia [pcm] uaudio recording problem o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi 6 problems total. Problem reports for tag 'periodic': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163572 [periodic] not full output in daily run output is ambi o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o conf/152807 [periodic] security 900.tcpwrap does not report any re o kern/135502 net [periodic] Warning message raised by rtfree function i o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o conf/70715 [periodic] Lack of year in dates in auth.log can cause o conf/47596 [periodic] daily security run complains if timezone ch o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea 9 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164402 pf [pf] pf crashes with a particular set of rules when fi o kern/164271 pf [pf] not working pf nat on FreeBSD 9.0 [regression] o kern/163208 pf [pf] PF state key linking mismatch o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o kern/160370 pf [pf] Incorrect pfctl check of pf.conf o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/153307 pf [pf] Bug with PF firewall o kern/148290 pf [pf] "sticky-address" option of Packet Filter (PF) blo o kern/148260 pf [pf] [patch] pf rdr incompatible with dummynet o kern/147789 pf [pf] Firewall PF no longer drops connections by sendin o kern/146832 bz [pf] "(self)" not always matching all local IPv6 addre o kern/146719 net [pf] [panic] PF or dumynet kernel panic o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin s kern/143808 virtualization[pf] pf does not work inside jail o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o conf/142961 pf [pf] No way to adjust pidfile in pflogd o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/140697 pf [pf] pf behaviour changes - must be documented o kern/137982 pf [pf] when pf can hit state limits, random IP failures o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/133732 pf [pf] max-src-conn issue o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent f kern/132176 pf [pf] pf stalls connection when using route-to [regress o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o kern/127920 pf [pf] ipv6 and synproxy don't play well together o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w o kern/127439 pf [pf] deadlock in pf f kern/127345 pf [pf] Problem with PF on FreeBSD7.0 [regression] o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is o kern/125467 pf [pf] pf keep state bug while handling sessions between s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. o kern/93825 pf [pf] pf reply-to doesn't work o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/82271 pf [pf] cbq scheduler cause bad latency 49 problems total. Problem reports for tag 'pf.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/145727 [pf.conf] pf rules not applied on boot if using inet6 1 problem total. Problem reports for tag 'pfil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164490 net [pfil] Incorrect IP checksum on pfil pass from ip_outp s kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall 3 problems total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker 4 problems total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/52256 embedded [picobsd] picobsd build script does not read in user/s o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt 3 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/93685 jilles [pipe] select on pipe write fails from '0' end 1 problem total. Problem reports for tag 'plip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/102035 net [plip] plip networking disables parallel port printing 2 problems total. Problem reports for tag 'pmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ 1 problem total. Problem reports for tag 'portalfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9679 [portalfs] [patch] fix for uninterruptible open in por 1 problem total. Problem reports for tag 'powerd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I 1 problem total. Problem reports for tag 'ppbus': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 1 problem total. Problem reports for tag 'ppc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o conf/119550 [ppp] ppp not starting during bootup. o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces s kern/84386 [ppp] [request] PPPoA Authentication built into FreeBS o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 15 problems total. Problem reports for tag 'pppd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr 3 problems total. Problem reports for tag 'procfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o kern/97505 [procfs] file entry of procfs points to "unknown" o kern/96999 [procfs] [patch] procfs reports incorrect information s kern/19535 [procfs] [patch] procfs_rlimit tidyup 4 problems total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/161043 jhb [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o kern/159063 [psm] ALPS touchpad recognized as PS mouse (no scrl, n o kern/147237 [psm] [patch] There is no IBM/Lenovo TrackPoint suppor o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o kern/137228 [psm] synaptics support delays 'mouse up' events when o kern/129125 [psm] psm0: failed to reset the aux device. f kern/128308 gavin [psm] psm0 cause page fault o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 o kern/109161 philip [psm] synaptic touchpad doesn't work o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation 16 problems total. Problem reports for tag 'ptrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace 1 problem total. Problem reports for tag 'pty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs 1 problem total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163450 [puc] [patch] new pci quad serial card supported by pu o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s 5 problems total. Problem reports for tag 'pxeboot': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146162 [pxeboot] PXE loader(8) sets nfs_opts[] = "export" cau o i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin 5 problems total. Problem reports for tag 'quota': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164734 [quota] 9.0 quota not working [regression] 1 problem total. Problem reports for tag 'quotas': S Tracker Resp. Description -------------------------------------------------------------------------------- s bin/42004 [quotas] quota is still IPv4 only, and not INET indepe 1 problem total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o f kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] f kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati 3 problems total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o kern/153937 net [ral] ralink panics the system (amd64 freeBSDD 8.X) wh f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 f kern/134168 gavin [ral] ral driver problem on RT2525 2.4GHz transceiver o kern/132238 [ral] ral driver does not support RT2860 o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o kern/119696 [irq] [ral] ral device causes massive interrupt storm f kern/117655 sam [ral] ral%d: device timeout when running as an access o kern/111457 net [ral] ral(4) freeze o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P o kern/95519 net [ral] ral0 could not map mbuf o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP f kern/82456 gavin [ral] WITNESS warning/backtrace in if_ral 19 problems total. Problem reports for tag 'random': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc 2 problems total. Problem reports for tag 'rc': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser 3 problems total. Problem reports for tag 'rc.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip 2 problems total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o conf/154554 rc [rc.d] [patch] statd and lockd fail to start o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck o conf/147444 rc [rc.d] [patch] /etc/rc.d/zfs stop not called on reboot o conf/145445 rc [rc.d] error in /etc/rc.d/jail (bad logic) o conf/145440 hrs [rc.d] [patch] add multiple fib support (setfib) in /e o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o conf/137629 rc [rc.d] background_dhclient rc.conf option causing doub o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o conf/135338 rc [rc.d] pf startup order seems broken [regression] o bin/134250 [rc.d] mountlate: bogus error message when using neste o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a 22 problems total. Problem reports for tag 'rc.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands p conf/150752 dougb [rc.subr] [patch] be not needed to eval $_pidcmd on re 2 problems total. Problem reports for tag 'rctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162407 [rctl] [panic] rctl crashes kernel with a page fault ( o kern/161552 [rctl] [panic] kernel panic with RCTL option: racct_al 2 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162509 net [re] [panic] Kernel panic may be related to if_re.c (r o kern/161381 net [re] RTL8169SC - re0: PHY write failed f kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. o kern/157429 net [re] Realtek RTL8169 doesn't work with re(4) o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f 5 problems total. Problem reports for tag 'release': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/145580 [release] /usr/src/release/Makefile does not honor HTT 1 problem total. Problem reports for tag 'resolver': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136013 [resolver] Resolver wrong diagnostics 1 problem total. Problem reports for tag 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' 1 problem total. Problem reports for tag 'route': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/161899 rc [route] ntpd(8): Repeating RTM_MISS packets causing hi o kern/155177 net [route] [panic] Panic when inject routes in kernel o kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 o kern/134531 net [route] [panic] kernel crash related to routes/zebra a kern/71474 net [route] route lookup does not skip interfaces marked d 5 problems total. Problem reports for tag 'rp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44202 [rp] [patch] -stable rp driver does not work with mult s i386/28975 [rp] RocketPort problems 2 problems total. Problem reports for tag 'rpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158340 [rpc] Possible dereference of null pointer by code tha p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o kern/150036 [rpc] Sun RPC license has less restrictions now. f kern/117711 [rpc] rpcbind binds to all interfaces on random ports o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux 7 problems total. Problem reports for tag 'rpc.quotad': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support 1 problem total. Problem reports for tag 'rtalloc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs 1 problem total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/152662 [rtld] load libraries with address hint (cf. prelink) o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/84199 [rtld] dlinfo does not handle RTLD_DI_SERINFOSIZE prop 4 problems total. Problem reports for tag 'rum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149643 net [rum] device not sending proper beacon frames in ap mo p usb/146693 thompsa [rum] Edimax EW‐7318USG not found in usbdevs or a kern/141696 virtualization[rum] [panic] rum(4)+ vimage = kernel panic o kern/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o usb/133296 usb [rum] driver not working properly in hostap mode o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel 13 problems total. Problem reports for tag 'run': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/162500 maho math/suitesparse: gmake[2]: *** [run] Segmentation fau o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o usb/144387 usb [run] [panic] if_run panic 3 problems total. Problem reports for tag 'sa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe 1 problem total. Problem reports for tag 'safe': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/110662 sam [safe] safenet driver causes kernel panic 1 problem total. Problem reports for tag 'sbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136327 firewire [sbp] [boot] Asus M3N78-EM motherboard cannot boot wit o kern/119572 firewire [sbp] PowerBook not accessable when in target mode 2 problems total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163587 [sched_ule] The ULE scheduler does not load in the fou o kern/161097 [sched_ule] Unkillable process hanging waiting for "ex o kern/128177 jeff [sched_ule] wrong CPU usage reported by top(1)/ps(1) w p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/117420 jeff [sched_ule] round off in sched_balance_pair() s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a 7 problems total. Problem reports for tag 'scheduler': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' 1 problem total. Problem reports for tag 'scsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re o kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 drive if dis o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. 3 problems total. Problem reports for tag 'ses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi 1 problem total. Problem reports for tag 'sg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120487 scsi [sg] scsi_sg incompatible with scanners 1 problem total. Problem reports for tag 'siis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145714 [siis] removed SATA device on port multiplier resets e 1 problem total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159647 [sio] device sio will not compile o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o kern/128036 [sio] [patch] serial console mostly ignores typein to a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/97665 [sio] hang in sio driver o kern/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i o kern/51982 remko [sio] sio1: interrupt-level buffer overflows o kern/49039 [sio] [patch] add support for RS485 hardware where dir o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/26261 [sio] silo overflow problem in sio driver s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o 13 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 1 problem total. Problem reports for tag 'smb': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect 1 problem total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/159048 fs [smbfs] smb mount corrupts large files o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o kern/94733 fs [smbfs] smbfs may cause double unlock o kern/91134 fs [smbfs] [patch] Preserve access and modification time a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o kern/87859 fs [smbfs] System reboot while umount smbfs. o kern/80088 fs [smbfs] Incorrect file time setting on NTFS mounted vi o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o kern/61503 fs [smbfs] mount_smbfs does not work as non-root o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o kern/36566 fs [smbfs] System reboot with dead smb mount and umount 26 problems total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164203 [smp] usr/src/sys/sys/smp.h:124: warning: comparison b o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/67830 [smp] [patch] CPU affinity problem with forked child p 3 problems total. Problem reports for tag 'snapshots': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162362 fs [snapshots] [panic] ufs with snapshot(s) panics when g 1 problem total. Problem reports for tag 'snd_emu10k1': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system 7 problems total. Problem reports for tag 'snd_hda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s f kern/158424 multimedia [snd_hda] snd_hda driver doesn't expose 'rec' flag for o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/150284 multimedia [snd_hda] No gain with Audio o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o kern/141826 multimedia [snd_hda] load of snd_hda module fails o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att 10 problems total. Problem reports for tag 'snd_uadio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158979 multimedia [snd_uadio] snd_uaudio fails to initialize built-in mi 1 problem total. Problem reports for tag 'snd_uaudio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156726 multimedia [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant 4 problems total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou p kern/144061 rwatson [socket] race on unix socket close o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm p kern/127360 net [socket] TOE socket options missing from sosetopt() o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec a kern/97921 rwatson [socket] close() socket deadlocks blocked threads f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/21998 net [socket] [patch] ident only for outgoing connections o kern/5877 net [socket] sb_cc counts control data as well as data dat 12 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o kern/148741 multimedia [sound] Headphones are deaf (do not work) on Lenovo Th o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o power/133503 ppc [sound] Sound stutter after switching ttys o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla f usb/80040 usb [sound] [hang] Use of sound mixer causes system freeze o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 54 problems total. Problem reports for tag 'sshd_config': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163843 [sshd_config] Modified VersionAddendum field in sshd_c 1 problem total. Problem reports for tag 'stf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154214 net [stf] [panic] Panic when creating stf interface o conf/148017 hrs [stf] [patch] rc script for stf does not honour create s kern/143673 net [stf] [request] there should be a way to support multi o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/123858 net [stf] [patch] stf not usable behind a NAT 5 problems total. Problem reports for tag 'swap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162382 [swap] Orphaned swap references not garbage collected; 1 problem total. Problem reports for tag 'swi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net 4 problems total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163064 [fix][sym]driver tries to nego synch trans with everyo o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load 4 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o kern/152162 [syscons] On syscons, pressing delete key results in p o kern/148367 [syscons] [patch] Add loader tunable to override SC_HI o kern/148130 [syscons] Inappropriate ioctl for device f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/117242 [syscons] [hang] console hangs when powerd is adaptive o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH s bin/90082 [syscons] [patch] curses ACS line graphics support for o kern/83109 [syscons] syscons does not always display colors corre o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/46973 [syscons] [patch] [request] syscons virtual terminals o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/31890 [syscons] [patch] new syscons font s kern/15436 [syscons] syscons extension: "propellers" 17 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls p kern/148580 gavin [sysctl][patch] Document some sys/kern sysctls o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/54439 [sysctl] [patch] Protecting sysctls variables by given 10 problems total. Problem reports for tag 'tap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158686 virtualization[patch] [tap] Add VIMAGE support to if_tap o kern/123892 net [tap] [patch] No buffer space available o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap 3 problems total. Problem reports for tag 'tcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159795 net [tcp] excessive duplicate ACKs and TCP session freezes o kern/159621 net [tcp] [panic] panic: soabort: so_count f kern/155585 melifaro [tcp] [panic] tcp_output tcp_mtudisc loop until kernel p kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r o kern/154600 net [tcp] [panic] Random kernel panics on tcp_output o kern/154557 net [tcp] Freeze tcp-session of the clients, if in the gat a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t f kern/123617 andre [tcp] breaking connection when client downloading file o kern/123603 andre [tcp] tcp_do_segment and Received duplicate SYN f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a kern/116335 andre [tcp] Excessive TCP window updates o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s 20 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- p conf/147992 gavin [termcap] [patch] xterm-256color is a 8 colors termina o conf/136336 [termcap] [patch] missing entry for "center of keypad" s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili 3 problems total. Problem reports for tag 'terminfo': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/140965 [terminfo] Cannot create terminfo database because ncu 1 problem total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/20529 [ti] gigabit cards fail to link 1 problem total. Problem reports for tag 'tinybsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ 1 problem total. Problem reports for tag 'tmpfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug p kern/122038 gleb [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc 4 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/161175 eadler [tools] [patch] uninitialized variables on some regres o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o misc/147463 [tools] [patch] Patch for tools/regression/lib/libc/st o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam 5 problems total. Problem reports for tag 'trm': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 1 problem total. Problem reports for tag 'tun': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162927 net [tun] Modem-PPP error ppp[1538]: tun0: Phase: Clearing o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP p kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o bin/115951 [tun] pppoed(8): tun not closed after client abruptly 6 problems total. Problem reports for tag 'twa': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138948 i386 [twa] [regression] da0: Fi o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid 2 problems total. Problem reports for tag 'twe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72906 [twe] twe0 idefinite wait buffer a kern/66185 [twe] twe driver generates gratuitous warning on shutd 2 problems total. Problem reports for tag 'u3g': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem 1 problem total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155752 [uart] tcdrain(3) does not work with uart(4) driver o kern/155196 [uart] uart cannot identify internal modem or its chip o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x o kern/147082 ed [uart] Serial ports unusable [regression] s kern/146647 [uart] Some PCIe serial/parallel boards with ID 9901 9 o kern/144696 ed [uart] tcdrain(3) does not work right with uart(4) dri o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 8 problems total. Problem reports for tag 'uath': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri 1 problem total. Problem reports for tag 'ubsa': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun 4 problems total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct 11 problems total. Problem reports for tag 'udav': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ 1 problem total. Problem reports for tag 'udbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected 2 problems total. Problem reports for tag 'udf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158376 [udf] [patch] The UDF file system under counts the num o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada 3 problems total. Problem reports for tag 'udp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o kern/133736 net [udp] ip_id not protected ... o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject 4 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164472 fs [ufs] fsck -B panics on particular data inconsistency o kern/164184 fs [ufs] [panic] Kernel panic with ufs_makeinode o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 o kern/160860 fs [ufs] Random UFS root filesystem corruption with SU+J o kern/159930 fs [ufs] [panic] kernel core p kern/156545 fs [ufs] mv could break UFS on SMP systems o kern/156193 fs [ufs] [hang] UFS snapshot hangs && deadlocks processes o kern/152991 [ufs] false disk full with a too slow flash module o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o kern/147420 fs [ufs] [panic] ufs_dirbad, nullfs, jail panic (corrupt o kern/146708 fs [ufs] [panic] Kernel panic in softdep_disk_write_compl o kern/145246 fs [ufs] dirhash in 7.3 gratuitously frees hashes when it o kern/144929 fs [ufs] [lor] vfs_bio.c + ufs_dirhash.c o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132331 fs [ufs] [lor] LOR ufs and syncer o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file a kern/125613 trasz [ufs] [patch] ACL problems with special files o bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o kern/117954 fs [ufs] dirhash on very large directories blocks the mac o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po 35 problems total. Problem reports for tag 'uftdi': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/67301 usb [uftdi] [panic] RTS and system panic 10 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/154710 usb [ugen] Conexant USB Modem is not working in 8.x. In 7. o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n 8 problems total. Problem reports for tag 'uhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 3 problems total. Problem reports for tag 'uhub': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb 3 problems total. Problem reports for tag 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does f usb/102066 gavin [ukbd] usb keyboard and multimedia keys don't work o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar 13 problems total. Problem reports for tag 'ulpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes 11 problems total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/85971 jeff [uma] [patch] minor optimization to uma 2 problems total. Problem reports for tag 'umapfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/74708 [umapfs] [panic] UMAPFS kernel panic 1 problem total. Problem reports for tag 'umass': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o usb/153149 usb [umass] USB stick quirk regression [regression] o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o usb/131583 usb [umass] Failure when detaching umass Device o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/121169 usb [umass] Issues with usb mp3 player o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o usb/114682 usb [umass] generic USB media-card reader unusable f kern/114667 [umass] UMASS device error log problem o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) f usb/74771 usb [umass] [hang] mounting write-protected umass device a s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/40948 usb [umass] [request] USB HP CDW8200 does not work 61 problems total. Problem reports for tag 'umct': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters 1 problem total. Problem reports for tag 'umodem': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number o usb/128485 usb [umodem] [patch] Nokia N80 modem support p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work 5 problems total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s kern/103578 [ums] ums does not recognize mouse buttons s usb/96120 usb [ums] [request] USB mouse not always detected o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 13 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161511 fs [unionfs] Filesystem deadlocks when using multiple uni o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/145750 daichi [unionfs] [hang] unionfs locks the machine o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo o bin/19772 [unionfs] df(1) output wrong for union-mounts 14 problems total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco 1 problem total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode 5 problems total. Problem reports for tag 'urio': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/51958 usb [urio] [patch] update for urio driver 1 problem total. Problem reports for tag 'urtw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b 4 problems total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/163328 usb [usb] Support for Atheros USB abgn devices o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics o usb/129311 usb [usb] [panic] Instant crash with an USB card reader s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f usb/87224 usb [usb] Cannot mount USB Zip750 o usb/79723 usb [usb] [request] prepare for high speed isochronous tra s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 22 problems total. Problem reports for tag 'usb67': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is f usb/137872 usb [usb67] [boot] slow booting on usb flash drive o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/128977 usb [usb67] [patch] uaudio is not full duplex s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con 45 problems total. Problem reports for tag 'usb8': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/157074 usb [boot] [usb8] vfs_mountroot_ask is called when no usb o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf s usb/148702 usb [usb8] [request] IO DATA USB-RSAQ5 support on FreeBSD- p usb/146367 thompsa [usb8] [patch] Revision 205728: broken bluetooth mouse o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date f usb/145513 usb [usb8] New USB stack: no new devices after forced usb p usb/145455 usb [usb8] [patch] USB debug support cannot be disabled o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o usb/137377 usb [usb8] request support for Huawei E180 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/130122 usb [usb8] DVD drive detects as 'da' device o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil 55 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports 10 problems total. Problem reports for tag 'uscanner': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device 1 problem total. Problem reports for tag 'uvisor': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. 1 problem total. Problem reports for tag 'vbox': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o amd64/161418 vbox [panic] [vbox] FreeBSD 9.0beta3 under Virtualbox: lost o ports/151603 vbox [vbox] Self-built emulators/virtualbox-ose-kmod vboxne o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum 4 problems total. Problem reports for tag 'vesa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod 3 problems total. Problem reports for tag 'vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163461 [vfs] vfs.zfs.arc_max/vfs.zfs.arc_meta_limit defaults o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/142878 fs [zfs] [vfs] lock order reversal f kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o kern/139127 [vfs] False negative vfs cache entry p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D 9 problems total. Problem reports for tag 'vga': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o kern/64114 [vga] [patch] bad vertical refresh for console using R 2 problems total. Problem reports for tag 'vimage': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161094 virtualization[vimage] [panic] kernel panic with pf + VIMAGE when st o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe o kern/148155 virtualization[vimage] Kernel panic with PF/IPFilter + VIMAGE kernel a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash 5 problems total. Problem reports for tag 'vinum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/79035 geom [vinum] gvinum unable to create a striped set of mirro o conf/47566 [vinum] [patch] add vinum status verification to perio 2 problems total. Problem reports for tag 'virtualpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying 1 problem total. Problem reports for tag 'vlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156408 net [vlan] Routing failure when using VLANs vs. Physical e o kern/155420 net [vlan] adding vlan break existent vlan o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out f kern/146394 net [vlan] IP source address for outgoing connections o kern/146358 net [vlan] wrong destination MAC address p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o kern/117423 net [vlan] Duplicate IP on different interfaces 12 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161887 [vm] [panic] panic at vm_page_wire with FreeBSD 9.0 Be o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero o kern/147459 [vm] [panic] Kernel panic: vm_page / vdrop / vm_page_c o kern/140461 [vm] Fail to read from swap. The swap_pager.c contains o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind s bin/2137 [vm] systat(1) total vm statistics are bad 12 problems total. Problem reports for tag 'vmware': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156749 [vmware] FreeBSD 8.2 does infinite disk access in VMwa f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o kern/147793 emulation [vmware] [panic] cdrom handling, panic, possible race o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind 4 problems total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo f kern/143074 bschmidt [wi]: wi driver triggers panic o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/131776 net [wi] driver fails to init f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/107944 net [wi] [patch] Forget to unlock mutex-locks s kern/79323 [wi] authmod setup with ifconfig on dlink wlan card fa 13 problems total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/146165 net [wlan] [panic] Setting bssid in adhoc mode causes pani o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti 5 problems total. Problem reports for tag 'wlan_xauth': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa 1 problem total. Problem reports for tag 'wpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159203 net [wpi] Intel 3945ABG Wireless LAN not support IBSS o kern/156322 wireless [wpi] no ahdemo support for if_wpi f kern/147862 bschmidt [wpi] Possible bug in the wpi driver. Network Manager o kern/144987 wireless [wpi] [panic] injecting packets with wlaninject using f kern/143595 bschmidt [wpi] [panic] Creating virtual interface over wpi0 in f kern/139079 bschmidt [wpi] Failure to attach wpi(4) f kern/138739 bschmidt [wpi] wpi(4) does not work very well under 8.0-BETA4 o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 f kern/128917 bschmidt [wpi] [panic] if_wpi and wpa+tkip causing kernel panic f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 10 problems total. Problem reports for tag 'xe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne 1 problem total. Problem reports for tag 'xen': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164630 xen [xen] XEN HVM kernel: run_interrupt_driven_hooks: stil o kern/164450 xen [xen] Failed to install FreeeBSD 9.0-RELEASE from CD i o kern/162677 xen [xen] FreeBSD not compatible with "Current Stable Xen" o kern/161318 xen [xen] sysinstall crashes with floating point exception o kern/155468 xen [xen] Xen PV i386 multi-kernel CPU system is not worki o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o kern/154833 xen [xen]: xen 4.0 - DomU freebsd8.2RC3 i386, XEN kernel. o kern/154473 xen [xen] xen 4.0 - DomU freebsd8.1 i386, XEN kernel. Not o kern/154472 xen [xen] xen 4.0 - DomU freebsd8.1 i386 xen kernel reboot o kern/154428 xen [xen] xn0 network interface and PF - Massive performan o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor f kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after f kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. f kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i p kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all f i386/124516 xen [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/118734 xen [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b 25 problems total. Problem reports for tag 'xfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o kern/145411 fs [xfs] [panic] Kernel panics shortly after mounting an p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul 4 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129352 yongari [xl] [patch] xl0 watchdog timeout s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad 2 problems total. Problem reports for tag 'xpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164132 [xpt] "xptioctl: pass device not in the kernel" noise o kern/154432 scsi [xpt] run_interrupt_driven_hooks: still waiting after 2 problems total. Problem reports for tag 'zfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164844 [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SA o kern/164370 fs [zfs] zfs destroy for snapshot fails on i386 and sparc o kern/164256 fs [zfs] device entry for volume is not created after zfs o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/163770 fs [zfs] [hang] LOR between zfs&syncer + vnlru leading to o kern/162860 fs [zfs] Cannot share ZFS filesystem to hosts with a hyph o kern/162751 fs [zfs] [panic] kernel panics during file operations o kern/162519 fs [zfs] "zpool import" relies on buggy realpath() behavi o kern/162083 fs [zfs] [panic] zfs unmount -f pool o kern/161968 fs [zfs] [hang] renaming snapshot with -r including a zvo o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o kern/161533 fs [zfs] [panic] zfs receive panic: system ioctl returnin o kern/161438 fs [zfs] [panic] recursed on non-recursive spa_namespace_ o kern/161280 fs [zfs] Stack overflow in gptzfsboot o kern/161169 fs [zfs] [panic] ZFS causes kernel panic in dbuf_dirty o kern/160893 fs [zfs] [panic] 9.0-BETA2 kernel panic o kern/160801 fs [zfs] zfsboot on 8.2-RELEASE fails to boot from root-o o kern/160777 fs [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/impo o kern/160706 fs [zfs] zfs bootloader fails when a non-root vdev exists o kern/160591 fs [zfs] Fail to boot on zfs root with degraded raidz2 [r o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/159357 fs [zfs] ZFS MAXNAMELEN macro has confusing name (off-by- o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159251 fs [zfs] [request]: add FLETCHER4 as DEDUP hash option o kern/159077 fs [zfs] Can't cd .. with latest zfs version o kern/159045 fs [zfs] [hang] ZFS scrub freezes system o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o kern/157399 fs [zfs] trouble with: mdconfig force delete && zfs strip o kern/157179 fs [zfs] zfs/dbuf.c: panic: solaris assert: arc_buf_remov o kern/156797 fs [zfs] [panic] Double panic with FreeBSD 9-CURRENT and o kern/156781 fs [zfs] zfs is losing the snapshot directory, o kern/155615 fs [zfs] zfs v28 broken on sparc64 -current o kern/155587 fs [zfs] [panic] kernel panic with zfs o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/154930 fs [zfs] cannot delete/unlink file from full volume -> EN o kern/153996 fs [zfs] zfs root mount error while kernel is not located o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o kern/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o kern/153351 fs [zfs] locking directories/files in ZFS o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w o bin/153142 [zfs] ls -l outputs `ls: ./.zfs: Operation not support o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor o kern/151905 fs [zfs] page fault under load in /sbin/zfs o kern/151648 fs [zfs] disk wait bug o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151226 fs [zfs] can't delete zfs snapshot o kern/151111 fs [zfs] vnodes leakage during zfs unmount o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted o kern/149173 fs [patch] [zfs] make OpenSolaris installa o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro o kern/148504 fs [zfs] ZFS' zpool does not allow replacing drives to be o kern/148490 fs [zfs]: zpool attach - resilver bidirectionally, and re o kern/148368 fs [zfs] ZFS hanging forever on 8.1-PRERELEASE o kern/148138 fs [zfs] zfs raidz pool commands freeze o kern/147903 fs [zfs] [panic] Kernel panics on faulty zfs device o kern/147881 fs [zfs] [patch] ZFS "sharenfs" doesn't allow different " o kern/147560 fs [zfs] [boot] Booting 8.1-PRERELEASE raidz system take o kern/146941 fs [zfs] [panic] Kernel Double Fault - Happens constantly o kern/146786 fs [zfs] zpool import hangs with checksum errors o kern/146528 fs [zfs] Severe memory leak in ZFS on i386 o kern/146410 pjd [zfs] [patch] bad file copy performance from UFS to ZF f kern/145802 pjd [zfs] page fault under load s kern/145712 fs [zfs] cannot offline two drives in a raidz2 configurat f kern/145339 pjd [zfs] deadlock after detaching block device from raidz o kern/145272 fs [zfs] [panic] Panic during boot when accessing zfs on o kern/145238 fs [zfs] [panic] kernel panic on zpool clear tank o kern/145229 fs [zfs] Vast differences in ZFS ARC behavior between 8.0 p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o kern/143184 fs [zfs] [lor] zfs/bufwait LOR o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn o kern/142489 fs [zfs] [lor] allproc/zfs LOR o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140640 fs [zfs] snapshot crash o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134491 fs [zfs] Hot spares are rather cold... f kern/128633 pjd [zfs] [lor] lock order reversal in zfs f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/127492 pjd [zfs] System hang on ZFS input-output s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS f sparc/123566 fs [zfs] zpool import issue: EOVERFLOW f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un 110 problems total. Problem reports for tag 'zlib': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl 2 problems total. Problem reports for tag 'zyd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160296 wireless [zyd] [panic] 802.11 usb device reboots system on 'ifc o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o usb/150892 usb [zyd] Whenever network contacted in any shape, way or o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system 5 problems total. From bugmaster at FreeBSD.org Mon Feb 13 11:06:09 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 13 12:02:12 2012 Subject: Current problem reports Message-ID: <201202131106.q1DB64NK090004@freefall.freebsd.org> (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi .) 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. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/165089 clsung The patch of devel/glog is a little wrong o ports/165088 bad interaction between boost and gcc o kern/165087 lock violation in unionfs o ports/165086 jpaetzel [PATCH] Remove net/socks5 dep from irc/xchat-gnome o misc/165085 nanobsd building broken o ports/165084 dinoex [patch] print/cups: upgrade to 1.5.2 o misc/165083 Search Value is a Digital Marketing Agency offering co o ports/165082 portmgr [PATCH] exp-run required for updating bsd.emacs.mk for o ports/165081 az [PATCH] devel/p5-Class-Load: update to 0.17 f ports/165078 [PATCH] www/ap22-mod_setenvifplus: update to 0.13 f ports/165077 [PATCH] www/ap22-mod_auth_openid: update to 0.6 o ports/165076 brix [PATCH] devel/p5-Module-Runtime: update to 0.012 o bin/165075 rtld error messages are missing a newline f ports/165074 miwi [PATCH] www/xpi-bookmarkdd: update to 0.7.5 f ports/165073 miwi [PATCH] www/xpi-yslow: update to 3.0.9 o ports/165072 nork [PATCH] www/xpi-user_agent_switcher: update to 0.7.3 f ports/165071 miwi [PATCH] www/xpi-stumbleupon: update to 3.76 f ports/165070 miwi [PATCH] www/xpi-searchstatus: update to 1.39 f ports/165069 miwi [PATCH] www/xpi-modify_headers: update to 0.7.1.2b o ports/165068 nork [PATCH] www/xpi-it_s_all_text: update to 1.6.0 o ports/165067 skreuzer [PATCH] www/xpi-httpfox: update to 0.8.10 o ports/165065 nork [PATCH] www/xpi-firemobilesimulator: update to 1.2.2 o ports/165064 skreuzer [PATCH] www/xpi-errorzilla: update to 0.42 f ports/165062 miwi [PATCH] mail/xpi-dispmua: update to 1.6.6 o ports/165061 culot [NEW PORT] devel/p5-Proc-SafeExec: Convenient utility o kern/165060 wireless [ath] vap->iv_bss race conditions causing crashes insi o misc/165059 virtio_kmod: networking breaks with a router using vir o i386/165058 i386 xfce4 - startx errors o ports/165057 multimedia/k9copy-kd4: libxine 1.2.x patches o ports/165056 danfe games/quakeforge: update to 0.6.2 f ports/165055 perl [PATCH] devel/p5-Data-Throttler-Memcached: add missing o ports/165054 [MAINTAINER] devel/mingw32-binutils: update to 2.22 o i386/165053 i386 networking - bluetooth - boot errors o ports/165052 [MAINTAINER] math/mingw32-libgmp: update to 5.0.4 o ports/165051 lwhsu [PATCH] devel/p5-Data-RoundRobin: add TEST_DEPENDS o ports/165050 culot [MAINTAINER] editors/scite: update to 3.0.3 o ports/165049 perl [PATCH] devel/p5-Data-Rmap: add TEST_DEPENDS o ports/165048 [MAINTAINER] x11-toolkits/scintilla: update to 3.0.3 o ports/165046 sahil [PATCH] mail/postfix preserve ident in mailer.conf o ports/165045 kuriyama [PATCH] devel/p5-Data-Localize: add TEST_DEPENDS o ports/165044 rafan [PATCH] devel/p5-Data-Hierarchy: add TEST_DEPENDS o ports/165043 miwi [PATCH] devel/p5-Data-Bind: add missing DEPENDS and ot f ports/165042 perl [PATCH] devel/p5-Data-Average: add missing DEPENDS f ports/165040 mm [PATCH] mail/sqlgrey: improve port f ports/165037 perl [PATCH] devel/p5-Config-Wrest: add missing DEPENDS f ports/165035 farrokhi [update] net/haproxy to 1.4.19 f ports/165033 rm [UPDATE] devel/py-lxml: update to 2.3.3 o kern/165032 brgphy(4) is not used for BCM57780 f ports/165030 sunpoet [PATCH] www/p5-App-gist: update to 0.05 f ports/165029 sunpoet [PATCH] sysutils/p5-Sys-HostIP: update to 1.91 o ports/165028 sumikawa [update] misc/lv: add xz/lzma support and compile with f ports/165026 lwhsu [patch] update lang/pypy from 1.7 to 1.8 o sparc/165025 sparc64 [PATCH] zfsboot support for sparc64 o ports/165024 jgh MAINTAINER UPDATE: news/sabnzbdplus-0.6.15 o ports/165023 gordon [patch] devel/p4v port is marked broken and also stale o misc/165021 [ath] ath device timeout during scan/attach, if wlan_c f ports/165016 pgollucci [PATCH] mail/rubygem-mail: update to 2.4.1 f ports/165012 pgollucci [PATCH] devel/rubygem-unicode: update to 0.4.1 f ports/165010 pgollucci [PATCH] devel/rubygem-daemon_controller: update to 1.0 o docs/165009 eadler indent(1) man page fix f ports/165008 net-im/kmess-kde4 fails to connect f ports/165007 dougb [PATCH] sysutils/p5-MogileFS-Server: Fix multiple issu f ports/165006 [patch] add missing dependencies to audio/audacity-dev o ports/165004 miwi Update port: audio/mixxx to 1.10.0 o ports/165003 [patch] icecast-2.3.2 may leak memory and take extra C o ports/165002 miwi Update port: games/vamos to 0.7.0 o ports/165001 miwi Update port: sysutils/stowES to 0.5.6 o ports/165000 miwi Update port: sysutils/stow o ports/164999 miwi Update port: print/html2ps-letter to 1.0b7 o ports/164998 miwi Update port: math/yacas to 1.3.2 o ports/164997 miwi Update port: graphics/xmedcon to 0.11.0 o ports/164996 miwi Update port: graphics/apngasm to 2.6 o ports/164995 miwi Update port: games/mahjong to 1.12 o ports/164994 miwi Update port: games/freedoko to 0.7.11 o ports/164993 miwi Update port: games/freecell-solver to 3.10.0 o ports/164992 miwi Update port: emulators/qmc2 to 0.35 o ports/164991 miwi Update port: emulators/mess to 0.145 o ports/164990 miwi Update port: emulators/mame to 0.145 o ports/164989 miwi Update port: emulators/catapult to 0.8.2 o ports/164988 miwi Update port: deskutils/cdcat to 1.6 o ports/164987 miwi Update port: cad/xcircuit to 3.7.27 o ports/164986 miwi Update port: cad/magic to 7.5.124 o ports/164985 miwi Update port: biology/gff2ps o ports/164984 miwi Update port: audio/csound to 5.16.1 f bin/164982 gavin sysinstall(8) core dump f ports/164981 swills [PATCH] sysutils/facter: update to 1.6.5 o ports/164980 [PATCH] update plasma-applet-cwp from 1.5.7 to 1.5.9 o ports/164979 [maintainer update] net-p2p/retroshare: update to o misc/164976 [PATCH] tzsetup(8): Fix VERBOSE reporting on results w o ports/164975 clsung [PATCH] www/p5-Jifty: add missing DEPENDS o ports/164973 kuriyama [PATCH] www/p5-Plack: add TEST_DEPENDS, other changes o ports/164971 kuriyama [PATCH] devel/p5-Test-TCP: update to 1.15 o kern/164970 eadler dup2(2) incorrectly returns EMFILE instead of EBADF o ports/164969 perl [PATCH] www/p5-HTML-Mason: add TEST_DEPENDS o ports/164968 clsung [PATCH] mail/p5-Email-MIME-CreateHTML: add missing DEP o ports/164965 openoffice.org-3 fails to build in moz, nss, and conne o ports/164964 brix [PATCH] devel/p5-Class-Mix: add missing DEPENDS o ports/164963 [PATCH] ports-mgmt/porttools: add submit -P to print P o ports/164962 Importing FreeRadius mysql schema choke on SQL syntax f ports/164960 perl [PATCH] devel/p5-Class-Declare: update to 0.17 o ports/164959 pam_google_authenticator install deletes /dev/null o docs/164958 brd mirror: anonymous SSH based access to anoncvs1.freebsd o kern/164957 Linux emulation freezes machine after heavy usage of c f ports/164955 [PATCH] net-mgmt/netdisco: update to 1.1, take maintai o ports/164954 [NEW PORT] net-mgmt/netdisco-mibs: Mibs for use with p o kern/164951 Problem build of if_ath driver with certain mode o misc/164950 new bsd installer, pc-style partitions: no way to set o ports/164949 Brasilian mirror of ports repository o ports/164948 bapt shells/zsh fails to build o bin/164947 tee looses data when writing to non-blocking file desc o ports/164945 skv textproc/p5-Spreadsheet-WriteExcel PLIST issue with NO f ports/164944 amdmi3 [PATCH] games/instead: update to 1.6.2 f ports/164943 amdmi3 multimedia/mplayer: produces broken binary if built WI o ports/164941 [UPDATE/NEW PORTS] jamvm/classpath w/o jdk o docs/164940 eadler [PATCH] xref err.3 in strerror.3 o docs/164939 eadler [PATCH] add a standards section to err.3 o docs/164938 eadler [PATCH] consistently use file system in config and tun o bin/164933 [nfs] [patch] mountd(8) drops mixed security flavors f o ports/164932 gerald lang/gcc46 not build with clang o ports/164923 wen [Repocopy] www/joomla --> www/joomla25 o ports/164922 www/joomla25 Joomla CMS version 2.5 o docs/164920 eadler [PATCH] changes to swap section of config chapter o ports/164919 gecko www/seamonkey fails to build on pre-SSE2 processor o misc/164914 interface still accept packets even without IP address o ports/164913 kuriyama [PATCH] devel/p5-Module-Metadata: update to 1.000009 o ports/164912 skv [PATCH] devel/p5-Time-Duration: add TEST_DEPENDS o ports/164911 skv [PATCH] devel/p5-BZ-Client: add TEST_DEPENDS o kern/164909 [cam] devfs does not create entries when removable med f ports/164908 [PATCH] net-mgmt/nrpe2: Update to 2.13 o ports/164907 miwi [PATCH] security/clamtk update to 4.37 o ports/164906 crees [PATCH] graphics/libjpeg-turbo: add -fPIC o ports/164905 gecko www/seamonkey fails to build with clang [patch] o kern/164901 [regression] [patch] [lagg] igb/lagg poor traffic dist f ports/164898 zi net-mgmt/net-snmp: tonns of "error on subcontainer 'sw o ports/164896 portmgr [exp-run] add support for testing perl modules f ports/164893 sysutils/conky build fails with clang f ports/164891 pgollucci [PATCH] sysutils/rubygem-sys-filesystem: update to 1.0 f ports/164888 pgollucci [PATCH] net/rubygem-whois: update to 2.2.0 o ports/164887 clsung [PATCH] net/rubygem-amqp: update to 0.9.0 o ports/164886 clsung [PATCH] net/rubygem-amq-protocol: update to 0.9.0 o ports/164885 clsung [PATCH] net/rubygem-amq-client: update to 0.9.0 f ports/164882 pgollucci [PATCH] ftp/rubygem-curb: update to 0.7.17 f ports/164881 pgollucci [PATCH] finance/rubygem-money: update to 4.0.1 f ports/164880 pgollucci [PATCH] devel/rubygem-test-unit: update to 2.4.3 f ports/164878 pgollucci [PATCH] devel/rubygem-file-tail: update to 1.0.8 f ports/164875 pgollucci [maintainer update] update finance/opentaxsolver to 9. o ports/164874 joerg [patch] unbreak devel/avr-gcc o ports/164872 New ports: databases/mdcached, databases/php-mdcached o ports/164871 miwi Release www/xpi-gwt-dev-plugin o ports/164870 portmgr [PATCH] bsd.licenses.mk Set IGNORE if BATCH is set and o ports/164869 [NEW PORT] japanese/myrurema: 0.3.0 o ports/164862 sunpoet [MAINTAINER] www/node-devel: update to 0.7.2 o kern/164861 Cannot boot from zfs built in degraded mode o ports/164859 miwi [PATCH] x11-fm/filerunner update to 11.12.25.15 o ports/164858 miwi [MAINTAINER] www/pecl-yaf: update to 2.1.7 o ports/164857 miwi [UPDATE] www/py-requests to 0.10.1 o ports/164856 miwi [UPDATE] net/py-urllib3 to 1.2.2 o ports/164855 miwi [PATCH] textproc/py-chardet o ports/164853 office Update devel/dmake to version 4.12.2 o ports/164850 Update port: graphics/yed: new version 3.9 o ports/164849 [update] lang/php52 security fixes f docs/164848 jkois commercial gallery: 1.9.0 f ports/164464 port sysutils/dvdisaster does not recognize drives on o kern/164462 fs [nfs] NFSv4 mounting fails to mount; asks for stronger o ports/164459 gnome www/webkit-gtk2 1.4.3 failed to link when WITH_VIDEO=t o amd64/164457 amd64 [install] Can't install FreeBSD 9.0 (amd64) on HP Blad o ports/164456 jgh New port: sysutils/news Print news items o ports/164453 danfe graphics/luxrender: libpng warning: Application built o kern/164450 xen [xen] Failed to install FreeeBSD 9.0-RELEASE from CD i o ports/164449 gnome [PATCH] finance/gnucash update to 2.4.9 a ports/164446 danfe Update port x11/nvidia-driver to 290.10 o kern/164445 [libc] lseek(2) always returns ENXIO with SEEK_DATA/SE o ports/164431 timur net/samba36 does not enable AIO by default s kern/164425 [libc] stat(2) doesn't work in 32bit mode on amd64 o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164418 miwi [PATCH] shells/mksh doesn't build with Clang. o ports/164416 kuriyama [PATCH] textproc/iso8879: Fix on 9 and 10 o ports/164413 rafan [PATCH] converters/p5-Encode: add patch to fix tests f ports/164408 gtranscode port created o ports/164403 portmgr [patch] Mk/bsd.licenses.mk: bring back --hline o kern/164402 pf [pf] pf crashes with a particular set of rules when fi o kern/164400 net [ipsec] immediate crash after the start of ipsec proce o bin/164399 sysinstall bsdinstall(8): 9.0 installer failures f www/164397 jkois Commercial vendor submition o misc/164396 bugmeister [GNATs] add 'enhancement' class o misc/164395 bugmeister [GNATs] add support for .patch attachments o misc/164394 bugmeister [GNATS] Change some fields to 'unset' to prevent misca o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o ports/164390 portmgr [bsd.port.mk] make package-recursive fails with noise o ports/164388 sunpoet shells/ksh93 fails to build/install o ports/164384 lme [patch] games/scummvm update to 1.4.1 o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 f ports/164380 jgh audio/audacity-devel should not forcefully depend on J o bin/164378 [patch] improvement of pkg_info(1) warning o ports/164376 New port: graphics/opennurbs allows to transfer 3D geo o ports/164372 office editors/libreoffice fails to build o kern/164370 fs [zfs] zfs destroy for snapshot fails on i386 and sparc o kern/164369 adrian [if_bridge] [patch] two STP bridges have the same id o ports/164367 secteam ports-mgmt/portaudit finds problem in a jail but not o o kern/164365 wireless [iwi] iwi0: UP/DOWN in o ports/164364 New port: multimedia/banshee-devel Music management an o ports/164362 mlaier sysutils/pftop fails to compile o ports/164357 skv [PATCH] databases/p5-DBIx-ContextualFetch: add TEST_DE o ports/164355 misc/gpt will not install using pkg_add o ports/164354 rm [Maintainer Update] graphics/gauche-gl 0.4.4 -> 0.5. p bin/164353 maxim ifmcstat(8) build fail without -DWITH_KVM o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak p ports/164349 x11 [PATCH] x11/libXinerama :1 LeftOf or Above :0 mouse is o bin/164348 ntpd(1): ntp.conf restrict default ignore option doesn o ports/164345 portmgr Mk/bsd.licenses.mk framework not suitable for linuxula o ports/164341 lev [patch] sysutils/graid5: remove post-deinstall target f ports/164338 miwi [UPDATE] www/py-requests to 0.9.3 o ports/164333 kuriyama missing dependency in security/gnupg o ports/164332 linimon growisofs/cdrecord error on 9.0R (unable to CAMGETPASS o ports/164330 pgollucci www/yii update to 1.1.9 o kern/164329 acpi [acpi] hw.acpi.thermal.tz0.temperature shows strange v o ports/164321 swills [PATCH] devel/p5-DateTime-Format-Natural: Add TEST_DEP o bin/164317 [patch] write(1): add multibyte character support p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method o ports/164309 New port: graphics/pinta Simple drawing/painting progr o ports/164306 update mail/mailagent to 3.1.77 and utmpx fix o bin/164302 [patch] mail(1) expands aliases beyond # o amd64/164301 amd64 [install] 9.0 - Can't install, no DHCP lease o ports/164298 pgollucci [PATCH] Make print/foomatic-filters not eat PS files o bin/164294 sysinstall bsdinstall(8): FreeBSD 9.0-RELEASE bsdinstall dvd does o ports/164293 rea print/cups-pstoraster failed o bin/164291 sysinstall bsdinstall(8): bsdinstall and filestetyem selection / f ports/164287 gnome x11-toolkits/vte based applications failing to recogni o bin/164284 sysinstall bsdinstall(8): FreeBSD install assign incorrect dev as o bin/164281 sysinstall bsdinstall(8): please allow sysinstall as installer op o ports/164277 new port: mail/roundcube-automatic_addressbook o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o kern/164271 pf [pf] not working pf nat on FreeBSD 9.0 [regression] o ports/164270 gnome textproc/libxml2 CVE-2011-3919 patch o bin/164267 sysinstall bsdinstall(8) bugs when RE-installing to GPT partition o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o kern/164258 [mfi] mfi does not work with PERC5/i in AMD M350 mothe o kern/164256 fs [zfs] device entry for volume is not created after zfs o kern/164254 geom [geom] gjournal not stopping on GPT partitions f ports/164253 lwhsu [PATCH] databases/cassandra: update to 1.0.7 o kern/164252 geom [geom] gjournal overflow f ports/164243 miwi [PATCH] emulators/dosbox: Fix build with clang s ports/164242 net/openafs port breaks with KERNCONFDIR and include o ports/164239 gecko [PATCH] mail/thunderbird: crash with nss_ldap p kern/164238 eadler [patch] NULL pointer dereference in setusercontext (li f ports/164237 wxs [PATCH] security/suricata: overwrite files from libhtp f ports/164235 pgollucci [patch] graphics/vigra: update to 1.8.0 o ports/164230 maho repocopy request: editors/openoffice.org-3-devel to ed o sparc/164227 sparc64 [boot] Can't boot 9.0-RELEASE/sparc64 on Blade 1500 o sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from o power/164225 ppc Boot fails on IBM 7028-6E1 (heap memory claim failed) o ports/164222 gnome switching users in gnome3 invokes sanity check o kern/164220 sound preferences does not allow continuous adjustment o ports/164219 wen [PATCH] databases/p5-DBIx-NoSQL: Add missing BUILD_DEP a ports/164218 scheidell [patch] sysutils/fusefs-kmod: update mount_fusefs for o docs/164217 eadler [patch] correct synchronize flag in setfacl(1) manpage o kern/164210 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164209 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164208 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164207 portmgr [PATCH] bsd.port.mk includes top-level Makefile.inc fr o misc/164206 [PATCH] buildworld WITHOUT_OPENSSL stops at lib/libarc o ports/164204 az net/p5-ZeroMQ request sending segfault o kern/164203 [smp] usr/src/sys/sys/smp.h:124: warning: comparison b o ports/164199 Ports fail to acknowlegde newly created users o ports/164197 mm smsd(comms/smstools3) doesn't read some configurations p bin/164192 emaste [patch] wpa_supplicant(8): Fix typo intr-by SVN r21473 o ports/164190 mm [PATCH] devel/liboil: Fix build with clang o kern/164189 [pccard] FreeBSD 9.0-RELEASE on Toshiba Satellite Pro o ports/164187 gnome [PATCH] net/avahi etc should use USERS o kern/164184 fs [ufs] [panic] Kernel panic with ufs_makeinode f ports/164181 [PATCH] www/xxxterm: Fix ssl_ca_file path and style o ports/164177 audio/squeezeboxserver should require mysql 5.0 server o kern/164145 [netisr] when one of netisr threads take 100% system i o kern/164143 geom [geom] Partition table not recognized after upgrade R8 o bin/164137 tunefs(8): issues inappropriate error-message o amd64/164136 amd64 after fresh install 8.1 release or 8.2 release the har o kern/164132 [xpt] "xptioctl: pass device not in the kernel" noise o bin/164131 cperciva freebsd-update(8) does not check for failed install co o kern/164130 rwatson [netisr] broken netisr initialization o ports/164129 obrien editors/vim is unable to use the gnome2 interface f ports/164127 dinoex www/webalizer WITH_GEODB requires WITH_BDB o amd64/164116 amd64 [boot] FreeBSD 9.0-RELEASE installations mediums fails o ports/164115 pgollucci net-mgmt/cacti - cacti.sql does have old fashioned TYP o bin/164102 wireless hostapd not configured for 802.11n o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco f ports/164098 miwi [new port] dns/dnssec-tools: DNSSEC Tools port for eas o bin/164097 sysinstall bsdinstall(8): always installs GPT o www/164096 www PR submission form has no field labelled synopsis f bin/164094 sysinstall bsdinstall(8): installer progress over 100% o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number o amd64/164089 amd64 FreeBSD-9.0-RELEASE-amd64-memstick.img does not boot o kern/164082 recurring problem wirh /dev/console and syslog handlin p bin/164081 jilles sockstat(1) not reporting all open sockets p docs/164078 eadler man setuid(2): a messy sentence o amd64/164073 amd64 /etc/rc warning after booting o ports/164072 pgollucci [NEW PORT] databases/percona-{server,client}: Percona o ports/164060 net/ucarp doesn't work on FreeBSD 9.0-PRERELEASE o usb/164058 usb Lexar 8GB USB flash drive doesn't work by default o ports/164055 sysutils/zfs-periodic: Test if scrubbing is in process f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i o stand/164049 eadler getconf returns bad value for ULLONG_MAX o conf/164048 /etc/rc.d/hostid is not symlink aware f ports/164046 bapt [PATCH] sysutils/kkbswitch: %%DOCSDIR%%/common is syml f ports/164045 bapt [PATCH] java/dbvis: prevent dirrm beginning with a / p bin/164042 emaste [PATCH] tzsetup(8): Fix VERBOSE to work with new UTC m p bin/164041 emaste [PATCH] tzsetup(8): Remove unnecessary code duplicatio p bin/164039 emaste [PATCH] tzsetup(8): Don't write /var/db/zoneinfo eithe p bin/164038 wollman [PATCH] tzsetup(8): Increase buffer size to hold error o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o docs/164034 doc acl(9) documentation lacking o ports/164033 lev [patch] port devel/subversion ports change pkg-install f ports/164029 [PATCH] graphics/bmeps fix build with databases/gdbm o ports/164017 bf [NEW PORT] math/plasma: Parallel Linear Algebra Softwa o ports/164015 devel/php5-pinba: pinba crahes PHP when built with pro o ports/164013 gecko www/firefox: Firefox-9 Icons & xpi-addons from ports f ports/164012 scheidell [patch] x11/dmenu version upgrade 4.5 and Xft support o ports/164010 timur [patch] net/samba36: Split up samba scripts into more o misc/164005 rebooting while fsck in progress cause start fsck agai o conf/163993 wrong documentation in /usr/src/Makefile o bin/163992 dumpfs(8): dumpfs -m is broken f www/163988 jkois bsdlatino.blogspot.com o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/163985 [boot0] Incorrect operand size in boot0 o ports/163979 danfe games/quakeforge: update to 0.6.1 o kern/163978 [hwpmc] [patch] Loading hwpmc with an unknown cpuid ca o kern/163974 jkim Via RNG not enabled on amd64 o kern/163973 [ichwd] ichwd(4) no longer appears to function o ports/163963 portmgr Mk/bsd.port.mk, math/spooles-mpich, science/mpqc-mpich f www/163957 jkois Our site on http://www.fi.freebsd.org/commercial/misc. o ports/163955 input packet for interface are counted twice o bin/163951 secteam [security] bundled openssl seems to miss fix for a CVE o ports/163948 Python incompatibility on ports: deskutils/calibre o bin/163943 sysinstall bsdinstall(8) fails to detect CD device when booting w o ports/163933 Update security/zenmap to same vers as nmap o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de o kern/163926 eadler [libkvm] libkvm.so.5 exports private symbols f ports/163924 miwi [PATCH] archivers/xarchiver, warning when delete deskt o ports/163917 pgollucci [new port]: graphics/qmetro Map of the transport syste o ports/163909 bf [MAINTAINER-UPDATE][PATCH] please update math/lapacke o ports/163908 fluffy [patch] filesystem based race condition in multimedia/ o kern/163905 [panic] FreeBSD 9x kernel panic without acpi && event o kern/163903 net [igb] "igb0:tx(0)","bpf interface lock" v2.2.5 9-STABL f ports/163897 zi [NEW PORT] sysutils/dstat: A versatile resource statis f kern/163890 gavin ps2 keyboard not detected by kernel? [regression] f ports/163886 scheidell New port: net/drawterm Plan9 cpu client o ports/163884 nivit [Patch]databases/py-sqlalchemy:strict depend on py-MyS o docs/163879 doc [handbook] handbook does not say about how to force to a ports/163878 portmgr [exp-run] add -pthread to all perl language builds o docs/163877 doc apm(4) is not installed o kern/163873 ipfw [ipfw] ipfw fwd does not work with 'via interface' in o ports/163872 shaun devel/ioncube and distfiles f ports/163866 jgh New Port: security/tsshbatch o bin/163863 [patch] adduser(8): confusing usr.sbin/adduser output o ports/163861 new port: devel/art A Resource Tracer (A resource trac o ports/163851 miwi devel/pecl-spread needs to record spread4 as a run dep o ports/163850 New port: cad/linux-bricscad o bin/163847 [PATCH] German filename conversion scheme for mount_nw o conf/163843 [sshd_config] Modified VersionAddendum field in sshd_c o bin/163837 cperciva i386 lastest.ssl freebsd-update file is invalid o docs/163830 doc device smbios: missing documentation, no manpage o conf/163828 [patch] /etc/periodic/daily/110.clean-tmps tries to un o ports/163824 nivit math/jsmath: AMSmath in jsMath-3.6.e will crash if ena o www/163823 www Update www 9.0 release Schedule o bin/163822 kgdb(1): kgdb -w opens symbols file, not just core, wr o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/163812 scsi [mpt] problem with mpt driver for lsi controlled conne f ports/163806 scheidell New port: devel/arduino-lib-irremote: A Multi-Protocol f kern/163804 [request] with uname -a return also date of source tre o kern/163803 vlan does not work o kern/163801 fs [md] [request] allow mfsBSD legacy installed in 'swap' f ports/163800 net-mgmt/nagiosql: All files are Windows-converted o ports/163799 delphij net/openldap24-server: slapd not started earlier o conf/163798 [nsswitch.conf] nsswitch.conf with nss_ldap ignore [su p conf/163789 eadler [patch] Make etc/Makefile more conflict resistant o conf/163778 imp [patch] Conditionalize tools in the source tree o bin/163775 [patch] sfxge(4) explitly sets -g -DDEBUG=1; infects k o bin/163773 eadler [patch] pc-sysinstall(8): pc-sysinstall/backend.sh - c o bin/163772 [patch] nvi(1) - don't mask O_DIRECTORY symbol o docs/163771 doc getnameinfo(3) man-page detail o kern/163770 fs [zfs] [hang] LOR between zfs&syncer + vnlru leading to o bin/163769 [patch] fix zpool(8) compile time warnings o misc/163768 [patch] [boot] fix non-ficl compile time warnings f ports/163766 multimedia/openshot fails to find "main" and "gtk" mod o ports/163765 amdmi3 multimedia/openmovieeditor fails to compile - cannot c o ports/163762 pgollucci [PATCH] multimedia/mythtv still thinks it's 0.24.0 o ports/163761 pgollucci deskutils/vboxgtk: fix install failure o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode o ports/163751 lme [PATCH] games/scummvm: chase audio/fluidsynth shlib ve a ports/163749 joerg devel/avrdude fails to reset RTS/DTR properly for Ardu o docs/163742 doc [patch] document failok mount(8) option o amd64/163736 amd64 Freebsd 8.2 with MPD5 and about 100 PPPoE clients pani o ports/163725 swills [PATCH] emulators/open-vm-tools: Update to latest vers o kern/163724 wireless [mwl] [patch] NULL check before dereference o ports/163722 gnome sysutils/gnome-settings-daemon: crash with abort trap f ports/163721 rm [patch update] multimedia/libbluray 0.2.20110219 -> 0. o ports/163720 eclipse java/eclipse doesn't build o kern/163719 wireless [ath] ath interface do not receive multicast f ports/163718 dinoex [PATCH] graphics/jasper: security updates for CVE-2011 o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c a ports/163711 olgeni lang/erlang update request to R15B o amd64/163710 amd64 setjump in userboot.so causes stack corruption f ports/163704 gnome [PATCH] devel/ptlib26: disable ODBC by default f ports/163703 kde x11/kde4: Error with KDE4 printer configuration o kern/163701 ifconfig: group parameter makes impossible to restart o bin/163700 logger(1): broken logic when -f option && long lines i o conf/163690 FreeBSD 10.0-CURRENT/amd64: Set WITH_BIND_LIBS=YES doe o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin f ports/163684 olgeni [PATCH] lang/clojure-mode.el: update to 1.11.5 o bin/163680 vmstat(8): negative values in vmstat -z o ports/163675 pgollucci [PATCH] devel/buildbot: update to 0.8.5 o ports/163674 pgollucci [PATCH] devel/buildbot-slave: update to 0.8.5 o kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip p conf/163668 jh [patch] fstab[5] 'failok' option has no effect on miss o ports/163666 jgh [PATCH] Add user "gerrit" to UIDs and GIDs o ports/163665 jgh [New Port]: devel/gerrit - Web based code review and p o ports/163663 kuriyama misc/amanda-server is outdated - 3.3.0 is the Latest S f ports/163655 miwi [PATCH] games/odamex update to 0.5.6 o ports/163647 pgollucci [patch] sysutils/xosview: does not build on 10-CURRENT o docs/163646 eadler update man ehci(4) to mention options USB_DEBUG o ports/163643 pgollucci [patch] astro/wmspaceweather: URL changed + two minor f ports/163641 zi net-mgmt/net-snmp: netsnmp_assert were rised o ports/163640 tabthorpe bsd.licenses.mk: Add code to support standard licenses f ports/163636 mi net/opal fails to build o amd64/163625 amd64 Install problems of RC3 amd64 on ASRock N68 GE3 UCC p kern/163623 eadler [kernel] sysctl net.inet.icmp.icmplim_output descripti o kern/163619 OFED failed to build with clang o kern/163618 panic: vm_fault: fault on nofault entry, addr: c278100 o ports/163616 [new port] games/quadra: A tetris like multiuser actio o kern/163608 [lor] Two seemingly vfs-related LORs f ports/163605 olgeni [PATCH] net-im/ttytter: update to 1.2.05 o bin/163602 pmcstat(8) doesn't search symbols under /boot/modules a ports/163592 dinoex [PATCH] graphics/libungif: mark conflict with giflib a ports/163591 dinoex [PATCH] graphics/giflib: mark conflicts with libungif o ports/163590 pgollucci [PATCH] devel/cdialog: update to 1.1.20111020 o kern/163587 [sched_ule] The ULE scheduler does not load in the fou o kern/163585 cpuset(1) by twice kill SMP functionality o ports/163583 [patch] x11/kdelibs3 conflicts with openssl-1 o ports/163577 oliver graphics/ogre3d fails to build when textproc/tinyxml i o docs/163576 doc zfs(8) sync property not noted in the manpage o kern/163574 wireless [net80211] overly-frequent HT occupancy changes o kern/163573 wireless [ath] hostap mode TX buffer hang o conf/163572 [periodic] not full output in daily run output is ambi o misc/163571 The system may hang after typing reboot o amd64/163568 amd64 hard drive naming o bin/163567 make(1): add option to disable object directory o kern/163559 wireless [ath] kernel panic AH_DEBUG f ports/163555 danfe [PATCH] irc/bitchx is out of date and BitchX 1.2 does a ports/163550 dinoex [patch] ftp/vsftpd{,-ext}: respect CC/CFLAGS/STRIP uni o bin/163547 vmstat(8): vmstat -i show AVG rate instead of rate p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi f ports/163524 linimon [exp-run] estimate number of ports utilizing old inter o ports/163519 gnome [patch] graphics/gimp-app: unbreak build with clang=20 o ports/163518 gnome [patch] x11/babl: unbreak SSE build with clang o bin/163515 [patch] b64encode(1)/uuencode(1) create files with no o ports/163514 itetcu [PATCH] ports-mgmt/tinderbox-devel: Report the proper o threa/163512 threads libc defaults to single threaded o ports/163511 portmgr [PATCH] bsd.port.mk: Allow existing users on system to o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands o ports/163506 mm multimedia/x264: Does not compile this package x264-0. o ports/163504 mm multimedia/x264 (0.119.2113) doesn't install o kern/163501 fs [nfs] NFS exporting a dir and a subdir in that dir to f misc/163495 Problem compiling world with _Noreturn o kern/163493 FreeBSD 9x amd64 unstable while work with RAM o ports/163490 ohauer www/moinmoin port fix o ports/163489 timur databases/tdb hangs frequently on larger CPU systems o conf/163488 rc Confusing explanation in defaults/rc.conf o bin/163487 syslog.conf filtering syntax broken in 9.0-RC3 (was wo o kern/163481 net freebsd do not add itself to ping route packet o bin/163470 bad cksum in tcpdump(1) output o conf/163469 FreeBSD 10.0-CURRENT/CLANG: WITH_LIBCPLUSPLUS= YE o ports/163467 Ports using python 2.7 and "waf" intermittently hang o o ports/163466 haskell archivers/hs-zip-archive cannot build o kern/163464 Invalid compiler flag in /sys/conf/kern.mk o kern/163461 [vfs] vfs.zfs.arc_max/vfs.zfs.arc_meta_limit defaults a java/163456 java [patch] java/openjdk6: build and distribute open timez o bin/163455 [ath] "bssid" in wlanN create_args does not change wla o ports/163454 gecko [patch] www/firefox-beta: unbreak with libc++ o kern/163450 [puc] [patch] new pci quad serial card supported by pu o ports/163443 gnome [patch] graphics/poppler: unbreak with libc++ f ports/163441 databases/couchdb multiple port installation issues. o ports/163438 miwi New port: multimedia/mplayer2 o kern/163410 panic (page fault) when using mfsroot on i386 with 4 G o kern/163370 csjp [bpf] [request] enable zero-copy BPF by default f ports/163339 garga ftp/pure-ftpd: rc script not supports pure-authd o usb/163328 usb [usb] Support for Atheros USB abgn devices a ports/163323 skv x11/rxvt-unicode fails to build with perl-5.12.4_3 and o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o kern/163318 wireless [ath] ath(4) stops working o ports/163314 miwi [maintainer update] www/ocsigen to version 2.0.2 p kern/163312 wireless [panic] [ath driver] kernel panic: page fault with ath o kern/163310 Panics, sudden reboots and file system corrupts with s o ports/163306 pgollucci [patch] upgrade sysutils/nut to 2.6.2 and fix misc por o misc/163304 complete LLVM toolset in the source tree made availabl o ports/163291 doceng [PATCH] print/ghostscript9: Automatically disable X11 o amd64/163285 amd64 when installing gnome2-lite not all dependent packages o amd64/163284 amd64 print manager failed to install correctly f ports/163279 miwi [update] net/haproxy-devel to 1.5-dev7 f ports/163276 miwi [maintainer update] devel/ocaml-lwt: update to version o kern/163268 acpi [acpi_hp] fix driver detach in absence of CMI o misc/163263 crash on VirtualBox when ACPI is enabled o kern/163245 marcel kernel panic if set /boot/loader.conf vfs.root.mountfr s ports/163242 eadler [NEW PORT] databases/autopostgresqlbackup: Make daily, o kern/163240 marius Power down PHY when "none" media is selected o kern/163237 AR5416 as HostAP. Delays among clients when o ports/163234 pgollucci [patch] devel/ptypes: unbreak build with clang o ports/163232 bf [patch] math/metis: respect CC o ports/163226 obrien [patch] vietnamese/libviet: respect CC/CFLAGS o bin/163219 gtetlow [patch] man: fix 'zcat: standard input is a terminal - o kern/163208 pf [pf] PF state key linking mismatch f www/163203 jkois Submission into Consulting Services List f ports/163196 eadler [NEW PORT] www/ocportal o ports/163195 office editors/openoffice.org-3 installation error o docs/163177 doc [patch] man page for gnats(7) incorrectly lists gnatsd o conf/163168 JIS X0208 space should be treated as printable in ja_J o kern/163164 FreeBSD 9.0-RC3 amd64 freezes on boot o misc/163155 System halt isnt realy halt o kern/163154 [iwn] fatal firmware error on 9.0-RC3 o ports/163151 pgollucci Update sysutils/testdisk to 6.13 o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o kern/163145 FreeBSD 9.0 PRERELEASE freezes without any warnings or o ports/163142 vbox emulators/virtualbox-ose: virtualbox doesn't work on n o kern/163135 [netsmb] Wrong check in netsmb f kern/163130 scsi [mpt] cannot dumpon to mpt connected disk o bin/163127 brooks sshd(1): SSHD_config Bad configuration option: NoneEna f ports/163126 security/sshguard changed from syslog.conf to daemon b o ports/163125 pgollucci [update] multimedia/qmmp increment PORTREVISION o ports/163124 pgollucci [update] audio/wildmidi 0.2.3.5 o bin/163123 sysinstall bsdinstall(8): IPV6 only errors connecting o ports/163121 gnome Build issue with graphics/gegl o docs/163119 doc mktemp(3) is referring to (now) non-existent gcc optio o kern/163117 sporadic boot-time panics on 9.0-RC2 and 9.0-RC3 w/ ce o amd64/163114 amd64 no boot on Via Nanao netbook Samsung NC20 o ports/163112 python Updates bsd.python.mk to support Zope 2.11, 2.13 o ports/163111 kwm Error building x11-fonts/cantarell-fonts o ports/163105 bsam cannot portupgrade devel/eric4 to version 4.4.19 o www/163097 www contributor address was obsolete, + contributor now de o bin/163095 brooks Add WITH_OPENSSH_NONE_CIPHER src.conf(5) knob o amd64/163092 amd64 FreeBSD 9.0-RC2 fails to boot from raid-z2 if AHCI is o kern/163091 usb [panic] Fatal trap 12: page fault while in kernel mode f www/163090 jkois User Groups of lissyara.su p kern/163089 glebius Duplicate free in the error return for mld_v2_encap_re f ports/163084 crees net-mgmt/bsnmptools fails to build o kern/163082 wireless [ath] ar9285 diversity fixes f ports/163072 miwi [NEW PORT] net/dot1ag-utils: Utilities for IEEE 802.1a o ports/163066 eadler [patch] bsd.database.mk: Allow db5 to be selected by U o kern/163065 UDF support for symbolic links with absolute path is b o kern/163064 [fix][sym]driver tries to nego synch trans with everyo o ports/163063 python [PATCH] fix for ports-mgmt/portbuilder o bin/163062 csplit(1) includes extra lines in inner context o ports/163059 portmgr Portbuild: Drop privileges for extract/patch/build pha o ports/163056 miwi [patch] audio/xmms2: update to 0.8 o ports/163055 mm [patch] multimedia/ffmpeg: broken without /usr/bin/per o bin/163053 [patch] camcontrol(8): 'camcontrol nego -D' is ignored o misc/163051 Small disk sizes with 4k sectors have far too few inod o amd64/163048 amd64 normal user cant mount ntfs-3g f ports/163046 cs devel/bazaar is outdated, should be bazaar-ng as the d o docs/163043 doc [patch] gsched.8: remove reference to gsched_as s kern/163033 [request] 'out of swap space' message should be ammend o ports/163029 delphij [MAINTAINER UPDATE] Update net/openldap24-server to 2. o ports/163022 sunpoet New port: databases/p5-bucardo Asynchronous PostgreSQL a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o ports/163017 autotools [bug] in devel/libtool (2.4 only) o ports/163015 bf New port: math/it++ o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162993 edwin misc/zoneinfo port failed to make a package because of o ports/162991 java java/openjdk6 fails to build f ports/162990 mi net/minidlna - requires elevated privileges o ports/162988 maho port bug: math/octave fails to link libumfpack o ports/162977 lev devel/subversion: svn 1.7 does not know who I am at al o kern/162976 [libc] cron fails unnecessarily via setlogin(2) with s f ports/162958 gnome graphics/gimp-app (1.258) make fails with missing TIFF o kern/162952 [headers] Problems including netinet/tcp_var.h o ports/162951 kmoore misc/lxde-common: Missing lxde-logout.desktop o ports/162949 gnome [Update] devel/dbus: update to 1.5.8 o ports/162948 portmgr [exp-run] 10.0 exp-run without libreadline in base sys o kern/162944 fs [coda] Coda file system module looks broken in 9.0 o kern/162943 uClibc explicit runtime loader segfaults under FreeBSD o ports/162939 gecko www/firefox crashes with Zotero add-on o amd64/162936 amd64 fails boot and destabilizes other OSes on FreeBSD 9 RC o kern/162927 net [tun] Modem-PPP error ppp[1538]: tun0: Phase: Clearing o kern/162926 net [ipfilter] Infinite loop in ipfilter with fragmented I o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ o ports/162920 miwi [patch] respect STRIP/LDFLAGS consistently across untr o ports/162912 mm [patch] lang/tcl86: unbreak build with clang o bin/162905 -E flag in newfs(8) has no effect o conf/162884 FreeBSD's termcap ships monochrome rxvt-unicode entry o kern/162867 better zfs_cv_init o misc/162866 [build] [patch] extract revision from hg in newvers.sh o kern/162860 fs [zfs] Cannot share ZFS filesystem to hosts with a hyph o kern/162859 acpi [acpi] ACPI battery/acline monitoring partialy working f ports/162813 miwi clang doesn't compile games/jaggedalliance2 o bin/162798 add p flag to newsyslog.conf o conf/162794 I experience problem with my network ethernet adapter p kern/162789 glebius [PATCH] if_clone may create multiple interfaces with t o conf/162787 termcap is missing kB entry for xterm o ports/162780 office editors/libreoffice without GUI o docs/162775 doc zpool(1): Document some undocumented zpool import opti o ports/162768 pgollucci [PATCH] ftp/proftpd port update which fixes mod_sql_my o docs/162765 doc [patch] lseek(2) may return successful although no see o ports/162755 gnome [PATCH] graphics/evince: segfault on showing propertie o kern/162751 fs [zfs] [panic] kernel panics during file operations o kern/162736 r214955 (nanobsd) broke build with whitespace in KERNC o ports/162726 miwi [PATCH] update graphics/box to 0.3.0 and graphics/boxe o misc/162724 make whereobj doesn't work after make buildenv o ports/162721 portmgr [PATCH] bsd.port.mk: config target should complain if o ports/162716 glewis difference in dependency lists in INDEX and /var/db/pk o bin/162715 pam_krb5(8): pam_krb5 not storing tickets in /tmp p amd64/162708 jhb FreeBSD 9.0-RC2 amd64 fails to boot on Dell Optiplex G o ports/162706 maho math/suitesparse port does not properly detect or link o docs/162699 doc Handbook/Upgrading instructions: should mention delete f ports/162694 pgollucci [patch] [update] multimedia/pitivi to 0.15.0 o bin/162693 sysinstall sysinstall(8): release/Makefile.sysinstall on 9.x refe o kern/162690 gpart label changes only take effect after a reboot o ports/162686 bf atlas build tries to use 64 bit fortran compiler on AM o bin/162681 ports pkg_add(1): new installer does not add doc packages o kern/162677 xen [xen] FreeBSD not compatible with "Current Stable Xen" o ports/162676 [NEW PORT] net-mgmt/ssgless: View ScreenOS configurati f ports/162674 graphics/rawtherapee freezes after demosaic when tryin o bin/162670 gabor [patch] libkiconv doesn't work with iconv() in libc o bin/162661 gavin [patch] ftp(8) is giving up on IPv6 o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang o bin/162645 zfs(1): Option parse failure for 'aclmode' when creati o ports/162644 secteam ports-mgmt/portaudit omit fetch output unless verbose o conf/162642 rc .sh scripts in /usr/local/etc/rc.d get executed, not s o ports/162639 timur net/samba36:utils/net_rpc_shell.o(.text+0x480): more u o kern/162620 [ata] SATA device lost when changing brightness on Len o ports/162616 miwi New port: sysutils/cluster-admin tools for managing Fr o kern/162609 [ata] Cannot write to Sony DRU-835A DVD drive o ports/162607 mm little correction for comms/smstools3 o bin/162605 sysinstall sysinstall(8) doesn't identify CD/DVD drives for the u o ports/162602 lippe event.c missing from ports/devel/st/work/st-1.9/Makefi o ports/162596 oliver games/ember: Typo in required lib at runtime o kern/162591 fs [nullfs] cross-filesystem nullfs does not work as expe f bin/162588 dim libz partially broken when compiled with clang [was: n o docs/162587 gjb unclear/incomplete description of per-interface statis f ports/162579 miwi update chinese/pcmanx to 1.0 o ports/162571 gnome textproc/libxml2: provide a way to disable iconv o ports/162565 mm devel/pcre: link pcretest with libreadline f ports/162560 swills giflib libungif conflict o kern/162558 net [dummynet] [panic] seldom dummynet panics f i386/162524 i386 No full shutdown in FreeBSD 9.0-RC1 o java/162522 java OpenJDK 6 is not setting close on exec o kern/162519 fs [zfs] "zpool import" relies on buggy realpath() behavi o sparc/162513 sparc64 mpt(4), mptutil(8) reports variable, erroneous drive i o ports/162511 [NEW PORT] net-im/imspector-devel devel version of ims o ports/162510 nork [patch] Upgrade graphics/OpenEXR to version 1.7.0 o kern/162509 net [re] [panic] Kernel panic may be related to if_re.c (r o bin/162503 makefs(8) creates a bad image for UFS2 o kern/162502 [md] mount -t mfs on vnode-based md device destroy him o ports/162500 maho math/suitesparse: gmake[2]: *** [run] Segmentation fau o bin/162495 dc(1): dc -e "5 3 %p 1k 5 3 %p" o amd64/162489 amd64 After some time X blanks the screen and does not respo o ports/162480 New port: net-mgmt/cacti-with-plugins Web-driven graph p kern/162475 bschmidt [ath] functions with return type HAL_BOOL (might) retu o ports/162463 skv lang/perl5.12: perldoc shows escape codes o ports/162460 lth update net-mgmt/smokeping o misc/162455 FreeBSD 9x unstable with file-based swap o ports/162447 net/isc-dhcp41-server: starting with rc-script fails o ports/162439 olgeni [PATCH] lang/abcl: update to 1.0.0 and update WWW o stand/162434 standards getaddrinfo: addrinfo.ai_family is an address family, o docs/162433 doc [handbook] QEMU instructions for FreeBSD guests s www/162430 bugmeister gnats pr-submission mechanism suxx o bin/162429 sysinstall bsdinstall(8): 9.x installer: selecting ZFS for the ro o bin/162428 sysinstall bsdinstall(8): should check available disk space from o ports/162425 gnome graphics/evince doesn't build o ports/162421 python lang/python32 fails to build (undefined reference to ` o docs/162419 doc [request] please document (new) zfs and zpool cmdline o ports/162414 cy [PATCH] sysutils/syslog-ng: misc. fixes o kern/162407 [rctl] [panic] rctl crashes kernel with a page fault ( o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 p threa/162403 davidxu regression in FreeBSD/9 regarding pthread timeouts in o ports/162397 portmgr [patch] Mk/bsd.port.mk: add new target add-plist-build o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen f ports/162386 eadler [PATCH] Bring back games/tome o ports/162385 lev portmaster unable to build package of devel/subversion o kern/162382 [swap] Orphaned swap references not garbage collected; o ports/162381 sunpoet [PATCH] audio/icecast2 upgrade to kh development branc o docs/162380 doc Documentation lacking for getfacl/setfacl o kern/162374 posix_openpt wrongly removed O_CLOEXEC o kern/162373 VESA framebuffer memory mapping fails with EINVAL for o kern/162369 kernel problem at shutdown is system has no keydoard o kern/162367 SATA 3.0Gb/s not enabled on Nvidia nForce 430 o bin/162364 sysinstall sysinstall(8): update sysinstall ftp mirror list for c o kern/162362 fs [snapshots] [panic] ufs with snapshot(s) panics when g o docs/162354 gjb Improve wording in rc.conf(5) regarding network-interf o kern/162352 net [patch] Enhancement: add SO_PROTO to socket.h o ports/162350 office ports/editors/openoffice.org-3 spawns a lawine of gmak o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib o kern/162342 FreeBSD hides gpt labels after mounting ZFS partitions o misc/162338 POLA: mkisoimages.sh does not support extra-bits-dir p o ports/162320 mono lang/mono doesn't build o amd64/162314 amd64 not able to install FreeBSD-8.2-RELEASE-amd64-dvd1 as o ports/162313 acm print/foo2zjs: example devd rules o usb/162306 usb usb devices cant get address asignation, no memories, o kern/162294 Reading DMI memory parts using mmap freeze the system o kern/162277 Repeatable system crash when offlining a zpool vdev o kern/162267 qingli [mpd] mpd kernel panic p docs/162265 doc [Patch] ipfw.8: Documentation clarity a ports/162264 cy [patch] unbreak net/tridiavnc for non-i386 o ports/162261 kde sysutils/k3b-kde4 - fails to compile with ffmpeg-devel o ports/162260 gnome [bsd.gnome.mk] don't add useless dependency for INSTAL o bin/162258 sysinstall sysinstall(8): long-time bugs o kern/162256 scsi [mpt] QUEUE FULL EVENT and 'mpt_cam_event: 0x0' o kern/162250 problems with the work with hard drives Hitachi HDS721 o ports/162240 net/nss-pam-ldapd should allow openldap24-sasl-client o kern/162228 Panic in ufsdirhash_build() p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 o ports/162221 9.0-RC1 new problem building lang/spidermonkey o amd64/162219 amd64 [REGRESSION] In KDE 4.7.2 cant enable OpenGL,in 4.6.5 o ports/162212 ruby ports-mgmt/portupgrade: portversion -r doesn't work o bin/162211 Calendar no longer handles first/last day events in 8. o ports/162207 danfe audio/cdparanoia: crash while building the port. o kern/162201 zec [ip] [patch] multicast forwarding cache hash always al o kern/162195 panic with soft updates journaling during umount -f o ports/162191 ashish [PATCH] editor/emacs: VC doesn't work with subversion o bin/162189 kientzle FreeBSD unzip does not restore file permissions proper o kern/162182 Extreme slowness from HighPoint RocketRaid 622 o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s s ports/162178 portmgr [bsd.port.mk] Add bsd.clang.mk with Clang/LLVM support o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o kern/162174 [kernel] [patch] rman_manage_region() error return pat o docs/162172 doc rctl manpage erroneously lists nproc o amd64/162170 amd64 Unable to install due to freeze at "run_interrupt_driv o kern/162160 9-RC1 over IPMI Virtual CD causes unexpected behaviur o arm/162159 arm [panic] USB errors leading to panic on DockStar 9.0-RC o kern/162153 net [em] intel em driver 7.2.4 don't compile o bin/162152 sysinstall bsdinstall(8): No up-to-date IPv6 French mirror o kern/162110 net [igb] [panic] RELENG_9 panics on boot in IGB driver - o power/162091 ppc FreeBSD/ppc CD crashes Mac OS X s ports/162088 inconsistencies in locally generated INDEX file o ports/162085 mm duplicate file name in open-motif-2.3.3 and tcl-8.5.10 o kern/162083 fs [zfs] [panic] zfs unmount -f pool o ports/162075 gecko www/firefox >= 7.0.1_2 bug with respect to pentadactyl o bin/162064 [patch] Loop in fetch(1) when sending SIGINFO after th o usb/162054 usb usbdump just hangs on 9.0-RC1 f ports/162050 sumikawa [patch] misc/lv directory opening problem fix o ports/162045 print/ghostview 1.5_2 coredumps on certain files f amd64/162043 gavin dev.cpu.0.freq is missing [regression] o ports/162042 bapt [patch] multimedia/libass: add HARFBUZZ option o kern/162036 [geom] Fatal trap 12: page fault while in kernel mode o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/162010 geom [geli] panic: Provider's error should be set (error=0) o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o bin/161986 [patch] netstat(1): Interface auto-width in "netstat - o ports/161984 autotools [patch] devel/libtool: don't split INFO doc (install) f ports/161981 [maintainer update] sysutils/samesame to v1.10 o kern/161979 geom [geom] glabel doesn't update after newfs, and glabel s f ports/161976 zi net-mgmt/net-snmp: ifSpeed for lagg interface is not a o amd64/161974 amd64 FreeBSD 9 new installer installs succesful, renders ma o kern/161968 fs [zfs] [hang] renaming snapshot with -r including a zvo o ports/161967 mm ports/net/smbldap-tools 0.9.7 user_by_uid() is not exp f ports/161959 jkim kernel panic in audio/oss p bin/161957 jail jls(8): jls -v doesn't show anything if system compile o kern/161949 [kernel] 64-bit structures are used even with 32-bit c o power/161947 ppc multimedia/libdvdnav builds broken binaries on big end o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu s ports/161932 zi net-mgmt/net-snmp reports bogus data in UCD-SNMP-MIB:: f bin/161931 sysinstall bsdinstall(8): (add sysinstall partition config as opt o bin/161929 sysinstall bsdinstall(8): (change partition editor screen default o bin/161928 sysinstall bsdinstall(8): (add option to enable 2 button mouse co o bin/161924 sysinstall bsdinstall(8): add msg box telling user to remove inst o bin/161923 sysinstall bsdinstall(8) games & ports install options a bin/161921 dougb named(8): default configuration on 9.0-RC1 produces an o misc/161917 pjd pjdfstest doesn't detect setup/teardown failures prope o misc/161915 pjd pjdtests don't articulate requirements very well o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to p kern/161899 rc [route] ntpd(8): Repeating RTM_MISS packets causing hi o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o ports/161894 New port databases/datamodeler: Database modeling tool o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o ports/161890 ume security/cyrus-sasl2 update broke IMAPS in mail/mutt-d o kern/161888 [kerberos] nfs -sec=krb5x/ldap/krb5-heimdal fix/upgrad o kern/161887 [vm] [panic] panic at vm_page_wire with FreeBSD 9.0 Be o kern/161886 [kerberos] [patch] der_xx_oid not declared before use f conf/161885 remko FreeBSD 9 BETA 3 apparently ignores ifconfig_alias set o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup p conf/161847 gavin [patch] reaper of the dead: remove ancient devfs examp o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option a docs/161808 doc Missing documentation critical to correct usage of uui o bin/161807 fs [patch] add option for explicitly specifying metadata o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod o docs/161804 doc New documentation: French translation for building-pro o usb/161793 usb poor EHCI usb2 i/o performance o ports/161789 office editors/openoffice.org-3: compilations fails in module o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o kern/161768 [ahci] [panic] Panics after AHCI timeouts o ports/161765 mm net/relayd: relayd fails to initialize on systems with o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico p bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks o kern/161755 Kernel fails to report negative malloc type statistics o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o kern/161752 geom [geom] glabel(8) doesn't get gpt label change o bin/161749 kientzle bsdtar(1) --gname and --uname switches not working o bin/161739 top(1): top -b does not restore ICANON and ECHO termin o bin/161720 sysinstall bsdinstall(8): partition editor does not put partition s kern/161719 [request] Support for Realtek 5209 SD card reader o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 f ports/161701 New port: games/chocolate-doom Doom port o ports/161690 New port: games/prboom-plus Port of ID Software's Doom o bin/161677 geom gpart(8) Probably bug in gptboot o ports/161676 gnome databases/libgda4: [UPDATE] to 4.2.9; improvements o www/161672 gavin [patch] add support for 10.x to query-pr o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o ports/161578 devel/strace is not working o ports/161574 demon Can't compile devel/p5-Locale-gettext on 9.0beta o ports/161571 sunpoet New port: devel/p5-Gtk2-Notify - Perl interface to lib o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o kern/161553 eadler Timestamp missing from msgbuf o kern/161552 [rctl] [panic] kernel panic with RCTL option: racct_al o ports/161549 timur Bugs with aio_suspend configure test in net/samba35 o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o misc/161540 cperciva gzippped kernel is not updated by FREEBSD-UPDATE o kern/161533 fs [zfs] [panic] zfs receive panic: system ioctl returnin o bin/161528 tftpd(8): tftpd[86572]: Timeout #3 on ACK 2 o bin/161526 script(1) outputs corrupt if input is not from a termi o ports/161521 pgollucci [new port] databases/py-carbon, backend storage applic o bin/161515 systat(8) does not show Disk MB/s for md devices o kern/161511 fs [unionfs] Filesystem deadlocks when using multiple uni o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o ports/161494 gnome devel/anjuta: gmake[3]: Entering directory `/usr/ports o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash f ports/161462 crees net-mgmt/zabbix-agent: Zabbix_agentd opens a lot of fi s ports/161459 eadler New port: x11-fm/doublecmd Total Commander clone for t o kern/161456 [libpam] on a system bound to an LDAP server, top trie o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/161441 eadler New port: databases/4store o bin/161439 umount(8): umount -a -t doesn't work with nested o kern/161438 fs [zfs] [panic] recursed on non-recursive spa_namespace_ o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o ports/161421 gecko [patch] www/firefox: use libevent2 o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o amd64/161418 vbox [panic] [vbox] FreeBSD 9.0beta3 under Virtualbox: lost o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li o ports/161408 xfce x11-fm/thunar doesn't package o kern/161407 bschmidt [iwn] iwn panic on 9.0-BETA3 o bin/161401 [patch] have service(8) run scripts with the same reso o ports/161390 wen [maintainer] chinese/cxterm broken because does not co o kern/161381 net [re] RTL8169SC - re0: PHY write failed o ports/161359 maho math/gotoblas build fails on "Sandy Bridge" CPU o ports/161356 haskell lang/ghc: bootstrap assumes `gcc', ignoring CC o threa/161344 kib Failure to init TLS variables with func ptr inside sha o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o kern/161318 xen [xen] sysinstall crashes with floating point exception o ports/161317 kde x11/xde4: KDE 4.6.5 does not prompt for authentication o ports/161314 portmgr bsd.port.mk comments for BUILD_ and RUN_DEPENDS fail t f ports/161308 dougb databases/mysql-connector-odbc build fails with mariad o kern/161293 wireless [iwn] hang at startup when starting network o kern/161280 fs [zfs] Stack overflow in gptzfsboot o ports/161278 pgollucci net/dante: getoutaddr(): address [...] selected, but n o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161268 sysutils/fusefs-ntfs fails to mount ntfs "invalid argu s kern/161260 [request] need mps on RELENG_7 for dell servers (PERC o bin/161257 procstat(1): procstat should grow a -l flag to display s kern/161251 [request] Port otus driver from OpenBSD. a ports/161249 shaun net-p2p/bitcoin fails to build o kern/161248 [ahci] Time out, extremly slow response while copying o kern/161233 [build] update RELENG_8 make buildworld error gcc. o ports/161231 [NEW PORT] www/sencha-touch: The First HTML5 Mobile We o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o ports/161185 pgollucci [patch] Remove unnecessary graphics/cairo dependency f o ports/161180 gnome [UPDATE] sysutils/gnome-schedule: update to 2.1.5 p misc/161175 eadler [tools] [patch] uninitialized variables on some regres o www/161174 www Make http://www.freebsd.org/cgi/search.cgi search GNAT o kern/161169 fs [zfs] [panic] ZFS causes kernel panic in dbuf_dirty o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 f ports/161148 New port: databases/infobright -- the infobright colum o ports/161136 sbz editors/gobby: CLANG: f bin/161113 sysinstall bsdinstall(8): 9.0-BETA3: overwrites Win*-bootcodes wi o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 o arm/161110 arm /usr/src/sys/arm/include/signal.h is bad o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o ports/161106 sysutils/openipmi is dropping core o ports/161103 graphics/rawtherapee fails to build o bin/161101 sysinstall bsdinstall(8): 9.0-BETA3: partition editor: UFS-option o bin/161100 sysinstall bsdinstall(8): 9.0-BETA3: Add User but no Add Group o kern/161097 [sched_ule] Unkillable process hanging waiting for "ex o kern/161094 virtualization[vimage] [panic] kernel panic with pf + VIMAGE when st o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 lippe [patch] misc/ttyrec: don't depend on pty(4), use openp f ports/161070 infinite loop for graphics/xfig on 9.0-CURRENT o ports/161069 mm multimedia/ffmpeg: CLANG: /usr/bin/ld: libavcodec/x86/ o bin/161058 enc(1): enc0 not capturing outgoing IPSEC encrypted tr o docs/161057 doc [handbook] Error in section 18.17.4 of the handbook o bin/161056 sysinstall bsdinstall(8): could allow full control over newfs arg o bin/161055 sysinstall bsdinstall(8): partitioner should auto-populate GPT la f bin/161054 sysinstall bsdinstall(8): partitioner should list valid "type"s o bin/161053 sysinstall bsdinstall(8): network setup dialog is hard to navigat o bin/161052 sysinstall bsdinstall(8): should be consistent about saving confi o bin/161050 sysinstall bsdinstall(8): should use new syntax for IPv4 in rc.co o bin/161049 sysinstall bsdinstall(8): could try to tell if SSDs support TRIM o bin/161048 sysinstall [patch] bsdinstall(8): should run a concurrent shell o o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o power/161045 ppc X doesn't detect ADB mouse up event until another even o arm/161044 arm devel/icu does not build on arm a kern/161043 jhb [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o kern/161035 wireless [ieee80211] Incorrect number describing 11ng MCS rate o bin/161028 [PATCH] service(8) -- Minor improvements o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during o kern/160994 buf_ring(9): MD assumption in MI code f ports/160993 New port: security/sqlcipher o kern/160992 buf_ring(9) statistics accounting not MPSAFE p bin/160979 burncd(8): 9.0 burncd error caused by change to cd0 fr o bin/160975 ipfw(8): ipfw's uid matching doesn't function with IPv o ports/160969 [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 x11 [patch] ports/x11/libXi broken manpages o bin/160967 newsyslog(8) is not working o ports/160963 x11 [patch] x11/bigreqsproto: disable specs a ports/160941 swills [PATCH] emulators/open-vm-tools: upgrade to release 20 o ports/160933 gecko Bad port interactions between Mozilla projects o ports/160930 [PATCH] devel/gdb: HW watchpoint support for amd64 o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT o ports/160906 brooks net/openmpi compile error on FreeBSD 8 o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o kern/160893 fs [zfs] [panic] 9.0-BETA2 kernel panic o conf/160892 eadler [network.subr] [patch] add vboxnet[0-9]* to noafif lis o kern/160873 net [igb] igb(4) from HEAD fails to build on 7-STABLE o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. f ports/160861 New port: security/racoon-tool Manage setkey and racoo o kern/160860 fs [ufs] Random UFS root filesystem corruption with SU+J o ports/160856 mm graphics/opencv-core: CLANG build fails o ports/160843 cperciva portsnap3.FreeBSD.org, Snapshot appears to be more tha o kern/160838 acpi [acpi] ACPI Battery Monitor Non-Functional o bin/160834 [patch] grep(1): fixes for POSIX conformance o kern/160833 amd64 Keyboard USB doesn't work o ports/160829 timur devel/talloc hangs during configure on FreeBSD 9.0-BET o docs/160827 blackend New documentation: French translation for linux-users s ports/160821 audio/libmp3splt: Building WITHOUT_ID3 fails o ports/160816 swills [PATCH] security/stunnel: update to 4.44 o bin/160803 wpa_cli(8): (malloc) /usr/src/lib/libc/stdlib/malloc.c o kern/160802 [install] USB installation image fails to boot if BIOS o kern/160801 fs [zfs] zfsboot on 8.2-RELEASE fails to boot from root-o o ports/160798 pgollucci [PATCH] games/wesnoth-devel: update to latest version o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar o kern/160777 fs [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/impo o www/160774 mirror-adminIrish mirror of freeBSD website is very out of date o kern/160760 (Kernel) Log messages garbled/interleaved o kern/160750 net Intel PRO/1000 connection breaks under load until rebo o bin/160745 sed(1) appends '\n' at the end of binary data (unlike o ports/160717 python port: lang/python27 causing other ports to hang during o threa/160708 threads possible security problem with RLIMIT_VMEM o kern/160706 fs [zfs] zfs bootloader fails when a non-root vdev exists o docs/160698 gjb Remove outdated FreeBSD Jumpstart guide o ports/160695 rafan devel/ncurses libncurses.a doesn't contain libtinfo.a o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t f kern/160692 FreeBSD must consider shipping with SC_PIXEL_MODE on ( o kern/160691 Negative ping times (serious time keeping problem?) on o conf/160689 eadler FreeBSD should have .cshrc updated for modern hardware o ports/160688 hrs print/acroread9 runtime fails with "failed to load mod o ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 o kern/160652 siba_bwn in GENERIC o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 o ports/160631 mm graphics/pecl-imagick: Small change to honor WITHOUT_X o ports/160624 portmgr [exp-run] Process USE_ flags in both parts of bsd.port o kern/160611 lzjb_uncompress possible access violation? o bin/160596 eadler [patch] tzsetup(8): Use libodialog when doing tzsetup o kern/160591 fs [zfs] Fail to boot on zfs root with degraded raidz2 [r o bin/160586 newsyslog(8) can't properly rotate log files when ther o ports/160563 gnome portupgrade of sysutils/tracker-client fails o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o java/160553 java Jaikoz java based audio tagger core dumps o ports/160551 wen graphics/mapserver: CLANG: ./include/agg_renderer_outl o ports/160548 ale databases/mysql55-server - make OpenSSL available to m f ports/160544 rene sysutils/lsof: build fails with clang o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x f ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o misc/160517 X pseudo-terminals are not registered in utmp and wtmp p bin/160516 pluknet pkg_delete(1) error messages miss which package had th o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o ports/160492 bf [patch] lang/ocaml: respect CC o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries p ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn o ports/160475 vbox emulators/virtualbox-ose: virtualbox causes panic in v o ports/160471 gnome www/webkit-gtk2 fails to build/link o ports/160465 acm print/foo2zjs: Install of ppd files to /usr/local/shar o misc/160463 eadler [build] [patch] fix build dependency for dtrace module o www/160461 bugmeister Send-pr uses different terminology than docs / executa o docs/160460 doc [handbook] Network setup guide suggestion o docs/160447 doc [handbook] Developer's Handbook contains some outdated o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/160445 doc [handbook] Handbook does not mention ACL o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o usb/160436 usb ucom wedges machine on parity error ? o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o ports/160422 nox astro/google-earth: crashes on FreeBSD 9.0 o kern/160420 net [msk] phy write timeout on HP 5310m o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa o bin/160412 wrong value in systat(1) o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/160409 geom [geli] failed to attach provider o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o docs/160399 doc Man page for re(4) missing jumbo frames info o ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o kern/160392 [panic] double fault on configuring for php5-filter-5. o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o ports/160387 gecko security/ca_root_nss: Allow user to trust extra local o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i o kern/160370 pf [pf] Incorrect pfctl check of pf.conf s docs/160369 gjb [patch] update sample simple makefile with new convent o ports/160366 eadler New port: misc/xmonad-log-applet An applet that will d p ports/160357 x11 x11/dri2proto port update o ports/160354 x11 x11-drivers/xf86-video-intel29 port update o ports/160351 gecko www/libxul installs incorrect mozilla-nss.pc o bin/160320 netstat(1): netstat -f inet6 does not output properly o kern/160307 [dtrace] dtrace -lv can not identify the args of the o usb/160299 usb MicroSDHC-to-USB adapters do not work in FreeBSD 8.x o bin/160298 sysinstall(8) does not allocate enough space in / for o kern/160296 wireless [zyd] [panic] 802.11 usb device reboots system on 'ifc o bin/160295 [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160293 net [ieee80211] ppanic] kernel panic during network setup s ports/160291 pgollucci devel/rubygem-rake 0.9.2 update breaks redmine o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio p misc/160276 brueffer [conf] Spelling Mistake in comments in configure-files o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o ports/160268 gnome www/webkit-gtk2 build process bails: unable to mmap er o ports/160263 obrien shells/bash bug: testing condition for [ -x file ] is o conf/160240 rc rc.d/mdconfig and mdconfig2 should autoset $_type to v o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o conf/160227 [keyboard] Please include new keyboard mapping: French o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o ports/160224 gnome building x11-toolkits/gtk30 fails o ports/160215 office editors/libreoffice-legacy fails to build with KDE 4.6 o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o ports/160205 pgollucci [PATCH] sysutils/hyperic-sigar: update to 1.6.4 o usb/160192 usb [install] Installation from USB-Stick doesn't find the o ports/160190 timur [New port]: net/samba36-devel Test version of Samba 3. o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR o ports/160047 timur devel/talloc 2.0.5 fails to configure with MAKE_JOBS_U o ports/160022 eclipse release port: java/eclipse-cdt o misc/160011 [boot] Installer Disk will not boot o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat a ports/160003 olgeni drop lang/erlang-lite and update lang/erlang a ports/159982 swills [MAINTAINER] mail/rubygem-vmail: update to 2.3.2 o ports/159981 roam ftp/curl install depends bug? o kern/159971 mckusick [ffs] [panic] panic with soft updates journaling durin o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159947 pgollucci [patch] databases/gnats4 set default index type to pla o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159943 delphij openldap slapd ignores rc.conf slapd_krt5_ktname o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ o ports/159938 gnome graphics/shotwell received an X Window System error. o kern/159930 fs [ufs] [panic] kernel core p ports/159928 gnome Updates graphics/clutter to 1.6.16 o kern/159918 jail [jail] inter-jail communication failure f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c o kern/159912 [new driver] [request] Port urtwn from OpenBSD to Free o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o ports/159888 timur net/samba35: pkg_add -r samba35 doesn't accept openlda o ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip o ports/159839 wen graphics/mapserver: bump Python version o ports/159838 wen graphics/mapserver: PDF output doesn't work o misc/159837 bugmeister Ports PR autoassigner does not understand long lines o bin/159833 camcontrol(8): [patch] add ATA security options to cam o ports/159831 gecko www/firefox is broken o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o kern/159809 [build] RELENG_8_1 /UPDATING wrong re: COMPAT_IA32 ali o ports/159807 johans RC file for net/mrouted causes kernel panic by running o kern/159795 net [tcp] excessive duplicate ACKs and TCP session freezes o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o ports/159787 java java/openjdk6 nio muti-thread bug o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l o bin/159730 make(1) in parallel mode fails report failure of @-pre f ports/159728 sysutils/htop 0.9.0_1 is broken (does not show process o ports/159725 portmgr [bsd.commands.mk] Add new command: JOT o ports/159705 brooks Patch adding an option for disabling IPV6 in the net/o o ports/159687 gnome devel/gvfs fails to compile o ports/159677 wen graphics/qgis: /usr/ports/graphics/qgis/work/qgis-1.7 a bin/159665 rik [patch] ctm(1) does not work with bzip2 or xz compress o www/159664 www Add for June/July 2011: FreeBSD in top 3 reliable serv o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr s ports/159656 mandree bsd.database.mk fails to locate installed bdb51 librar o misc/159654 46 kernel headers use register_t but don't #include bpf_if->bif_dlist o ports/158925 delphij New Port: audio/pithos GNOME Pandora player o ports/158904 [PATCH] finance/openerp-web: update to 6.0.2 o ports/158899 pgollucci [PATCH] sysutils/prips: update to 0.9.9 a ports/158894 danfe audio/ardour: upgrade to 2.8.11 p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents s ports/158878 [patch] textproc/dadadodo assumes long is 32 bits o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( o ports/158855 pgollucci [PATCH] sysutils/fio: update to 1.55 o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o docs/158813 doc [patch] grammar updates for jme(4) o kern/158802 fs amd(8) ICMP storm and unkillable process. o ports/158800 mm [PATCH] devel/pear-PHPUnit3: update to 3.4.15 o bin/158794 line has been ignored in /etc/newsyslog.conf o ports/158791 sbz Update security/openvas-* o ports/158781 New port: games/drcreep Platform Puzzle Game p bin/158775 jhb [patch] top(1)'s output when using 'C' and 'H' interac o bin/158756 newfs_msdos(8) creates invalid image o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o conf/158734 netif stop don't destroy cloned_interfaces o kern/158726 net [ip6] [patch] ICMPv6 Router Announcement flooding limi o bin/158725 [patch] column(1): `column -t` always separates column o ports/158722 gnome [patch] devel/gobject-introspection does not build if f ports/158713 kde Unable to build /usr/ports/multimedia/phonon-xine afte o ports/158708 gnome x11/gdm doesn't build o kern/158707 [panic] kernel trap 12 with interrupts disabled o bin/158706 [regression] sed(1) in 8.2 gives incorrect output comp o ports/158704 eadler New port: mail/mailfromd o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) o ports/158693 gnome x11-wm/nautilus 2.32.2.1_1 fails to build o ports/158692 devel/cross-gcc: minor patch to enable arm-none-eabi s o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne o kern/158686 virtualization[patch] [tap] Add VIMAGE support to if_tap o ports/158684 gnome graphics/evince can not be build p bin/158682 jhb top(1) man page not mentioning all flags that are togg o ports/158680 gnome devel/gvfs doesn't build o kern/158665 net [ip6] [panic] kernel pagefault in in6_setscope() o i386/158653 i386 installing PC-BSD 9 Current with legacy USB Keyboard d o ports/158647 novel audio/bebocd: request for marking it BROKEN and DEPREC o ports/158639 gnome ports-mgmt/packagekit cannot be build o misc/158637 Cannot reinstall 8.2-RELEASE after HEAD o kern/158635 net [em] TSO breaks BPF packet captures with em driver o ports/158628 mm graphics/opencv and daily periodic disks clean o ports/158616 vd graphics/vigra prevents installing libreoffice p bin/158580 edwin [patch] Disable ncal(1)s date highlighting if stdout i f kern/158569 gavin [ahci] ROOT MOUNT ERROR (caused by AHCI module) o ports/158565 apache www/apache22: Add rlimits based on login class for mpm o conf/158557 rc [patch] /etc/rc.d/pf broken messages o conf/158551 [patch] Enhance periodic 800.scrub-zfs script to handl o ia64/158547 ia64 [ia64] Epilog counter (ar.ec) needs to be saved and re o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s o ports/158533 miwi [NEW PORT] devel/tiled: 2D game map editor o ports/158529 x11 [patch] x11-servers/xorg-server: conditionalize --with o ports/158513 x11 Broken Xvideo in x11-drivers/xf86-video-intel drivers o ports/158506 In multimedia/emotion leave only one backend enabled b o bin/158500 [patch] Add -p to arp(8) to hide permanent entries o kern/158432 [panic] gssd(8) generate much network traffic and led o bin/158431 [dtrace] crash in dt_proc_lookup when attaching to PID f kern/158424 multimedia [snd_hda] snd_hda driver doesn't expose 'rec' flag for o kern/158418 [includes] /usr/include librarys broken by unnecessary p kern/158398 geom [headers] [patch] includes f kern/158391 gavin [pci] Resource allocation issues with hda/ath o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/158378 kientzle cpio/bsdcpio(1) man page does not document -0 and --nu o kern/158376 [udf] [patch] The UDF file system under counts the num o ports/158374 acm databases/firebird21-client coredumps o bin/158363 [patch] partial restore problem in restore(8) o ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/158351 [cam] [patch] missing #includes in o kern/158340 [rpc] Possible dereference of null pointer by code tha p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null p kern/158307 hrs [ip6] ipv6_pktinfo breaks IPV6_USE_MIN_MTU o bin/158296 portmgr pkg_add(1) does not search entire PKG_PATH for depende o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 f i386/158264 gavin Intel Motherboard S5500BCR shut down and power on afte o kern/158231 fs [nullfs] panic on unmounting nullfs mounted over ufs o o kern/158230 libdisk(3) segfault in Open_Disk() with "ada0" o bin/158206 jilles sh(1) doesn't properly return IO errors to conditional f kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. o i386/158200 i386 wifi doesn't work on Acer AO751h, maybe WMI needs to b o kern/158197 geom [geom] geom_cache with size>1000 leads to panics f ports/158192 sunpoet devel/nant: NAnt 0.90 fails to build from ports o kern/158185 bz [ip6] IPv6 does not manage the NIC's route when doing f ports/158181 gavin databases/unixODBC databases/libodbc software packages o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o kern/158160 [coretemp] coretemp reports incorrect CPU temperature o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158098 pjd [hast] problem with copying data on hast-device o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets f kern/158063 [panic] kmem_malloc(20480): kmem_map too small f ports/158061 kwm New ports: net-im/sofia-sip and net-im/telepathy-sofia o ports/158054 matusita [PATCH] japanese/ja-skk-jisyo: update to 201106 f ports/158036 clsung databases/py-redis: [2.2.4] this port don't actually i o misc/158023 Binaries have no SUID bits in FreeBSD-8.2-RELEASE-amd6 o ports/158013 autotools devel/gmake: TARGET_ARCH variable prevents cross-compi o kern/157946 [patch] 'BSM conversion requested for unknown event' g f kern/157932 gavin [cas] loading CAS4 at boot hangs system f kern/157929 fs [nfs] NFS slow read o docs/157908 doc [handbook] Description of post-install should include o ports/157906 gabor print/latex horribly outdated o conf/157903 [devd.conf] [patch] automated kldload for USB class de o ports/157887 osa [UPDATE] sysutils/ccd2iso update and change maintainer o kern/157879 geom [libgeom] [regression] ABI change without version bump f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o kern/157869 easy to create zvols that cannot be forgotten o kern/157863 geom [geli] kbdmux prevents geli passwords from being enter o ports/157855 roam [update] sysutils/timelimit to 1.8 o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o kern/157785 net amd64 + jail + ipfw + natd = very slow outbound traffi o misc/157776 Unable to load kernel modules in fixit shell without c o kern/157770 scsi [iscsi] [panic] iscsi_initiator panic o misc/157764 jfbterm + mplayer = hang o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o bin/157748 calendar(1): Patch for src/usr.bin/calendar/calendars/ o ports/157746 brooks port bug: net/openmpi has incorrect path for sge depen o kern/157739 geom [geom] GPT labels with geom_multipath o kern/157724 geom [geom] gpart(8) 'add' command must preserve gap for sc o kern/157723 geom [geom] GEOM should not process 'c' (raw) partitions fo o kern/157722 fs [geli] unable to newfs a geli encrypted partition p bin/157718 edwin input data trigers a core dump from calendar(1) [regre o bin/157700 tftpd(8) in 8.2-RELEASE expects more data after EOF o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o bin/157635 sysinstall sysinstall(8): "none" Do not install a boot manager - o ports/157600 eclipse java/eclipse: option WITH_TESTS missing distinfo entry o ports/157554 apache www/apache22: Apache RLimitNPROC does not work as inte o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o ports/157544 nork Updates for databases/linux-oracle-instantclient-* o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o misc/157524 [build] make buildkernel fails while updating 8.1-RELE a ports/157504 jgh [new port] net-mgmt/zenpack-NetApp: Provides monitorin o bin/157500 posible chsh(1) bug on systems using nss_ldap/pam_ldap o bin/157499 fetch(1) confused me with its error message o conf/157466 [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157446 [libbsdxml] base expat needs minor fixes from vendor c o kern/157429 net [re] Realtek RTL8169 doesn't work with re(4) o bin/157424 inconsistent output from ldd(1) o kern/157418 net [em] em driver lockup during boot on Supermicro X9SCM- o kern/157410 net [ip6] IPv6 Router Advertisements Cause Excessive CPU U o kern/157399 fs [zfs] trouble with: mdconfig force delete && zfs strip f ports/157398 emulators/open-vm-tools is broken on FreeBSD 8.2 amd64 o kern/157397 [ada] ahci/ada/cam NCQ timeouts on Samsung and non-dis f ports/157392 marius sysutils/cdrtools can't burn DVDs correctly o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I o misc/157382 host cvsup.freebsd.org has been refusing connections f o usb/157376 usb LaCie USB disk not recognized o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157337 eadler [handbook] [patch] Indentation changes to network serv o ports/157320 [NEW PORT] databases/pecl-pdo_user: PECL classes provi o docs/157316 doc [patch] update devstat(9) man page o ports/157313 hrs cad/spice SEGV o bin/157308 getextattr(8) incorrect listing of attibutes with glob o ports/157301 [New port] net-mgmt/zbxlog: Syslog server receives mes o kern/157293 [mfi] mfiutil/mfi does not allow adding a previously c o bin/157289 repquota(8) does not mark overquota users with a "+" s o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f o ports/157282 x11 [MAINTAINER PATCH] net/xrdp: effective login name is n s ports/157261 itetcu net-im/skype: Cannot Visit account page o kern/157259 [build] kernel: install: mps.ko.symbols: No such file o bin/157244 dump(1): dump/restore: unknown tape header type -2307 o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o docs/157234 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o conf/157189 Default /etc/sysctl.conf should be removed. o kern/157182 net [lagg] lagg interface not working together with epair o kern/157179 fs [zfs] zfs/dbuf.c: panic: solaris assert: arc_buf_remov o bin/157177 primes(1) prints non-prime for numbers > 2^32 o ports/157174 wen fix typos and small mistakes in various ports o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI o kern/157118 [igb] cleanup error in igb driver - igb_setup_receive_ o bin/157117 sysinstall sysinstall(8): Add ftp4.se.freebsd.org to list of IPv6 f ports/157109 conflict between net/netpipes and sysutils/timelimit o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers f ports/157107 conflict between mail/p5-Mail-SPF and mail/libspf2 o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o www/157076 www freebsd-wireless mailing list not shown on web All Lis o usb/157074 usb [boot] [usb8] vfs_mountroot_ask is called when no usb o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o stand/157050 multimedia OSS implementation lacks AFMT_FLOAT o docs/157049 doc FreeBSD Handbook: Chapter 14 (Security) Inaccuracy o bin/157017 vidcontrol(1): "vidcontrol -r" no longer works [regres o bin/157015 bsnmpd(8) does not create 64bit counters for interface o kern/156974 [boot] [panic] Panic during kernel boot on HP Proliant o docs/156955 doc bug in share/man/man2/setsockopt.2 o ports/156949 x11 x11-drivers/xf86-video-ati 6.14.1 produce black blank o conf/156945 [nsswitch.conf] Name service Switch does not work as d o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP a docs/156920 doc isspecial(3) is not helpful o bin/156908 dumpfs(8) incorrectly displays ufsid o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces o ia64/156900 ia64 ia64 -current r221488 panic if kern.maxssiz=536748033 o usb/156898 usb [keyboard] usb keyboard does not work while boot (ps2 o kern/156884 wireless [ath] ath instablity o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o ports/156836 mm multimedia/x264: undefined reference to `__gcov_init' o ports/156834 New port: games/fairymax-devel latest version of games o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o arm/156814 arm OpenRD Ultimate does not boot on DB-88F6XXX or SHEEVAP o kern/156799 HEAD panic: Multiple IRQs for PCI interrupt 0.31.INTA: o kern/156797 fs [zfs] [panic] Double panic with FreeBSD 9-CURRENT and o ports/156787 apache www/mod_auth_kerb2 fails on undefined symbol with base o kern/156781 fs [zfs] zfs is losing the snapshot directory, o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o bin/156768 [patch] sockstat(1): missing spaces between long field o misc/156767 joerg Installation Media do not include current list of mirr o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX o kern/156749 [vmware] FreeBSD 8.2 does infinite disk access in VMwa p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o usb/156735 usb Need Quirk for Goflex USB Disk Drives o bin/156729 make(1) does not respect.ORDER in non-parallel mode o kern/156726 multimedia [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/156725 usb USB stack stall cause complete system input loss o kern/156716 [hang] System freeze during reboot o gnu/156704 Improper behaviour of GNU grep(1) o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o docs/156689 doc stf(4) output-only documentation gives bad configurati o kern/156684 [libc] getaddrinfo(3) returns improper error o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d o kern/156667 net [em] em0 fails to init on CURRENT after March 17 o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/156637 [headers] [patch] sys/types.h can't be included when _ o usb/156596 usb [ehci] Extremely high interrupt rate on ehci/uhci IRQ1 o kern/156584 bz [jail] ipv4 packet is not forward to v4-mapped binding p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156556 [hpet] FreeBSD fails to boot on ACER 2920: "bad stray p kern/156545 fs [ufs] mv could break UFS on SMP systems p kern/156540 [hwmpc] hwpmc(4) crash when loaded on unknown AMD cpu o misc/156537 Mismatch of Control Sums for ISO-image Files of Old Di o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o ports/156492 skv Multiple versions of Perl not supported o bin/156484 ntpd(8) regularly flips between PLL and FLL mode (time o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156463 [panic] kernel panic at pcpu.h:224 o ports/156425 python lang/python26: Needs to include -L/usr/local/lib/pth i f ports/156424 x11 8.2R xrandr & xf86-video-intel & xorg-server packages o ports/156415 danfe [NEW PORT] net-im/py-hotot, Twitter and Identi.ca micr o kern/156408 net [vlan] Routing failure when using VLANs vs. Physical e o ports/156405 x11 x11-drivers/xf86-video-ati driver: no hardware renderi o ports/156369 x11 x11-drivers/xf86-video-vmware: DPI value wrong calcula o ports/156368 x11 x11-drivers/xf86-video-vmware: pwcview does not work o ports/156362 New port: games/rftg Race for the Galaxy AI o kern/156358 jkim [patch] make amdtemp.c compatible with Llano/Brazos pl o kern/156353 emulation [ibcs2] ibcs2 binaries that execute on 4.x not working o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o ports/156335 gecko www/firefox: Repeatable firefox-4.0_1,1 crash o kern/156328 net [icmp]: host can ping other subnet but no have IP from o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/156322 wireless [wpi] no ahdemo support for if_wpi o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/156317 net [ip6] Wrong order of IPv6 NS DAD/MLD Report o ports/156287 kuriyama security/gnupg does not work without pinentry o ports/156286 snb sysutils/apt port tries to pull from incorrect URL o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o kern/156279 net [if_bridge][divert][ipfw] unable to correctly re-injec o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 o misc/156242 hrs [build] /usr/src/release/Makefile o kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if o i386/156229 i386 [hang] Server IBM x3400 is hangs with option SMP in Ke o kern/156226 net [lagg]: failover does not announce the failover to swi o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/156193 fs [ufs] [hang] UFS snapshot hangs && deadlocks processes f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, f ports/156143 scheidell New port: devel/arduino-mk: Build Arduino sketches fro o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/156111 jail [jail] procstat -b not supported in jail o amd64/156106 amd64 [boot] boot0 fails to start o gnu/156082 gcc(1) makes incorrect code when swapping array elemen o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o kern/156074 [hang] Removing CD-Rom from Lenovo T61p hangs system f ports/156066 pgollucci [NEW PORT] databases/rubygem-xapian-full (self contain o ports/156042 x11 x11/xorg hang in combination with KWin-Tiling o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/156030 net [ip6] [panic] Crash in nd6_dad_start() due to null ptr o kern/156016 [ncurses] Arrow keys don't work with any ncurses based o ports/156015 pgollucci [PATCH] dns/unbound add MUNIN-plugin o usb/156000 usb rum(4) Fatal trap 18: integer divide fault while in ke o usb/155996 usb NanoBSD not booted as Disk o kern/155994 geom [geom] Long "Suspend time" when reading large files fr f ports/155991 kuriyama textproc/p5-XML-Parser build error o bin/155985 tcpd(8) does not perform a access-control o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o kern/155964 [hang] OS hangs completely when suspend\resume with ac f ports/155949 gecko www/firefox: firefox 4, WITH_PGO, better Text against o ports/155947 xfce x11-wm/xfce4 does not launch or start f ports/155941 systemoperatornet/nepenthes: mwserv library support is not included o ports/155936 python lang/python27 Pthread: previous declaration of ... f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o bin/155902 ifconfig(8): ifconfig wlan0 create wlandev foo0 wlanad f ports/155898 Update port devel/libthai o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o ports/155890 tabthorpe [patch] Mk/bsd.licenses.mk: don't leave temporary file o bin/155886 bc(1) sometimes mangles hexidecimal numbers p bin/155873 edwin calendar(1) recurring date not working o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o usb/155784 usb Problem with Transcend StoreJet 25M3 (2AJ1) on Asus M2 o bin/155778 awk(1) doesn't set error exit status on errors o docs/155773 doc dialog(1): dialog manpages not updated o kern/155772 net ifconfig(8): ioctl (SIOCAIFADDR): File exists on direc o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o bin/155757 problems with setfib(1) behavior o kern/155752 [uart] tcdrain(3) does not work with uart(4) driver o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o ports/155697 ports-mgmt/pkg_replace doesn't want to replace java/op o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o i386/155695 i386 AMD Vision ultimate notebook HP Pavilion DV6 3109ER ov o ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o kern/155680 net [multicast] problems with multicast o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155657 java java/openjdk6: missing symlink for include/freebsd/* o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an s kern/155642 net [request] Add driver for Realtek RTL8191SE/RTL8192SE W o ports/155639 timur net/samba-libsmbclient: unrecorded libtdb dependency o kern/155628 [ahci] ahci disables dvd device o ports/155626 skv lang/perl5.x fails to build on Sheevaplug (ARM) o kern/155615 fs [zfs] zfs v28 broken on sparc64 -current f kern/155604 kmacy [flowtable] Flowtable excessively caches dest MAC addr o ports/155601 fluffy new port audio/festvox-russian o kern/155597 net [panic] Kernel panics with "sbdrop" message f ports/155593 crees audio/musicpd .16.1 ignores embedded cue sheets in FLA o kern/155587 fs [zfs] [panic] kernel panic with zfs f kern/155585 melifaro [tcp] [panic] tcp_output tcp_mtudisc loop until kernel o kern/155577 emulation [boot] BTX halted after install. Reboot during install o bin/155567 [patch] cvs(1): add -r tag:date to CVS o bin/155548 pkg_info(1): pkg_info -g mistakenly adds $PREFIX to gl f ports/155547 crees java/jboss5 port build failure o ports/155546 autotools devel/libtool doesn't work properly if not using built o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o kern/155499 [mfi] mfi(4) command timeout loop on boot on releng/8. o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o conf/155480 [login.conf] maxproc does not work when command runnin o kern/155468 xen [xen] Xen PV i386 multi-kernel CPU system is not worki s ports/155461 gnome [UPDATE] editors/abiword-docs to 2.9.0 s ports/155460 gnome [UPDATE] editors/abiword to 2.9.0 p kern/155442 jhb [bge] bge driver is seen but does not respond to netwo o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o ports/155431 xfce x11-wm/xfce4: The little bugs o kern/155429 [headers] including malloc.h should not abort compile. o kern/155421 [hang] System can't dump corefile [regression] o kern/155420 net [vlan] adding vlan break existent vlan f kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk p kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o ports/155354 bf New port: math/cmlib NIST core maths library o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver f ports/155335 mi multimedia/vic is out of date o kern/155320 [hang] cpufreq/powerd + xorg-7.5.1 + xf86-video-intel- o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot o ports/155275 secteam ports-mgmt/portaudit does not report installed vulnera f ports/155268 danfe games/warsow 0.6 does not work as dedicated server f kern/155249 [build] 8.1 buildworld failure o arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o kern/155199 fs [ext2fs] ext3fs mounted as ext2fs gives I/O errors o kern/155196 [uart] uart cannot identify internal modem or its chip o ports/155182 demon security/qca-tls 1.0_7 does not build in 9-CURREN o kern/155177 net [route] [panic] Panic when inject routes in kernel o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree o amd64/155135 amd64 [boot] Does Not Boot On a Very Standard Hardware o kern/155125 [lor] triple LOR in mkdir(1) o ports/155115 devel/doxygen: dependancy loop o ports/155105 stephen Port science/vis5d+ does not build. o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" o ports/155083 netchild devel/linux_kdump update o ports/155070 eadler NEW PORT: games/CastleVox - new fast strategy board ga o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/155030 net [igb] igb(4) DEVICE_POLLING does not work with carp(4) p bin/155028 init(8): "init q" in single user causes segfault o ports/155011 bland x11/nvidia-settings versions 195 and above fail to all o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel f kern/155004 yongari [bce] [panic] kernel panic in bce0 driver o bin/155000 make(1) doesn't handle .POSIX: correctly o conf/154999 Problems with ARP table o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o ports/154969 jpaetzel Update to net/socks5 (unbreak for -current) o amd64/154957 amd64 [boot] Install boot CD won't boot up - keeps rebooting o kern/154955 acpi [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3 o bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o kern/154943 net [gif] ifconfig gifX create on existing gifX clears IP o kern/154930 fs [zfs] cannot delete/unlink file from full volume -> EN o kern/154915 [libc] [patch] Force stdio output streams to line-buff o ports/154897 emulators/open-vm-tools: Bug in open-vm-tools-313025_2 o ports/154890 mva [UPDATE] devel/py-game to 1.9.1 o ports/154884 java java/openjdk6: Every NetBeans version on FreeBSD 8.1 c o bin/154877 portmgr pkg_info(1) error message should contain information a p stand/154873 pjd ZFS violates POSIX on open/O_CREAT -> ftruncate o kern/154860 ae gmirror(8): [panic] geom_mirror panices system on spec s kern/154851 net [request]: Port brcm80211 driver from Linux to FreeBSD o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o stand/154842 standards invalid request authenticator in the second and subseq o docs/154838 doc update cvs-tags information on releng_* to reflect sup o kern/154833 xen [xen]: xen 4.0 - DomU freebsd8.2RC3 i386, XEN kernel. o kern/154828 fs [msdosfs] Unable to create directories on external USB o kern/154826 bschmidt [iwn] iwn driver fails to power on adapter after resum o kern/154814 [lor] LOR between bufwait/dirhash o bin/154788 sysinstall sysinstall(8) crashes if no network interface found o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o bin/154769 make(1): :L modifier broken in quoted strings o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o ports/154711 security/heimdal: kadmin: hdb_open: hdb_open failed in o usb/154710 usb [ugen] Conexant USB Modem is not working in 8.x. In 7. o kern/154709 [heimdal] Kerberos V5 refuses authentication because R o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o ports/154682 net/iaxmodem: add rc script for running more than 1 ia o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o ports/154674 office Build of editors/openoffice.org-3 3.0 fails o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o amd64/154629 amd64 [panic] Fatal trap 9: general protection fault while i o ports/154628 gabor /usr/ports/textproc/bsddiff/ segfaults with -N o bin/154613 sysinstall sysinstall(8) does not rescan USB automatically o kern/154609 ed [ncurses] END key under screen not sending correct cod o ports/154607 flz Symlinking leads to hashing fail in net-p2p/rtorrent [ o kern/154600 net [tcp] [panic] Random kernel panics on tcp_output p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o i386/154578 i386 [boot] BTX Loader hangs > 1,5 min after listing BIOS d o bin/154570 [patch] gvinum(8) can't be built as part of the kernel o kern/154567 wireless [ath] ath(4) lot of bad series(0) o bin/154562 make(1): corrupted stack access when provided invalid o kern/154557 net [tcp] Freeze tcp-session of the clients, if in the gat o conf/154554 rc [rc.d] [patch] statd and lockd fail to start f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o ports/154502 x11 x11/xdm authorization failure when used with E17 windo o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o conf/154484 [patch] request for new functionality. jail zfs datase o kern/154473 xen [xen] xen 4.0 - DomU freebsd8.1 i386, XEN kernel. Not o kern/154472 xen [xen] xen 4.0 - DomU freebsd8.1 i386 xen kernel reboot o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy a ports/154455 roam [patch] security/stunnel: add aloha sendproxy support o ports/154449 x11 x11/xorg: missing manpage (7) Xsecurity o kern/154443 net [if_bridge] Kernel module bridgestp.ko missing after u o kern/154432 scsi [xpt] run_interrupt_driven_hooks: still waiting after o kern/154428 xen [xen] xn0 network interface and PF - Massive performan o ports/154423 x11 x11-drivers/xf86-video-radeonhd: radeon xorg driver ca o bin/154419 dig(1) segfault with +trace o bin/154409 indent(1) bug report p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o www/154406 webmaster Mailing List Archives search broken and outdated f ports/154401 jgh New port: www/jetty7 - newer fork by Eclipse/Codehaus o ports/154352 pgollucci [patch] multimedia/xmms: update using desktop and mime o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o arm/154306 imp named crashes with signal 11 o kern/154299 [arcmsr] arcmsr fails to detect all attached drives f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154255 net [nfs] NFS not responding f ports/154254 rene [patch] asmail imap login broken with gmail at al. o ports/154249 bf [NEW PORT] math/sprng: Scalable Parallel Pseudo Random o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o ports/154241 pgollucci [patch] games/wesnoth: move USE_* under bsd.port.optio p kern/154228 fs [md] md getting stuck in wdrain state o arm/154227 arm [geli] using GELI leads to panic on ARM o kern/154226 geom [geom] GEOM label does not change when you modify them o gnu/154225 The rcsintro manpage should not be in section 1 o kern/154214 net [stf] [panic] Panic when creating stf interface f ports/154209 python [PATCH] lang/python: Install symlink for ptags o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o arm/154189 arm lang/perl5.12 doesn't build on arm o kern/154185 net race condition in mb_dupcl o ports/154183 mm graphics/pecl-imagick libthr preload issue o kern/154170 davidxu Panic in sched_switch (/usr/src/sys/kern/sched_ule.c:1 o kern/154169 net [multicast] [ip6] Node Information Query multicast add o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/154134 net [ip6] stuck kernel state in LISTEN on ipv6 daemon whic o misc/154133 [build] device.hints not updated on upgrade == serial f ports/154118 mm graphics/ruby-rmagick: rmagick fails to automaticly re o kern/154091 net [netgraph] [panic] netgraph, unaligned mbuf? o ports/154086 office libsicui18n.a in devel/icu constains no symbols p bin/154073 delphij [libz] libz causes perl to exit on signal 11 o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o bin/154060 host(1): Server Unknown Error while resolve ip by the o conf/154054 cperciva etc/portsnap.conf FreeBSD-7.4 remove INDEX-5 and INDEX p bin/154042 delphij [patch] fix several rtprio(1) issues o kern/153996 fs [zfs] zfs root mount error while kernel is not located o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag o kern/153990 emulation [hyper-v]: Will not install into Hyper-V on Server 200 o docs/153958 doc ksu man-page documented, but not installed o ports/153952 python lang/python26 + pth fails to reconfigure cflags to inc o kern/153937 net [ral] ralink panics the system (amd64 freeBSDD 8.X) wh o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o amd64/153935 amd64 [hang] system hangs while trying to do 'shutdown -h no o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o i386/153851 usb [keyboard] keyboard issues on new Intel Mother boards. a kern/153848 bz [carp] [ipv6] backup host can't connect to master host o ports/153846 multimedia graphics/libcaca 0.99.beta17 - Hidden dependency on Xl o amd64/153831 amd64 [boot] CD bootloader won't on Tyan s2912G2nr o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/153771 Unkillable process after a SCSI tape write error o kern/153757 Kernel panic using openchrome Xorg driver on 9-CURRENT o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh a ports/153735 jsa multimedia/vlc: install error: `Permission denied' for o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o usb/153703 usb [keyboard] My USB keyboard can not be used in 8-STABLE o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o misc/153673 [build] tic (the terminfo compiler) not being created o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153659 awk(1) segfaults when trying to extract a combination o ports/153632 hrs textproc/xmlcharent fails to build o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o bin/153600 Path length restrictions in mount/umount tools prevent o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync f kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif o ports/153593 x11 graphics/dri: clutter segfault, something to do with i o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153567 pgollucci [PATCH] x11/fpc-x11: doesn't respect localbase o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o bin/153527 [patch] wake(8) should use sysexits.h o kern/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable o kern/153514 scsi [cam] [panic] CAM related panic o bin/153502 [libc] regex(3) bug with UTF-8 locale o kern/153497 net [netgraph] netgraph panic due to race conditions o amd64/153496 amd64 [hyper-v] [install] Install on Hyper-V leaves corrupt o ports/153495 x11 x11-drivers/xf86-video-ati wavy line problem for lenov o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o kern/153448 wireless [ath] ath networking device loses association after a o ports/153429 [patch] Fix explicite uses of unzip in ports o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o ports/153406 apache www/apache22's SUEXEC_RSRCLIMIT option does not take e o ports/153386 devel/valgrind does not build/include man pages o arm/153380 arm Panic / translation fault with wlan on ARM f misc/153373 [build] Cannot buildworld for 8.1_RELEASE-p2 o amd64/153372 amd64 [panic] kernel panic o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o ports/153358 x11 x11-drivers/xf86-video-intel: Intel driver freeze with o kern/153351 fs [zfs] locking directories/files in ZFS o kern/153308 net [em] em interface use 100% cpu o kern/153307 pf [pf] Bug with PF firewall o kern/153303 [amr] amr device driver dont detect logical drive amrd f kern/153289 gavin Modem Ring Signal not reliably detected o ports/153281 ashish editors/emacs: glib warning when starting emacs o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/153243 emulation [ibcs2] Seg fault whne running COFF binary using iBCS2 p bin/153240 des fetch(1): http transfer hangs after ^T (status) on tty o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out o ports/153231 pgollucci [PATCH] net-mgmt/nrpe2 enable ssl by default o bin/153211 cperciva freebsd-update(8) can not fetch updates over a proxy w p bin/153206 maxim [patch] netstat(1): "netstat -sz" doesn't reset any IP o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o conf/153200 rc post-boot /etc/rc.d/network_ipv6 start can miss neighb o ports/153195 nivit New port: www/mathjax cross-browser JavaScript display o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w o ports/153167 python Problem with signals, threads, and subprocesses in lan o kern/153161 ipfw IPFIREWALL does not allow specify rules with ICMP code o misc/153157 [build] [patch] Add support for generating userland de o bin/153156 When watch(1) is invoked incorrectly it trashes the tt o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o usb/153149 usb [umass] USB stick quirk regression [regression] o ports/153147 danfe Repocopy request: graphics/yafray -> graphics/yafaray o bin/153142 [zfs] ls -l outputs `ls: ./.zfs: Operation not support o ports/153128 bf graphics/ocaml-lablgl fails to build o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o bin/153124 grep(1): "grep foo * > somefile" goes into an infinite o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error o misc/153049 [build] PORTS_MODULES= seriously broken if port depend a docs/153012 doc [patch] iostat(8) requires an argument to -c option o ports/153008 brooks lang/clang: clang/binutils incompatibility f i386/153003 gavin [panic] Cant boot PCBSD-CURRENT-20101204x86CD.iso Dec0 o kern/152991 [ufs] false disk full with a too slow flash module o i386/152942 mav [install] "acd0[READ(offset=32768, length=2048)]error= o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o kern/152922 adrian Routerstation Pro different flash model investigation o ports/152915 russian/xmms v. 1.2.11_12 don't see cdinfo and tag's i f bin/152909 gavin scp mistake file to directory o ports/152899 devel/valgrind: unhandled syscall: 506 o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o amd64/152874 amd64 [install] 8.1 install fails where 7.3 works due to lac o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o ports/152847 pgollucci [patch] port/buildbot-slave could use a startup script o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o gnu/152808 gdb(1) crash on exit o conf/152807 [periodic] security 900.tcpwrap does not report any re o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152796 fcntl(2) audit records should not be labeled "file att o kern/152792 [acpica] [patch] move temperature conversion macros to o kern/152791 bz [icmp] ND, ICMPv6 Redirect vs Destination Cache failed o kern/152750 wireless [ath] ath0 lot of bad series hwrate o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w o kern/152662 [rtld] load libraries with address hint (cf. prelink) o bin/152661 parallel make sometimes gets working dir confused o misc/152636 [install] 8.1 Boot Only ISO doesn't support install vi o kern/152622 multimedia [pcm] uaudio recording problem o misc/152613 FreeBSD 8.x can not find logical drives on extended pa p kern/152609 pjd [geli] geli onetime on gzero panics o kern/152604 FreeBSD 7.2/7.3 installation CD panics on HP Proliant f kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o kern/152569 net [net]: Multiple ppp connections and routing table prob o ports/152568 portmgr New option framework proposal p bin/152551 gavin [libc] Remove unused variables. s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p o bin/152546 gdb(1): internal-error: fbsd_thread_new_objfile: Asser o misc/152543 listing color format cause kernel panic in .zfs dir p misc/152531 maxim Incorrect sysctl description o bin/152525 ntpd(8) on 8.1 loops on select() with EBADF o kern/152500 multimedia [hdac] play interrupt timeout, channel dead o kern/152485 arundel [patch] seek offset for /dev/null(4) and /dev/zero(4) o ports/152474 mi Upgrading 'gdb-6.6_1' to 'gdb-6.6_2' (devel/gdb6) fail o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules f bin/152458 hrs rtadvd(8) needs to allow RA without a prefix info opti o bin/152446 cperciva portsnap(8) error o kern/152438 acpi [acpi]: patch to acpi_asus(4) to add extra sysctls for o amd64/152430 amd64 [boot] HP ProLiant Microserver n36l cannot boot into i o stand/152415 kargl [libm] implementation of expl() o kern/152405 wrong user time is reported when CPU frequency throttl o ports/152389 sem sysutils/grub and sysutils/grub2 misinterpret disklabe o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o ports/152355 hrs net/openbgpd stops syslogging after syslogd restart o ports/152341 bapt shells/zsh fails to load zsh/regex with ZSH_STATIC kno o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x o ports/152306 mm devel/binutils create binary incompatible kernel modul o kern/152293 [libstdc++] SEGV in libstdc++.so.6 o bin/152259 ae bsnmpd(1) fails with stack overflow during GETBULK of o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o bin/152229 b64decode(1)/b64_pton(3) should decode common variant o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 o ports/152224 python [patch] fix installed permissions for lang/python27 o kern/152162 [syscons] On syscons, pressing delete key results in p o ports/152159 x11 [hang] xorg/x11: X11 freezes with Intel Mobile 965 and o bin/152154 script(1) -k malfunctions with certain shells (e.g. tc s kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152131 script(1): [patch] Useless code in script.c (part 1) o ports/152118 New port: deskutils/linux-tahometer A worktime trackin o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo o ports/152111 timur databases/tdb: Cannnot install tdb from ports o docs/152103 chinsan man ipnat is out-dated a ports/152099 cs [NEW PORT] www/loggerhead o kern/152098 acpi [acpi] Lenovo T61p does not resume f amd64/152097 gavin Sound button in Lenovo T61p mutes sound in kde o bin/152084 [patch] pw(8) does not allow @ or ! in gecos o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o ports/152066 mnag [new port] databases/py-MySQLdb40 and so forth: New sl a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe o ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp o kern/152036 net [libc] getifaddrs(3) returns truncated sockaddrs for n o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory o bin/151937 [patch] netstat(1) utility lack support of displaying o kern/151924 very slow boot from disk: 15m+ o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor o kern/151905 fs [zfs] page fault under load in /sbin/zfs o ports/151884 office editors/openoffice.org-3-devel port misbehaviour p bin/151866 des [libfetch] [patch] closing the cached FTP connection o kern/151813 FreeBSD 8.1/amd64: garbage in /var/log/messages o ports/151808 oliver security/courier-authlib: courier-authdaemond doesn't f threa/151767 davidxu pthread_mutex_init returns success with bad attributes o ports/151764 timur security/vuxml update for security vulnerability: port o docs/151752 doc pw.conf(5) doesn't define format for file clearly o ports/151747 new port: emulators/wine-fbsd64: request for (a variat s gnu/151716 gcc(1) fail with internal compiler error when using -f o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o kern/151690 net [ep] network connectivity won't work until dhclient is o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o bin/151663 grdc(1): games/grdc: -s does not scroll o ports/151662 ruby ports-mgmt/portupgrade: upgrade of autoconf leaves old o kern/151650 FreeBSD9-CURRENT can't boot when recompile KERNEL. o kern/151648 fs [zfs] disk wait bug o kern/151629 fs [fs] [patch] Skip empty directory entries during name o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o ports/151603 vbox [vbox] Self-built emulators/virtualbox-ose-kmod vboxne o bin/151600 [patch] route(8) does not always flush stdout o ports/151596 x11 x11/xorg: wacom bamboo button 1 no longer works o kern/151593 net [igb] [panic] Kernel panic when bringing up igb networ o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o ports/151534 python lang/python26 + WITH_PTH doesn't install correctly o ports/151472 ume mail/cyrus-imapd23 failed to compile f ports/151467 stephen New port: sysutils/autojump acts as a complement to cd o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad o kern/151444 [kerberos] Kerberos5 is broken in the base system from f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o www/151438 bugmeister query-cgi use monospace font o www/151437 bugmeister query-cgi broken with base64 encoded mime email o ports/151427 wen math/FriCAS: fatal error encountered in SBCL pid 19170 s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o ports/151414 portmgr Add 'work' when WRKDIRPREFIX is used. o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O o docs/151336 scsi Missing documentation of scsi_ and ata_ functions in c o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o ports/151280 matusita emulators/vmware-guestd6 port install error in /usr/po o bin/151264 syrinx bsnmpd(1): pf counters aren't updated on some SNMP que o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o bin/151229 eadler xterm terminal emulation - shift-tab doesn't work as e o kern/151226 fs [zfs] can't delete zfs snapshot o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o bin/151187 pkg_add(1): allow different pkgdep location o bin/151186 [patch] routed(8) turns RIP off if just one network ca o bin/151168 pkg_add(1): pkg_add -K should preserve file metadata o ports/151154 kde audio/amarok-kde4 crashes on network activity if ports o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151124 hrs net/openbgpd: OpenBGPD exists if an interface is remov o i386/151122 i386 [boot] BTX 1.02 crashes on boot o kern/151111 fs [zfs] vnodes leakage during zfs unmount p docs/151104 keramida mksnap_ffs(8) should mention 20 snapshot limit on UFS o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o bin/150995 sysinstall sysinstall(8): corruption of partition table o ports/150994 maho math/suitesparse can not compile with atlas o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o bin/150988 adduser(8) problem of directory mode a ports/150980 dinoex print/cups-base: I can not create package for cups-bas s ports/150968 kuriyama textproc/p5-XML-Parser fails test o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl f ports/150903 databases/dbf: options --sql / --csv does produce crap o usb/150892 usb [zyd] Whenever network contacted in any shape, way or p bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o docs/150877 doc ambiguity in newsyslog(8) man page about zfs with comp o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o ports/150794 glewis tomcat7's rc.d script wont shutdown tomcat with java/o o bin/150771 [patch] csup(1) GNUmakefile missing o i386/150766 i386 Dell Vostro 3700 siffle sous FreeBSD / Dell Vostro 370 p conf/150752 dougb [rc.subr] [patch] be not needed to eval $_pidcmd on re o bin/150723 ae bsnmpd(1): add knowledge of "ada" disks (ATA via SCSI o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of o kern/150640 [panic] Fatal Trap 9 - 8.1-release o ports/150633 x11 x11-servers/xorg-server: KVM switching causing X serve o ports/150631 gecko www/firefox 3.6.9 does not build if you have previousl o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label s bin/150620 [request] Please include utility programs for ncurses f ports/150594 eadler [patch] graphics/dri: add support for ATI Radeon HD 42 o misc/150590 Screen goes blank when PC-BSD graphic install is loade o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o kern/150557 net [igb] igb0: Watchdog timeout -- resetting o kern/150555 geom [geom] gjournal unusable on GPT partitions o www/150553 www [patch] update Russian "FreeBSD Community" page f ports/150541 gahr [new port] sysutils/yum - Installer/updater for rpm o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o kern/150516 jfv [em] e1000 receive queue handling problem s kern/150514 kib [drm] [request] Reorganize DRM Directory to Support Dr o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot f ports/150502 multimedia multimedia/gpac-libgpac 0.4.5_4,1 fails to compile on o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o ports/150425 www/squid31: rc.d/squid's squid_fib setting ineffectiv o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x o ports/150295 nivit audio/sonata fails in __init__ at mpd.MPDClient() : o o kern/150284 multimedia [snd_hda] No gain with Audio o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken s bin/150237 sysinstall sysinstall(8): Suggestion: installer should suggest th o bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o bin/150224 net ppp(8) does not reassign static IP after kill -KILL co o docs/150219 doc zfs(8) manual page misses jail/unjail o kern/150206 [patch] nmount(2): can't switch root partition to rw u o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o ports/150155 x11 x11/xorg hangs after xrandr(1) usage p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o stand/150093 standards C++ std::locale support is broken f ports/150086 [NEW PORT] net-im/tkabber-plugins-devel: External Plug f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo o ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a o kern/150036 [rpc] Sun RPC license has less restrictions now. f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' o stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o bin/149972 [patch] pw(8): usermod -u should error f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/149960 [headers] syntax error /usr/include/machine/endian.h o ports/149958 bf x11-toolkits/ocaml-lablgtk2's varcc should (maybe) be o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti s kern/149927 scsi [cam] hard drive not stopped before removing power dur o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 pgollucci [PATCH] mail/dspam: important cleanup p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o kern/149857 [kqueue] kqueue not reporting EOF under certain circum o ports/149846 pgollucci graphics/gimp-gap: outdated (not maintained) port o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149828 kientzle tar(1) poor (empty) error message when extracting trun o ports/149817 ruby [wishlist] ports-mgmt/portupgrade: portinstall -p opti o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label p kern/149800 eadler [fdc] [patch] "driver bug: Unable to set devclass (dev o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149762 geom volume labels with rogue characters o ports/149743 x11 x11/xorg: garbled window since Xorg-7.5 o gnu/149712 [build] -fno-builtin in CFLAGS will cause gcc(1) to se o ports/149678 portmgr Mk/bsd.port.mk: add a sanity check for OPTIONS p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly o i386/149647 i386 [panic] Dell Inspiron 530 (FX09) panic at boot with 8. o kern/149643 net [rum] device not sending proper beacon frames in ap mo o ports/149636 x11 x11/xorg: buffer overflow in pci_device_freebsd_read_r o misc/149633 bugmeister Problem with replying to PR o kern/149609 net [panic] reboot after adding second default route o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o kern/149532 jfv [igb] igb/ixgb controllers panic on FreeBSD 8.1-RELEAS o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o ports/149513 eclipse java/eclipse can not compile with 'WITH_TESTS=true' o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o kern/149479 [panic] 8.1-RELEASE kernel panic o www/149446 www [patch] improve misleading title of "report a bug" o ports/149420 ume security/cyrus-sasl2 fails to build GSSAPI, breaking p o bin/149412 secteam bdes(1) in CFB/OFB modes can't decrypt own output o kern/149373 wireless [realtek/atheros]: None of my network card working o bin/149363 tcsh(1) cause situation when ssh connection closed o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149323 [libc] Applications with large memory footprint failin o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o arm/149288 arm mail/dovecot causes panic during configure on Sheevapl o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o ports/149250 hrs japanese/FreeWnn-server: /etc/rc: WARNING: $wnn_enable o bin/149232 cperciva portsnap(8) does not generate INDEX-9 on FreeBSD 9-CUR o kern/149219 [ciss] DL380 G6 P212 trouble o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via o kern/149208 fs mksnap_ffs(8) hang/deadlock o kern/149201 [ata] DVD/CD Drive Error o ports/149186 timur net/samba34 builds broken binaries on Sheevaplug (ARM) o kern/149173 fs [patch] [zfs] make OpenSolaris installa o ports/149167 python lang/python26 fails to build _ctypes on Sheevaplug (AR o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o kern/149086 net [multicast] Generic multicast join failure in 8.1 o docs/149051 doc [request] No document for clang or clang++ o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 p docs/149033 pjd hastctl.8 manpage wrong o ports/149031 csjp Not work security/termlog o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include 4.1 does not connect to BSD in hostap wit o kern/144874 net [if_bridge] [patch] if_bridge frees mbuf after pfil ho p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic p conf/144842 hrs [ip6] ipv6_default_interface causes route complaints f o kern/144824 [boot] [patch] boot problem on USB (root partition mou s docs/144818 doc all mailinglist archives dated 19970101 contain traili o kern/144809 [panic] Fatal trap 12: page fault while in kernel mode o conf/144804 ntpd(8) cannot resolve hostnames at system start o ports/144794 amdmi3 multimedia/aegisub: fails to build with multiple optio o kern/144777 qingli [arp] proxyarp broken in 8.0 [regression] s kern/144770 [ata] hard drive spindown functionality broken? o ports/144769 ruby [PATCH] ports-mgmt/portupgrade should have a configura o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/144754 gssapi(3): cyradm crashes inside libgssapi.so o kern/144743 [libteken] mouse positioning partialy working o bin/144736 devd(8) should consider spaces in event description wh o conf/144726 hrs network.subr functions accumulate output before r19713 o bin/144723 [patch] port over coverity SA NULL deref warning fix f o www/144704 brd svn-src-release mailing list page has broken link to a o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o kern/144696 ed [uart] tcdrain(3) does not work right with uart(4) dri o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o bin/144652 [PATCH] pwd_mkdb(8) copies comments to /etc/passwd o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg o bin/144641 [ata] burncd(8) freezes whole system while trying to b o docs/144630 doc [patch] domainname(1) manpage contains old information o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors p misc/144553 imp [nanobsd] NanoBSD's updatep* scripts fail with boot0cf o conf/144548 brian [boot] [patch] Enable automatic detection of amd64/i38 o docs/144543 chinsan [handbook] IPFW doc change o ports/144536 skv lang/perl5.10: /libexec/ld-elf.so.1: /usr/local/sbin/e s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta s bin/144531 [patch] cp(1) show percentage complete o docs/144515 doc [handbook] Expand handbook Table of contents o kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o docs/144488 doc share/examples/etc/make.conf: contains dangerous examp p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi o misc/144442 [build] [patch] remove unnecessary group and passwd en o i386/144437 [boot] BTX loader halts on HP DC5850 o kern/144416 fs [panic] Kernel panic on online filesystem optimization s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t o bin/144388 [patch] different behavior of make(1) between command o usb/144387 usb [run] [panic] if_run panic o bin/144343 hrs The rtadvd cannot avoid the prefix that doesn't want t o kern/144325 [libpcap] tcpdump compiles complex expression to incor f kern/144323 bschmidt [ieee80211] A response management frame appears in wir o bin/144322 truss(1) fails on 'assistant-qt4' from the port qt4-as f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw s bin/144313 vwe ld(1) can't find libs in /usr/local/lib but ldconfig(8 o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o bin/144285 [patch] ps(1): ps -axo user,%cpu,%mem - most processes o bin/144278 sysinstall [install] Fixit from USB dont work o conf/144243 [patch] Add NIS related files to OptionalObsoleteFiles o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o kern/144231 net bind/connect/sendto too strict about sockaddr length a ports/144224 mono [PATCH] lang/mono Fix build with new GCC o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o ports/144203 clsung textproc/refdb: network clients loop indefinitely when o bin/144139 x11/xscreensaver-gnome can't build because of bug in G o docs/144127 ed termios(4) man page wrongly claims CCTS_OFLOW/CRTSCTS o ports/144120 glewis java/openjdk6: games/pcgen doesn't fully work with ope o bin/144109 wireless hostapd(8) uses the MAC of the wireless interface, but p kern/144061 rwatson [socket] race on unix socket close o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive f i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled o ports/144044 gecko [PATCH] www/firefox: Makefile.webplugins target order o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors o i386/144005 [hang] System freezes a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo p bin/143962 pluknet fstat(1) doesn't work on UNIX sockets o ports/143949 office editors/openoffice-3: system unzip pickiness unhelpful o docs/143850 doc procfs(5) manpage for status > controlling terminal is o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o bin/143830 [patch] atmconfig(8): Fix conditional inclusion for sb o kern/143825 fs [nfs] [panic] Kernel panic on NFS client s kern/143808 virtualization[pf] pf does not work inside jail o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES o kern/143800 [boot] ping of local ip failed with network boot o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A a usb/143790 usb [boot] [cam] can not boot from usb hdd o misc/143785 [build] [patch] add passive mode to pkg_add cdrtools i o bin/143732 [patch] mtree(8) does a full hierarchy walk when reque o ports/143723 nork graphics/dri fails to build after graphics/libdrm upda o kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 s bin/143699 [patch] extend brandelf's OS knowledge o bin/143698 portmgr pkg_add(1) probably behaving incorrectly s www/143697 linimon [portsmon.freebsd.org] Error: could not connect to the s kern/143673 net [stf] [request] there should be a way to support multi s kern/143666 net [ip6] [request] PMTU black hole detection not implemen o conf/143637 rc [patch] ntpdate(8) support for ntp-servers supplied by o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op f kern/143595 bschmidt [wpi] [panic] Creating virtual interface over wpi0 in o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o i386/143587 i386 [boot] [hang] BTX 1.02 freezes upon assigning Bios C d o kern/143573 jfv [em] em(4) NIC crashes intermittently o bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o bin/143570 ed [patch] stock ftpd(8) does not handle "filesize" limit o bin/143568 secteam ktrace(1) is limited with other user's "filesize" limi o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o bin/143533 [patch] Changes to support Sun jumpstart via bootparam o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o bin/143504 pf [patch] outgoing states are not killed by authpf(8) o docs/143472 standards gethostname(3) references undefined value: HOST_NAME_M o kern/143455 geom gstripe(8) in RELENG_8 (31st Jan 2010) broken o kern/143426 [panic] System crash with Firefox-3..7.5 & FreeBSD-7.2 o kern/143420 acpi [acpi] ACPI issues with Toshiba o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i o bin/143375 [patch] awk(1) trashes memory with regexp and ^ anchor o bin/143373 [patch] awk(1) tolower/toupper functions don't support o bin/143369 [patch] awk(1) doesn't handle RS as a regexp but as a o bin/143368 [patch] awk(1): number of open files is limited to sma o bin/143367 [patch] awk(1) treats -Ft as -F o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o bin/143362 awk(1) incorrect matching o bin/143351 bapt [request] update flex(1) to at least 2.5.33 o kern/143349 [panic] vm_page_free: freeing busy page o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143324 [panic] vm_fault: fault on nofault entry, addr: c10a50 o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 o gnu/143254 [patch] groff(1) build in base system does not honor P o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/143208 net [ipsec] [gif] IPSec over gif interface not working p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o kern/143184 fs [zfs] [lor] zfs/bufwait LOR s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o kern/143126 [ata] Data loss on read timeout o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o kern/143088 [hang] FreeBSD 9.0-CURRENT freezes while starting kern o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances o i386/143082 [install] Unable to install 8.0-RELEASE on Dell 2950 w o conf/143079 wireless hostapd(8) startup missing multi wlan functionality f kern/143074 bschmidt [wi]: wi driver triggers panic o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) f kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks o kern/143034 net [panic] system reboots itself in tcp code [regression] p kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o bin/143017 watch(8): fatal: cannot attach to tty o kern/143006 [build] [request] ACCEPT_FILTER_DATA and ACCEPT_FILTER o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o conf/142961 pf [pf] No way to adjust pidfile in pflogd f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o i386/142946 i386 [boot] Can't boot installation DVD. BTX halted p docs/142938 wkoszek [kld] share/examples: fix warnings o bin/142932 adduser(8) script add bogus symbol at "full name" fiel p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o docs/142917 arundel [patch] top(1) man page does not include information a o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142877 net [hang] network-related repeatable 8.0-STABLE hard hang o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o bin/142867 sysinstall sysinstall(8): in a custom installation re-entering th o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o stand/142803 kargl j0 Bessel function inaccurate near zeros of the functi o kern/142802 [ata] [panic] on removing drive: recursed on non-recur s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m o kern/142781 [lor] New LOR: process lock / system map o kern/142774 net Problem with outgoing connections on interface with mu o kern/142772 net [libc] lla_lookup: new lle malloc failed o ports/142743 [PATCH] devel/cross-binutils: installed by *-rtems-gcc p kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in o kern/142728 [panic] Fatal trap 12 in g_io_request o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone f kern/142624 gavin Sending large chunks of data fails o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real p kern/142595 jhb Implementation of "filesystems" file in linprocfs(5) o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o kern/142563 geom [geom] [hang] ioctl freeze in zpool o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142489 fs [zfs] [lor] allproc/zfs LOR o conf/142467 /var/log/auth.log may not be rotated for years o kern/142466 fs Update 7.2 -> 8.0 on Raid 1 ends with screwed raid [re o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) o i386/142421 i386 [ata] optical drives not found o kern/142390 [keyboard] 30th console switch hangs computer complete p docs/142367 roam [patch] wlan(4) does not document requirement for kern o kern/142351 scsi [mpt] LSILogic driver performance problems o misc/142335 sysinstall Download of Release 8.0 LIVE is NOT a "live" from CD p o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two o conf/142304 rc rc.conf(5): mdconfig and mdconfig2 rc.d scripts lack e f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o ports/142259 itetcu sysutils/apcupsd segfaults during shutdown o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/142198 simon SSLv3 failure with irc/xchat on FreeBSD 8.0 o i386/142190 i386 [boot] BTX Loader issue on Gigabyte Motherboard o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep o docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 o conf/142114 periodic(8): security report from 'periodic daily' doe o i386/142108 i386 [panic] vm_fault: fault on nofault entry, addr: c32a40 f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te f kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o ports/142069 x11 x11/xorg: After adding on a laptop Toshiba Sattelite L o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o bin/141920 sort(1): sort -k 3,1g is very slow o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o kern/141915 [hang] Unspecified lockup/deadlock with 7.2 on AMD64 o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141826 multimedia [snd_hda] load of snd_hda module fails f kern/141756 gavin [mmc] MMC card attached to blocks keybo f kern/141741 net Etherlink III NIC won't work after upgrade to FBSD 8, o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o threa/141721 threads rtprio(1): (id|rt)prio priority resets when new thread f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o s stand/141705 standards [libc] [request] libc lacks cexp (and friends) a kern/141696 virtualization[rum] [panic] rum(4)+ vimage = kernel panic o kern/141682 [libc] [patch] Faster version of strncpy(3) f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o i386/141675 i386 [boot] memory and BTX halted on Sunfire X4170 o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o ports/141660 x11 x11/xorg: X can't determine amount of video memory on o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/141653 [ata] [panic] Panic in ata? f misc/141652 gavin [install] 8.0 install fails from USB memstick because o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR o i386/141470 i386 [boot] BTX halted immediatly on selecting any of the b o i386/141468 i386 [boot] FreeBSD 8.0 boot manager can cause disk not pro o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro p amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze s bin/141340 netstat(1): wrong netstat -w 1 output o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail o kern/141314 andre Network Performance has decreased by 30% [regression] f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US p misc/141311 [build] "make delete-old" leaves some unnecessary file o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o conf/141275 rc [request] dhclient(8) rc script should print something o bin/141264 ntpd(8) crashes when tries to use an oncore reference a docs/141227 blackend Handbook/sysinstall documentation about distributions o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se o bin/141016 [libpam] PAM checks in sshd too few? o kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o bin/140972 sysintall(8): 8.0-RELEASE-i386-memstick Fixit broken - o ports/140968 python x11-toolkits/py-tkinter(devel/pth): py26-tkinter-2.6.4 o conf/140965 [terminfo] Cannot create terminfo database because ncu o ports/140939 rea [patch] security/vuxml: fix and extend files/newentry. o kern/140932 fork+exec from threaded FreeBSD 7.2 application o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de o ports/140895 hrs net/openbgpd exit, when kernel table change o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o ports/140882 lev devel/py-subversion: subversion-1.6.6_1 build error wi o amd64/140873 gavin [install] Cannot install 8.0-RELEASE on Thinkpad SL300 o bin/140863 cperciva freebsd-update(8) fails to check that writes will succ o kern/140858 [hang] System freeze during boot when PC-Card NIC inst o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- s docs/140847 doc [request] add documentation on ECMP and new route args o bin/140843 sysinstall sysinstall(8): cannot software install from usb o bin/140842 sysinstall sysinstall(8): destroyed ncurses interface with FBSD8. f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o kern/140835 des [libfetch] fetchParseURL(3) returns success with inval a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o kern/140778 jfv [em] randomly panic in vlan/em o kern/140742 net rum(4) Two asus-WL167G adapters cannot talk to each ot o kern/140728 jfv [em] [patch] Fast irq registration in em driver o docs/140725 darrenr wrong directory in ipnat(8) man page o kern/140697 pf [pf] pf behaviour changes - must be documented a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf o i386/140655 i386 [panic] Lenovo X300: fatal trap 12 after /sbin/halt -p o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C p conf/140650 cperciva [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/140640 fs [zfs] snapshot crash o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o ports/140621 edwin Add support for /etc/cron.d and /usr/local/etc/cron.d o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o bin/140595 sysinstall [request] sysinstall(8): Replace "Country Selection" w o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o docs/140583 hrs ports/print/acroread9 - handbook and port fail to ment s www/140580 www svnweb file logs are useless p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o ports/140542 edwin sysutils/isc-cron should be compatible with cron from o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o bin/140462 devd(8): [regression] devd.pid locked by /etc/rc.d and o kern/140461 [vm] Fail to read from swap. The swap_pager.c contains p docs/140457 doc [patch] Grammar fix for isspace(3) o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum o i386/140448 i386 [boot] BTX loader hangs after displaying BIOS drives o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum p misc/140436 imp [nanobsd] pkg-add process fails when there is no /usr/ o docs/140435 arundel ls(1), section STANDARD: the -A is exception from POSI o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o misc/140376 [build] installworld fails trying to use 'chflags schg o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o ports/140364 ruby [patch] ports-mgmt/portupgrade-devel: #! line substitu f kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid o kern/140352 geom [geom] gjournal + glabel not working o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m a bin/140309 bapt [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o ports/140273 ruby ports-mgmt/portupgrade-devel chokes on bsdpan pkgs o i386/140268 i386 [install] 8.0-RC* does not install on MSI MS-7255 [reg o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o kern/140185 [patch] expand_number(3) does not detect overflow in n o ports/140170 nork net/liveMedia: install shared libraries and thus fix r o ports/140162 hrs print/teTeX listings module bug o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/140156 emulation [linux] cdparanoia fails to read drive data o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140142 net [ip6] [panic] FreeBSD 7.2-amd64 panic w/IPv6 o docs/140082 bland [handbook] handbook/jails: russian translation is miss o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/140067 [boot] 8.0-RC2 from ISO, after install, hangs on boot o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) o kern/140018 [boot] locks up during boot on cpu error on Dell Power o conf/140009 configuration issue NIS in nsswitch.conf(5) o ports/140008 ruby ports-mgmt/portupgrade: many papercut omissions on por o i386/139999 i386 [panic] random freeze and crash s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o gnu/139982 ld(1): BFD internal error o ports/139872 crees [PATCH] ports-mgmt/porttools: improve port's directory f kern/139811 gavin FreeBSD did not recognize Intel Gigabit ET Dual Port S o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139718 trasz [reboot] all mounted fs don't get synced during reboot o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a o kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n p amd64/139614 avg [minidump] minidumps fail when many interrupts fire p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u o ports/139579 jkim overflow in audio/oss f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo p kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks p bin/139492 portmgr pkg_install(1) - overlapping data buffer in call to sn o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/139403 [headers] absense of AUE_NULL o bin/139389 pluknet [patch] Change top(1) to display thread IDs o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous o bin/139346 net [patch] arp(8) add option to remove static entries lis o docs/139336 doc [request] ZFS documentation suggestion a bin/139314 [patch] install(1): install -d reports success on fail p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o conf/139255 8.0-RC1 network.subr calls route(8) with obsolete para o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o kern/139232 [panic] Kernel panic (spin lock held too long) p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f ports/139203 crees sysutils/freebsd-snapshot more careful patch not depen o bin/139181 randi WITHOUT_LEGACY_CONSOLE=1 breaks sysinstall(8) o docs/139165 doc gssapi.3 man page out of sync with between crypto and o kern/139162 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o bin/139135 cperciva freebsd-update(8) misbehaves on upgrade and shows erro s sparc/139134 sparc64 kernel output corruption o kern/139127 [vfs] False negative vfs cache entry o kern/139117 net [lagg] + wlan boot timing (EBUSY) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o kern/139080 [libc] [patch] closelog() can close negative file desc f kern/139079 bschmidt [wpi] Failure to attach wpi(4) o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 p bin/139052 kan gcc(1): Stack protection breaks -fprofile-generate on s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o docs/139018 doc translation of submitting.sgml from docproj/submitting a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o kern/139014 [null] /dev/null must be immunable to delete/unlink o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o bin/138961 ldap groups don't work with su(1) o i386/138948 i386 [twa] [regression] da0: Fi f kern/138944 emulation [parallels] [regression] Parallels no longer works in o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in o bin/138858 patch(1) assumes that a file appears only once in the o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o docs/138845 doc Exceeding kern.ipc.maxpipekva refers to tuning(7) whic o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o kern/138782 net [panic] sbflush_internal: cc 0 || mb 0xffffff004127b00 o ports/138772 nox emulators/qemu should build on SPARC f kern/138739 bschmidt [wpi] wpi(4) does not work very well under 8.0-BETA4 o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA o java/138729 java java/jdk16: setting 'export AWT_TOOLKIT=MToolkit' caus o java/138728 java java/jdk16: SIGSEGV in java runtime p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o docs/138663 doc system(3) man page confuses users about "return value o kern/138662 fs [panic] ffs_blkfree: freeing free block o kern/138660 jfv [igb] igb driver troubles in 8.0-BETA4 o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138631 [panic] FreeBSD 7.2 panics when I try to start X f kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o bin/138560 ifconfig(8): wpa_supplicant(8): Incorrect usage of str s bin/138547 vwe [request] improve dhcp behaviour with multiple network o kern/138537 [ata] [panic] Memory modified after free p kern/138526 gnn [null] /dev/null does not support nonblocking operatio o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o bin/138423 sysinstall sysinstall(8): Installer (and sade) get wrong number o o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o bin/138331 sam FreeBSD 8.0-beta3 wpa_supplicant(8) lost auth o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] o kern/138266 net [panic] kernel panic when udp benchmark test used as r o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por f i386/138211 gavin [loader] Boot fails on Intel X5550 o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o kern/138202 fs mount_msdosfs(1) see only 2Gb o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o i386/138126 i386 [panic] Kernel panic trap 12 on bigger load o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o kern/138117 [kernel] [panic] spin lock held too long o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin f kern/138029 net [bpf] [panic] periodically kernel panic and reboot o bin/138025 sysinstall sysinstall(8) fails to create big partition o kern/138002 [lor] Three lock order reversals: ufs/devfs, bufwait/d o kern/137982 pf [pf] when pf can hit state limits, random IP failures o ports/137958 ruby [patch] ports-mgmt/portupgrade fails with recursive de o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o ports/137940 glewis java/jdk15, java/jdk16: bsd java does not start from n o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 f usb/137872 usb [usb67] [boot] slow booting on usb flash drive o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow p bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o ports/137729 apache www/mod_auth_kerb2 port broken on 8.0-BETA2 due to sec o bin/137713 sysinstall sysinstall(8): installer partition editor generates in o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa o conf/137671 [patch][request] enhance beastie.4th: possibility to d s gnu/137665 [patch] dialog(1) goes into tight loop on encountering o bin/137641 net ifconfig(8): various problems with "vlan_device.vlan_i o conf/137629 rc [rc.d] background_dhclient rc.conf option causing doub o ports/137620 portmgr [NEW PORT] devel/p6-perl6-toys o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o misc/137514 cperciva freebsd-update doesn't update the system under some ci p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o kern/137443 [headers] Including /usr/include/rpc/xdr.h fails with o ports/137393 portmgr Remote Package Add of lang/gcc42 does not terminate o kern/137392 net [ip] [panic] crash in ip_nat.c line 2577 o usb/137377 usb [usb8] request support for Huawei E180 o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o bin/137365 [patch] let last(1) read from stdin via "-f -" f kern/137361 [panic] FreeBSD panics with random intervals o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o ports/137332 hrs add caution messages to some adobe products o kern/137327 dfr [nfs] nfs nlm memery leak s bin/137318 [request] import options from NetBSD's lastlogin(1) o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o ports/137250 portmgr OPTIONS that change PREFIX cause an error after 'make o kern/137246 [kqueue] kevents not generated for file writes through o kern/137232 ipfw [ipfw] parser troubles o kern/137228 [psm] synaptics support delays 'mouse up' events when f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de f kern/137053 acpi [hang] FreeBSD 8.0 BETA2Compaq Mini 700 locks on boot o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o kern/137041 [hang] powerd(8) hangs my systems within aprox 15 min o bin/136994 net [patch] ifconfig(8) print carp mac address o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 o ports/136917 python [patch] lang/python26: gettext detection o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re o kern/136888 [boot] boot0sio timeout much longer when DSR/CTS low o kern/136876 yongari [bge] bge will not resume properly after suspend o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136777 [build] Building new Kernel with PF and PAE support fa o kern/136762 [ichsmb] ichsmb can't map resources of compatible IXP o bin/136733 disklabel(8) handle incorrently o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa p gnu/136705 emaste [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136669 [libc] [patch] setmode(3) should always set errno on e o docs/136666 doc [handbook] Configure serial port for remote kernel deb o bin/136661 melifaro [patch] ndp(8) ignores -f option o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o kern/136618 net [pf][stf] panic on cloning interface without unit numb p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS p bin/136419 portmgr [regression] pkg_add(1) segfault on adding package whe o kern/136356 [ata] SATA / ICH7 problems o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136327 firewire [sbp] [boot] Asus M3N78-EM motherboard cannot boot wit o bin/136325 cperciva portsnap(8): "portsnap fetch" not useable by other pro o kern/136216 [headers] Missing prototype declaration for setfib() o o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend o bin/136073 des recent nscd(8) changes cause client processes to die w o ports/136072 portmgr Propose new ports category, internationalization o docs/136035 doc ftpchroot(5) omits an important option o kern/136013 [resolver] Resolver wrong diagnostics o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us f kern/135986 [panic] FreeBSD crashes after VLC close f i386/135961 gavin [boot] booting WRAP and Soekris fails from PXE, boot0 o kern/135948 pf [pf] [gre] pf not natting gre protocol o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive o kern/135898 geom [geom] Severe filesystem corruption - large files or l o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o threa/135673 threads databases/mysql50-server - MySQL query lock-ups on 7.2 f kern/135667 xen ufs filesystem corruption on XEN DomU system o bin/135647 cperciva freebsd-update(8): forces manual merge of every file i o kern/135608 [patch] sysctl(8) should be able to handle byte values o power/135576 ppc gdb cannot debug threaded programs on ppc o ports/135569 portmgr `check-sanity` not documented in bsd.port.mk s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o docs/135516 doc [patch] pax(1) manual not mentioning chflags unawarene a ports/135503 wxs lang/python26 upgrade should get mailman too o kern/135502 net [periodic] Warning message raised by rtfree function i o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/135458 dchagin Missing errno translation in Linux getsockopt(,,SO_ERR o bin/135444 cperciva freebsd-update(8) failing should be more verbose f kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. o misc/135420 bugmeister gnats generates broken In-Reply-To headers o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o conf/135338 rc [rc.d] pf startup order seems broken [regression] o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135317 randi install.cfg feature request o kern/135307 Boot Loader problem on Acer Aspire 5735 o ports/135276 x11 x11/xorg: GUI running first time only while using Free o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/135222 jfv [igb] low speed routing between two igb interfaces o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe o usb/135206 usb machine reboots when inserted USB device f usb/135200 usb SAMSUNG i740 usb mass: Synchronize cache failed, statu f kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o kern/135164 [keyboard] UK currency key inactive o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines s ports/135089 portmgr bsd.port.mk: Honor LOCALBASE for CFLAGS p kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o usb/134950 usb Lowering DTR for USB-modem via ubsa is not possible o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons f bin/134907 vwe boot0cfg(8): choose / adjust the booting slice doesn't o kern/134887 [ataraid] source consistency problem o ports/134880 ale lang/php5 - PHP CLI interactive mode misbehaviour with o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic s ports/134714 ruby ports-mgmt/portupgrade deletes user data without quest o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 f kern/134584 [panic] spin lock held too long o kern/134583 net [hang] Machine with jail freezes after random amount o o bin/134569 [heimdal] krb5-config(1) does not return all libs nece o kern/134531 net [route] [panic] kernel crash related to routes/zebra o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R o kern/134519 [panic] Kernel panics (2 page faults in kernel) o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod o kern/134491 fs [zfs] Hot spares are rather cold... o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o bin/134425 sysinstall sysinstall(8) custom distributions select all and dese f kern/134407 gavin [hang] freebsd 7.x freezes with the livefs or install f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 o kern/134391 [libc] dladdr(3) does effectively not work on main pro o bin/134389 cperciva portsnap(1): phttpget opens a new connections for ever o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o conf/134333 rc PPP configuration problem in the rc.d scripts in combi o usb/134299 usb Kernel Panic plugging in MF626 USB UMTS Stick u3g o bin/134250 [rc.d] mountlate: bogus error message when using neste o kern/134249 [libiconv] [patch] ignore case for character set names s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/134200 [panic] Fatal trap 12: page fault while in kernel mode o usb/134193 usb System freeze on usb MP3 player insertion f kern/134168 gavin [ral] ral driver problem on RT2525 2.4GHz transceiver o bin/134167 cperciva [request] freebsd-update(8) should be able to be run i o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o docs/134123 doc The RUNQUEUE(9) man page is out of date o kern/134113 geom [geli] Problem setting secondary GELI key f kern/134105 gavin rl(4) Realtek 8110SC with device ID 0x814910ec not det f java/134098 glewis java/diablo-jdk15: random core drops p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix o bin/134022 host(1), dig(1) and nslookup(1) hang in _umtx_op sysca o kern/134011 [hang] swap_pager_getswapspace(4): failed o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic o kern/133931 geom [geli] [request] intentionally wrong password to destr s kern/133926 [request] MAXLOGNAME, the username length limit, is to o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/133892 sam /usr/src/sys/dev/ath/if_ath.c:3414: error: 'const stru o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o ports/133771 doceng print/ghostscript8: Ghostscript8-8.64 port not install f kern/133768 gavin [panic] MONITOR PANIC: vcpu-0:VMM64 DoubleFault src=MO o kern/133736 net [udp] ip_id not protected ... o kern/133732 pf [pf] max-src-conn issue o i386/133727 i386 chars [[[[[[[[[[[[[ occur during install process (sett o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133710 [headers] net/bpf.h and netgraph/ng_message.h should i o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/133595 net [panic] Kernel Panic at pcpu.h:195 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o misc/133540 gavin Cannot connect to ftp mirrors for 7.2 beta boot-only o power/133503 ppc [sound] Sound stutter after switching ttys o kern/133495 [de] interface not properly initialized on boot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o usb/133390 usb umass crashes system in 7.1 when Olympus D-540 attache o power/133382 ppc [install] Installer gets signal 11 o usb/133296 usb [rum] driver not working properly in hostap mode o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/133286 dd can fill system memory o kern/133265 jail [jail] is there a solution how to run nfs client in ja o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo f kern/133213 net arp and sshd errors on 7.1-PRERELEASE s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article o bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p o ports/132783 portmgr ports/Mk/bsd.port.mk: ${ARCH} misuse for "--build" opt o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent o bin/132735 Berkeley db: corrupted file has record with absurd siz o kern/132734 net [ifmib] [panic] panic in net/if_mib.c o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o docs/132718 doc [handbook] Information about adding a new mirror is ou o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/132664 [lor] vfs_mount.c / msdosfs_vfsops.c o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not o conf/132596 examples/cvsup/ports-supfile still oriented on cvsup p o usb/132594 usb USB subsystem causes page fault and crashes o ports/132577 fjoe databases/oracle8-client: Appearence of connection (ph o ports/132576 delphij net/openldap24-server: multipying LDAP trees on the si o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve o conf/132515 stas ntpd_sync_on_start option in /etc/rc.conf misbehaves o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o kern/132397 fs reboot causes filesystem corruption (failure to sync b p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/132331 fs [ufs] [lor] LOR ufs and syncer o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo p kern/132285 glebius [carp] alias gives incorrect hash in dmesg o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o docs/132260 doc dhcpd(8) pid not stored in documented location o kern/132252 [ata] No CD/DVD devices found! o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/132238 [ral] ral driver does not support RT2860 o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o i386/132230 i386 [boot] [reboot] 7.1-RELEASE /boot/loader non-functiona o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( f kern/132176 pf [pf] pf stalls connection when using route-to [regress o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/132145 fs [panic] File System Hard Crashes o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o kern/132107 glebius [carp] carp(4) advskew setting ignored when carp IP us o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 o usb/132036 usb [panic] page fault when connecting Olympus C740 camera o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o docs/131968 danger ipnat man page points to wrong directory o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131853 cron(8): please add support for CRON_TZ and CRON_WITHI o bin/131800 rpcbind(8) fails to start in jail f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte o kern/131784 [lor] triple LOR after hard reboot o kern/131781 net [ndis] ndis keeps dropping the link o kern/131776 net [wi] driver fails to init o bin/131774 cvs(1) commits files then aborts o ports/131758 itetcu net/tightvnc in a jail stopped working after multiple o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh p kern/131718 [lor] kern_sysctl.c / acpi_video.c o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o kern/131601 net [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp o bin/131598 cperciva freebsd-update(8) doesn't interact well with custom ke o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o usb/131583 usb [umass] Failure when detaching umass Device o ports/131579 kuriyama security/gnupg reads security/gnupg1 data incorrectly o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data f kern/131573 [mutex] lock_init() assumes zero-filled struct f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o bin/131549 wireless ifconfig(8) can't clear 'monitor' mode on the wireless o power/131548 ppc ofw_syscons no longer supports 32-bit framebuffer o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o usb/131521 usb Registering Belkin UPS to usb_quirks.c f kern/131448 Bad display while booting o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o bin/131427 [patch] Add to fetch(1) an ability to limit a number o o i386/131426 i386 hald makes cdrom fail o bin/131415 geom [geli] keystrokes are unregulary sent to Geli when typ o docs/131370 keramida glabel(8): geom_label needs clarification in docs a bin/131369 delphij truss(1): truss -f fails to attach to child processes o bin/131365 net route(8): route add changes interpretation of network o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o bin/131359 cperciva freebsd-update(8): freebsd-update tag file not updated o bin/131358 cperciva freebsd-update(8): Update servers for freebsd-update a s bin/131354 des ssh: SSH session hangs o kern/131353 geom [geom] gjournal(8) kernel lock o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o bin/131341 fs makefs: error "Bad file descriptor" on the mount poin p bin/131250 brian [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o ports/131111 ruby ports-mgmt/portupgrade-devel: completely removes packa o bin/131094 dhclient(8) sets wrong IP address f kern/131087 bschmidt [ipw] [panic] ipw / iwi - no sent/received packets; iw o usb/131074 usb no run-time detection of usb devices plugged into exte o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ p kern/131038 bz [ip6] [panic] kernel panic in ip6_forward o bin/131013 pw(8) does not update NIS group file o kern/130998 [dtrace] DTrace stops tracing because of struct thread o bin/130993 pkg_add(1): pkg_add -n falsely reports present local p f kern/130982 gavin [install] The installation hangs o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ f bin/130954 vwe ps(1): can not obtain which process take all CPU time f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o bin/130831 csh(1) core dumps after building libiconv-1.1x from s f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o usb/130736 usb Page fault unplugging USB stick f misc/130728 joel There are 4-clause BSDL files in src/ o kern/130726 [ata] DMA errors accessing multiple SATA channels f kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o ports/130677 portmgr bsd.port.mk: Centralize handling of CPPFLAGS o kern/130657 bz [ip6] [patch] ipv6 class option o bin/130655 randi sysinstall(8): no IPV4 if answer "no" when "Do you wan o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau a bin/130504 [libc] Serious bug in regular expression library (rege o ports/130479 apache www/apache22 configure_args busted s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD f ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o docs/130364 arundel Man page for top(1) needs explanation of CPU states o bin/130343 top(1): kvm_open: cannot open /proc/42997/mem corrupts o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa o kern/130286 [patch] hifn(4) changes o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o bin/130251 nm(1): 'nm -C' doesn't demangle any 't' symbol names o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o kern/130210 fs [nullfs] Error by check nullfs o usb/130208 usb Boot process severely hampered by umass0 error o kern/130171 [ata] UDMA CF cards do not work with FreeBSD p bin/130159 brian [patch] ppp(8) fails to correctly set routes o usb/130122 usb [usb8] DVD drive detects as 'da' device o i386/130110 i386 [boot] BTX-Halted - booting with SAS/SATA Controller o kern/130109 net [ipfw] Can not set fib for packets originated from loc p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use f usb/130076 vwe Panic when connecting USB camera o stand/130067 standards Wrong numeric limits in system headers? f kern/130059 net [panic] Leaking 50k mbufs/hour o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129989 cperciva portsnap(8) quietly forgets to fetch some ports o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# f i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o ports/129930 ruby ports-mgmt/portupgrade - portinstall tries to install s www/129923 www Need stylesheet for FreeBSD Subversion DAV tree s ports/129891 ruby ports-mgmt/portupgrade fails to recognize variations o o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o ports/129824 hrs print/acroread8 - help viewer does not work o bin/129814 [patch] support of per script nice(1) value in periodi f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics o bin/129762 sysinstall sysinstall(8) doesn't seem to support GPT for EFI boar o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di a docs/129684 trhodes gcache.8 man page missing o kern/129674 geom [geom] gjournal root did not mount on boot o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o kern/129645 geom gjournal(8): GEOM_JOURNAL causes system to fail to boo o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/129517 net [ipsec] [panic] double fault / stack overflow f kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o docs/129464 doc using packages system o bin/129431 cperciva freebsd-update(8) fetch fails because phttpget fails p o bin/129405 [patch] tcsh(1) vfork bugs o www/129401 edwin FreeBSD Multimedia page should automatically pick up Y p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o bin/129378 csh(1) / tcsh(1) loses foreground process group [regre o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/129352 yongari [xl] [patch] xl0 watchdog timeout o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o bin/129287 [request] powerd(8) should grow signals to switch betw o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire s bin/129248 [request] FreeBSD's syslog(8) can't support log encodi o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o kern/129197 net [panic] 7.0 IP stack related panic o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/129164 [kernel] Wrong priority value for normal processes o kern/129152 fs [panic] non-userfriendly panic when trying to mount(8) o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/129125 [psm] psm0: failed to reset the aux device. o docs/129095 doc ipfw(8): Can not check that packet originating/destine o kern/129053 [lor] lock order reversal with printf(9) syscons video o bin/129052 ps(1) %cpu column reports misleading data for threaded f kern/129040 gavin [install] Lockup during boot - Cannot install the OS f kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o docs/129024 keramida [patch] ipfw(8) improvements p bin/129014 gavin [regression] ftp(1) cannot bind to specific source IP o conf/128994 UPDATING falsly states DTrace bindings are built by de s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/128977 usb [usb67] [patch] uaudio is not full duplex f ports/128972 cy Port security/krb5 has a linking problem when compiled o bin/128954 net ifconfig(8) deletes valid routes o java/128948 java java/jdk16 built from source can't bind a socket, but o kern/128933 kib [libc] realpath(3) does not follow SUS specification f o threa/128922 threads threads hang with xorg running f kern/128917 bschmidt [wpi] [panic] if_wpi and wpa+tkip causing kernel panic o bin/128886 ntpd(8): ntpd -L flag doesn't work s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128840 jfv [igb] page fault under load with igb/LRO o java/128809 java JVM aborted when GNU RXTX write to serial port. p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o ports/128754 portmgr bsd.port.mk: implement master sites randomization f usb/128745 weongyo zyd teoretically supported usb device makes kernel pan o bin/128727 host(1) does not work properly with the -6 option o bin/128668 [request] Kerberos in the base system is too old o bin/128654 atacontrol(8) does not preserve rebuild status through o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct p kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop f kern/128633 pjd [zfs] [lor] lock order reversal in zfs o conf/128632 security periodic 700.kernelmsg repeats messages p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o ports/128556 python net/py-zsi installs with insufficient rights f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad o bin/128501 cperciva freebsd-update(8) does not work on netbooted machines o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o bin/128465 [request] mount_smbfs(8) does not support IPv6 o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res o conf/128433 [patch] Add option to allow a full login when doing 's o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like s docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages f kern/128308 gavin [psm] psm0 cause page fault o kern/128304 vn_pollrecord(3) derefs NULL if v_addpollinfo() fails o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128284 gdb(1) segfaults f kern/128282 gavin [mpt] system failure on removing two drives f kern/128276 geom [gmirror] machine lock up when gmirror module is used o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p kern/128247 bz [ip6] [panic] Fatal Trap 12 in ip6_forward = o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re f threa/128180 attilio pthread_cond_broadcast(3) lost wakeup o kern/128177 jeff [sched_ule] wrong CPU usage reported by top(1)/ps(1) w o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage f bin/128088 vwe who(1) not listing all logged in users. o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/128076 [panic] Fatal trap 12: page fault while in kernel mode o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to o kern/128035 [ata] unexpexted detach of external SATA drive s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o ports/128028 portmgr bsd.port.mk - Ports-Script do not recognize dialog-ret o bin/128001 net wpa_supplicant(8), wlan(4), and wi(4) issues p bin/127986 [patch] ee(1): fix compiler warnings caused by use of a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/127930 ed auto-logout does not work p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up o usb/127926 usb [boot] USB Timeout during bootup o docs/127923 loader Please mention qemu in the FreeBSD Handbook o kern/127920 pf [pf] ipv6 and synproxy don't play well together s bin/127918 [ata] [request] [patch] ATA Security support for ataco o bin/127912 In theory, uncompress(1) may crash and SEGV f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki p docs/127908 eadler [patch] readdir(3) error documentation p docs/127890 trhodes socket(2) man page should explain that protocol can be o ports/127889 ruby ports-mgmt/portupgrade detects spurious failures and s o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/127842 murray list of hardware devices missing from the relnotes p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o bin/127633 edwin [patch] Update top(1) to 3.8b1 o kern/127623 [headers] header definition for cftime is missing. o kern/127553 [build] (errata) in kernel generic et al, device ural o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s f kern/127528 net [icmp]: icmp socket receives icmp replies not owned by a ports/127496 office devel/icu 3.8.1_1 does not build when Danish locale is f kern/127492 pjd [zfs] System hang on ZFS input-output o ports/127467 portmgr bsd.port.mk: fix checking DISTDIR for writeability s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127439 pf [pf] deadlock in pf o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o i386/127374 i386 Suspend/Resume with Keystroke only once on Thinkpad T4 p kern/127360 net [socket] TOE socket options missing from sosetopt() o docs/127359 keramida Undocumented firewall_xxx options for rc.conf in stabl f kern/127345 pf [pf] Problem with PF on FreeBSD7.0 [regression] o i386/127343 i386 [hang] System locks -- simular to PR 123729 o usb/127342 usb [boot] [panic] enabling usb keyboard and mouse support o i386/127337 i386 [boot] FreeBSD 7.1/i386 BTX boot problem on Pavilion d o ports/127292 timur net/samba3: not work cancel inheritance on share o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127276 [patch] ldd(1) invokes linux yes o bin/127270 fs fsck_msdosfs(8) may crash if BytesPerSec is zero o bin/127265 [patch] ddb(4): Adding the ddb command set from module o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o bin/127192 net routed(8) removes the secondary alias IP of interface f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode s bin/127056 lp(1) doesn't use -o options p kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi o kern/127048 systat(1) information leak when security.bsd.see_other o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o kern/127029 fs [panic] mount(8): trying to mount a write protected zi o ports/127019 ruby ports-mgmt/portupgrade does not recognize fail conditi o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126971 [boot] loader/kernel does not obey comconsole_speed p kern/126945 glebius [carp] CARP interface destruction with ifconfig destro o bin/126936 locate.updatedb(8): updatedb fails silently when attem s ports/126932 itetcu gapcmon option in sysutils/apcupsd conflicts with sysu o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o ports/126853 secteam ports-mgmt/portaudit: speed up audit of installed pack o usb/126848 usb [usb]: USB Keyboard hangs during Installation o kern/126821 [panic] Fatal trap 12 (kdeinit) o bin/126819 randi sysinstall(8) During install if initial name look-up f o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o bin/126721 gcc(1) g++(1) Compiling, assembling and linking code w p kern/126714 glebius [carp] CARP interface renaming makes system no longer o kern/126695 net rtfree messages and network disruption upon use of if_ o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and o i386/126666 i386 [boot] [hang] boot failure for nForce 630i / GeForce 7 p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/126546 des pam_nologin(8) in auth causes log spam o usb/126519 usb [usb] [panic] panic when plugging in an iphone o docs/126484 doc libc function res-zonscut2 is not documented o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o bin/126433 [patch] some missing checks in rm(1) o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126384 [request] find(1) doesn't support whiteout entries yet o kern/126339 net [ipw] ipw driver drops the connection p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o misc/126312 [build] debug message going to stderr while doing "mak o conf/126305 nsmb.conf(5): Hostnames in nsmb.conf seem to be ignore o bin/126301 portmgr pkg_version(1) can induce unexpected parsing of INDEX o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o kern/126230 [libc] select(2) causing weird process cpu usage and l p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/126142 [ata] M5281: READ DMA faults, device detaching f ports/126140 ruby ports-mgmt/portupgrade runtime error o misc/126131 cperciva portsnap(8) fetch error with HTTP_PROXY or HTTP_PROXY_ o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom o ports/126083 office textproc/aspell core dumps o kern/126075 net [inet] [patch] internet control accesses beyond end of o bin/125932 portmgr pkg_add(1) doesn't prompt for root credentials and the o bin/125922 net [patch] Deadlock in arp(8) o docs/125921 doc lpd(8) talks about blocks in minfree while it is KB in o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg o kern/125806 np [cxgb] cxgb packet counters do not work o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o stand/125751 brucec man 3 pthread_getschedparam section ERRORS incomplete s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o docs/125717 keramida minor wpa_supplicant.conf(5) buglet o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125704 [ng_nat] kernel libalias: repeatable panic o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/125647 [ciss] [panic] System randomly crashes - ciss driver o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o kern/125617 wireless [ath] [panic] ath(4) related panic a kern/125613 trasz [ufs] [patch] ACL problems with special files o i386/125592 i386 [hang] FreeBSD 7 server in hang o i386/125516 gavin [install] 7.0-RELEASE install dies o usb/125510 usb [panic] repeated plug and unplug of USB mass storage d o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125467 pf [pf] pf keep state bug while handling sessions between o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo f usb/125450 usb [panic] Removing USB flash card while being accessed c o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde o docs/125329 keramida PACKAGEROOT should be documented in the Handbook o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/125239 net [gre] kernel crash when using gre o bin/125184 des sshd(8) does not always log IP address for login failu o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o conf/125041 [patch] periodic(8) new file: /etc/periodic/security/8 o ports/125012 bf problems in math/ldouble for 128bit long double on i38 o kern/124989 [mfi] mfi driver error - unexpected sense o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o gnu/124970 gdb(1): gdb crashes after setting hardware watchpoint o kern/124969 geom gvinum(8): gvinum raid5 plex does not detect missing s o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC o kern/124881 [devfs] [patch] [request] Add possibility to check whi o stand/124860 standards flockfile(3) doesn't work when the memory has been exh o bin/124825 mlaier tcpdump(8) does not support pfsync(4) data o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o ports/124765 ume sysutils/gkrellm2 shows wrong number of users in proc o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/124753 wireless [ieee80211] net80211 discards power-save queue packets o conf/124747 rc [patch] savecore can't create dump from encrypted swap a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o usb/124708 usb [panic] Kernel panic on USB KVM reattach o kern/124670 [ata] large file operation on RAID cause many GEOM err o i386/124633 i386 [boot] [panic] 7.0 does not boot from CD s misc/124541 cperciva portsnap: portsnap3.FreeBSD.org mirror on error for ov f i386/124516 xen [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o docs/124470 remko incomplete (and out of sync) glabel(8) manpage p docs/124468 remko sticky(8) should be sticky(7) o misc/124431 bde [build] [patch] minor revision of BDECFLAGS o bin/124409 fsck(8) requires exact entry for mountpoints when exec p bin/124392 [patch] bootparamd(8) does not work on arm o kern/124389 [build] make installkernel fails with KMODDIR iff $(KM p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile o ports/124375 apache security/heimdal: www/mod_auth_kerb doesn't compile ag o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o bin/124320 pam_radius(8): Login with ssh using pam_radius and a t o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o docs/124253 sam Broken command in the handbook for configuring a wirel o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net s kern/124174 [panic] Panic after installing audio/oss on an Asus A8 p misc/124164 markm [patch] Add SHA-256/512 hash algorithm to crypt(3) o kern/124160 net [libc] connect(2) function loops indefinitely o conf/124151 winbind is ignored in compat mode in nsswitch.conf(5) o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o i386/124124 i386 [boot] [panic] Page fault while booting livefs iso of o bin/124119 edwin locate(1) doesn't check /etc/locate.rc for the default o bin/124084 find(1): find -execdir does not prepend ./ to filename p bin/124052 [patch] adduser(8) throws errors when -f input file in o bin/124049 ntpd(8): ntpd is crashing at startup o kern/124021 net [ip6] [panic] page fault in nd6_output() o i386/123990 i386 [boot] BTX halted on Thinkpad x60s o i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i p bin/123977 Segmentation fault in dialog(1) with ghostscript-gpl-n o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/123939 fs [msdosfs] corrupts new files o bin/123932 amd(8) core dumps while load high a kern/123904 [ipmi] ipmi(4) reports negative temperature values on o kern/123892 net [tap] [patch] No buffer space available o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/123858 net [stf] [patch] stf not usable behind a NAT o kern/123855 philip moused(8): spontaneous mouse events o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 o kern/123758 net [panic] panic while restarting net/freenet6 o kern/123755 dfr [nfs] fstat() fails to return ESTALE with rename()d fi o kern/123735 [panic] 7.0-STABLE kernel panic "AP #1 (PHY# 1) failed o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o kern/123674 scsi [ahc] ahc driver dumping o bin/123633 net ifconfig(8) doesn't set inet and ether address in one f kern/123617 andre [tcp] breaking connection when client downloading file o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o kern/123603 andre [tcp] tcp_do_segment and Received duplicate SYN o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o ports/123570 itetcu audio/cpige version 1.5 coredumps if new .conf entries f sparc/123566 fs [zfs] zpool import issue: EOVERFLOW o kern/123559 net [iwi] iwi periodically disassociates/associates [regre o java/123555 java linux-sun-jdk15, linux-sun-jdk16 produce a coredump o misc/123554 [build] buildworld with TARGET_ARCH=i386 fails on amd6 o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o kern/123520 scsi [ahd] unable to boot from net while using ahd f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 a ports/123468 itetcu mail/postgrey: information leak, privacy issue o bin/123465 net [ip6] route(8): route add -inet6 -interfac o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o misc/123452 brd trustedbsd-audit email list not archiving f bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c s bin/123304 sysinstall sysinstall(8): missing sensible and user friendly prog o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o kern/123160 net [ip] Panic and reboot at sysctl kern.polling.enable=0 o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/123122 geom [geom] GEOM / gjournal kernel lock o conf/123119 rc [patch] rc script for ipfw does not handle IPv6 o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o threa/122923 threads 'nice' does not prevent background process from steali o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t a i386/122887 acpi [panic] [atkbdc] 7.0-RELEASE on IBM HS20 panics immed o conf/122883 [patch] login class for ukrainian users accounts f kern/122880 vwe [hang] Kernel lock-up during 7.0 installation disc boo o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/122813 usb [udbp] [request] udbp driver should be removed in favo f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122685 net It is not visible passing packets in tcpdump(1) a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/122588 [lor] 4 Lock Order Reversal o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o ports/122524 demon www/links1 uses 7-bit us-ascii codepage only when usin o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o java/122513 java native JDKs unbuildable with Linux ones f kern/122493 gavin [boot] BTX Halted - Cause is Promise Fastrack SATA PCI o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o conf/122445 Unable to override EDITOR in /etc/profile due to defau o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, o conf/122170 rc [patch] [request] New feature: notify admin via page o s kern/122145 sam [build] error while compiling with device ath_rate_amr p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint o usb/122119 usb [umass] umass device causes creation of daX but not da o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab o kern/122067 geom [geom] [panic] Geom crashed during boot f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/122058 jfv [em] [panic] Panic on em1: taskq f docs/122052 doc minor update on handbook section 20.7.1 o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o bin/122043 [patch] du(1) does not support byte-count-based report p kern/122038 gleb [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc o conf/122037 [patch] add rsync example for inetd.conf o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o docs/121952 doc Handbook chapter on Network Address Translation wrong o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg p kern/121907 [request] output to console can obscure other messages o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl s kern/121807 ipfw [request] TCP and UDP port_table in ipfw s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o ports/121745 vd misc/ossp-uuid - PostgreSQL contrib ossp-uuid crashes o usb/121734 usb [ugen] ugen HP1022 printer device not working since up p docs/121721 trhodes telnetd(8) not describing -X authentication types o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k f java/121692 java java/jdk16: Java 1.5 1.5.0.14p8 crashes in RMI TCP Con o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o docs/121585 doc [handbook] Wrong multicast specification o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug a docs/121565 brooks dhcp-options(5) manpage incorrectly formatted omitting o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport o kern/121555 net [panic] Fatal trap 12: current process = 12 (swi1: net s docs/121541 doc [request] no man pages for wlan_scan_ap o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o bin/121503 sysinstall sysinstall(8): 7.0 upgrade doesn't let me mount all of s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup o docs/121440 keramida rc(8) and rcorder(8) unclear about PROVIDE keyword bei o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o ports/121420 glewis java/jdk16: Java applet fails to find class under fire o ports/121416 glewis java/jdk15 can't build if BIN environment variable is o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already o ports/121347 hrs print/teTeX-base and print/texinfo install files in th f kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati o threa/121336 threads lang/neko threading ok on UP, broken on SMP (FreeBSD 7 o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 o kern/121298 jfv [em] [panic] Fatal trap 12: page fault while in kernel o usb/121275 usb [boot] [panic] FreeBSD fails to boot with usb legacy s o kern/121274 darrenr [panic] Panic in ether_input() with different NIC's. o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o kern/121181 net [panic] Fatal trap 3: breakpoint instruction fault whi o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a o usb/121169 usb [umass] Issues with usb mp3 player o bin/121165 pkg_add(1) prints a weird message: PKG_TMPDIR environm p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o i386/121148 gavin [panic] Repeatable sysctl crash (Fatal Trap 12) with A a bin/121124 sysinstall sysinstall(8): FreeBSD 6.3 installation deletes MBR pa o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o conf/121064 [patch] Use ASCII characters for box/line characters i o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o bin/121059 ntpd(8) doesn't sync with servers after dhclient chang o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o ports/120947 x11 x11/xsm ignores system.xsm and .xsmstartup s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/120749 [request] Suggest upping the default kern.ps_arg_cache o kern/120733 cperciva libbsm.so.1 missing after upgrading to 6.3-RELEASE o usb/120729 usb [panic] fault while in kernel mode with connecting USB f kern/120717 [ata] boot problem when recognizing ata1 a misc/120608 gmirror(8) command set on livecd is minimal [regressio o kern/120566 net [request]: ifconfig(8) make order of arguments more fr o bin/120552 cperciva freebsd-update(8): freebsd-update - -r should check ex o docs/120539 doc Inconsistent ipfw's man page o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120487 scsi [sg] scsi_sg incompatible with scanners o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o docs/120456 wireless ath(4) needs to specify requirement on wlan_scan_sta o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o ports/120372 java java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' o kern/120344 rwatson [panic] FreeBSD 6.3-STABLE panics on high loaded web s p kern/120343 ups [panic] Reproducible Crash - network interface related o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o conf/120263 [patch] 800.loginfail misses relevant security informa p bin/120256 gavin [patch] ftp(1): ftp -u URL/ returns a -1 o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/120177 [ata] ATA DMA modes don't work on CF cards o java/120146 java java/jdk15: netbeans 6.0 causes java core dump on amd6 p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va p kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o ports/120101 cy security/krb5 utilities link against wrong libcom_err o bin/120095 gdb(1) fails to catch signals when threading is involv o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/120066 [geli] geli boot password input fail when using serial o bin/120064 routed(8) marks 802.11 interfaces broken o bin/120060 net routed(8) deletes link-level routes in the presence of o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119891 slow halt, reboot when remote network shares which doe o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying o bin/119801 dhclient(8): dhclient changes alias to address o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w o kern/119696 [irq] [ral] ral device causes massive interrupt storm o bin/119695 pw(8) does not interact with nscd(8) o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch s bin/119645 [request] mount_ntfs(8) -- files permissions mask is i o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o kern/119618 [fdc] Double Density Disks do not work correctly o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o i386/119574 bde [i386] 7.0-RC1 times out in calibrate_clocks() [regres o kern/119572 firewire [sbp] PowerBook not accessable when in target mode o conf/119550 [ppp] ppp not starting during bootup. o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o bin/119524 cron(8) suddenly stops working, not crash f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119432 net [arp] route add -host -iface causes arp e o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose f bin/119354 csup(1) in free(): error: chunk is already free p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 s bin/119196 des fetch(1): [request] parallel download from multiple se o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/119068 dd(1) yields a bogus error when input file is to small o java/119063 java An unexpected error has been detected by Java Runtime o java/118956 java eclipse and netbeans break on diablo-jdk15 o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118912 fs [2tb] disk sizing/geometry problem with large array o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o bin/118759 cvs(1): cvs -R doesn't handle non-existent tags o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118734 xen [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o docs/118693 jfv Update for "em" man page for RELENG_7 o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118571 [boot] [request] fix BTX issues when booting FreeBSD 7 o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o bin/118501 Sending SIGINT to cvs(1) gives segmentation fault o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o bin/118449 randi sysinstall(8): Installer failing dns lookups o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( o gnu/118415 nm -D fails if a file has no symbols p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se o docs/118332 arundel man page for top(1) does not describe STATE column wai o bin/118325 rc [patch] [request] new periodic script to test statuses o bin/118318 mohans [nfs] NFS server hangs under special circumstances p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib p kern/118304 kib freebsd 7 delivers unanticipated signal for page fault o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o i386/118285 [i386] Segmentation fault in reloc_non_plt. p bin/118260 bin: more informative error message for install(1) o conf/118255 rc savecore never finding kernel core dumps (rcorder prob o bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o bin/118248 gavin newsyslog(8) does not obey -s (nosignal) flag s kern/118230 acm [linux] games/linux-quake4 fails to start o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o docs/118214 doc close(2) error returns incomplete o bin/118207 burncd(8) gives I/O error writing CD on Pioneer DVDR-1 o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft f kern/118161 [atapicam] failure message from ATAPI CDROM in the boo s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/118126 fs [nfs] [patch] Poor NFS server write performance s kern/118124 [request] HZ value on slow computers should by dynamic o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t a bin/118071 darrenr ipnat(8): ipnat -s expired counter does not update [re o bin/118069 [patch] camcontrol(8) should be able to leave device s o conf/118047 Move /etc/printcap to /usr/share/examples/ o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o docs/118020 doc ipfilter(4): man pages query for man 4 ipfilter return p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a kern/117987 rwatson read(2) on directories might leak filenames of deleted o kern/117972 [ata] SATA DLT V4 not recognized properly o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o kern/117954 fs [ufs] dirhash on very large directories blocks the mac o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o bin/117922 ftpd(8): remote ftp user possible leave chrooted envir o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o usb/117893 usb [umass] Lacie USB DVD writing failing o kern/117867 [heimdal] kinit generates bad tickets on multihomed IP s bin/117830 [patch] who(1) no longer displays entries for folk log o bin/117812 passwd(1): incapable of changing LDAP passowrds using f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o usb/117712 [reboot] unexpected reboot after mount USB flash drive f kern/117711 [rpc] rpcbind binds to all interfaces on random ports o kern/117688 [mpt] mpt disk timeout and hang o bin/117687 [patch] fstab(5) format cannot handle spaces f kern/117655 sam [ral] ral%d: device timeout when running as an access o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o bin/117520 [patch] csup(1) not-really-equivalent to cvsup s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o gnu/117481 sort(1) incorrect numeric sort in very specific cases p kern/117448 glebius [carp] 6.2 kernel crash [regression] o kern/117443 [ata] [hang] system hang with ataidle o kern/117423 net [vlan] Duplicate IP on different interfaces o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/117420 jeff [sched_ule] round off in sched_balance_pair() o kern/117374 vidcontrol(1) videomode: Operation not supported by de o kern/117348 [libedit] Loading history file sometimes fails in libe o bin/117339 net [patch] route(8): loading routing management commands o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o usb/117313 usb [umass] [panic] panic on usb camera insertion p bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap o kern/117242 [syscons] [hang] console hangs when powerd is adaptive p bin/117214 bz ipfw(8) fwd with IPv6 treats input as IPv4 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov o kern/117188 [geli] System crashes/reboots on access to file on GEL p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o kern/117043 jfv [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM a conf/117027 yar rc.subr doesnt deal with perl daemons p docs/117013 trhodes mount_smbfs(8) doesn't document -U (username) argument p kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o misc/116946 holographic shell breaks live CD shell o kern/116935 [ata] Intermittent error with Promise PDC40718 o conf/116931 fs lack of fsck_cd9660 prevents mounting iso images with p stand/116826 jilles [patch] sh(1) support for POSIX character classes o bin/116784 mount_msdosfs(8): mount_msdosfs -L ru_RU.KOI8-R -W koi o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o threa/116668 threads can no longer use jdk15 with libthr on -stable SMP o java/116667 java linux-sun-javac1.4 hangs on SMP o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o docs/116588 remko No IPFW tables or dummynet in Handbook o kern/116583 fs [ffs] [hang] System freezes for short time when using o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o kern/116515 rwatson [ntfs] NTFS mount does not check that user has permiss o stand/116477 standards rm(1): rm behaves unexpectedly when using -r and relat s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o bin/116413 standards incorrect getconf(1) handling of unsigned constants gi a kern/116335 andre [tcp] Excessive TCP window updates s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 s ports/116222 portmgr files installed with the wrong UID/GID via make instal o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116185 net [iwi] if_iwi driver leads system to reboot p threa/116181 attilio /dev/io-related io access permissions are not propagat o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o kern/116133 Recursive lock panic when w_mtx falls into DELAY o docs/116116 doc mktemp (3) re/move note o ports/116082 java java/linux-sun-jdk16 jconsole is unable to connect to o stand/116081 standards make does not work with the directive sinclude o docs/116080 doc PREFIX is documented, but not the more important LOCAL o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/116005 des [libfetch] libfetch accepts invalid URLs o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o ports/115957 itetcu Questionable ownership and security on dspam port o bin/115951 [tun] pppoed(8): tun not closed after client abruptly f kern/115947 acpi [hang] Dell poweredge 860 hangs when stressed and ACPI o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115930 jfv [em] Dell nic enumeration problem s conf/115923 [request] rc.subr - logger should be using priorities o kern/115856 geom [geli] ZFS thought it was degraded when it should have s docs/115716 jhb remove cue from supported hardware list p kern/115695 [crypto] When "device padlock" defined first ssh to ma o kern/115651 vanhu Racoon(ipsec-tools) enters sbwait state or 100% CPU ut o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/115526 [libalias] libalias doesn't free memory o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o kern/115479 [ata] [request] ASUS P5K SE need more support p bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o kern/115253 [keyboard] Wireless keyboard not working at boot o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o threa/115211 threads pthread_atfork misbehaves in initial thread s kern/115202 [request] memory error diagnostic o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 p docs/115065 doc [patch] sync ps.1 with p_flag and keywords o bin/115054 ntpd(8): NTP errors out on startup but restart of NTP o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/114970 Wrong system time (last) when machine is crashed due t o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/114928 green_saver does not switch DVI monitor power off o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/114808 [panic] Kernel panic when use USB SpeedTouch ADSL mode o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s ports/114725 portmgr bsd.port.mk - No dependencies in the package if there o usb/114682 usb [umass] generic USB media-card reader unusable o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo f kern/114667 [umass] UMASS device error log problem f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs s kern/114578 [libc] wide character printing using swprintf(dst, n, o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c f i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114550 [cbb] Cardbus WiFi card activation problem o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s bin/114392 [request] add default ssl definitions for openssl(1) o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references o kern/114213 [ata] optical drive not detected in the 6.x series of o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha p kern/114057 jh [devfs] devfs symlink over device doesn't work o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o usb/113977 gavin [request] Need a way to set mode of USB disk's write c f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat o bin/113912 tunefs(8): silent failure setting glabel on boot parti o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o bin/113850 sshd(8): unable to debug sshd with strace/truss/gdb o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o kern/113837 geom [geom] unable to access 1024 sector size storage o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o kern/113785 firewire [firewire] dropouts when playing DV on firewire o ports/113751 java java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 o bin/113669 ftpchroot(5) / ftpusers(5) doesn't do globbing o conf/113552 [request] ntpd(8) driftfile default location inconsist o bin/113518 [patch] make(1): Prevent execution when command is a c o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o kern/113419 geom [geom] geom fox multipathing not failing back o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o gnu/113338 gcc(1): GNU gcc __thread as class member o kern/113256 [headers] _limits.h for some CPU has wrong definitions o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o kern/113098 [amr] Cannot read from amrd while under heavy load o bin/113074 [patch] ppp(8): include for strcasecmp(3) s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o ports/112818 ruby ports-mgmt/portupgrade -a fails with database error o docs/112804 doc groff(1) command should be called to explicitly use "p o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file o bin/112757 sysinstall sysinstall(8): sysinstall(8): in the FDISK tool we can o ports/112745 portmgr bsd.port.mk: Add a package-smart target o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 o docs/112682 doc Handbook GEOM_GPT explanation does not provide accurat o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b a bin/112613 vwe ls(1): 'ls -l' is very slow or doesn't work at all o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o o docs/112579 mlaier [request] No ipv6 related pf examples in /usr/share/ex o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/112477 marius [ofw] [patch] Add support to set the node and type on o conf/112441 deprecated lines in /etc/hosts.allow o bin/112408 mp [regression] tcsh(1): tcsh causes gdb to hang (regress o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112370 getfacl(1): incorrect display group name by ``getfacl' o bin/112336 [patch] install(1): install -S (safe copy) with -C or p bin/112288 gavin ftp(1): /usr/src/usr.bin/ftp/config.h is redundant and s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o kern/112256 [hang] SC_PIXEL_MODE hangs system s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/112053 [hang] deadlock with almost full filesystem and rtorre o bin/111978 [patch] [request] make syspath list for mount(8) confi f kern/111967 [geli] glabel - label is seemingly not written to disk o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111843 fs [msdosfs] Long Names of files are incorrectly created s www/111791 www FreeBSD website messes up while using "links" browser o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/111766 [panic] "panic: ffs_blkfree: freeing free block" durin o conf/111557 [gre] link1 flag doesn't work as intended when specifi o kern/111537 net [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via o kern/111457 net [ral] ral(4) freeze o docs/111425 doc Missing chunks of text in historical manpages o ports/111399 doceng print/ghostscript8 (was ghostscript-gpl): WITH_FT_BRID a ports/111356 csjp net/bpfstat: man bpfstat has no descption for the flag o docs/111265 doc [request] Clarify how to set common shell variables p kern/111260 csjp [hang] FreeBSD kernel dead lock and a solution o www/111228 bugmeister [request] Usability improvements for bug search query o kern/111185 console color depth set to 0 at boot causes flat scree o kern/111162 [nfs] nfs_getpages does not restart interrupted system o docs/111147 doc hostapd.conf is not documented s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/111077 date(1): /bin/date -j -f "%b %Y" "Feb 2007" +%m return o ports/111066 secteam ports-mgmt/portaudit does not skip ports fixed listed s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta s kern/111001 [hang] can't install 6.2-RELEASE-amd64 (SuperMicro PDS o docs/110999 doc carp(4) should document unsupported interface types o kern/110995 [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o gnu/110971 gdb(1) crashes f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. s ports/110826 dinoex port graphics/tiff: tiff2pdf tints images with wrong c o docs/110692 doc wi(4) man page doesn't say WPA is not supported a kern/110662 sam [safe] safenet driver causes kernel panic o threa/110636 threads [request] gdb(1): using gdb with multi thread applicat o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o threa/110306 threads apache 2.0 segmentation violation when calling gethost o kern/110284 net [if_ethersubr] Invalid Assumption in SIOCSIFADDR in et o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110151 sysinstall sysinstall(8): sysinstall(8) don't respects install ro o bin/110146 joerg [patch] [request] Allow arbitrary gdb(1) options to by o bin/110068 [patch] rewrite of mdmfs(8) in shell o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit p docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled o docs/109981 doc No manual entry for post-grohtml o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o docs/109977 doc No manual entry for ksu p docs/109975 trhodes No manual entry for elf2aout o docs/109973 doc No manual entry for c++filt o docs/109972 doc No manual entry for zless/bzless o bin/109911 mountd(8) does not accept identical host sets on diffe o bin/109827 mount_smbfs(8) didn't handle password authentication c o kern/109762 [hang] deadlock in g_down -> ahd_action -> contigmallo o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109569 mail(1) command not parsing sendmail parameters o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac o conf/109354 [request] /etc/periodic/daily/110.clean-tmps does not o bin/109334 portmgr pkg_add(1) using chroot exits with error if wrong dire o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o conf/109272 rc [request] increase default rc shutdown timeout o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd o kern/109161 philip [psm] synaptic touchpad doesn't work o docs/109105 trhodes security.mac.bsdextended.firstmatch_enabled is not ena o docs/109104 trhodes man mac_bsdextended is not consistent with systl outpu o bin/109102 csjp sysctl security.mac.bsdextended is not consistent with o kern/109024 fs [msdosfs] [iconv] mount_msdosfs: msdosfs_iconv: Operat o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) a docs/108980 doc list of missing man pages o bin/108895 net pppd(8): PPPoE dead connections on 6.2 [regression] o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o conf/108589 rc rtsol(8) fails due to default ipfw rules o bin/108462 [request] pkg_info(1) shouldn't have a hard width limi s kern/108442 [request] UTF-8 support for console o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o bin/108191 sysinstall sysinstall(8): Disklabel editor help text (by F1 key) s ports/108153 portmgr ports extraction with package uid/gid and quota proble o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o bin/108118 [libc] files should not cache their EOF status o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o bin/108020 comsat(8) does not verify return values of getpwnam an o kern/107944 net [wi] [patch] Forget to unlock mutex-locks f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o bin/107830 sysinstall sysinstall(8): Change Units (Z) in fdisk doesn't work o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found s kern/107759 Unable to load a kernel after clean install o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 f kern/107446 gavin problems with usb and fw disks o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device o ports/107354 edwin net/icmpinfo: icmpinfo -vvv does not recocnize any ICM s www/107291 murray Keyboard accessibility sabotaged by www/share/sgml/hea p kern/107285 [panic] freeze and reboot by mounting CDROM volume twi f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent s sparc/107087 sparc64 [hang] system is hung during boot from CD o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n f kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o kern/106786 No reboot with FreeBSD and Mylex Acceleraid 352 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening s ports/106616 portmgr bsd.port.mk: Default file modes set incorrect for non- f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/106432 [ata] Record of disks (DVD-R) through the k3b program o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o bin/106355 [headers] macros in stdio.h non-portable (e.g., C++ :: o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/106275 [hifn] Hifn 7955 on Soekris Engineering vpn1401 return o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o docs/106135 doc [request] articles/vinum needs to be updated o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p p docs/105997 trhodes sys/kern/sys_pipe.c refer to tuning(7), but there is n o kern/105945 net Address can disappear from network interface s kern/105943 net Network stack may modify read-only mbuf chain copies o bin/105925 net problems with ifconfig(8) and vlan(4) [regression] o bin/105860 top(1) user ID misalignment in mixer username/uid mode o conf/105689 rc [ppp] [request] syslogd starts too late at boot o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105608 doc fdc(4) debugging description staled o kern/105579 [libalias] dcc resume over natd in 6.x o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o docs/105456 keramida [patch] overhaul of the security chapter (14) o kern/105368 [geli] geli passphrase prompt malfunctioning when moun f kern/105348 wireless [ath] ath device stopps TX o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o kern/105241 [nfs] problem with Linux NFS server up/down combined w o gnu/105221 grep(1): `grep -w -F ""` issue o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last s kern/104950 [ata] [request] no support for SATA controller Initio o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o ports/104910 nobutaka portsdb -Uu fails on building lsdb when EMACS_NAME is o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104809 cron(8): incorrect cron behavior with mday field = "*/ o kern/104751 net [netgraph] kernel panic, when getting info about my tr o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w o java/104744 glewis java/berkeley-db installation error p stand/104743 jilles [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/104675 [bktr] METEORSINPUT seemingly not setting input f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and o kern/104486 TI1131 Cardbus Bridge cannot detect card insertion on o bin/104432 jilles sh(1): remove undocumented "exp" and "let" builtins o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems a bin/104092 keramida [patch] iostat(8): missing blanks in iostat output o threa/103975 threads Implicit loading/unloading of libpthread.so may crash o www/103938 brd cvs-src archive does not rebuild since 12 Mar 2006 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o bin/103890 w(1) doesn't see sessreg'd entries in utmp o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra a bin/103873 csjp login(1) SEGFAULT on unsuccessful login o bin/103845 sha256(1): sha256 /dev/acd0 returns immediately o conf/103794 adding other login class to login.conf in case one is o bin/103762 ppp(8): some tun interfaces with a mtu of 1500 while i o ports/103751 nork databases/linux-oracle-instantclient-sqlplus: ldconfig o bin/103712 amd(8): Automounter is apparently not passing flags to o bin/103682 [patch] [request] nfsstat(1) should use %u instead of s kern/103578 [ums] ums does not recognize mouse buttons s www/103522 www Search interface oddity o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/103283 pf pfsync fails to sucessfully transfer some sessions o kern/103281 pf pfsync reports bulk update failures o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/103253 thompsa inconsistent behaviour in arp reply of a bridge o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/103191 net Unpredictable reboot o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/103022 cperciva [headers] /usr/include/crypto/rijndael.h is wrong o ports/102946 secteam [patch] ports-mgmt/portaudit o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o bin/102515 [libc] fsck_ufs crashes if no console at all o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o bin/102498 sysinstall sysinstall(8): Cursor doesn't track sysinstall hilight o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? f kern/102252 acpi acpi thermal does not work on Abit AW8D (intel 975) o bin/102232 gad Defects in -O option to ps(1) o bin/102205 kdc(8): login failure: ssh + gssapi + dual stacks + pa o bin/102162 [patch] tftpd(8): Limit port range for tftpd f usb/102066 gavin [ukbd] usb keyboard and multimedia keys don't work o kern/102035 net [plip] plip networking disables parallel port printing o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o bin/101921 [request] security.bsd.see_other_uids for further prog o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker a bin/101762 sysinstall sysinstall(8) does not obey /usr/ports symlink while i o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o docs/101271 remko serial console documentation implies kernel rebuild re o kern/101226 jfv [em] Access to IPMI module is lost when the em driver f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o kern/100974 rwatson [panic] sorele. FreeBSD 6.1 RELEASE i386 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup s bin/100805 yar WITHOUT_INET6 is ignored by many src/ components o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/100709 net [libc] getaddrinfo(3) should return TTL info o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o conf/100616 [patch] syslog.conf: lines after exclamation point ign o kern/100519 net [netisr] suggestion to fix suboptimal network polling a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100442 obrien ftpd(8): lukemftpd core dumps on anonymous login o bin/100436 kensmith sysinstall(8): live CD fixit mount does not find mount o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam p docs/100242 trhodes sysctl(3) description of KERN_PROC is not correct anym o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o docs/100196 doc man login.conf does explain not "unlimited" s kern/100170 [request] Support login class in ldap directory o misc/100133 [boot] keyhit function in boot2.c that falls into an i o bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ s bin/99973 yar systat(1): systat -ifstat traffic counter overflow o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o bin/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o bin/99662 rpc.rquotad(8): quota information leak while rpc.rquot o misc/99643 request to remove src/tools/tools/portsinfo because it o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid f kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o docs/99506 doc FreeBSD Handbook addition: IPv6 Server Settings o kern/99485 Disk IO Causes multimedia/mplayer To Drop Frames o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar s kern/99421 [request] Option Globetrotter Fusion card not recogniz a docs/99356 ru man page of sendmsg(2) does not include EINVAL o conf/99328 [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o www/99305 bugmeister [request] send-pr.html is frustrating/broken o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l a www/99184 wosch Viewing HP-UX manpages with http://www.freebsd.org/cgi o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o docs/98974 doc Missing tunables in loader(8) manpage o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the s www/98798 gjb Our statistics page is out of date o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98597 net [inet6] Bug in FreeBSD 6.1 IPv6 link-local DAD procedu o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o bin/98468 newsyslog(8): Value over 99 in newsyslog.conf count fi o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled p misc/98383 yar [request] include the mt command in the rescue CD o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 s bin/98220 wpa_supplicant(8) operation does not match documentati o bin/98218 net wpa_supplicant(8) blacklist not working s kern/98162 adrian [request] AcerHK driver port needed for enabling WiFi o docs/98115 doc Missing parts after rendering handbook to RTF format o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to a kern/97921 rwatson [socket] close() socket deadlocks blocked threads o kern/97665 [sio] hang in sio driver o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/97505 [procfs] file entry of procfs points to "unknown" s bin/97498 fs [request] newfs(8) has no option to clear the first 12 o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97306 net [netgraph] NG_L2TP locks after connection with failed s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o usb/97175 usb [umass] [hang] USB cardreader hangs system o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97108 sysinstall sysinstall(8): write failure on transfer (wrote -1 byt o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o conf/97014 net [gif] gifconfig_gif? in rc.conf does not recognize IPv o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96538 multimedia [sound] emu10k1-driver inverts channels o usb/96457 usb [umass] [panic] fatback on umass = reboot o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync o docs/96207 doc Comments of a sockaddr_un structure could confuse one o kern/96171 [ata] burncd(8): (ATA driver) fails to write in vcd mo s usb/96120 usb [ums] [request] USB mouse not always detected o conf/96094 [gif] startup scripts do not configure gif interfaces p conf/96015 jilles uncommenting the msgs invocation in /etc/profile can f o gnu/95936 egrep(1) misparses multiline parenthetical grouping o bin/95698 philip [patch] moused(8): Software control of sysmouse o gnu/95691 GDB segfaults on my programme in both FreeBSD 6 and 5 s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o kern/95559 RELENG_6: write(2) fails with EPERM on TCP socket unde o kern/95532 [gif] if_gif has artificial limitations o kern/95519 net [ral] ral0 could not map mbuf o kern/95459 Rebooting the system while rebuilding RAID (Intel Matr o docs/95408 remko install over serial console does not work as documente o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95267 net packet drops periodically appear o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o usb/95037 usb [umass] USB disk not recognized on hot-plug. o bin/95002 [libc] hash db source code has a bug which prevents us o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o ports/94935 cy security/aide: propose an AIDE_CONF knob for make.conf o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o bin/94810 fs fsck(8) incorrectly reports 'file system marked clean' o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o kern/94733 fs [smbfs] smbfs may cause double unlock p stand/94729 gnn [libc] fcntl() throws undocumented ENOTTY o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o gnu/94695 bugmeister send-pr.el is missing from send-pr distribution o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/94632 geom [geom] Kernel output resets input while GELI asks for o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind s www/94423 danger [patch] XML'ified release todo list o kern/94393 [ar] PseudoRAID loses track of the master disk o usb/94384 usb [panic] kernel panic with usb2 hardware o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests s kern/94182 [altq] [request] altq support for vlan driver p bin/94181 ume portsnap(8) should remove the trailing dot from the se p bin/94180 ume portsnap(8) does not handle HTTP_PROXY_AUTH correctly o kern/94166 [boot] btx halted with a flashcard plugged s bin/94159 [request] ipsecctl ported from openbsd o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94051 login(1): IP network in login.access ignored unless DN o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o conf/93899 mount_smbfs can't load libiconv.so during boot up o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o www/93854 postmaster Cannot proceed to page after the first in mailing list o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o kern/93825 pf [pf] pf reply-to doesn't work o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p a kern/93790 cperciva cpufreq missing frequencies o i386/93787 gavin [hang] freebsd 6.0 hangs on atkbd0 on Proliant 1850r s o docs/93785 obrien The man page for ftpchroot(5)/ftpusers(5) contradicts o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/93771 [ar] [panic] atacontrol status ar1 causes panic o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may p kern/93685 jilles [pipe] select on pipe write fails from '0' end o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93629 GNU sort(1) tool dumps core within non-regular locale o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o kern/93381 reboot(8) works but 'reboot -n' hangs f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo p kern/93331 [kernel] [patch] broken asm in kernel o bin/93317 ld-elf.so doesn't translate unresolved weak symbol int o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o ports/93279 skv devel/cvsmonitor: not useable (/dev/mem: Permission de o bin/93275 sysinstall sysinstall(8): Failure to install after restarting ins o kern/93197 [libc] strptime(3) succeeds on formats it should fail o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o bin/92866 portmgr pkg_add(1) should return a different result code if pa o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92716 [hifn] [hang] hifn driver hangs after a short while wh o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o ports/92651 crees graphics/gmt - WITH_EVERYTHING doesn't fetch o docs/92626 doc jail manpage should mention disabling some periodic sc f kern/92552 yongari A serious bug in most network drivers from 5.X to 6.X o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o kern/92518 [hptmv] Intense disk activity (large FS newfs and/or m o kern/92512 multimedia [sound] distorted mono output with emu10k1 s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o kern/92104 des [panic] kernel panic near readlink syscall o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o bin/91993 sam dhclient(8) option missing, script incompability o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg f usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o conf/91732 [patch] 800.loginfail: fix log message grep expression o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin o bin/91606 sha1(1): sha1 /dev is suspended o kern/91594 acpi [acpi] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/ o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work p www/91539 gjb FreeBSD web site renders very badly o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o bin/91536 burncd(8): burncd -t feature strangeness o docs/91506 doc ndis(4) man page should be more specific about support f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o ports/91393 trhodes misc/window changes console cursor shape to blink o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/91311 net [aue] aue interface hanging o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o kern/91134 fs [smbfs] [patch] Preserve access and modification time a conf/91106 versus [locale] date definitions in pl_PL locale are wrong f bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90656 sysinstall sysinstall(8): 6.0-RELEASE (i386) cannot be installed o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o bin/90524 reset(1) doesn't fully restore terminal state o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd s bin/90367 [request] libmap.conf needs exclusivity support o bin/90311 [patch] add "eject" to mt(1) o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o bin/90266 philip bsnmpd(1) returns bad data during a snmpwalk of the en o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 o bin/90093 geom fdisk(8) incapable of altering in-core geometry s kern/90086 net [hang] 5.4p8 on supermicro P8SCT hangs during boot if s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o bin/89959 brooks dhclient(8): dhcp: ip length 314 disagrees with bytes o usb/89954 usb [umass] [panic] USB Disk driver race condition? o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks a conf/89589 secteam virecover follows hardlinks, possibly exposing sensiti o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o docs/89492 attilio vfs doc: some VOP_*(9) manual pages are outdated with o ports/89441 hrs TeX support in FreeBSD is problematic. o bin/89403 fetch(1) doesn't honour authentication credentials whe o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr o kern/89166 [mouse] jumpy mouse movement s usb/89003 usb [request] LaCie Firewire drive not properly supported o conf/88913 rc [patch] wrapper support for rc.subr o bin/88826 randi sysinstall(8): sysinstall infinity wait for da0 o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( o kern/88555 fs [panic] ffs_blkfree: freeing free frag on AMD 64 a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o kern/88518 rodrigc cannot mount root rw at boot o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88450 andre SYN+ACK reports strange size of window o usb/88408 usb [axe] axe0 read PHY failed o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 fs [patch] newfs(8): introduce -A flag for newfs to enabl o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o kern/87859 fs [smbfs] System reboot while umount smbfs. o docs/87857 doc ifconfig(8) wireless options order matters o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup p bin/87726 dfr gssapi.h is not c++ aware s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo s bin/87529 [request] pw(8): "pw lock", "pw unlock" should support o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/87515 Splash screen fails to load on boot o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so f kern/87368 bde [msdosfs] fat32 is very slow f usb/87224 usb [usb] Cannot mount USB Zip750 o www/87119 hrs [patch] encode copyright and such symbolically o kern/87074 mlaier pf does not log dropped packets when max-* stateful tr o bin/87022 telnet(1) hang in ptcout o kern/87010 pjd Reading kernel memory & pagefault under non-root o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s s bin/86859 sysinstall sysinstall(8): Installer should ask about Linux earlie o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the a kern/86752 mlaier pf does not use default timeouts when reloading config o bin/86665 randi sysinstall(8): sysinstall binary upgrade clobbers name o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o kern/86619 emulation [linux] linux emulator interacts oddly with cp o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o bin/86485 eadler [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o bin/86454 sysinstall sysinstall(8): sysinstall terminates with signal 10 if o kern/86427 net [lor] Deadlock with FASTIPSEC and nat o bin/86405 more(1) segmentation fault o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur o usb/86298 usb [mouse] Known good USB mouse won't work with correct s o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o bin/86012 kpasswd(1) fails if one of the KDC are unreachable. o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci o gnu/85824 obrien gas crashes when assembling this file o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/85809 darrenr panic: mutex "ipf state entry" already initialized o kern/85780 net 'panic: bogus refcnt 0' in routing/ipv6 o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o bin/85712 uncompress(1) program emits bogus "overwrite?" prompt s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou f i386/85656 jhb [i386] [patch] expose more i386 specific CPU informati f i386/85655 jhb [i386] [patch] expose cpu info for i386 systems o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o bin/85494 fs fsck_ffs: unchecked use of cg_inosused macro etc. o bin/85445 net ifconfig(8): deprecated keyword to ifconfig inoperativ p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85123 [iir] Improper serialization in iir_ioctl() allows iir o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device o bin/85011 restore(8) on 5.4 will not read Solaris-sparc dumps, w o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o bin/78131 geom gbde(8) "destroy" not working. o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/78021 sem_open(3) doesn't mention fnctl.h include requiremen o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo a bin/77651 [patch] init(8) can lose shutdown related signals o kern/77341 net [ip6] problems with IPV6 implementation f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o kern/77273 net [ipf] ipfilter breaks ipv6 statefull filtering on 5.3 o bin/77261 login(1) doesn't chdir into a group-protected home dir s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/77156 FreeBSD does not redirect packets on proper interface. o bin/77089 natd(8) ignores -u with passive FTP o bin/77001 randi sysinstall(8): sysinstall binary upgrade clobbers /etc o kern/76972 64-bit integer overflow computing user cpu time in cal o bin/76756 des function pw_equal in pw_util.c does not test pw_passwd o bin/76736 dwmalone syslogd(8) pipelines losing messages o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi p bin/76697 simon newsyslog(8) keeps one more archive files than documen s threa/76694 threads fork cause hang in dup()/close() function in child (-l o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o bin/76590 adding -mapall in nfs exports requires reboot o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) o kern/76504 silby Keep-alives doesn't work on half-closed sockets. s conf/76491 Addition into /etc/security few new functions o kern/76398 [libc] stdio can lose data in the presence of signals f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 o bin/76362 [patch] sys directory link points to wrong location o conf/76226 Default local.9600 gettytab initially uses parity o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system o gnu/76169 [patch] Add PAM support to cvs pserver f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed o bin/76134 fetch(1) doesn't like 401 errors with -A o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o kern/75873 net Usability problem with non-RFC-compliant IP spoof prot o kern/75855 [libc] getpwent(3) functions on 5.3 with large passwor o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn s bin/75767 [libc] [request] "fdclose" function in libc o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o kern/75710 [cue] cue0 device configuration causes kernel panic f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) s kern/75407 net [an] an(4): no carrier after short time o bin/75378 login(1): login/wtmp/utmp not updating properly o bin/75362 mount_smbfs(8) No buffer space available o bin/75258 [patch] dd(1) has not async signal safe interrupt hand s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o bin/75177 philip Bug selecting psm operation level in moused(8) o kern/75157 Cannot print to /dev/lpt0 with HP Laserjet 1005 : Devi o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula o kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 gifs? s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74827 [fdc] Problem writing data to floppies a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o bin/74779 fs Background-fsck checks one filesystem twice and omits f usb/74771 usb [umass] [hang] mounting write-protected umass device a s kern/74708 [umapfs] [panic] UMAPFS kernel panic o gnu/74654 libsupc++.a lacks necessary functions o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 o conf/74610 Hostname resolution failure causes firewall rules to s s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma s kern/74352 NFSCLIENT and booting to an mfsroot via TFTP are mutua o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection s kern/74242 rwatson Write to fifo with no reader fails in 6.0 current o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect o conf/74004 [patch] add fam support to inetd.conf o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/73823 acpi [request] acpi / power-on by timer support o conf/73786 [patch] added WARNING in spanish to stable-supfile o conf/73677 rc [patch] add support for powernow states to power_profi s bin/73617 sysinstall sysinstall(8): fdisk editor unmarks active partition s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/73549 brd [request] fix mail list archive navigation difficulty o gnu/73512 gdb -> Abort trap (core dumped) s kern/73496 [request] A more flexible version of mkstemp() s kern/73492 [request] Reliable Temporary Files o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o bin/73422 portmap forks ad infinitum when the NIS domain name is s bin/73411 [request] ftpd(8) could set attributes to 0600 while u o bin/73410 sysinstall sysinstall(8): Sysinstall could not allocate disklabel o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o bin/73261 Suspending su(1) sometimes hangs o kern/73171 imp fwohci driver stating cardbus firewire card has incorr o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/72906 [twe] twe0 idefinite wait buffer o conf/72901 [patch]: dot.profile: prevent printing when doing an s o bin/72895 sysinstall sysinstall(8): Sysinstall generates invalid partition o bin/72875 des Some utilities used in debugging do not function prope o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o bin/72398 whatis(8): emulators/mtools man pages are too funky fo o bin/72355 Can't run strings(1) on a (disk) device, even if you w o conf/72277 [patch] update for /usr/share/skel o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/72210 darrenr ipnat problem with IP Fastforward enabled s ports/72202 simon portaudit warns about the CVS server vulnerability whi o bin/72173 csplit(1) ver 1.9 wrong behaviour with negative offset s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o conf/71994 [patch] dot.login: login shell may unnecessarily print s kern/71965 andre TCP MSS issue in combination with ipfw fwd o conf/71952 missing past participles in /usr/share/dict/words o bin/71928 Disk quota doesn't work with numeric login o kern/71833 multiple process disc access / injustice o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem o bin/71749 [patch] truss -f causes circular wait when traced proc o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71602 [patch] uninitialized "len" used instead of "slen" wit o kern/71532 Multiple SCSI-Busses are seen differently by BIOS, loa a kern/71474 net [route] route lookup does not skip interfaces marked d o kern/71469 net default route to internet magically disappears with mu o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: s bin/71290 des [patch] passwd(1) cannot change passwords other than N o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) o kern/71219 /proc/*/map dont tell file offset o gnu/71210 Update to GNU sdiff: add user-preference for merge key o kern/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o bin/70756 indent(1) mishandles code that is protected for c++ co f kern/70753 gavin [boot] Device for firewire hard disk not created in ti o conf/70715 [periodic] Lack of year in dates in auth.log can cause o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea o bin/70600 fs fsck(8) throws files away when it can't grow lost+foun o bin/70536 reboot(8) -dp tries to dump when powering off o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters o kern/70511 [libc] When fread(3)ing with buffering turned off, man o bin/70476 [patch] reboot(8) change, -p behavior default for halt o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k o bin/70336 telnetd(8) always exits with value 1 o bin/70335 inetd(8) inconsistent syslog behavior when max childre o i386/70330 Re-Open 33262? - gdb does not handle pending signals p o bin/70297 amd(8) request to make amd timeouts per-mount local o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o bin/70002 sysinstall sysinstall(8): fails to locate FTP dirs if the OS has o kern/69989 killing process that uses snp + unloading module + lis o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69942 sysinstall sysinstall(8): sysinstall changes /etc/rc.conf after i o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o bin/69723 sysinstall sysinstall(8): [request] allow to continue from packag o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi f bin/69362 mbr amd(8) does not properly detect the local network sett o ports/69309 ale mysql database backup script for periodic/daily o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge s i386/69218 simokawa [boot] failure: 4.10-BETA and later do not boot on Asu o bin/69164 gdb(1) amd64: coredump while debugging a core file. o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po a kern/68905 secteam [patch] core dumps are assigned wrong ownership o kern/68889 net [panic] m_copym, length > size of mbuf chain o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68727 gdb(1) coredumps after recent CURRENT upgrade o kern/68690 [libc] write(2) returns wrong value when EFAULT o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o conf/68108 [patch] Adding mac-address /conf selector to diskless o bin/68062 standalone repeat(1) command o bin/67943 find(1) fails when current directory is not readable b o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67723 restore(8) FreeBSD 5.x restore cannot handle other pla s kern/67580 [request] add hints for boot failures s kern/67545 [nfs] NFS Diskless Mount Option Suggestion o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o usb/67301 usb [uftdi] [panic] RTS and system panic o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/66677 mv(1) incorrectly copies somedir/.. to ./.. when it cr s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o docs/66505 trhodes escaping '~' and '$' characters in login.conf setenv o o stand/66357 standards make POSIX conformance problem ('sh -e' & '+' command- s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a s kern/66270 [hang] dump(8) causes machine freeze o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message a kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/66162 [gbde] gbde destroy error o bin/66103 ppp(8) macro HISADDR is not sticky in filters o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o bin/65774 randi sysinstall(8): cannot run repair disk when booted from o kern/65616 net IPSEC can't detunnel GRE packets after real ESP encryp o kern/65448 jhb _mtx_unlock_sleep() race condition if ADAPTIVE_MUTEXES f kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65299 vi(1) temp path contains double / o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on s kern/64588 [joy] [request] Extend joystick driver architecture to o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes o bin/63608 Add a -c option to time(1) to display csh output o www/63552 gabor Validation errors due to CAPs in attribute values o bin/63489 top(1) finger(1) segfault when using NIS groups to res o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o a bin/63197 [patch] tftp(1) Bus error, core dumped o docs/63084 des Several Man-pages reference non-existant pam.conf(5) a s bin/62965 portmgr pkg_add(1) -r fails if fetching multiple packages at a o kern/62890 ups proc pointer set by fork1 can be stale in fork,rfork,v f bin/62885 des pam_radius(8) doesn't maintain multiple state fields o bin/62766 systat(1) -vm does not work on diskless machines o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o bin/62711 kensmith sysinstall(8): installation: "Insert Next CD" Prompt i o bin/62702 sysinstall sysinstall(8): backup of /etc and /root during sysinst o conf/62417 luigi diskless op script failed o docs/62412 trhodes one of the diskless boot methods described in the Hand o bin/62367 sysinstall sysinstall(8): 5.2.1-RC installation problems a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o kern/62102 alc obreak update o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME o bin/61971 kinit(1) --renewable fails o bin/61890 sysinstall sysinstall(8): fdisk(8) uses incorrect calculations fo a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s kern/61677 Unable to open CDROM tray if boot_cdrom is in loader.c s kern/61622 Intel Pro/100 Intelligent Server Adapter unsupported N o docs/61605 doc [request] Improve documentation for i386 disk geometry o bin/61603 sysinstall sysinstall(8): wrong geometry guessed o kern/61503 fs [smbfs] mount_smbfs does not work as non-root s i386/61481 [patch] a mechanism to wire io-channel-check to userla o kern/61404 silby RFC1323 timestamps with HZ > 1000 o bin/61355 login(1) does not restore terminal ownership on exit o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o conf/61289 /etc/pccard_ether: please use ifn value on pccard scri s kern/61165 scsi [panic] kernel page fault after calling cam_send_ccb o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load o bin/60632 sysinstall sysinstall(8): UI bug in partition label screen in sys s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/60598 scsi wire down of scsi devices conflicts with config s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o docs/60529 ume resolver(5) man page is badly out of date o kern/60313 data destruction: lseek(2) misalignment silently ignor p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o kern/60174 debugging a kernel module in load/attach routines s kern/59912 mremap() implementation lacking o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans s bin/59638 des passwd(1) does not use PAM to change the password o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o docs/59477 doc Outdated Info Documents at http://docs.freebsd.org/inf o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o ports/59254 portmgr ports that write something after bsd.port.mk o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o kern/58967 Kernel kills processes in spite of cputime parameter i o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o bin/58483 [patch] mount(8): allow type special or node relative o bin/58293 vi(1) replace with CR (ASCII 13) doesn't work o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement a stand/57911 fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) returns FNM_ o bin/57715 [patch] tcopy(1) enhancement a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets p bin/57630 lptcontrol(8) gives "device busy" if device turned off o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back f ports/57498 HEIMDAL_HOME should be defined in src or ports Makefil s bin/57407 [patch] Better NTP support for dhclient(8) and friends s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o kern/57350 [panic] using old monocrome printer port (IO_LPT3 / 0x o docs/57298 doc [patch] add using compact flash cards info to handbook o stand/57295 harti make's handling of MAKEFLAGS is not POSIX conform s bin/57255 usb [patch] usbd(8) and multi-function devices o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c o bin/57045 trpt(8) option -t was disabled on -current s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface s kern/56720 [libc] [request] UNICODE support in Resolver o kern/56664 bad file# in MTIO status buffer after MTEOD until MTRE o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56339 select(2) call (poll(2) too) hangs, yet call works per o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o bin/56249 obrien ftpd(8) has two bugs (motd, munged utmp) o kern/56245 [bktr] Distorted and choppy video with bktr-driver on a kern/56233 net IPsec tunnel (ESP) over IPv6: MTU computation is wrong o kern/56031 luigi [ipfw] ipfw hangs on every invocation o kern/56024 acpi ACPI suspend drains battery while in S3 s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s bin/55965 sshd(8) problems with HostBasedAuthentication and NSS o gnu/55936 bugmeister send-pr(1) does not set mail envelope from o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR s kern/55802 [request] Make kernel.GENERIC suitable for diskless us o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 f i386/55661 acpi ACPI suspend/resume problem on ARMADA M700 o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o i386/55603 [mly] unable to reboot when system runs from Mylex A35 o bin/55546 [patch] cdcontrol(1) play tr m:s.f interface is partia o bin/55539 [patch] Parse fstab(5) with spaces in path names o kern/55448 dbm(3): dbm_nextkey() misbehaves after dbm_store() in f misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi f bin/55349 mbr amd(8) mixes up symlinks in its virtual filesystem. o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o stand/54410 standards one-true-awk not POSIX compliant (no extended REs) o kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o conf/54170 [patch] error from weekly periodic script 330.catman o bin/54141 wrong behavour of cu(1) o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW s stand/53682 [feature request] [patch] add fuser(1) utility o docs/53596 doc Updates to mt(1) manual page o bin/53560 logging domain names in wtmp is retarded o bin/53520 su(1) to another user does not update utmp o kern/53506 [partial patch] support gzipped modules o bin/53475 cp(1) copies files in reverse order to destination o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is o bin/53288 edwin tail(1) will sometimes display more lines than it is t o docs/53271 doc bus_dma(9) fails to document alignment restrictions o bin/53131 randi sysinstall(8): "ALL" could not turn check BOXes ON at s bin/52826 portmgr [request] Adding Timestamps to pkg info upon pkg_add(1 s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o bin/52743 ppp(8) /etc/ppp/ppp.linkup instability issues o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52638 scsi [panic] SCSI U320 on SMP server won't run faster than o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 [request] [patch] New functionality for mail(1) o bin/52469 ppp(8) Multiple devices using UDP don't work. o misc/52256 embedded [picobsd] picobsd build script does not read in user/s s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o kern/51982 remko [sio] sio1: interrupt-level buffer overflows s usb/51958 usb [urio] [patch] update for urio driver o kern/51685 fs [hang] Unbounded inode allocation causes kernel to loc o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/51583 fs [nullfs] [patch] allow to work with devices and socket o docs/51480 doc Multiple undefined references in the FreeBSD manual pa s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee o bin/51137 [patch] config(8) should check if a scheduler is selec s www/51135 www Problems with the mailing-lists search interface p docs/51133 murray RSH environmental variable not described in rcmd(3) o kern/51009 [aue] [patch] buggy aue driver fixed. o bin/50949 mtree(8) doesn't honor the -P when checking/changing o s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge a kern/50687 jmg ioctl(.., CDIOCCAPABILITY, ...) always reports "Inappr p bin/50656 cp(1) - wrong error on copying of multiple files p bin/50569 jilles sh(1) doesn't handles ${HOME}/.profile correctly o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation f bin/50118 edwin calendar(1) dumps core if there is ./calendar/ o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename o bin/48989 sysinstall sysinstall(8): Sysinstall's partition editor gets con f kern/48976 gavin [modules] nwfs.ko oddity s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu s threa/48856 threads Setting SIGCHLD to SIG_IGN still leaves zombies under o kern/48741 darrenr ipnat corrupts packets on gre interface with rul o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files s bin/48341 sysinstall sysinstall(8): changes the active slice flag when it p o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48309 ppp(8) pppoe connections fail to establish if throughp s kern/48279 [bktr] Brooktre878 may cause freeze o conf/48195 /var/db/mounttab error on diskless boot o bin/48183 [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] Add documentation on the fixit disk o bin/47815 [patch] stty(1) -all should work. s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with o conf/47596 [periodic] daily security run complains if timezone ch o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit a kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals s conf/46913 darrenr ipf denied packets of security run output contains non o bin/46905 sysinstall sysinstall(8): FreeBSD 5.x cannot be installed from mu o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o bin/46758 [patch] moused(8) enhancements s conf/46746 No way to set link addresses through rc.conf o stand/46441 stefanf /bin/sh does not do parameter expansion in PS1, PS2, P o conf/46409 Certain periodic scripts check broken NFS mounts. o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o bin/46235 sysinstall sysinstall(8): NTP servers for Finland require updatin o bin/46163 gad lpc(8) problem. Only root can modify despite man page o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o stand/46119 standards Priority problems for SCHED_OTHER using pthreads o conf/46062 remko Remove skel from BSD.root.dist. s kern/46036 [RFE] select is unsuitable for implementing a periodic o bin/45990 dwmalone top(1) dumps core if specific errors in password file o kern/45896 dwmalone setnetgrent(3) should return error code o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45608 randi sysinstall(8): install should config all ether devices s kern/45568 gibbs [ahc] ahc(A19160) pci parity error o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o docs/45303 remko Bug in PDF DocBook rendering o conf/45222 [patch] daily rejected mail hosts report too long o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o bin/44915 randi sysinstall(8): 'choose installation media' choose CD-R o bin/44894 markm telnet(1): as a local non-root user and remote it's po o kern/44587 scsi dev/dpt/dpt.h is missing defines required for DPT_HAND o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o docs/44519 obrien ftpd.conf(5) contains references to ftpd(8) when it is s bin/44518 yar ftpd(8) does not show OPIE OTP challenge o kern/44372 roberto some kernel options prevent NTP clock synchronization o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar o conf/44286 roberto /etc/defaults/rc.conf uses the obsolete ntpdate o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o bin/44212 [request] Unify 'recursive' options -r and -R o kern/44202 [rp] [patch] -stable rp driver does not work with mult o www/44181 re www "Release Information" organization o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start s bin/44122 ppp(8) tun0 gets a second ip adress after a disconnect o docs/44034 trhodes Multiple sysctl variables are not documented o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43592 mktime(3) rejects dates at the start of daylight savin o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements s bin/43497 mount(8): mount -t nfs -> crunchgen incompatible o docs/43470 blackend solid-state article out of date (x109). o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43368 portmgr pkg_create(1) fails if target directory does not exist o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42658 markm recompile telnetd(8) and log NULL ip in /var/wtmp o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o bin/42162 sysinstall sysinstall(8): after restart, installation crashes, md o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o kern/42089 ntp_gettime returns time in wrong scale o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o bin/42022 randi sysinstall(8): non-interactive mode prompts when only o bin/42018 portmgr pkg_info(1) with PKG_PATH searches through tarred pkgs s bin/42004 [quotas] quota is still IPv4 only, and not INET indepe o bin/41949 sysinstall sysinstall(8): sysinstall sorts /etc/rc.conf during ne a bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o bin/41850 sysinstall sysinstall(8): sysinstall fails to create root filesys o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login s bin/41647 net ifconfig(8) doesn't accept lladdr along with inet addr o kern/41632 luigi bridging when one interface has no carrier a bin/41583 [patch] mtree(8) assorted mtree bugs a stand/41576 standards ln(1): replacing old dir-symlinks o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o bin/41526 mount(8) symlinked mount points get mounted more than o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41297 mp tcsh(1)/csh(1) backquote/braces expansion bug o bin/41271 [patch] non-suid crontab(1) o bin/41213 top(1) blocks if NIS-related entries in passwd(5) are o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o docs/41089 doc pax(1) -B option does not mention interaction with -z o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o conf/40777 [patch] disktab does not support 2.88MB floppies o bin/40597 [patch] add fdisk(8) ability of showing extended parti o bin/40572 vipw(8) prints silly message if $EDITOR fails o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o bin/40260 sysinstall sysinstall(8): hang when detecting devices (No CD/DVD o bin/40215 [nis] NIS host search not terminate o gnu/40057 bugmeister send-pr -a flag does not work with -f s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di s kern/39937 net ipstealth issue o bin/39849 restore(8) fails to overwrite files with schg flag set o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR s conf/39580 sysinstall sysinstall(8): [request] more secure mount options o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o bin/39439 tcopy(1) will not duplicate tapes with block size larg o kern/39388 scsi ncr/sym drivers fail with 53c810 and more than 256MB m o stand/39256 standards snprintf/vsnprintf aren't POSIX-conformant for strings o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix o bin/38940 [request] an option to *stat to allow supressing of he o misc/38937 delay between tracks in digital audio dumps from CD wi o bin/38854 sysinstall sysinstall(8): resetting during setup causes the targe o kern/38749 kientzle Diskless booting fails with some DHCP servers (no root s kern/38730 philip Memorex scrollpro mouse is not fully functional a bin/38727 [patch] mptable(1) should complain about garbage argum o kern/38626 luigi dummynet/traffic shaper: RED: max_th and min_th are li o bin/38610 randi sysinstall(8): should be able to mount ISO images on D s bin/38609 sysinstall sysinstall(8): [request] sysinstall should know the si s ports/38593 portmgr [request] Third level ports o docs/38556 doc EPS file of beastie, as addition to existing examples a kern/38554 net [patch] changing interface ipaddress doesn't seem to w o bin/38478 sysinstall sysinstall(8): In Choose Distributions screen, it's di s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o bin/38057 sysinstall sysinstall(8): "install" document doesn't display corr o bin/38056 sysinstall sysinstall(8): User (creation)'s "Member groups" item o bin/38055 sysinstall sysinstall(8): Groups (creation) item should be before o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o docs/37719 kensmith [request] Detail VOP_ naming in a relevant man-page o bin/37710 sysinstall sysinstall(8): LAN interface in wrong state after atte o bin/37672 pw(8) prints warnings after successful NIS map updates o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" o bin/37083 [patch] [request] small improvement to talk(1): add cl o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36911 [ata] ATA cannot be disabled with hints or through BIO o kern/36902 [libc] [patch] proposed new format code %N for strftim s bin/36786 make ps(1) use 24-hour time by default s bin/36740 make ps(1) obey locale (particularly for times) o docs/36724 darrenr ipnat(5) manpage grammar is incomplete and inconsisten o kern/36626 login_cap(3) incorrectly claims that all resources fre o kern/36566 fs [smbfs] System reboot with dead smb mount and umount o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect f docs/36432 gabor Proposal for doc/share/mk: make folded books using psu o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36385 luigi crunchgen(1) does not handle Makefiles with includes p o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce a bin/36110 dmesg(8) output corrupt if /dev/console is busy o bin/35886 [patch] pax(1) enhancement: custom time format for lis s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f o bin/35769 w(1) does not correctly interpret X sessions s docs/35678 doc docproj Makefiles for web are broken for paths with sp o kern/35669 [nfs] NFSROOT breaks without a gateway o docs/35652 trhodes bsd.README seriously obsolete o bin/35568 make(1) declares target out of date, but $? is empty o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35429 select(2)/poll(2)/kevent(2) can't/don't notice lost co o bin/35400 randi sysinstall(8): sysinstall could improve manipulation o o kern/35399 poll(2) botches revents on dropped socket connections o kern/35396 poll(2) doesn't set POLLERR for failed connect(2) atte o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/35234 scsi World access to /dev/pass? (for scanner) requires acce o bin/35214 obrien dump(8) program hangs while exiting o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34811 jilles sh(1) "jobs" is not pipeable o bin/34788 dwmalone dmesg(8) issues with console output o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md s threa/34536 threads accept() blocks other threads o kern/34470 bde Modem gets sio1 interrupt-level buffer overflows' o bin/34412 [patch] tftp(1) will still try and receive traffic eve o bin/34309 gad lpd(8) does not garantie that controlfiles begin with p bin/34270 man(1) -k could be used to execute any command. o docs/34239 trhodes tunefs(8) man page doesn't describe arguments. s bin/34171 yar ftpd(8) indiscrete about unprivileged user accounts o gnu/34128 sdiff(1) "e" doesn't work with some editors o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o kern/33834 strptime(3) is misleading o bin/33809 [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) a bin/33661 PAP AuthAck/AuthNak parsing problem in pppd(8) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/33182 gdb(1) seg faults when given handle SIGALRM nopass for o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/32667 systat(1) waste too much time reading input o bin/32501 maxim quot(8) is stupid regarding the filesystem option a bin/32411 shutdown(8) absolute-time handling could be more usefu a bin/32375 sysinstall sysinstall(8): sysinstall doesn't respect User generat s conf/32108 Proposed Firewall (IPv4) configuration script o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o bin/31985 New /etc/remote flag for tip(1) to append LF to CR o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31940 net ip queue length too short for >500kpps o bin/31933 pw(8) can interpret numeric name as userid during user o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31890 [syscons] [patch] new syscons font o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind s kern/31686 andre Problem with the timestamp option when flag equals zer o kern/31647 net [libc] socket calls can return undocumented EINVAL o bin/31588 change request to allow mount(8) to set the MNT_IGNORE o bin/31387 mailwrapper(8): When getuid(2)=0, mailwrapper should d o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o bin/31363 sysinstall sysinstall(8): "partition editor" silently corrects pa o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o bin/31034 dwmalone regularly add original address logging for tcpwrappers o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30863 bootpd(8) dovend.c Win95 compatibility improvement and o bin/30854 bootpd(8) bootpgw change - skip ARP modifications by o a bin/30737 sysinstall sysinstall(8): sysinstall leaks file descriptors on re o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o conf/30590 /etc/hosts.equiv and ~/.rhosts interaction violates PO o bin/30542 [patch] add -q option to shut up killall(1) o bin/30517 randi sysinstall(8): using sysinstall with install.cfg has n s threa/30464 threads [patch] pthread mutex attributes -- pshared o bin/30424 Generalization of vipw(8) to lock pwdb while being edi a bin/30360 vmstat(8) returns impossible data o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt p bin/29893 kensmith sysinstall(8): suggestions for 4.4 sysinstall o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/29516 markm telnet(1) from an non FreeBSD host still uses /etc/tty s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/29375 sysinstall sysinstall(8): disk editor gets confused by slices tha p bin/29363 simon [patch] newsyslog(8) can support time as extension f kern/29355 [kernel] [patch] add lchflags support a bin/29253 natd(8) forgets about udp connections o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol s i386/28975 [rp] RocketPort problems o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28424 remko mtree(8) fails to report directory hierarchy mismatch o bin/28364 bapt [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u a bin/28223 remko su(1) doesn't look at login.conf all the time o bin/27972 losing information with talk(1) a conf/27896 Error in /etc/exports invalidates entire line, not jus o bin/27829 pax(1) uid/gid cache is read-only o bin/27687 fs fsck(8) wrapper is not properly passing options to fsc o docs/27605 doc [patch] Cross-document references () o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c o kern/27403 [lpt] lpt driver doesn't handle flags anymore o bin/27319 obrien df(1) displays amd(4) pid processes o bin/27306 [patch] hw watchpoints work unreliable under gdb(1) o bin/27281 vidcontrol(1) does not have error codes o bin/27258 getty(8) didn't check if if= isn't empty o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o bin/27216 randi sysinstall(8): can not get to shell prompt from serial o kern/27008 kernel function sysbeep(xxx, 0) does produce sound o bin/26803 fetch(1) Fix fetch to allow FTP puts in '-o' & allow ' o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain s gnu/26362 "cvs server" doesn't honour the global --allow-root o docs/26286 doc *printf(3) etc should gain format string warnings o kern/26261 [sio] silo overflow problem in sio driver o bin/26005 vis(1)/unvis(1) MIME quoted-printable encoding added t a docs/26003 standards getgroups(2) lists NGROUPS_MAX but not syslimits.h f kern/25986 silby Socket would hang at LAST_ACK forever. o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o bin/25736 ac(8) -d option probrem with overdays logon o kern/25733 [intpm] mismatch between error reporting in smbus fram s bin/25598 yar patch to let ftpd(8) output message when changing dire s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password o kern/25445 kernel statistics are displayed in wrong types and wra o bin/25218 mailwrapper(8) invokes sendmail when resources are tig o bin/25015 cp(1) options -i and -f do not work as documented f kern/24959 net [patch] proper TCP_NOPUSH/TCP_CORK compatibility o docs/24786 doc missing FILES descriptions in sa(4) o bin/24757 yar ftpd(8) not RFC compliant f kern/24629 harti ng_socket failes to declare connected data sockets as s stand/24590 standards timezone function not compatible witn Single Unix Spec o kern/24528 Bad tracking of Modem status o bin/24485 [patch] to make cron(8) handle clock jumps o bin/24461 [nis] Being able to increase the YP timeout without re f bin/24066 gdb(1) can't detach from programs linked with libc_r a bin/23912 vi(1) underflow of cnt in vs_paint() by O_NUMBER_LENGT o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23402 sysinstall sysinstall(8): upgrade ought to check partition sizes a bin/23254 bapt [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network o misc/22914 [bootinst] bootinst messages are not updated o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted o bin/22182 vi(1) options noprint/print/octal broken s bin/22034 [request] nfsstat(1) lacks useful features found in So o kern/21998 net [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o i386/21672 [i386] AMD Duron Rev. A0 reports incorrect L2 cache si o stand/21519 standards sys/dir.h should be deprecated some more s kern/21463 eadler [linux] Linux compatability mode should not allow setu o bin/21008 gad lpr(1) Fix for lpr's handling of lots of jobs in a que o bin/20944 natd(8) enhancements, default config file and manpage o kern/20529 [ti] gigabit cards fail to link s bin/20521 rmt(8) /etc/rmt several problems o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o bin/20391 jhb sysinstall(8): sysinstall should check debug.boothowto s kern/20333 des [libpam] ftp login fails on unix password when s/key a o bin/20282 randi sysinstall(8): sysinstall does not recover some /etc f o bin/20054 yar ftpd(8) rotating _PATH_FTPDSTATFILE losts xferlog s docs/20028 doc ASCII docs should reflect tags in the sourc o gnu/19882 obrien ld does not detect all undefined symbols! a kern/19782 mkisofs 1.12.1 (i386-unknown-freebsd4.0) doesn't prese o bin/19772 [unionfs] df(1) output wrong for union-mounts o kern/19756 [patch] Inability to use linux extended partition (typ o bin/19683 mount(8) displays incorrect mount point on failed moun s conf/19573 des Dot Files for Optional Shells s kern/19535 [procfs] [patch] procfs_rlimit tidyup s kern/19402 Signals 127 and 128 cannot be detected in wait4() inte o kern/18909 dwmalone select(2) timeout limited to 100000000 seconds o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t s kern/18704 GLOB_ERR not handled correctly by glob() s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad o bin/18498 jhb allowing ELF_VERBOSE in /etc/make.conf o bin/18326 dwmalone no /usr/libdata/lint/llib-lc.ln o bin/18319 dump(8) fails with "cannot reopen disk: interrupted sy o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o conf/17993 obrien improving on the default /etc/amd.map s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer s kern/17109 darrenr fastroute crashes for lo0 udp s kern/17108 [nfs] SecureRPC not supported in mount_nfs command o bin/16948 sysinstall sysinstall(8): sysinstall/disklabel: bad partition tab o kern/16765 bde Add support for mark/space parity o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16422 [patch] [request] newfs(8) always make root's / direct o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c s kern/15478 incorrect utmp/wtmp records update upon connection bei s kern/15436 [syscons] syscons extension: "propellers" o bin/15168 [patch] Adding tracklist support to fdformat(1) a kern/15095 silby TCP's advertised window is not scaled immediately upon o bin/15038 sysinstall sysinstall(8): easy to not notice that selection lists p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k s bin/14925 standards getsubopt isn't poisonous enough a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/14562 ioctl() codes should be provided for ejecting all remo o bin/14318 randi sysinstall(8): sysinstall upon install has some counte s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai o bin/13882 mount(8) mount -p is missing the quota options p bin/13869 man(1) program saves multiple cached copies of the sam s conf/13775 multi-user boot may hang in NIS environment o bin/13397 vi(1) nvi mishandles tags files under certain conditio s kern/13326 [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c o bin/13108 authunix_create_default includes egid twice o bin/13042 make(1) doesn't handle wildcards in subdirectory paths o bin/12801 nvi infinite recursion with options "leftright" and "c o bin/12545 peter kldload(8) should be more sensitive to errors in *_mod s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 s bin/11114 harti make(1) does not work as documented with .POSIX: targe a kern/11024 mtm [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9619 rodrigc Restarting mountd kills existing mounts o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o kern/8498 silby Race condition between unp_gc() and accept(). o bin/7973 gad lpd(8) Bad control file owner in case of remote printi s kern/7556 sl_compress_init() will fail if called anything else t o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/7232 sysinstall sysinstall(8): suggestion for FreeBSD installation dia s bin/6785 place for all the default dump flags o kern/5877 net [socket] sb_cc counts control data as well as data dat s bin/5712 /bin/chio code cleaup and option added o bin/5609 gad lpd(8) cannot send long files to HP's JetDirect interf s bin/5296 slattach fails creating pidfile with ioctl(TIOCSCTTY): o bin/5031 gad lpr(1) does not remove original file if -s is used o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry o bin/4116 [patch] [kerberos] Kerberized login as .root fai s bin/3170 vi(1): vi freaks and dump core if user doesn't exist s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2137 [vm] systat(1) total vm statistics are bad s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 6257 problems total. From dfilter at FreeBSD.ORG Mon Feb 13 14:50:08 2012 From: dfilter at FreeBSD.ORG (dfilter service) Date: Mon Feb 13 14:50:15 2012 Subject: bin/164317: commit references a PR Message-ID: <201202131450.q1DEo8dB001350@freefall.freebsd.org> The following reply was made to PR bin/164317; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/164317: commit references a PR Date: Mon, 13 Feb 2012 14:40:25 +0000 (UTC) Author: glebius Date: Mon Feb 13 14:40:15 2012 New Revision: 231586 URL: http://svn.freebsd.org/changeset/base/231586 Log: Fix write(1) to support wide characters. Submitted by: amdmi3 PR: bin/164317 Modified: head/usr.bin/write/write.1 head/usr.bin/write/write.c Modified: head/usr.bin/write/write.1 ============================================================================== --- head/usr.bin/write/write.1 Mon Feb 13 13:07:56 2012 (r231585) +++ head/usr.bin/write/write.1 Mon Feb 13 14:40:15 2012 (r231586) @@ -31,7 +31,7 @@ .\" @(#)write.1 8.1 (Berkeley) 6/6/93 .\" $FreeBSD$ .\" -.Dd July 17, 2004 +.Dd February 13, 2012 .Dt WRITE 1 .Os .Sh NAME @@ -107,7 +107,3 @@ setting is used to determine which chara terminal, not the receiver's (which .Nm has no way of knowing). -.Pp -The -.Nm -utility does not recognize multibyte characters. Modified: head/usr.bin/write/write.c ============================================================================== --- head/usr.bin/write/write.c Mon Feb 13 13:07:56 2012 (r231585) +++ head/usr.bin/write/write.c Mon Feb 13 14:40:15 2012 (r231586) @@ -60,12 +60,14 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include +#include void done(int); void do_write(char *, char *, uid_t); static void usage(void); int term_chk(char *, int *, time_t *, int); -void wr_fputs(unsigned char *s); +void wr_fputs(wchar_t *s); void search_utmp(char *, char *, char *, uid_t); int utmp_chk(char *, char *); @@ -243,7 +245,8 @@ do_write(char *tty, char *mytty, uid_t m char *nows; struct passwd *pwd; time_t now; - char path[MAXPATHLEN], host[MAXHOSTNAMELEN], line[512]; + char path[MAXPATHLEN], host[MAXHOSTNAMELEN]; + wchar_t line[512]; /* Determine our login name before we reopen() stdout */ if ((login = getlogin()) == NULL) { @@ -269,7 +272,7 @@ do_write(char *tty, char *mytty, uid_t m (void)printf("\r\n\007\007\007Message from %s@%s on %s at %s ...\r\n", login, host, mytty, nows + 11); - while (fgets(line, sizeof(line), stdin) != NULL) + while (fgetws(line, sizeof(line)/sizeof(wchar_t), stdin) != NULL) wr_fputs(line); } @@ -288,30 +291,20 @@ done(int n __unused) * turns \n into \r\n */ void -wr_fputs(unsigned char *s) +wr_fputs(wchar_t *s) { -#define PUTC(c) if (putchar(c) == EOF) err(1, NULL); +#define PUTC(c) if (putwchar(c) == WEOF) err(1, NULL); - for (; *s != '\0'; ++s) { - if (*s == '\n') { - PUTC('\r'); - } else if (((*s & 0x80) && *s < 0xA0) || - /* disable upper controls */ - (!isprint(*s) && !isspace(*s) && - *s != '\a' && *s != '\b') - ) { - if (*s & 0x80) { - *s &= ~0x80; - PUTC('M'); - PUTC('-'); - } - if (iscntrl(*s)) { - *s ^= 0x40; - PUTC('^'); - } + for (; *s != L'\0'; ++s) { + if (*s == L'\n') { + PUTC(L'\r'); + PUTC(L'\n'); + } else if (iswprint(*s) || iswspace(*s)) { + PUTC(*s); + } else { + wprintf(L"<0x%X>", *s); } - PUTC(*s); } return; #undef PUTC _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From glebius at FreeBSD.org Mon Feb 13 14:58:20 2012 From: glebius at FreeBSD.org (glebius@FreeBSD.org) Date: Mon Feb 13 14:58:27 2012 Subject: bin/164317: [patch] write(1): add multibyte character support Message-ID: <201202131458.q1DEwKlM009618@freefall.freebsd.org> Synopsis: [patch] write(1): add multibyte character support State-Changed-From-To: open->patched State-Changed-By: glebius State-Changed-When: Mon Feb 13 14:57:51 UTC 2012 State-Changed-Why: Committed, thanks! Responsible-Changed-From-To: freebsd-bugs->glebius Responsible-Changed-By: glebius Responsible-Changed-When: Mon Feb 13 14:57:51 UTC 2012 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=164317 From emz at norma.perm.ru Mon Feb 13 18:50:11 2012 From: emz at norma.perm.ru (Eugene M. Zheganin) Date: Mon Feb 13 18:50:17 2012 Subject: misc/165085: nanobsd building broken Message-ID: <201202131850.q1DIoBB6023341@freefall.freebsd.org> The following reply was made to PR misc/165085; it has been noted by GNATS. From: "Eugene M. Zheganin" To: bug-followup@FreeBSD.org, eugene@zhegan.in Cc: Subject: Re: misc/165085: nanobsd building broken Date: Tue, 14 Feb 2012 00:44:16 +0600 Please close this pr, looks like I forgot completely to build a nanossd binary tree. I'm sorry. From jh at FreeBSD.org Mon Feb 13 19:11:39 2012 From: jh at FreeBSD.org (jh@FreeBSD.org) Date: Mon Feb 13 19:11:45 2012 Subject: misc/165085: nanobsd building broken Message-ID: <201202131911.q1DJBcwv048721@freefall.freebsd.org> Synopsis: nanobsd building broken State-Changed-From-To: open->closed State-Changed-By: jh State-Changed-When: Mon Feb 13 19:11:38 UTC 2012 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=165085 From claudiu.vasadi at gmail.com Mon Feb 13 22:10:08 2012 From: claudiu.vasadi at gmail.com (Claudiu Vasadi) Date: Mon Feb 13 22:10:14 2012 Subject: misc/165117: [NEW PORT] databases/xtrabackup - version 1.6.5 of Percona's xtrabackup utility Message-ID: <201202132202.q1DM249i041495@red.freebsd.org> >Number: 165117 >Category: misc >Synopsis: [NEW PORT] databases/xtrabackup - version 1.6.5 of Percona's xtrabackup utility >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 Feb 13 22:10:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Claudiu Vasadi >Release: 9.0-STABLE amd64 >Organization: >Environment: FreeBSD xtrabackup.local 9.0-STABLE FreeBSD 9.0-STABLE #2 r230424: Mon Feb 6 00:12:29 CET 2012 root@da1:/usr/obj/usr/src/sys/da1 amd64 >Description: Version 1.6.5 of the only OpenSource online (non-blockable) backup solution for InnoDB and XtraDB engines. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # xtrabackup # xtrabackup/pkg-descr # xtrabackup/distinfo # xtrabackup/Makefile # echo c - xtrabackup mkdir -p xtrabackup > /dev/null 2>&1 echo x - xtrabackup/pkg-descr sed 's/^X//' >xtrabackup/pkg-descr << '8a8b25963b1e4584cc7b3d398625190c' XPercona XtraBackup is OpenSource online (non-blockable) backup solution for XInnoDB and XtraDB engines. It works with MySQL 5.0 and 5.1 versions (InnoDB XPlugin and Barracuda format is supported as of release 0.9.5rc) and also can Xhandle MyISAM tables. X XWWW: http://www.percona.com/docs/wiki/percona-xtrabackup:start 8a8b25963b1e4584cc7b3d398625190c echo x - xtrabackup/distinfo sed 's/^X//' >xtrabackup/distinfo << '4890596a033a923cae5840e122d6f8e7' XSHA256 (xtrabackup-1.6.5.tar.gz) = b9c789a6304712483d9e457a6a39f0c16c9bd028aa0124f7689f814833fdf990 XSIZE (xtrabackup-1.6.5.tar.gz) = 933213 4890596a033a923cae5840e122d6f8e7 echo x - xtrabackup/Makefile sed 's/^X//' >xtrabackup/Makefile << '3b5873206719b25fef0c55e0225465df' X# New ports collection makefile for: xtrabackup X# Date created: 04 Feb 2012 X# Whom: Claudiu Vasadi X# X# $FreeBSD$ X# X XPORTNAME= xtrabackup XPORTVERSION= 1.6.5 XCATEGORIES= databases XMASTER_SITES= http://www.percona.com/downloads/XtraBackup/XtraBackup-1.6.5/source/ X XMAINTAINER= claudiu.vasadi@gmail.com XCOMMENT= OpenSource version of InnoDB backup with support of Percona extensions X XBUILD_DEPENDS= bash:${PORTSDIR}/shells/bash \ X wget:${PORTSDIR}/ftp/wget \ X automake-1.11:${PORTSDIR}/devel/automake XRUN_DEPENDS= perl:${PORTSDIR}/lang/perl5.10 X XOPTIONS= INNODB51_BUILTIN "built-in InnoDB in MySQL 5.1" off \ X INNODB55 "InnoDB in MySQL 5.5" off \ X XTRADB51 "Percona Server with XtraDB 5.1" off \ X XTRADB55 "Percona Server with XtraDB 5.5" off X XHAS_CONFIGURE= yes XCONFIGURE_ENV= AUTO_DOWNLOAD="yes" XCONFIGURE_WRKSRC= ${WRKSRC} XCONFIGURE_SCRIPT= utils/build.sh X X.include X X.if defined(WITH_INNODB51_BUILTIN) X CONFIGURE_ARGS+= innodb51_builtin X PLIST_FILES= bin/tar4ibd \ X bin/xtrabackup_51 \ X bin/innobackupex-1.5.1 Xdo-install: X ${CP} ${WRKSRC}/libtar-1.2.11/libtar/tar4ibd ${LOCALBASE}/bin X ${CP} ${WRKSRC}/mysql-5.1/storage/innobase/xtrabackup/xtrabackup_51 ${LOCALBASE}/bin X ${SED} -e '89s/autodetect/\/usr\/local\/bin\/xtrabackup_51/' < \ X ${WRKSRC}/innobackupex > ${LOCALBASE}/bin/innobackupex-1.5.1 X.endif X X.if defined(WITH_INNODB55) X CONFIGURE_ARGS+= innodb55 X PLIST_FILES= bin/tar4ibd \ X bin/xtrabackup_innodb55 \ X bin/innobackupex-1.5.1 Xdo-install: X ${CP} ${WRKSRC}/libtar-1.2.11/libtar/tar4ibd ${LOCALBASE}/bin X ${CP} ${WRKSRC}/mysql-5.5/storage/innobase/xtrabackup/xtrabackup_innodb55 ${LOCALBASE}/bin X ${SED} -e '89s/autodetect/\/usr\/local\/bin\/xtrabackup_innodb55/' < \ X ${WRKSRC}/innobackupex > ${LOCALBASE}/bin/innobackupex-1.5.1 X.endif X X.if defined(WITH_XTRADB51) X RUN_DEPENDS+= bzr:${PORTSDIR}/devel/bazaar-ng X CONFIGURE_ARGS+= xtradb51 X PLIST_FILES= bin/tar4ibd \ X bin/xtrabackup \ X bin/innobackupex-1.5.1 Xdo-install: X ${CP} ${WRKSRC}/libtar-1.2.11/libtar/tar4ibd ${LOCALBASE}/bin X ${CP} ${WRKSRC}/percona-server-5.1-xtrabackup/Percona-Server/storage/innodb_plugin/xtrabackup/xtrabackup \ X ${LOCALBASE}/bin X ${SED} -e '89s/autodetect/\/usr\/local\/bin\/xtrabackup/' < \ X ${WRKSRC}/innobackupex > ${LOCALBASE}/bin/innobackupex-1.5.1 X.endif X X.if defined(WITH_XTRADB55) X BUILD_DEPENDS+= quilt:${PORTSDIR}/devel/quilt \ X bzr:${PORTSDIR}/devel/bazaar-ng \ X bison:${PORTSDIR}/devel/bison X CONFIGURE_ARGS+= xtradb55 X PLIST_FILES= bin/tar4ibd \ X bin/xtrabackup_55 \ X bin/innobackupex-1.5.1 Xdo-install: X ${CP} ${WRKSRC}/libtar-1.2.11/libtar/tar4ibd ${LOCALBASE}/bin X ${CP} ${WRKSRC}/percona-server-5.5-xtrabackup/Percona-Server/storage/innobase/xtrabackup/xtrabackup_55 \ X ${LOCALBASE}/bin X ${SED} -e '89s/autodetect/\/usr\/local\/bin\/xtrabackup_55/' < \ X ${WRKSRC}/innobackupex > ${LOCALBASE}/bin/innobackupex-1.5.1 X.endif X XNO_BUILD= yes X X.include 3b5873206719b25fef0c55e0225465df exit >Release-Note: >Audit-Trail: >Unformatted: From grarpamp at gmail.com Tue Feb 14 01:10:15 2012 From: grarpamp at gmail.com (grarpamp) Date: Tue Feb 14 01:10:21 2012 Subject: bin/165120: ed and sed - tmp file handling - security and location Message-ID: <201202140109.q1E190LU076199@red.freebsd.org> >Number: 165120 >Category: bin >Synopsis: ed and sed - tmp file handling - security and location >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 14 01:10:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: grarpamp >Release: HEAD >Organization: >Environment: HEAD >Description: # /bin/ed has no means to relocate its temp file. Absent other administrative solutions, this often leads to a full /tmp. # /usr/bin/sed has legacy/poor temp file handling. Should be updated to use mkstemp(3) so as to be more secure and therefore less clobberish. Fix for both (add all three): a) Add environment: TMPDIR b) Add argument: -t Takes precedence over environment. c) Change the default to: mkstemp(realpath(.XXXXXX)) The directory that the file being edited resides in, and is naturally expected to be writable and have sufficient free space. Make tmp file named after if possible so as to be recognizable if crash cleanup is needed. ## line no's are for RELENG_8, topic applies to 8/9/HEAD # /bin/ed buf.c:191:char sfn[15] = ""; /* scratch file name */ buf.c:202: strcpy(sfn, "/tmp/ed.XXXXXX"); buf.c:203: if ((fd = mkstemp(sfn)) == -1 || # /usr/bin/sed main.c:114:static char tmpfname[PATH_MAX]; /* Temporary file name (for in-place editing) */ main.c:360: unlink(tmpfname); main.c:398: len = snprintf(tmpfname, sizeof(tmpfname), main.c:399: "%s/.!%ld!%s", dirname(fname), (long)getpid(), main.c:400: basename(fname)); >How-To-Repeat: Have space contention in /tmp. Have security race or filename collision. >Fix: See above. >Release-Note: >Audit-Trail: >Unformatted: From eadler at FreeBSD.org Tue Feb 14 03:04:28 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Tue Feb 14 03:04:34 2012 Subject: bin/165120: ed and sed - tmp file handling - security and location Message-ID: <201202140304.q1E34R2x089238@freefall.freebsd.org> Synopsis: ed and sed - tmp file handling - security and location Responsible-Changed-From-To: freebsd-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Tue Feb 14 03:04:27 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165120 From jim.bugg at usask.ca Tue Feb 14 09:30:18 2012 From: jim.bugg at usask.ca (uYZYmMhri) Date: Tue Feb 14 09:30:24 2012 Subject: misc/165130: yGYImdfWpBYqb Message-ID: <201202140927.q1E9RxMb092485@red.freebsd.org> >Number: 165130 >Category: misc >Synopsis: yGYImdfWpBYqb >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 14 09:30:17 UTC 2012 >Closed-Date: >Last-Modified: >Originator: uYZYmMhri >Release: xXEgFSuM >Organization: NNdrnwVfZ >Environment: That's the thinking of a craetive mind >Description: That's the thinking of a craetive mind >How-To-Repeat: That's the thinking of a craetive mind >Fix: That's the thinking of a craetive mind >Release-Note: >Audit-Trail: >Unformatted: From sunpoet at FreeBSD.org Tue Feb 14 09:37:44 2012 From: sunpoet at FreeBSD.org (sunpoet@FreeBSD.org) Date: Tue Feb 14 09:37:55 2012 Subject: junk/165130: yGYImdfWpBYqb Message-ID: <201202140937.q1E9bilR089852@freefall.freebsd.org> Synopsis: yGYImdfWpBYqb State-Changed-From-To: open->closed State-Changed-By: sunpoet State-Changed-When: Tue Feb 14 09:37:43 UTC 2012 State-Changed-Why: Junk PR. Responsible-Changed-From-To: freebsd-bugs->gnats-admin Responsible-Changed-By: sunpoet Responsible-Changed-When: Tue Feb 14 09:37:43 UTC 2012 Responsible-Changed-Why: Junk PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=165130 From thor at irk.ru Tue Feb 14 16:20:11 2012 From: thor at irk.ru (Anatoly Mashanov) Date: Tue Feb 14 16:20:34 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202141611.q1EGBhff048250@red.freebsd.org> >Number: 165140 >Category: misc >Synopsis: mount_msdosfs -W koi2dos cannot read file No. >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 14 16:20:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Anatoly Mashanov >Release: 9.0-RELEASE >Organization: - >Environment: FreeBSD dream 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Thu Jan 12 00:54:02 IRKT 2012 root@dream:/usr/src/sys/i386/compile/DARKNESS i386 >Description: When I mount a flash drive with Windows FAT-32 filesystem containing files whose names contain a "№" (No.) symbol CP1251=0xb9, these files cannot be accessed. File is seen in listing with "?" instead of "№". Message is "Cannot stat". Keys -W koi2dos or -L ru_RU.KOI8-R don't help. This problem has meen met before and resolved with creating a custom /somewhere/in/filesystem/koi2dos file remapping a number sign to copyright sign, but mount_msdos doesn't seem to read such file now. >How-To-Repeat: Create under Windows a flash drive containing a single file named "файл №1" (Translated: "File No.1") and try to access it under FreeBSD >Fix: No idea. Maybe find a prehistoric version of FreeBSD and take a working mount_msdosfs from here? >Release-Note: >Audit-Trail: >Unformatted: From monthadar at gmail.com Tue Feb 14 18:40:11 2012 From: monthadar at gmail.com (Monthadar) Date: Tue Feb 14 18:40:22 2012 Subject: kern/165146: Net802.11 Fragment number is assigned 1 (should be 0) when fragmenting a frame Message-ID: <201202141836.q1EIaHDL018231@red.freebsd.org> >Number: 165146 >Category: kern >Synopsis: Net802.11 Fragment number is assigned 1 (should be 0) when fragmenting a frame >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 14 18:40:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Monthadar >Release: Current >Organization: >Environment: effects all enviroments >Description: I found that in FreeBSD current the first fragment will have a fragment number = 1 in function ieee80211_fragment. But according to 802.11-2007, 9.4 Fragmentation page 279: "...The fragments shall be sent in order of lowest fragment number to highest fragment number, where the fragment number value starts at zero, ..." This also holds on the 802.11-2011 draft 12: "The fragment number is set to 0 in the first or only fragment of an MSDU or MMPDU and is incremented by one for each successive fragment of that MSDU or MMPDU." I checked Linux 3.3-rc3 code and there I see them having a check on rx side if (frag == 0) { /* This is the first fragment of a new frame. */ and on tx side they put: fragnum = 0; On Madwifi 0.9.4 in function ieee80211_encap: fragnum = 0; >How-To-Repeat: N/A >Fix: Patch attached with submission follows: >From 32927dd6a2271488b52dd05b3d89ca193961ffa1 Mon Sep 17 00:00:00 2001 From: Monthadar Al Jaberi Date: Tue, 14 Feb 2012 19:28:32 +0100 Subject: [PATCH] Fragment number for the first fragment should be zero as specified in the 802.11-2007 standard. --- sys/net80211/ieee80211_output.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sys/net80211/ieee80211_output.c b/sys/net80211/ieee80211_output.c index f6f90b6..6cb1f94 100644 --- a/sys/net80211/ieee80211_output.c +++ b/sys/net80211/ieee80211_output.c @@ -1377,7 +1377,7 @@ ieee80211_fragment(struct ieee80211vap *vap, struct mbuf *m0, /* NB: mark the first frag; it will be propagated below */ wh->i_fc[1] |= IEEE80211_FC1_MORE_FRAG; totalhdrsize = hdrsize + ciphdrsize; - fragno = 1; + fragno = 0; off = mtu - ciphdrsize; remainder = m0->m_pkthdr.len - off; prev = m0; -- 1.7.8 >Release-Note: >Audit-Trail: >Unformatted: From monthadar at gmail.com Tue Feb 14 19:20:13 2012 From: monthadar at gmail.com (Monthadar) Date: Tue Feb 14 19:20:20 2012 Subject: kern/165149: [ath][net80211] Ping with data length more than iv_fragthreshold Message-ID: <201202141917.q1EJHHN3089581@red.freebsd.org> >Number: 165149 >Category: kern >Synopsis: [ath][net80211] Ping with data length more than iv_fragthreshold >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 14 19:20:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Monthadar >Release: Current >Organization: >Environment: mips:mipseb >Description: If I lower iv_fragthreshold to IEEE80211_FRAG_MIN and then ping with a data size that makes net80211 frame larger than threshold the frame is never sent. Freebsd seems to be stuck somewhere cause the ping program never print anything, quiting ping does show that packets have been sent but that is not true. Ping without -s option works. After a while (not sure when or how) I get these print out on console: # ping -s8192 192.168.5.12 PING 192.168.5.12 (192.168.5.12): 8192 data bytes arge0: Failed to allocate buffer ath0: ath_rx_proc: no mbuf! ath0: ath_rx_proc: no mbuf! ath0: ath_rx_proc: no mbuf! ath0: ath_rx_proc: no mbuf! ath0: ath_rx_proc: no mbuf! ath0: ath_rx_proc: no mbuf! ath0: ath_rx_proc: no mbuf! I tried with -s1024 and -s193 no frame sent, -s192 works fine. >How-To-Repeat: change (ieee80211_var.h): #define IEEE80211_FRAG_DEFAULT IEEE80211_FRAG_MAX to: #define IEEE80211_FRAG_DEFAULT IEEE80211_FRAG_MIN Then you need two ath wifi setup as STA and AP. Then: # ping -c 1 192.168.5.12 PING 192.168.5.12 (192.168.5.12): 56 data bytes 64 bytes from 192.168.5.12: icmp_seq=0 ttl=64 time=61.260 ms --- 192.168.5.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 61.260/61.260/61.260/0.000 ms # # ping -s8192 192.168.5.12 PING 192.168.5.12 (192.168.5.12): 8192 data bytes ^C --- 192.168.5.12 ping statistics --- 134 packets transmitted, 0 packets received, 100.0% packet loss RSPRO-MESH-11# ping -s8192 192.168.5.12 PING 192.168.5.12 (192.168.5.12): 8192 data bytes arge0: Failed to allocate buffer ath0: ath_rx_proc: no mbuf! ath0: ath_rx_proc: no mbuf! ath0: ath_rx_proc: no mbuf! ath0: ath_rx_proc: no mbuf! ath0: ath_rx_proc: no mbuf! >Fix: unknown >Release-Note: >Audit-Trail: >Unformatted: From universite at ukr.net Tue Feb 14 20:20:09 2012 From: universite at ukr.net (Vladislav V. Prodan) Date: Tue Feb 14 20:20:15 2012 Subject: misc/165152: Does not work through the issue of ipv6 addresses via rtadvd Message-ID: <201202142014.q1EKEt4v095694@red.freebsd.org> >Number: 165152 >Category: misc >Synopsis: Does not work through the issue of ipv6 addresses via rtadvd >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 14 20:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Vladislav V. Prodan >Release: 9.0 >Organization: support.od.ua >Environment: FreeBSD mary-teresa.XXX 9.0-STABLE FreeBSD 9.0-STABLE #0: Sun Feb 12 19:42:42 EET 2012 root@mary-teresa.XXX:/usr/obj/usr/src/sys/XXX.9 amd64 >Description: After upgrading from 8.2 to 9.0 have ceased to be heard through the ipv6 address via rtadvd # egrep 'ipv6|rtadvd' /etc/rc.conf ipv6_enable="YES" ipv6_gateway_enable="YES" ipv6_network_interfaces="auto" ifconfig_re0_ipv6="RTADV" rtadvd_enable="YES" rtadvd_interfaces="re0" ... Feb 14 22:10:10 mary-teresa rtadvd[55127]: RA timer on re0 is expired Feb 14 22:10:10 mary-teresa rtadvd[55127]: check lifetime=0, ACCEPT_RTADV=2, ip6.forwarding=1 on re0 Feb 14 22:10:10 mary-teresa rtadvd[55127]: send RA on re0, # of RS waitings = 0 Feb 14 22:10:10 mary-teresa rtadvd[55127]: RA timer on re0 is set to 496:0 Feb 14 22:10:10 mary-teresa rtadvd[55127]:
set timer to 496:0. waiting for inputs or timeout Feb 14 22:10:10 mary-teresa rtadvd[55127]: enter Feb 14 22:10:10 mary-teresa rtadvd[55127]: RA received from fe80::2e0:4dff:fe7b:690c on re0 Feb 14 22:10:10 mary-teresa rtadvd[55127]: ifi->ifi_rainput = 4 Feb 14 22:10:10 mary-teresa rtadvd[55127]:
set timer to 495:999266. waiting for inputs or timeout >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From kes-kes at yandex.ru Tue Feb 14 20:30:11 2012 From: kes-kes at yandex.ru (Eugen Konkov) Date: Tue Feb 14 20:30:17 2012 Subject: misc/165153: wrong de optimization Message-ID: <201202142027.q1EKRdlu013887@red.freebsd.org> >Number: 165153 >Category: misc >Synopsis: wrong de optimization >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 14 20:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugen Konkov >Release: 10.0-CURRENT >Organization: ISP FreeLine >Environment: >Description: you must revert commit 231585 because of next: there were /* * Microoptimisations for a ng_socket with no * hooks, or with a single hook, which is a * common case. */ which says that if node has no hooks DO NOTHING if (node->nd_numhooks == 0) return (NULL); in r231585 there is no such check so for node with no hooks there were useless timespend in FOREACH loop. instead of fast 'return (NULL)' as it were before >How-To-Repeat: >Fix: revert 231585 >Release-Note: >Audit-Trail: >Unformatted: From bzeeb-lists at lists.zabbadoz.net Wed Feb 15 02:30:17 2012 From: bzeeb-lists at lists.zabbadoz.net (Bjoern A. Zeeb) Date: Wed Feb 15 02:30:31 2012 Subject: misc/165152: Does not work through the issue of ipv6 addresses via rtadvd Message-ID: <201202150230.q1F2UGTS036579@freefall.freebsd.org> The following reply was made to PR misc/165152; it has been noted by GNATS. From: "Bjoern A. Zeeb" To: bug-followup@FreeBSD.org, universite@ukr.net Cc: Subject: Re: misc/165152: Does not work through the issue of ipv6 addresses via rtadvd Date: Wed, 15 Feb 2012 02:27:09 +0000 (UTC) PLease check the boot time warnings you got (dmesg -a might help) and adjust your rc.conf accordingly. This will make things going again. From matthewstory at gmail.com Wed Feb 15 05:20:06 2012 From: matthewstory at gmail.com (Matthew Story) Date: Wed Feb 15 05:20:12 2012 Subject: bin/165164: [PATCH][bin] xargs incorrect pointer passed to waitchildren function Message-ID: <201202150516.q1F5GY1b090633@red.freebsd.org> >Number: 165164 >Category: bin >Synopsis: [PATCH][bin] xargs incorrect pointer passed to waitchildren function >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 15 05:20:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthew Story >Release: 9.0 >Organization: >Environment: FreeBSD matt9fromouterspace 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: *argv is manipulated in main to account for Jflag replacement strings (moving argv into av, and leaving *argv a pointer to the first argument following a Jflag replacement string argument || NULL if Jflag not set): if (*argv == NULL) cnt = strlen(*bxp++ = echo); else { do { if (Jflag && strcmp(*argv, replstr) == 0) { char **avj; jfound = 1; argv++; for (avj = argv; *avj; avj++) cnt += strlen(*avj) + 1; break; } cnt += strlen(*bxp++ = *argv) + 1; } while (*++argv != NULL); } *argv is then passed to parse_input, which passes *av to prerun, which in turn passes *av (locally argv) to waitchildren for diagnostic purposes, while the calls from parse_input itself pass *argv to waitchildren for diagnostic purposes. This incongruity means that calls directly from parse_input (only in cases after EOF has been seen) take either NULL or the first argument after a Jflag string argument as utility name for diagnostic purposes, leading to output like: xargs: (null): No such file or directory >How-To-Repeat: Found this issue after applying patch from PR 165155, which provides POSIX-compliant diagnostic information on exit 255 and children terminated by signals. Condition exists, but is masked for the most part by a race on line 568 (WNOHANG wait immediately following vfork, execvp), if you comment out that line: /* waitchildren(*argv, 0); */ You will reliably see the following behavior: $ # this will work unless you have a this_does_not_exist in your PATH $ echo "hi" | ./xargs -P10 -n1 this_does_not_exist xargs: (null): No such file or directory $ # this should read: xargs: hi: No such file or directory $ echo "this_does_not_exist" | ./xargs -J % % sh xargs: sh: No such file or directory You can alternalively apply the patch from PR 165155, and the following will always yield the (null) error condition: $ jot - 1 10 | ./xargs -P10 -n12 sh -c 'sleep 1; exit 255' xargs: (null): exited with status 255, aborting This issue should be resolved prior to patching PR 165155, I will make a note in that ticket as well. Following applying the patch: $ echo "hi" | ./xargs blah xargs: blah: No such file or directory $ echo "hi" | ./xargs -J % % sh xargs: hi: No such file or directory And for the PR 165155 case: $ jot - 1 10 | ./xargs -P10 -n12 sh -c 'sleep 1; exit 255' xargs: sh: exited with status 255, aborting >Fix: Apply patch. This program looks like it needs a larger re-factor, but the solution provided in the patch is to send *av to waitchildren instead of *argv (which is a pointer to the first argument following a Jflag replacement string || null) to make the behavior congruent with the argument list passed to prerun (locally argv). Patch attached with submission follows: --- a/usr.bin/xargs/xargs.c 2012-02-14 22:54:29.000000000 -0500 +++ b/usr.bin/xargs/xargs.c 2012-02-14 16:46:37.000000000 -0500 @@ -281,7 +281,7 @@ case EOF: /* No arguments since last exec. */ if (p == bbp) { - waitchildren(*argv, 1); + waitchildren(*av, 1); exit(rval); } goto arg1; @@ -368,7 +368,7 @@ } prerun(argc, av); if (ch == EOF || foundeof) { - waitchildren(*argv, 1); + waitchildren(*av, 1); exit(rval); } p = bbp; >Release-Note: >Audit-Trail: >Unformatted: From dfilter at FreeBSD.ORG Wed Feb 15 05:40:06 2012 From: dfilter at FreeBSD.ORG (dfilter service) Date: Wed Feb 15 05:40:11 2012 Subject: kern/159600: commit references a PR Message-ID: <201202150540.q1F5e5Fr017877@freefall.freebsd.org> The following reply was made to PR kern/159600; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/159600: commit references a PR Date: Wed, 15 Feb 2012 05:37:59 +0000 (UTC) Author: kevlo Date: Wed Feb 15 05:37:41 2012 New Revision: 231741 URL: http://svn.freebsd.org/changeset/base/231741 Log: MFC r224747: If RTF_HOST flag is specified, then we are interested in destination address. PR: kern/159600 Submitted by: Svatopluk Kraus Modified: stable/8/sys/netinet/in.c Modified: stable/8/sys/netinet/in.c ============================================================================== --- stable/8/sys/netinet/in.c Wed Feb 15 05:35:37 2012 (r231740) +++ stable/8/sys/netinet/in.c Wed Feb 15 05:37:41 2012 (r231741) @@ -1043,7 +1043,7 @@ in_addprefix(struct in_ifaddr *target, i IN_IFADDR_RLOCK(); TAILQ_FOREACH(ia, &V_in_ifaddrhead, ia_link) { if (rtinitflags(ia)) { - p = ia->ia_addr.sin_addr; + p = ia->ia_dstaddr.sin_addr; if (prefix.s_addr != p.s_addr) continue; _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From dougb at FreeBSD.org Wed Feb 15 05:49:00 2012 From: dougb at FreeBSD.org (dougb@FreeBSD.org) Date: Wed Feb 15 05:49:06 2012 Subject: misc/164838: Precompiled package sysutils/smartmontools 5.42_2 is not working properly in 9.0-RELEASE-i386 Message-ID: <201202150548.q1F5mx9U026468@freefall.freebsd.org> Old Synopsis: Precompile package smartmontools-5.42_2 is not working properly in 9.0-RELEASE-i386 New Synopsis: Precompiled package sysutils/smartmontools 5.42_2 is not working properly in 9.0-RELEASE-i386 State-Changed-From-To: open->feedback State-Changed-By: dougb State-Changed-When: Wed Feb 15 05:46:44 UTC 2012 State-Changed-Why: Have you tried the latest version? Responsible-Changed-From-To: freebsd-bugs->dougb Responsible-Changed-By: dougb Responsible-Changed-When: Wed Feb 15 05:46:44 UTC 2012 Responsible-Changed-Why: I'll help on this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=164838 From adrian at FreeBSD.org Wed Feb 15 06:13:26 2012 From: adrian at FreeBSD.org (adrian@FreeBSD.org) Date: Wed Feb 15 06:13:33 2012 Subject: kern/165146: [net80211] Net802.11 Fragment number is assigned 1 (should be 0) when fragmenting a frame Message-ID: <201202150613.q1F6DQlj052913@freefall.freebsd.org> Old Synopsis: Net802.11 Fragment number is assigned 1 (should be 0) when fragmenting a frame New Synopsis: [net80211] Net802.11 Fragment number is assigned 1 (should be 0) when fragmenting a frame Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Wed Feb 15 06:13:12 UTC 2012 Responsible-Changed-Why: Punt http://www.freebsd.org/cgi/query-pr.cgi?pr=165146 From adrian at FreeBSD.org Wed Feb 15 06:13:39 2012 From: adrian at FreeBSD.org (adrian@FreeBSD.org) Date: Wed Feb 15 06:13:45 2012 Subject: kern/165149: [ath] [net80211] Ping with data length more than iv_fragthreshold Message-ID: <201202150613.q1F6Ddux053356@freefall.freebsd.org> Old Synopsis: [ath][net80211] Ping with data length more than iv_fragthreshold New Synopsis: [ath] [net80211] Ping with data length more than iv_fragthreshold Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Wed Feb 15 06:13:29 UTC 2012 Responsible-Changed-Why: Punt http://www.freebsd.org/cgi/query-pr.cgi?pr=165149 From tijl at FreeBSD.org Wed Feb 15 08:50:25 2012 From: tijl at FreeBSD.org (tijl@FreeBSD.org) Date: Wed Feb 15 08:50:31 2012 Subject: misc/165153: wrong de optimization Message-ID: <201202150850.q1F8oOrF026467@freefall.freebsd.org> Synopsis: wrong de optimization Responsible-Changed-From-To: freebsd-bugs->glebius Responsible-Changed-By: tijl Responsible-Changed-When: Wed Feb 15 09:48:24 CET 2012 Responsible-Changed-Why: Assign to committer of r231585. http://www.freebsd.org/cgi/query-pr.cgi?pr=165153 From kes-kes at yandex.ru Wed Feb 15 09:20:05 2012 From: kes-kes at yandex.ru (Eugen Konkov) Date: Wed Feb 15 09:20:12 2012 Subject: kern/165170: server reboot while pinging Message-ID: <201202150915.q1F9FETA020978@red.freebsd.org> >Number: 165170 >Category: kern >Synopsis: server reboot while pinging >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 15 09:20:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugen Konkov >Release: 10.0-CURRENT >Organization: ISP FreeLine >Environment: FreeBSD 10.0-CURRENT FreeBSD 10.0-CURRENT #1 r231520M: Mon Feb 13 00:46:05 EET 2012 :/usr/obj/usr/src.svn/head10.2012-02-10/sys/KES_KERN_v10 i386 >Description: while pinging other host server is rebooted. it is repeatable. server reboots without any messages in /var/log/messages /var/log/console /var/crash #last -n20 usr pts/0 10.11.6.10 Wed Feb 15 10:59 still logged in boot time Wed Feb 15 10:59 usr pts/2 10.11.6.10 Wed Feb 15 10:54 - crash (00:04) usr pts/0 10.11.6.10 Wed Feb 15 10:33 - crash (00:25) >How-To-Repeat: ping -s 7400 -i 0.001 wait about 5-10min >Fix: >Release-Note: >Audit-Trail: >Unformatted: From johnny at interpro.com.hk Wed Feb 15 09:49:37 2012 From: johnny at interpro.com.hk (Johnny Sun) Date: Wed Feb 15 09:50:17 2012 Subject: misc/164838: Precompiled package sysutils/smartmontools 5.42_2 is not working properly in 9.0-RELEASE-i386 In-Reply-To: <201202150548.q1F5mx9U026468@freefall.freebsd.org> References: <201202150548.q1F5mx9U026468@freefall.freebsd.org> Message-ID: <4F3B7B6C.80701@interpro.com.hk> Hi, I assume below command will get the latest binary version, right? Just tried again, but the precompiled version still does not work as expected. My computers are pretty outdated and still using celeron CPU in the late pentium3 / early pentium4 era. Could it be the precompiled version included some newer CPU instruction sets? #pkg_add -r smartmontools Best Regards, Johnny Sun ------------------------------------------------------------------------ *From:* dougb@FreeBSD.org *Date:* 2012-02-15 1:48 PM *Subject:* Re: misc/164838: Precompiled package sysutils/smartmontools 5.42_2 is not working properly in 9.0-RELEASE-i386 > Old Synopsis: Precompile package smartmontools-5.42_2 is not working properly in 9.0-RELEASE-i386 > New Synopsis: Precompiled package sysutils/smartmontools 5.42_2 is not working properly in 9.0-RELEASE-i386 > > State-Changed-From-To: open->feedback > State-Changed-By: dougb > State-Changed-When: Wed Feb 15 05:46:44 UTC 2012 > State-Changed-Why: > > Have you tried the latest version? > > > Responsible-Changed-From-To: freebsd-bugs->dougb > Responsible-Changed-By: dougb > Responsible-Changed-When: Wed Feb 15 05:46:44 UTC 2012 > Responsible-Changed-Why: > > I'll help on this one. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=164838 > From universite at ukr.net Wed Feb 15 09:50:10 2012 From: universite at ukr.net (Vladislav V. Prodan) Date: Wed Feb 15 09:50:29 2012 Subject: misc/165152: Does not work through the issue of ipv6 addresses via rtadvd Message-ID: <201202150950.q1F9oAjW081332@freefall.freebsd.org> The following reply was made to PR misc/165152; it has been noted by GNATS. From: "Vladislav V. Prodan" To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/165152: Does not work through the issue of ipv6 addresses via rtadvd Date: Wed, 15 Feb 2012 11:45:39 +0200 15.02.2012 4:27, Bjoern A. Zeeb wrote: > PLease check the boot time warnings you got (dmesg -a might help) and > adjust your rc.conf accordingly. This will make things going again. > In dmesg there is nothing interesting. Also, I ran rtadvd manually with the options -dD, but I still do not see the problem. Yes, and by 8.2 default configuration rtadvd worked. -- Vladislav V. Prodan System & Network Administrator http://support.od.ua +380 67 4584408, +380 99 4060508 VVP88-RIPE From dougb at FreeBSD.org Wed Feb 15 09:59:41 2012 From: dougb at FreeBSD.org (Doug Barton) Date: Wed Feb 15 09:59:46 2012 Subject: misc/164838: Precompiled package sysutils/smartmontools 5.42_2 is not working properly in 9.0-RELEASE-i386 In-Reply-To: <4F3B7B6C.80701@interpro.com.hk> References: <201202150548.q1F5mx9U026468@freefall.freebsd.org> <4F3B7B6C.80701@interpro.com.hk> Message-ID: <4F3B81EE.8070500@FreeBSD.org> It's not clear to me what problem you're reporting. Can you please try reinstalling the latest package and then list what error messages you're getting when you try to run it? Thanks, Doug From avg at FreeBSD.org Wed Feb 15 10:00:32 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Wed Feb 15 10:00:45 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151000.q1FA0Vks090014@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, thor@irk.ru Cc: Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 11:58:47 +0200 № symbol is not in KOI8-R. If you need to be able to nicely handle such symbols, then you have to use an appropriate character encoding in your localization (UTF-8, Windows-1251). We _could_ add a hack for this symbol, but where do we stop? Tomorrow someone would request a hack for «», then something else. So I don't think that this is a way to go. Please try to handle this issue via local configuration. -- Andriy Gapon From thor at irk.ru Wed Feb 15 11:50:10 2012 From: thor at irk.ru (Thor Ablestar) Date: Wed Feb 15 11:50:16 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151150.q1FBo8b9001823@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Thor Ablestar To: Andriy Gapon Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 20:19:27 +0900 Hello! On 02/15/12 18:58, Andriy Gapon wrote: > № symbol is not in KOI8-R. > If you need to be able to nicely handle such symbols, then you have to use an > appropriate character encoding in your localization (UTF-8, Windows-1251). > We _could_ add a hack for this symbol, but where do we stop? Tomorrow someone > would request a hack for «», then something else. > So I don't think that this is a way to go. > Please try to handle this issue via local configuration. > Problem is that I have tried UTF-8, too. And the result is the same: # mount_msdosfs -L UTF-8 /dev/da0s1 /flop mount_msdosfs: UTF-8: No error: 0 (didn't mount. Why? FAT-32 uses UTF, it should be transparent!) # mount_msdosfs -L ru_RU.UTF-8 /dev/da0s1 /flop # umount /flop (Did mount but file is still "Cannot stat" and not accessible) I've tried 1251 according to your advice. With some imagination, it may be named "It Works". # mount_msdosfs -L ru_RU.CP1251 /dev/da0s1 /flop # umount /flop (Did mount OK and all files are accessible but names are of course garbage-like. I need something special to find a file. Midnight Commander, for instance) # mount_msdosfs -L ru_RU.CP866 /dev/da0s1 /flop # umount /flop (Same as 1251) CP-1251 is NOT the common encoding in Russian *nix world. KOI and UTF are, and UTF is a perspective encoding while 1251 is not perspective even under Windows (They also transition to UTF). Use of it will break compatibility, and I agree to suffer compatibility loss due to UTF transfer, but not 1251 transfer. CP866 is even older and it's life cycle ended 17 years ago. So I strongly believe it would be necessary either to provide a _correct_ name translation to UTF or allow user to load an arbitrary translation table. Or both. Neither works for now. Or at least tell me where the translation tables lie. And option "transparent" will be nice for emergency, too. But at least an ugly method to extract a single valuable file (or dump and restore a FAT-32 volume not looking inside) has been found. Thanks. Anatoly From eugen at grosbein.net Wed Feb 15 12:00:22 2012 From: eugen at grosbein.net (Eugene Grosbein) Date: Wed Feb 15 12:00:28 2012 Subject: kern/165174: [patch] [tap] allow tap(4) to keep its address on close Message-ID: <201202151150.q1FBon3U006603@eg.sd.rdtc.ru> >Number: 165174 >Category: kern >Synopsis: [patch] [tap] allow tap(4) to keep its address on close >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 15 12:00:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 8.2-STABLE i386 >Organization: RDTC JSC >Environment: System: FreeBSD eg.sd.rdtc.ru 8.2-STABLE FreeBSD 8.2-STABLE #37: Wed Feb 15 14:22:03 NOVT 2012 root@eg.sd.rdtc.ru:/usr/local/obj/usr/local/src/sys/EG i386 >Description: I routinely start, run and close several VirtualBox-controlled virtual machines within FreeBSD. These machines use tap(4)-based networking. tap interfaces are configured in /etc/rc.conf just like all other interfaces: cloned_interfaces="tap0 tap1 tap2" ifconfig_tap0="inet 192.168.254.1/29" ifconfig_tap1="inet 192.168.254.17/28" ifconfig_tap2="inet 192.168.254.9/29" Each machine uses its own tapX. VirtualBox runs as non-root user with help of /etc/sysctl.conf: net.link.tap.user_open=1 net.link.tap.up_on_open=1 This works for first start of each VM only as tap(4) driver removes interface addresses of tapX on close. Very inconvinient. >How-To-Repeat: Create tap0 with ifconfig, run an application working with tap0, restart the application and its networking fails. >Fix: The following patch introduces new per-interface sysctls that may be used to keep addresses of tap interfaces and interfaces itself up on close: net.link.tap.0.keep_up=1 net.link.tap.1.keep_up=1 net.link.tap.2.keep_up=1 Default value is 0 and corresponds to current behaviour. The patch updates manual page too. --- sys/net/if_tapvar.h.orig 2012-02-15 13:35:31.000000000 +0700 +++ sys/net/if_tapvar.h 2012-02-15 14:06:40.000000000 +0700 @@ -41,6 +41,8 @@ #ifndef _NET_IF_TAPVAR_H_ #define _NET_IF_TAPVAR_H_ +#include + /* * tap_mtx locks tap_flags, tap_pid. tap_next locked with global tapmtx. * Other fields locked by owning subsystems. @@ -64,6 +66,9 @@ struct tap_softc { SLIST_ENTRY(tap_softc) tap_next; /* next device in chain */ struct cdev *tap_dev; struct mtx tap_mtx; /* per-softc mutex */ + + struct sysctl_ctx_list ctx; /* sysctl variables */ + int keep_up; }; #endif /* !_NET_IF_TAPVAR_H_ */ --- sys/net/if_tap.c.orig 2012-02-15 13:24:10.000000000 +0700 +++ sys/net/if_tap.c 2012-02-15 16:28:15.000000000 +0700 @@ -229,6 +229,7 @@ tap_clone_destroy(struct ifnet *ifp) { struct tap_softc *tp = ifp->if_softc; + sysctl_ctx_free(&tp->ctx); mtx_lock(&tapmtx); SLIST_REMOVE(&taphead, tp, tap_softc, tap_next); mtx_unlock(&tapmtx); @@ -399,6 +400,8 @@ tapcreate(struct cdev *dev) int unit; char *name = NULL; u_char eaddr[6]; + char num[14]; /* sufficient for 32 bits */ + struct sysctl_oid *oid; dev->si_flags &= ~SI_CHEAPCLONE; @@ -433,6 +436,16 @@ tapcreate(struct cdev *dev) ifp = tp->tap_ifp = if_alloc(IFT_ETHER); if (ifp == NULL) panic("%s%d: can not if_alloc()", name, unit); + + sysctl_ctx_init(&tp->ctx); + snprintf(num, sizeof(num), "%u", unit); + tp->keep_up = 0; + oid = SYSCTL_ADD_NODE(&tp->ctx, &SYSCTL_NODE_CHILDREN(_net_link, tap), + OID_AUTO, num, CTLFLAG_RD, NULL, ""); + SYSCTL_ADD_INT(&tp->ctx, SYSCTL_CHILDREN(oid), OID_AUTO, + "keep_up", CTLTYPE_INT|CTLFLAG_RW, &tp->keep_up, tp->keep_up, + "Keep interface up on close"); + ifp->if_softc = tp; if_initname(ifp, name, unit); ifp->if_init = tapifinit; @@ -528,7 +541,8 @@ tapclose(struct cdev *dev, int foo, int * interface, if we are in VMnet mode. just close the device. */ - if (((tp->tap_flags & TAP_VMNET) == 0) && (ifp->if_flags & IFF_UP)) { + if (!tp->keep_up && + ((tp->tap_flags & TAP_VMNET) == 0) && (ifp->if_flags & IFF_UP)) { mtx_unlock(&tp->tap_mtx); if_down(ifp); mtx_lock(&tp->tap_mtx); --- share/man/man4/tap.4.orig 2012-02-15 14:37:59.000000000 +0700 +++ share/man/man4/tap.4 2012-02-15 16:25:50.000000000 +0700 @@ -268,7 +268,9 @@ .Dq ifconfig tap Ns Sy N No down ) unless the device is a .Em VMnet -device. +device (but see +.Sx SYSCTL VARIABLES +section below). All queued frames are thrown away. If the interface is up when the data device is not open, output frames are thrown away rather than @@ -316,6 +318,14 @@ VMware .Dv SIOCSIFFLAGS . .El +.Sh SYSCTL VARIABLES +In addition to global sysctl variables described above, there are +per-interface variables: +.Bl -tag -width indent +.It Va net.link.tap.X.keep_up: No 0 +Set this variable to 1 and interface tapX will stay up +and keep its address on close regardless of mode. +.El .Sh SEE ALSO .Xr inet 4 , .Xr intro 4 >Release-Note: >Audit-Trail: >Unformatted: From avg at FreeBSD.org Wed Feb 15 12:00:31 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Wed Feb 15 12:00:44 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151200.q1FC0UIY010104@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Andriy Gapon To: Thor Ablestar Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 13:52:10 +0200 on 15/02/2012 13:19 Thor Ablestar said the following: > # mount_msdosfs -L ru_RU.UTF-8 /dev/da0s1 /flop > # umount /flop > (Did mount but file is still "Cannot stat" and not accessible) Sorry, I couldn't understand from this what exactly was the problem. -- Andriy Gapon From FreeBSD at Shaneware.biz Wed Feb 15 12:00:32 2012 From: FreeBSD at Shaneware.biz (Shane Ambler) Date: Wed Feb 15 12:00:44 2012 Subject: misc/165175: installworld built WITHOUT_LIB32 still installs empty lib32 dir Message-ID: <201202151153.q1FBrHWw094375@red.freebsd.org> >Number: 165175 >Category: misc >Synopsis: installworld built WITHOUT_LIB32 still installs empty lib32 dir >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 15 12:00:31 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Shane Ambler >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD leader 9.0-RELEASE FreeBSD 9.0-RELEASE #1: Wed Feb 15 16:03:18 CST 2012 root@:/usr/obj/usr/src/sys/GENERIC amd64 >Description: When make installworld is run after building with WITHOUT_LIB32 set in /etc/src.conf the dirs /usr/lib32 /usr/lib32/dtrace and /usr/lib32/i18n still get created with no files inside. The issue with that is that some ports use the existence of /usr/lib32 to decide whether to build 32bit versions. devel/valgrind is an example. Deleting the dirs solves the port build issues. >How-To-Repeat: Set WITHOUT_LIB32 in /etc/src.conf and then make buildworld then make installworld >Fix: >Release-Note: >Audit-Trail: >Unformatted: From thor at irk.ru Wed Feb 15 12:30:11 2012 From: thor at irk.ru (Thor Ablestar) Date: Wed Feb 15 12:30:18 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151230.q1FCUBCA037303@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Thor Ablestar To: Andriy Gapon Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 21:20:57 +0900 On 02/15/12 20:52, Andriy Gapon wrote: > on 15/02/2012 13:19 Thor Ablestar said the following: >> # mount_msdosfs -L ru_RU.UTF-8 /dev/da0s1 /flop >> # umount /flop >> (Did mount but file is still "Cannot stat" and not accessible) > Sorry, I couldn't understand from this what exactly was the problem. > Mount with -L ru_RU.UTF-8 locale succeeds. File is seen in Midnight Commander in RED color, with "?" instead of "No." symbol, with length=0 and "?" in left column (where file type is displayed). The Russian letters appear garbaged but it's normal for UTF-8. File is NOT seen at all in ls -l listing # cat esc/enter on this file in Midnight Commander gives cat: (filename here): Invalid argument F4 on this file in Midnight Commander gives a red frame: Cannot open (filename here) for reading [Dismiss] F5 on this file in Midnight Commander gives a red frame: Cannot stat source file "(filename here)" Invalid argument (22) [Skip][Retry][Abort] (filename here) is exactly the same filename that MC shows in red. OpenOffice.Org Writer "Open File" does not see that file at all. From avg at FreeBSD.org Wed Feb 15 12:50:12 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Wed Feb 15 12:50:22 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151250.q1FCoCBE057289@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Andriy Gapon To: Thor Ablestar Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 14:42:41 +0200 on 15/02/2012 14:20 Thor Ablestar said the following: > On 02/15/12 20:52, Andriy Gapon wrote: >> on 15/02/2012 13:19 Thor Ablestar said the following: >>> # mount_msdosfs -L ru_RU.UTF-8 /dev/da0s1 /flop >>> # umount /flop >>> (Did mount but file is still "Cannot stat" and not accessible) >> Sorry, I couldn't understand from this what exactly was the problem. >> > Mount with -L ru_RU.UTF-8 locale succeeds. > File is seen in Midnight Commander in RED color, with "?" instead of "No." > symbol, with length=0 and "?" in left column (where file type is displayed). The > Russian letters appear garbaged but it's normal for UTF-8. I'll let somebody else worry about Midnight commander. > File is NOT seen at all in ls -l listing OK, what is output of 'locale' command in your shell? -- Andriy Gapon From thor at irk.ru Wed Feb 15 12:50:14 2012 From: thor at irk.ru (Thor Ablestar) Date: Wed Feb 15 12:50:33 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151250.q1FCoEnD057304@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Thor Ablestar To: Andriy Gapon Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 21:48:34 +0900 On 02/15/12 21:42, Andriy Gapon wrote: > OK, what is output of 'locale' command in your shell? LANG= LC_CTYPE=ru_RU.KOI8-R LC_COLLATE="C" LC_TIME="C" LC_NUMERIC="C" LC_MONETARY="C" LC_MESSAGES="C" LC_ALL= From avg at FreeBSD.org Wed Feb 15 13:00:25 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Wed Feb 15 13:00:31 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151300.q1FD0OgY066016@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Andriy Gapon To: Thor Ablestar Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 14:52:08 +0200 on 15/02/2012 14:48 Thor Ablestar said the following: > On 02/15/12 21:42, Andriy Gapon wrote: >> OK, what is output of 'locale' command in your shell? > > LANG= > LC_CTYPE=ru_RU.KOI8-R > LC_COLLATE="C" > LC_TIME="C" > LC_NUMERIC="C" > LC_MONETARY="C" > LC_MESSAGES="C" > LC_ALL= Right. You have to use UTF-8 locale. -- Andriy Gapon From thor at irk.ru Wed Feb 15 13:10:10 2012 From: thor at irk.ru (Thor Ablestar) Date: Wed Feb 15 13:10:17 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151310.q1FDAAMk074811@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Thor Ablestar To: Andriy Gapon Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 22:09:35 +0900 On 02/15/12 21:52, Andriy Gapon wrote: > on 15/02/2012 14:48 Thor Ablestar said the following: >> On 02/15/12 21:42, Andriy Gapon wrote: >>> OK, what is output of 'locale' command in your shell? >> LANG= >> LC_CTYPE=ru_RU.KOI8-R >> LC_COLLATE="C" >> LC_TIME="C" >> LC_NUMERIC="C" >> LC_MONETARY="C" >> LC_MESSAGES="C" >> LC_ALL= > Right. You have to use UTF-8 locale. Tried ru_RU.UTF-8 locale. Result the same except the garbage letters in filename are different. The file with "No." symbol in filename still inaccessible with the same symptoms. From thor at irk.ru Wed Feb 15 13:20:07 2012 From: thor at irk.ru (Thor Ablestar) Date: Wed Feb 15 13:20:12 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151320.q1FDK6PT084848@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Thor Ablestar To: Andriy Gapon Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 22:15:30 +0900 On 02/15/12 21:52, Andriy Gapon wrote: > on 15/02/2012 14:48 Thor Ablestar said the following: >> On 02/15/12 21:42, Andriy Gapon wrote: >>> OK, what is output of 'locale' command in your shell? >> LANG= >> LC_CTYPE=ru_RU.KOI8-R >> LC_COLLATE="C" >> LC_TIME="C" >> LC_NUMERIC="C" >> LC_MONETARY="C" >> LC_MESSAGES="C" >> LC_ALL= > Right. You have to use UTF-8 locale. > Tried again to mount_msdosfs -L ru_RU.CP1251 Result: File accessible both with LC_CTYPE=ru_RU.KOI*-R and =ru_RU.UTF-8 In both cases file name is garbaged differently. From nicolas.bourdaud at gmail.com Wed Feb 15 13:38:10 2012 From: nicolas.bourdaud at gmail.com (Nicolas Bourdaud) Date: Wed Feb 15 13:38:48 2012 Subject: kern/164793: 'write' system call violates POSIX standard In-Reply-To: <20120206050042.E2728@besplex.bde.org> References: <201202051142.q15Bgrh6041302@red.freebsd.org> <20120206050042.E2728@besplex.bde.org> Message-ID: <4F3BAF7B.2010305@gmail.com> On 05/02/2012 19:54, Bruce Evans wrote: > I think this is actually a bug in POSIX (XSI). Most programs aren't > prepared to deal with short writes, and returning an error like > truncate() is specified to is adequate. I disagree, I think that most programs that check that the write succeeded also check that the write was complete. Actually it was because my programs were assuming the POSIX behavior that I notice the bug. In addition, I think (this must be confirmed) that the bug don't affect the version 8.2... So the programs are already facing the POSIX behavior. Moreover the programs that are cross platform (in particular ported to Linux) are already facing this behavior. Whatever is decided, either freebsd should conform to the POSIX standard, either the standard should be changed. >> Patch attached with submission follows: >> ... >> int main(void) >> { >> struct rlimit lim; >> int fd; >> ssize_t retc; >> size_t count = 0; >> const char pattern[PATTSIZE] = "Hello world!"; >> >> signal(SIGXFSZ, SIG_IGN); >> lim.rlim_cur = LIMSIZE; >> setrlimit(RLIMIT_FSIZE, &lim); > > This is missing initialization of at least lim.rlim_max in lim. This > gave the bizarre behaviour that when the program was statically linked, > it failed for the first write, because the stack garbage for > lim.rlim_max happened to be 0. Yes I forgot one line: getrlimit(RLIMIT_FSIZE, &lim); just before "lim.rlim_cur = LIMSIZE;" Best regards Nicolas -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 900 bytes Desc: OpenPGP digital signature Url : http://lists.freebsd.org/pipermail/freebsd-bugs/attachments/20120215/9ea9f97f/signature.pgp From nicolas.bourdaud at gmail.com Wed Feb 15 13:40:11 2012 From: nicolas.bourdaud at gmail.com (Nicolas Bourdaud) Date: Wed Feb 15 13:40:18 2012 Subject: kern/164793: 'write' system call violates POSIX standard Message-ID: <201202151340.q1FDeAjQ004386@freefall.freebsd.org> The following reply was made to PR standards/164793; it has been noted by GNATS. From: Nicolas Bourdaud To: Bruce Evans Cc: freebsd-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/164793: 'write' system call violates POSIX standard Date: Wed, 15 Feb 2012 14:13:31 +0100 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig6C66010532ACA49C7A3CE91B Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 05/02/2012 19:54, Bruce Evans wrote: > I think this is actually a bug in POSIX (XSI). Most programs aren't > prepared to deal with short writes, and returning an error like > truncate() is specified to is adequate. I disagree, I think that most programs that check that the write succeeded also check that the write was complete. Actually it was because my programs were assuming the POSIX behavior that I notice the bug. In addition, I think (this must be confirmed) that the bug don't affect the version 8.2... So the programs are already facing the POSIX behavior. Moreover the programs that are cross platform (in particular ported to Linux) are already facing this behavior. Whatever is decided, either freebsd should conform to the POSIX standard, either the standard should be changed. >> Patch attached with submission follows: >> ... >> int main(void) >> { >> struct rlimit lim; >> int fd; >> ssize_t retc; >> size_t count =3D 0; >> const char pattern[PATTSIZE] =3D "Hello world!"; >> >> signal(SIGXFSZ, SIG_IGN); >> lim.rlim_cur =3D LIMSIZE; >> setrlimit(RLIMIT_FSIZE, &lim); >=20 > This is missing initialization of at least lim.rlim_max in lim. This > gave the bizarre behaviour that when the program was statically linked,= > it failed for the first write, because the stack garbage for > lim.rlim_max happened to be 0. Yes I forgot one line: getrlimit(RLIMIT_FSIZE, &lim); just before "lim.rlim_cur =3D LIMSIZE;" Best regards Nicolas --------------enig6C66010532ACA49C7A3CE91B Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBCAAGBQJPO697AAoJEMTcslrXGllyZA8P/3JXPOFJEXOq9oDGBZFbZ1dx EwD8lGjcEwFbw6ZhybBP/EDLldU2J41cOUQ2hI4CCgUrI5lG9FN5P0Nqqa9S4yVA 06N3j0z2ZQuAPcQU6xgU6F4RkSRf8v4EdlAxXcqtP1UEIYwtETx6fkz8vM7hcgWV tIqbWUPmYJp5G3CtHbu29oPt3qUXNTRyO4um/zPbXGdAKVGlvoiv86L6GOrwFHCf iLni2W3hgKMBBzSAexHgNpb+bFlPJXSMePADL1HsFi350znwlscXZgLiyN7uHo2s GCzsckhOpyed40io6gM/md2QGn68U6csYetDEpn5O/YpUQXKJFjNodil3M8d1orV 6O8JNCIbCLovlMZSBmZLRTdzBi1thmaLD/xBHTKoZbZ/950c1SY+u1/PKoO2PPxn 9/QKEr7U9HNyMP5VqiUSnn6aidRnJX4dwdMKD5WF05Mf5C0HYPKBYDtB1CXIPwGr h4sAVc6paTCdj3m2G6Hu6cYY95WvnOkYeyOoVSgr1hKM+WXoMz3GWMAPKeuzSizO wN0BXVo0O7EvuXV68dpEe/jhmGfdipRKPxjoN6UNYP7Avwyex6fUxBJTDrrA8p7i hQ5YGS/nBWs1CQAgz9uga1iSmNjFmn+uHPqmIuxRtf5DHsHAW2I5BqFJ1o/YHyZZ E93qQBVtPOy29ixeMsqR =VNCr -----END PGP SIGNATURE----- --------------enig6C66010532ACA49C7A3CE91B-- From avg at FreeBSD.org Wed Feb 15 14:00:28 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Wed Feb 15 14:00:35 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151400.q1FE0Rqa021443@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Andriy Gapon To: Thor Ablestar Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 15:52:16 +0200 on 15/02/2012 15:09 Thor Ablestar said the following: > On 02/15/12 21:52, Andriy Gapon wrote: >> on 15/02/2012 14:48 Thor Ablestar said the following: >>> On 02/15/12 21:42, Andriy Gapon wrote: >>>> OK, what is output of 'locale' command in your shell? >>> LANG= >>> LC_CTYPE=ru_RU.KOI8-R >>> LC_COLLATE="C" >>> LC_TIME="C" >>> LC_NUMERIC="C" >>> LC_MONETARY="C" >>> LC_MESSAGES="C" >>> LC_ALL= >> Right. You have to use UTF-8 locale. > Tried ru_RU.UTF-8 locale. Result the same except the garbage letters in filename > are different. The file with "No." symbol in filename still inaccessible with the > same symptoms. You have to use a UTF-8 locale (e.g. ru_RU.UTF-8 ) and mount using the same locale (e.g. ru_RU.UTF-8 ), then everything should work. If something doesn't work then you should describe exactly what you did and exactly what problems you get. When you just "something doesn't work", then my answer is just "you did something wrong". BTW, such things are better be discussed on the mailing list or forums. The PR database is not exactly a help channel. -- Andriy Gapon From thor at irk.ru Wed Feb 15 14:00:36 2012 From: thor at irk.ru (Thor Ablestar) Date: Wed Feb 15 14:00:43 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151400.q1FE0ZVH021572@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Thor Ablestar To: Andriy Gapon Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 22:53:58 +0900 > Right. You have to use UTF-8 locale. > 1. Do I understand correctly that /usr/src/sbin/mount_msdosfs/mount_msdosfs.c takes the conversion table from /usr/ports/converters/libiconv ? 2. As I understand, accessibility of the file containing "No." in it's name depends entirely on -L argument for mount_msdosfs command, and not on LC_CTYPE. The filenames may LOOK differently but the files are still accessible under their garbaged names. From info at nsad.ac.uk Wed Feb 15 14:10:10 2012 From: info at nsad.ac.uk (vuViFBWqQbgtpOzsxtw) Date: Wed Feb 15 14:10:16 2012 Subject: misc/165178: WQxRpsmA Message-ID: <201202151408.q1FE8p9L073925@red.freebsd.org> >Number: 165178 >Category: misc >Synopsis: WQxRpsmA >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 15 14:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: vuViFBWqQbgtpOzsxtw >Release: gHjAlrhZbhxq >Organization: XkHxgiYgDkh >Environment: So excited I found this article as it made things much qiukcer! >Description: So excited I found this article as it made things much qiukcer! >How-To-Repeat: So excited I found this article as it made things much qiukcer! >Fix: So excited I found this article as it made things much qiukcer! >Release-Note: >Audit-Trail: >Unformatted: From sunpoet at FreeBSD.org Wed Feb 15 14:12:01 2012 From: sunpoet at FreeBSD.org (sunpoet@FreeBSD.org) Date: Wed Feb 15 14:12:16 2012 Subject: junk/165178: WQxRpsmA Message-ID: <201202151412.q1FEC0dB038262@freefall.freebsd.org> Synopsis: WQxRpsmA State-Changed-From-To: open->closed State-Changed-By: sunpoet State-Changed-When: Wed Feb 15 14:11:58 UTC 2012 State-Changed-Why: Junk PR. Responsible-Changed-From-To: freebsd-bugs->gnats-admin Responsible-Changed-By: sunpoet Responsible-Changed-When: Wed Feb 15 14:11:58 UTC 2012 Responsible-Changed-Why: Junk PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=165178 From brde at optusnet.com.au Wed Feb 15 14:55:58 2012 From: brde at optusnet.com.au (Bruce Evans) Date: Wed Feb 15 14:56:04 2012 Subject: kern/164793: 'write' system call violates POSIX standard In-Reply-To: <4F3BAF7B.2010305@gmail.com> References: <201202051142.q15Bgrh6041302@red.freebsd.org> <20120206050042.E2728@besplex.bde.org> <4F3BAF7B.2010305@gmail.com> Message-ID: <20120216005011.E2689@besplex.bde.org> On Wed, 15 Feb 2012, Nicolas Bourdaud wrote: > On 05/02/2012 19:54, Bruce Evans wrote: >> I think this is actually a bug in POSIX (XSI). Most programs aren't >> prepared to deal with short writes, and returning an error like >> truncate() is specified to is adequate. > > I disagree, I think that most programs that check that the write > succeeded also check that the write was complete. Actually it was Well, in BSD, programs that don't understand short writes start with the cp utility in 4.4BSD (it checks for short writes, but then mishandles them by treating them as errors). This wasn't fixed in FreeBSD until 1998. > because my programs were assuming the POSIX behavior that I notice the > bug. In addition, I think (this must be confirmed) that the bug don't > affect the version 8.2... So the programs are already facing the POSIX No, it was in 4.4BSD, and hasn't been changed in FreeBSD since 1994. 8.2 only differs in having the check in all file systems instead of in vfs. Perhaps some file systems got it right, but ffs didn't. > behavior. Moreover the programs that are cross platform (in particular > ported to Linux) are already facing this behavior. > > Whatever is decided, either freebsd should conform to the POSIX > standard, either the standard should be changed. It must conform, since it is too late to fix standards. I forgot about this when I looked at ffs's handling of i/o errors recently. There are many more bugs. ffs normally tries to back out of writes completely after an i/o error, by using ftruncate() to return to the original file size. Garbage written to the disk or memory is too hard to back out of, but ffs avoids security holes by zeroing it memory (in case it is memmap()ed) and by making it inaccessible by normal means on the disk (ftruncate() does this. When the error is ENOSPC due to a full disk, this gives the same behaviour as ffs has now for EFBIG for the file size being too big (due to the maximum size for the file system, or the rlimit). POSIX has looser wording for the ENOSPC error. It says that ENOSPC shall be returned if there "was" no space... This can be interpreted as requiring the same things as EFBIG -- that if there was any space to begin with, ENOSPC is not required to be returned; presumably the write() should succeed in writing as much as possible since there is no other reasonable error. But ffs's behaviour is "correct" here. The most broken case here is for an i/o error for a write in the middle of a file. Then it is not reasonable to try to back out. ffs doesn't do the ftruncate() in this case. But it still tries to back out. This results in write() returning -1/EIO. This is wrong if something has been successfully written. On second thoughts is it is the best possible behaviour. Everything in the region of the file covered by the write() may have been clobbered, either by writing the requested bytes, or by a hardware or software error writing garbage, or by the intentional zeroing for security. The only way to tell the application about this is to say that the whole write failed. The application should assume that the entire region has been clobbered, and take steps to check and limit the extent of the damage, perhaps by trying to rewrite it all in smaller pieces. There seem to be more bugs in [f]truncate(): - POSIX requires SIGXFSZ for attempts to exceed the file size rlimit in truncate() too, but FreeBSD doesn't even check the rlimit for truncate(). Checking the rlimit in vfs makes all this easier to fix. I think write() can be fixed in a couple of lines in vfs. All file systems call back to vfs to check, though I don't know of any requirement for other errors to have precedence, so vfs could check up front. zfs's write vnop actually calls back to vfs before doing anything else, so this error already has precedence over all fs-specific errors for zfs. All other file systems' write vnop do the check a fair way into the vnop in much the same place as ffs. No file systems check the limit for truncate(). The limit checking is commented out in xfs's write vnop. Bruce From brde at optusnet.com.au Wed Feb 15 15:00:24 2012 From: brde at optusnet.com.au (Bruce Evans) Date: Wed Feb 15 15:00:30 2012 Subject: kern/164793: 'write' system call violates POSIX standard Message-ID: <201202151500.q1FF0OYU076207@freefall.freebsd.org> The following reply was made to PR standards/164793; it has been noted by GNATS. From: Bruce Evans To: Nicolas Bourdaud Cc: Bruce Evans , freebsd-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: kern/164793: 'write' system call violates POSIX standard Date: Thu, 16 Feb 2012 01:55:54 +1100 (EST) On Wed, 15 Feb 2012, Nicolas Bourdaud wrote: > On 05/02/2012 19:54, Bruce Evans wrote: >> I think this is actually a bug in POSIX (XSI). Most programs aren't >> prepared to deal with short writes, and returning an error like >> truncate() is specified to is adequate. > > I disagree, I think that most programs that check that the write > succeeded also check that the write was complete. Actually it was Well, in BSD, programs that don't understand short writes start with the cp utility in 4.4BSD (it checks for short writes, but then mishandles them by treating them as errors). This wasn't fixed in FreeBSD until 1998. > because my programs were assuming the POSIX behavior that I notice the > bug. In addition, I think (this must be confirmed) that the bug don't > affect the version 8.2... So the programs are already facing the POSIX No, it was in 4.4BSD, and hasn't been changed in FreeBSD since 1994. 8.2 only differs in having the check in all file systems instead of in vfs. Perhaps some file systems got it right, but ffs didn't. > behavior. Moreover the programs that are cross platform (in particular > ported to Linux) are already facing this behavior. > > Whatever is decided, either freebsd should conform to the POSIX > standard, either the standard should be changed. It must conform, since it is too late to fix standards. I forgot about this when I looked at ffs's handling of i/o errors recently. There are many more bugs. ffs normally tries to back out of writes completely after an i/o error, by using ftruncate() to return to the original file size. Garbage written to the disk or memory is too hard to back out of, but ffs avoids security holes by zeroing it memory (in case it is memmap()ed) and by making it inaccessible by normal means on the disk (ftruncate() does this. When the error is ENOSPC due to a full disk, this gives the same behaviour as ffs has now for EFBIG for the file size being too big (due to the maximum size for the file system, or the rlimit). POSIX has looser wording for the ENOSPC error. It says that ENOSPC shall be returned if there "was" no space... This can be interpreted as requiring the same things as EFBIG -- that if there was any space to begin with, ENOSPC is not required to be returned; presumably the write() should succeed in writing as much as possible since there is no other reasonable error. But ffs's behaviour is "correct" here. The most broken case here is for an i/o error for a write in the middle of a file. Then it is not reasonable to try to back out. ffs doesn't do the ftruncate() in this case. But it still tries to back out. This results in write() returning -1/EIO. This is wrong if something has been successfully written. On second thoughts is it is the best possible behaviour. Everything in the region of the file covered by the write() may have been clobbered, either by writing the requested bytes, or by a hardware or software error writing garbage, or by the intentional zeroing for security. The only way to tell the application about this is to say that the whole write failed. The application should assume that the entire region has been clobbered, and take steps to check and limit the extent of the damage, perhaps by trying to rewrite it all in smaller pieces. There seem to be more bugs in [f]truncate(): - POSIX requires SIGXFSZ for attempts to exceed the file size rlimit in truncate() too, but FreeBSD doesn't even check the rlimit for truncate(). Checking the rlimit in vfs makes all this easier to fix. I think write() can be fixed in a couple of lines in vfs. All file systems call back to vfs to check, though I don't know of any requirement for other errors to have precedence, so vfs could check up front. zfs's write vnop actually calls back to vfs before doing anything else, so this error already has precedence over all fs-specific errors for zfs. All other file systems' write vnop do the check a fair way into the vnop in much the same place as ffs. No file systems check the limit for truncate(). The limit checking is commented out in xfs's write vnop. Bruce From avg at FreeBSD.org Wed Feb 15 15:10:07 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Wed Feb 15 15:10:14 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202151510.q1FFA7Wt085008@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Andriy Gapon To: Thor Ablestar Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Wed, 15 Feb 2012 17:04:36 +0200 on 15/02/2012 15:53 Thor Ablestar said the following: > >> Right. You have to use UTF-8 locale. >> > 1. Do I understand correctly that /usr/src/sbin/mount_msdosfs/mount_msdosfs.c > takes the conversion table from /usr/ports/converters/libiconv ? Well, as unexpected as it is, the answer is yes. mount_msdosfs uses libkiconv(3) which dlopen()s libiconv.so, which is not provided by the base system and thus has to come from a thirdparty, typically the iconv port. We already have a BSD-licensed iconv in the src tree, but it is not connected to the build yet. > 2. As I understand, accessibility of the file containing "No." in it's name > depends entirely on -L argument for mount_msdosfs command, and not on LC_CTYPE. That -L controls how the OS internally represents the file names on the filesystem. > The filenames may LOOK differently but the files are still accessible under their > garbaged names. Locale controls output and input of characters. -- Andriy Gapon From kickbsd at yandex.ru Wed Feb 15 17:00:22 2012 From: kickbsd at yandex.ru (Darren Baginski) Date: Wed Feb 15 17:00:29 2012 Subject: kern/165181: IGB freezes after about 2 weeks of uptime Message-ID: <201202151658.q1FGw7Yb083066@red.freebsd.org> >Number: 165181 >Category: kern >Synopsis: IGB freezes after about 2 weeks of uptime >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 15 17:00:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Darren Baginski >Release: FreeBSD 9.0-RELEASE >Organization: None >Environment: FreeBSD srv-4-2.lab.local 9.0-RELEASE FreeBSD 9.0-RELEASE #1: Thu Jan 19 18:31:23 UTC 2012 root@srv-4-2.lab.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Hi! After about 2 weeks of uptime I'm getting messages like that: igb0: Watchdog timeout -- resetting igb0: Queue(0) tdh = 16, hw tdt = 20 igb0: TX(0) desc avail = 1020,Next TX to Clean = 16 igb0: link state changed to DOWN igb0: link state changed to UP Reboot helps, for the next ~2 weeks. Kernel is GENERIC. Card is 4 ports Intel FreeBSD srv-4-2.lab.local 9.0-RELEASE FreeBSD 9.0-RELEASE #1: Thu Jan 19 18:31:23 UTC 2012 root@srv-4-2.lab.local:/usr/obj/usr/src/sys/GENERIC amd64 >How-To-Repeat: Use FreeBSD 9.0-RELEASE with 4 ports IGB for 2+ weeks >Fix: >Release-Note: >Audit-Trail: >Unformatted: From bzeeb-lists at lists.zabbadoz.net Wed Feb 15 17:30:11 2012 From: bzeeb-lists at lists.zabbadoz.net (Bjoern A. Zeeb) Date: Wed Feb 15 17:30:18 2012 Subject: misc/165152: Does not work through the issue of ipv6 addresses via rtadvd Message-ID: <201202151730.q1FHUBrh014147@freefall.freebsd.org> The following reply was made to PR misc/165152; it has been noted by GNATS. From: "Bjoern A. Zeeb" To: bug-followup@FreeBSD.org, universite@ukr.net Cc: Subject: Re: misc/165152: Does not work through the issue of ipv6 addresses via rtadvd Date: Wed, 15 Feb 2012 17:29:56 +0000 (UTC) On Wed, 15 Feb 2012, Vladislav V. Prodan wrote: > In dmesg there is nothing interesting. I said dmesg -a and if I boot a freebsd 9 with your config snippet I get: /etc/rc: WARNING: $ipv6_enable is obsolete. Use $ipv6_activate_all_interfaces instead. /etc/rc: WARNING: $ipv6_enable is obsolete. Use $ipv6_activate_all_interfaces instead. /etc/rc.d/netif: WARNING: $ipv6_enable is obsolete. Use $ipv6_activate_all_interfaces instead. /etc/rc.d/netif: WARNING: $ipv6_enable is obsolete. Use $ipv6_activate_all_interfaces instead. /etc/rc.d/netif: WARNING: $ipv6_enable is obsolete. Use $ipv6_activate_all_interfaces instead. just as the most obvious hint... -- Bjoern A. Zeeb You have to have visions! Stop bit received. Insert coin for new address family. From universite at ukr.net Wed Feb 15 22:30:10 2012 From: universite at ukr.net (Vladislav V. Prodan) Date: Wed Feb 15 22:30:17 2012 Subject: misc/165152: Does not work through the issue of ipv6 addresses via rtadvd Message-ID: <201202152230.q1FMUA13092049@freefall.freebsd.org> The following reply was made to PR misc/165152; it has been noted by GNATS. From: "Vladislav V. Prodan" To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/165152: Does not work through the issue of ipv6 addresses via rtadvd Date: Thu, 16 Feb 2012 00:19:25 +0200 15.02.2012 19:29, Bjoern A. Zeeb wrote: > On Wed, 15 Feb 2012, Vladislav V. Prodan wrote: > >> In dmesg there is nothing interesting. > > I said dmesg -a and if I boot a freebsd 9 with your config snippet I > get: > > /etc/rc: WARNING: $ipv6_enable is obsolete. Use > $ipv6_activate_all_interfaces instead. > /etc/rc: WARNING: $ipv6_enable is obsolete. Use > $ipv6_activate_all_interfaces instead. > /etc/rc.d/netif: WARNING: $ipv6_enable is obsolete. Use > $ipv6_activate_all_interfaces instead. > /etc/rc.d/netif: WARNING: $ipv6_enable is obsolete. Use > $ipv6_activate_all_interfaces instead. > /etc/rc.d/netif: WARNING: $ipv6_enable is obsolete. Use > $ipv6_activate_all_interfaces instead. > > just as the most obvious hint... > turned off # ipv6_enable="YES" Did restart ipv6 and rtadvd. Positive result did not reach /bin/sh /etc/rc.d/ip6addrctl restart service rtadvd restart Another idea? -- Vladislav V. Prodan System & Network Administrator http://support.od.ua +380 67 4584408, +380 99 4060508 VVP88-RIPE From bandrova_fgs at uacg.bg Wed Feb 15 23:50:11 2012 From: bandrova_fgs at uacg.bg (oFKkxmxAF) Date: Wed Feb 15 23:50:17 2012 Subject: misc/165192: ZkzRNsRbWBSKpjkR Message-ID: <201202152341.q1FNfDtc000826@red.freebsd.org> >Number: 165192 >Category: misc >Synopsis: ZkzRNsRbWBSKpjkR >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Feb 15 23:50:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: oFKkxmxAF >Release: XizBlFprkvOr >Organization: dAiCIdGovAlKRsyt >Environment: In awe of that awsenr! Really cool! >Description: In awe of that awsenr! Really cool! >How-To-Repeat: In awe of that awsenr! Really cool! >Fix: In awe of that awsenr! Really cool! >Release-Note: >Audit-Trail: >Unformatted: From gjb at FreeBSD.org Wed Feb 15 23:51:36 2012 From: gjb at FreeBSD.org (gjb@FreeBSD.org) Date: Wed Feb 15 23:51:41 2012 Subject: junk/165192: ZkzRNsRbWBSKpjkR Message-ID: <201202152351.q1FNpZBs075006@freefall.freebsd.org> Synopsis: ZkzRNsRbWBSKpjkR State-Changed-From-To: open->closed State-Changed-By: gjb State-Changed-When: Wed Feb 15 23:51:04 UTC 2012 State-Changed-Why: Spam. Responsible-Changed-From-To: freebsd-bugs->gnats-adm Responsible-Changed-By: gjb Responsible-Changed-When: Wed Feb 15 23:51:04 UTC 2012 Responsible-Changed-Why: Spam. http://www.freebsd.org/cgi/query-pr.cgi?pr=165192 From johnny at interpro.com.hk Thu Feb 16 02:05:09 2012 From: johnny at interpro.com.hk (Johnny Sun) Date: Thu Feb 16 02:05:16 2012 Subject: misc/164838: Precompiled package sysutils/smartmontools 5.42_2 is not working properly in 9.0-RELEASE-i386 In-Reply-To: <4F3B81EE.8070500@FreeBSD.org> References: <201202150548.q1F5mx9U026468@freefall.freebsd.org> <4F3B7B6C.80701@interpro.com.hk> <4F3B81EE.8070500@FreeBSD.org> Message-ID: <4F3C6452.6000007@interpro.com.hk> Hi, The version installed via (pkg_add -a smartmontoools) cannot detect harddisk and return the below error ========================================== server1# /usr/local/sbin/smartctl -a /dev/ada0 smartctl 5.42 2011-10-20 r3458 [FreeBSD 9.0-RELEASE i386] (local build) Copyright (C) 2002-11 by Bruce Allen, http://smartmontools.sourceforge.net error sending CAMIOCOMMAND ioctl: Inappropriate ioctl for device Unable to get CAM device list /dev/ada0: Unable to detect device type Smartctl: please specify device type with the -d option. Use smartctl -h to get a usage summary ========================================= The same version (r3458 build) installed via ports-tree does not have such problem. ============================================ server1# /usr/local/sbin/smartctl -a /dev/ada0 smartctl 5.42 2011-10-20 r3458 [FreeBSD 9.0-RELEASE i386] (local build) Copyright (C) 2002-11 by Bruce Allen, http://smartmontools.sourceforge.net === START OF INFORMATION SECTION === Model Family: Hitachi Deskstar 7K2000 Device Model: Hitachi HDS722020ALA330 .. . ============================================ Maybe I have same missing background knowledge. I assume *pkg_add -r* command will always get the latest version, not a snap shot version. If it is the case, I hope someone will update the working version to latest package database. If it is snap-shot based, any command that can get the latest binary version for a particular software? It happened to both fresh install or upgraded from 8.2->9.0 i386 version (on P3/P4 era CPUs), but not on AMD64 (Intel pentium dual CPU) Best Regards, Johnny Sun IT Officer Interpro Manufacturing Limited Tel. (852) 2363-1988 Fax. (852) 3547-6786 Email: johnny@interpro.com.hk ------------------------------------------------------------------------ *From:* Doug Barton *Date:* 2012-02-15 5:59 PM *Subject:* Re: misc/164838: Precompiled package sysutils/smartmontools 5.42_2 is not working properly in 9.0-RELEASE-i386 > It's not clear to me what problem you're reporting. Can you please try > reinstalling the latest package and then list what error messages you're > getting when you try to run it? > > > Thanks, > > Doug > From gjb at FreeBSD.org Thu Feb 16 02:41:32 2012 From: gjb at FreeBSD.org (Glen Barber) Date: Thu Feb 16 02:41:37 2012 Subject: misc/164838: Precompiled package sysutils/smartmontools 5.42_2 is not working properly in 9.0-RELEASE-i386 In-Reply-To: <4F3C6452.6000007@interpro.com.hk> References: <201202150548.q1F5mx9U026468@freefall.freebsd.org> <4F3B7B6C.80701@interpro.com.hk> <4F3B81EE.8070500@FreeBSD.org> <4F3C6452.6000007@interpro.com.hk> Message-ID: <20120216021448.GB1837@glenbarber.us> On Thu, Feb 16, 2012 at 10:05:06AM +0800, Johnny Sun wrote: > Maybe I have same missing background knowledge. I assume *pkg_add -r* > command will always get the latest version, not a snap shot version. If 'pkg_add -r' will fetch the version of the software that was available in the ports tree at the time the FreeBSD version was released. These packages are not rebuilt. Glen From thor at irk.ru Thu Feb 16 04:10:13 2012 From: thor at irk.ru (Thor Ablestar) Date: Thu Feb 16 04:10:20 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202160410.q1G4ADGw008666@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Thor Ablestar To: Andriy Gapon Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Thu, 16 Feb 2012 13:07:09 +0900 On 02/16/12 00:04, Andriy Gapon wrote: > 1. Do I understand correctly that /usr/src/sbin/mount_msdosfs/mount_msdosfs.c > takes the conversion table from /usr/ports/converters/libiconv ? > Well, as unexpected as it is, the answer is yes. Well. Ugly hack to add koi-8 0xa9 "(c)" character as a replacement for Unicode 0x2116 "No." character to libiconf's lib/koi8r.h succeeded (Reboot was needed). Thanks, problem temporarily solved but I still believe that it should be solved permanently by the FreeBSD team in official way. From menge at nabu-hamburg.de Thu Feb 16 04:30:14 2012 From: menge at nabu-hamburg.de (CSPFeyAOxRq) Date: Thu Feb 16 04:30:20 2012 Subject: misc/165195: CNJFzYLFQEnHJz Message-ID: <201202160426.q1G4QCg6024012@red.freebsd.org> >Number: 165195 >Category: misc >Synopsis: CNJFzYLFQEnHJz >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Feb 16 04:30:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: CSPFeyAOxRq >Release: uaOHahMbGxa >Organization: DiKJwFViYBKvENtDxMn >Environment: Created the greatest aritecls, you have. >Description: Created the greatest aritecls, you have. >How-To-Repeat: Created the greatest aritecls, you have. >Fix: Created the greatest aritecls, you have. >Release-Note: >Audit-Trail: >Unformatted: From eadler at FreeBSD.org Thu Feb 16 04:34:40 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Thu Feb 16 04:34:51 2012 Subject: junk/165195: CNJFzYLFQEnHJz Message-ID: <201202160434.q1G4Yeg0037244@freefall.freebsd.org> Synopsis: CNJFzYLFQEnHJz State-Changed-From-To: open->closed State-Changed-By: eadler State-Changed-When: Thu Feb 16 04:34:12 UTC 2012 State-Changed-Why: Created the greatest aritecls, you have. Responsible-Changed-From-To: freebsd-bugs->gnats-admin Responsible-Changed-By: eadler Responsible-Changed-When: Thu Feb 16 04:34:12 UTC 2012 Responsible-Changed-Why: Created the greatest aritecls, you have. http://www.freebsd.org/cgi/query-pr.cgi?pr=165195 From avg at FreeBSD.org Thu Feb 16 08:47:42 2012 From: avg at FreeBSD.org (avg@FreeBSD.org) Date: Thu Feb 16 08:47:48 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202160847.q1G8lg09099410@freefall.freebsd.org> Synopsis: mount_msdosfs -W koi2dos cannot read file No. State-Changed-From-To: open->closed State-Changed-By: avg State-Changed-When: Thu Feb 16 08:45:45 UTC 2012 State-Changed-Why: User requests a hack to compensate for local configuration issues. Besides the hack would really belong in converters/libiconv upstream. http://www.freebsd.org/cgi/query-pr.cgi?pr=165140 From avg at FreeBSD.org Thu Feb 16 08:50:15 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Thu Feb 16 08:50:22 2012 Subject: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Message-ID: <201202160850.q1G8oDQq099831@freefall.freebsd.org> The following reply was made to PR misc/165140; it has been noted by GNATS. From: Andriy Gapon To: Thor Ablestar Cc: bug-followup@FreeBSD.org Subject: Re: misc/165140: mount_msdosfs -W koi2dos cannot read file No. Date: Thu, 16 Feb 2012 10:45:19 +0200 on 16/02/2012 06:07 Thor Ablestar said the following: > On 02/16/12 00:04, Andriy Gapon wrote: >> 1. Do I understand correctly that /usr/src/sbin/mount_msdosfs/mount_msdosfs.c >> takes the conversion table from /usr/ports/converters/libiconv ? >> Well, as unexpected as it is, the answer is yes. > Well. Ugly hack to add koi-8 0xa9 "(c)" character as a replacement for Unicode > 0x2116 "No." character to libiconf's lib/koi8r.h succeeded (Reboot was needed). > Thanks, problem temporarily solved but I still believe that it should be solved > permanently by the FreeBSD team in official way. GOTO 10 :-) (FreeBSD doesn't need to grow hacks without necessity. If you want some symbol, use a locale/charset that has it). -- Andriy Gapon From zunino at fcea.it Thu Feb 16 12:00:26 2012 From: zunino at fcea.it (NJOxhshxIqwEfwdJJ) Date: Thu Feb 16 12:00:33 2012 Subject: misc/165200: ZMAsEdgyW Message-ID: <201202161158.q1GBwTEs028063@red.freebsd.org> >Number: 165200 >Category: misc >Synopsis: ZMAsEdgyW >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 16 12:00:26 UTC 2012 >Closed-Date: >Last-Modified: >Originator: NJOxhshxIqwEfwdJJ >Release: GFhhCAuAGu >Organization: YLUGkGHWYpRJTn >Environment: That's the pefrcet insight in a thread like this. >Description: That's the pefrcet insight in a thread like this. >How-To-Repeat: That's the pefrcet insight in a thread like this. >Fix: That's the pefrcet insight in a thread like this. >Release-Note: >Audit-Trail: >Unformatted: From sunpoet at FreeBSD.org Thu Feb 16 12:35:53 2012 From: sunpoet at FreeBSD.org (sunpoet@FreeBSD.org) Date: Thu Feb 16 12:35:59 2012 Subject: junk/165200: ZMAsEdgyW Message-ID: <201202161235.q1GCZrsV016861@freefall.freebsd.org> Synopsis: ZMAsEdgyW State-Changed-From-To: open->closed State-Changed-By: sunpoet State-Changed-When: Thu Feb 16 12:35:51 UTC 2012 State-Changed-Why: Junk PR. Responsible-Changed-From-To: freebsd-bugs->gnats-admin Responsible-Changed-By: sunpoet Responsible-Changed-When: Thu Feb 16 12:35:51 UTC 2012 Responsible-Changed-Why: Junk PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=165200 From olli at lurza.secnetix.de Thu Feb 16 14:00:31 2012 From: olli at lurza.secnetix.de (Oliver Fromme) Date: Thu Feb 16 14:00:41 2012 Subject: kern/154915: [libc] [patch] Force stdio output streams to line-buffered mode Message-ID: <201202161400.q1GE0Una090336@freefall.freebsd.org> The following reply was made to PR kern/154915; it has been noted by GNATS. From: Oliver Fromme To: bug-followup@FreeBSD.org, jeremie@le-hen.org Cc: Subject: Re: kern/154915: [libc] [patch] Force stdio output streams to line-buffered mode Date: Thu, 16 Feb 2012 14:49:50 +0100 (CET) I think introducing an environment variable for this purpose is a bad hack. I would advise against this. Many tools already have options for unbuffered or line-buffered output (for example cat -u), and there are also other ways to circumvent such problems. For example, the problem quoted in the PR can be solved like this, using the -u option of cat: $ iostat -x 1 | cat -un | grep ad1 or avoiding cat completely (also might be more efficient, saving one process and one pipe, though I haven't benchmarked this): $ iostat -x 1 | awk '{n+=1} /ad1/{print n, $0}' For certain other cases, I have the following alias in my ~/.zshrc that simulates a TTY environment for a tool so it is forced to use line-buffered output: alias intty='script -qt0 /dev/null' So I can write: $ intty sometool -args | grep ... However, the intty alias only works when it is the first command in a pipeline (this is a limitation of the "script" command). In the above example, the cat command is not the first, but a subshell can be used to work around this: $ intty sh -c 'iostat -x 1 | cat -n' | grep ad1 (It should work with any shell that supports aliases, not just zsh, of course.) I suggest closing this PR. Best regards Oliver From dfilter at FreeBSD.ORG Thu Feb 16 14:10:16 2012 From: dfilter at FreeBSD.ORG (dfilter service) Date: Thu Feb 16 14:10:27 2012 Subject: conf/163993: commit references a PR Message-ID: <201202161410.q1GEAGaa099244@freefall.freebsd.org> The following reply was made to PR conf/163993; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: conf/163993: commit references a PR Date: Thu, 16 Feb 2012 14:08:24 +0000 (UTC) Author: pluknet Date: Thu Feb 16 14:08:14 2012 New Revision: 231821 URL: http://svn.freebsd.org/changeset/base/231821 Log: delete-old does not have delete-old-libs dependency. Reflect this in the comment. PR: conf/163993 Submitted by: Eugen Konkov MFC after: 3 days Modified: head/Makefile Modified: head/Makefile ============================================================================== --- head/Makefile Thu Feb 16 10:58:15 2012 (r231820) +++ head/Makefile Thu Feb 16 14:08:14 2012 (r231821) @@ -24,7 +24,7 @@ # check-old-dirs - List obsolete directories. # check-old-files - List obsolete files. # check-old-libs - List obsolete libraries. -# delete-old - Delete obsolete directories/files/libraries. +# delete-old - Delete obsolete directories/files. # delete-old-dirs - Delete obsolete directories. # delete-old-files - Delete obsolete files. # delete-old-libs - Delete obsolete libraries. _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From pluknet at FreeBSD.org Thu Feb 16 14:10:58 2012 From: pluknet at FreeBSD.org (pluknet@FreeBSD.org) Date: Thu Feb 16 14:11:05 2012 Subject: conf/163993: wrong documentation in /usr/src/Makefile Message-ID: <201202161410.q1GEAvpM003949@freefall.freebsd.org> Synopsis: wrong documentation in /usr/src/Makefile State-Changed-From-To: open->patched State-Changed-By: pluknet State-Changed-When: Thu Feb 16 14:10:24 UTC 2012 State-Changed-Why: Fixed in head. http://www.freebsd.org/cgi/query-pr.cgi?pr=163993 From pluknet at FreeBSD.org Thu Feb 16 14:11:18 2012 From: pluknet at FreeBSD.org (pluknet@FreeBSD.org) Date: Thu Feb 16 14:11:26 2012 Subject: conf/163993: wrong documentation in /usr/src/Makefile Message-ID: <201202161411.q1GEBHlK006291@freefall.freebsd.org> Synopsis: wrong documentation in /usr/src/Makefile Responsible-Changed-From-To: freebsd-bugs->pluknet Responsible-Changed-By: pluknet Responsible-Changed-When: Thu Feb 16 14:11:02 UTC 2012 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=163993 From matthewstory at gmail.com Thu Feb 16 16:00:28 2012 From: matthewstory at gmail.com (Matthew Story) Date: Thu Feb 16 16:00:34 2012 Subject: kern/164674: vsprintf/vswprintf return error (EOF) on success if __SERR flag is already set on file Message-ID: <201202161600.q1GG0Sxg001035@freefall.freebsd.org> The following reply was made to PR kern/164674; it has been noted by GNATS. From: Matthew Story To: freebsd-gnats-submit@freebsd.org, freebsd-standards@freebsd.org Cc: Subject: Re: kern/164674: vsprintf/vswprintf return error (EOF) on success if __SERR flag is already set on file Date: Thu, 16 Feb 2012 10:55:11 -0500 --14dae93403056d11e204b916da9f Content-Type: text/plain; charset=ISO-8859-1 On Tue, Jan 31, 2012 at 6:06 PM, Matthew Story wrote: > > >Number: 164674 > >Category: kern > >Synopsis: vfprintf/vfwprintf return error (EOF) on success if > __SERR flag is already set on file > Apologies for cross-posting, but I think that standards might be a more appropriate responsible party for this than -bugs or kern. See description for more info, but the basic issue is that C99 and C11 stipulate that fprintf should return -1 "if an output or encoding error occurred." Currently, printf is encoding and outputting successfully (on line or fully buffered FILEs), but returning -1 if the FILE has an error. The C99/C11 specifications make no mention of FILE state in fprintf return conditions, so this functionality seems to not conform to the specification, attached patch resolves that issue. > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-bugs > >State: open > [...snip] > >Description: > The printf family of functions behaves unpredictably if the file passed to > the function has the __SERR flag set in _flags. The one consistency across > all of the cases detailed below is that regardless of the number of bytes > written to the file, and the success/failure of that operation, the printf > functions (printf, fprintf, wprintf, fwprintf) will always return -1 (EOF). > > * For the case of an unbuffered file, the operation currently fails > transmitting no bytes, and returns -1. > * For the case of a buffered file, the operation transmits all bytes and > the function returns -1. > > The problem is that the behavior here is inconsistent, and should not be. > The question is wether all should be made to fail consistently and > transmit no bytes if __SERR is set on _flags, or if failure should be > determined based on the success of byte transmission, discounting file > state. > > Per the ISO/IEC 9899:201x (C11) Section 7.21.6.1, 14: > > The fprintf function returns the number of characters transmitted, or a > negative value if an output or encoding error occurred. > > My reading of this specification is that success should be determined > based on byte-transmission, and should not factor-in file state. In > addition to the ISO standard, the glibc implementation will reliably > succeed with any error flag set if bytes are successfully transmitted > (although it will transmit partial messages prior to successful conversion, > which is unfortunate). > > The attached patch makes the operation on buffered and unbuffered files > consistent across the affected printf/wprintf functions, determines > success/failure based on successful byte-transmission alone, and preserves > _flags state for __SERR as passed in. > > [...snip] -- regards, matt --14dae93403056d11e204b916da9f Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Tue, Jan 31, 2012 at 6:06 PM, Matthew Story <matthewstory@gmail.co= m> wrote:

>Number: =A0 =A0 =A0 =A0 164674
>Category: =A0 =A0 =A0 kern
>Synopsis: =A0 =A0 =A0 vfprintf/vfwprintf return error (EOF) on success = if __SERR flag is already set on file

A= pologies for cross-posting, but I think that standards might be a more appr= opriate responsible party for this than -bugs or kern. =A0See description f= or more info, but the basic issue is that C99 and C11 stipulate that fprint= f should return -1 "if an output or encoding error occurred." Cur= rently, printf is encoding and outputting successfully (on line or fully bu= ffered FILEs), but returning -1 if the FILE has an error. =A0The C99/C11 sp= ecifications make no mention of FILE state in fprintf return conditions, so= this functionality seems to not conform to the specification, attached pat= ch resolves that issue.
=A0
>Confidential: =A0 no
>Severity: =A0 =A0 =A0 non-critical
>Priority: =A0 =A0 =A0 low
>Responsible: =A0 =A0freebsd-bugs
>State: =A0 =A0 =A0 =A0 =A0open
[...snip]
>Description:
The printf family of functions behaves unpredictably if the file passed to = the function has the __SERR flag set in _flags. =A0The one consistency acro= ss all of the cases detailed below is that regardless of the number of byte= s written to the file, and the success/failure of that operation, the print= f functions (printf, fprintf, wprintf, fwprintf) will always return -1 (EOF= ).

=A0* For the case of an unbuffered file, =A0the operation currently fails t= ransmitting no bytes, and returns -1.
=A0* For the case of a buffered file, the operation transmits all bytes and= the function returns -1.

The problem is that the behavior here is inconsistent, and should not be. = =A0 The question is wether all should be made to fail consistently and tran= smit no bytes if __SERR is set on _flags, or if failure should be determine= d based on the success of byte transmission, discounting file state.

Per the ISO/IEC 9899:201x (C11) Section 7.21.6.1, 14:

The fprintf function returns the number of characters transmitted, or a neg= ative value if an output or encoding error occurred.

My reading of this specification is that success should be determined based= on byte-transmission, and should not factor-in file state. =A0In addition = to the ISO standard, the glibc implementation will reliably succeed with an= y error flag set if bytes are successfully transmitted (although it will tr= ansmit partial messages prior to successful conversion, which is unfortunat= e).

The attached patch makes the operation on buffered and unbuffered files con= sistent across the affected printf/wprintf functions, determines success/fa= ilure based on successful byte-transmission alone, and preserves _flags sta= te for __SERR as passed in.

[...snip]

--
regards,
matt
--14dae93403056d11e204b916da9f-- From brent at beanfield.com Thu Feb 16 17:20:10 2012 From: brent at beanfield.com (Brent) Date: Thu Feb 16 17:20:21 2012 Subject: bin/165207: rctl(8) cannot identify jails via modified name Message-ID: <201202161718.q1GHIWiX056235@red.freebsd.org> >Number: 165207 >Category: bin >Synopsis: rctl(8) cannot identify jails via modified name >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 16 17:20:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Brent >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD freebsd 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Feb 14 11:01:47 EST 2012 root@freebsd:/usr/obj/usr/src/sys/RCTL amd64 >Description: rctl(8) man page examples state: rctl -hu jail:www Display resource usage information for jail named "www". If a jail is started with -n "name", rctl can correctly identify it. If a running jail's name is modified with `jail -m name="name"`, rctl cannot identify it, and continues to use the previous jail name. If no jail name was set upon jail creation, rctl can only identify it via its JID. >How-To-Repeat: JID 5 was started with -n "test1": freebsd# jls JID IP Address Hostname Path 5 10.1.1.1 test1 /usr/jails/test1 Accessible via name: freebsd# jexec test1 tcsh test1# Show stats for jail named "test1": freebsd# rctl -hu jail:test1|head cputime=1681 datasize=16M stacksize=0 coredumpsize=0 memoryuse=57M memorylocked=0 maxproc=10 openfiles=0 vmemoryuse=937M pseudoterminals=0 Modify jail name to "test2": freebsd# jail -m name=test2 jid=5 Accessible via modified name "test2": freebsd# jexec test2 tcsh test1# `rctl` has no knowledge of "test2": freebsd# rctl -hu jail:test2|head cputime=0 datasize=0 stacksize=0 coredumpsize=0 memoryuse=0 memorylocked=0 maxproc=0 openfiles=0 vmemoryuse=0 pseudoterminals=0 `rctl` still believes it's "test1": freebsd# rctl -hu jail:test1|head cputime=1900 datasize=16M stacksize=0 coredumpsize=0 memoryuse=57M memorylocked=0 maxproc=10 openfiles=0 vmemoryuse=937M pseudoterminals=0 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From lacombar at gmail.com Thu Feb 16 18:00:31 2012 From: lacombar at gmail.com (Arnaud Lacombe) Date: Thu Feb 16 18:00:37 2012 Subject: misc/165208: Incorrect unit/description in `vm.vmtotal' output Message-ID: <201202161759.q1GHxSx3031293@red.freebsd.org> >Number: 165208 >Category: misc >Synopsis: Incorrect unit/description in `vm.vmtotal' output >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 16 18:00:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Arnaud Lacombe >Release: 8-STABLE >Organization: n/a >Environment: % uname -a FreeBSD shai 8.2-STABLE FreeBSD 8.2-STABLE #2: Mon May 9 14:29:02 EDT 2011 >Description: The description "Free Memory Pages" from the output of `vm.vmtotal' is clearly wrong: % sysctl vm.vmtotal vm.vmtotal: System wide totals computed every five seconds: (values in kilobytes) =============================================== Processes: (RUNQ: 1 Disk Wait: 0 Page Wait: 0 Sleep: 147) Virtual Memory: (Total: 1075965600K, Active 2091112K) Real Memory: (Total: 199976K Active 122716K) Shared Virtual Memory: (Total: 63564K Active: 28088K) Shared Real Memory: (Total: 15200K Active: 11620K) Free Memory Pages: 507564K While the machine only really has 4G of memory, that's only at most 1 million pages. There is absolutely *no way* for this machine to have 519745536 free memory pages. >How-To-Repeat: run `sysctl vm.vmtotal', read output, think about what is written. >Fix: s/ Pages//. and break the ABI for all the people parsing sysctl(8) output. >Release-Note: >Audit-Trail: >Unformatted: From wgh at torlan.ru Thu Feb 16 19:20:07 2012 From: wgh at torlan.ru (Maxim WGH) Date: Thu Feb 16 19:20:14 2012 Subject: kern/165210: SCTP sockets don't bind on interfaces created by netgraph Message-ID: <201202161918.q1GJIUGi076734@red.freebsd.org> >Number: 165210 >Category: kern >Synopsis: SCTP sockets don't bind on interfaces created by netgraph >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 16 19:20:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Maxim "WGH" >Release: 8.1-RELEASE-p1 >Organization: >Environment: FreeBSD torlan 8.1-RELEASE-p1 FreeBSD 8.1-RELEASE-p1 #8: Sat Oct 30 23:25:06 MSD 2010 wgh@torlan:/usr/obj/usr/src/sys/TORLAN i386 >Description: I was experimenting with SCTP, and I noticed I couldn't bind SCTP socket to interface ng0, which was created by mpd5 (net/mpd5) daemon. bind() system calls fails with errno 49 "Can't assign requested address". It does bind on any other address in the system, including 0.0.0.0 (INADDR_ANY). The latter still doesn't allow incoming SCTP connections on that address though (although instead of "connection refused" I get hanging connect()). I've looked through both netgraph and sctp source code. netgraph creates IFT_PROPVIRTUAL interfaces, and there is a function in sctp called sctp_is_desired_interface_type. The latter doesn't think that IFT_PROPVIRTUAL is something desirable. I believe it's a bug, because netgraph is a generic framework, and there is no reason to not allow creation of SCTP sockets on its interfaces. For instance, I use L2TP provided by mpd5 as main internet connection. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From eadler at FreeBSD.org Thu Feb 16 20:02:55 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Thu Feb 16 20:03:01 2012 Subject: misc/165208: Incorrect unit/description in `vm.vmtotal' output Message-ID: <201202162002.q1GK2s4q030116@freefall.freebsd.org> Synopsis: Incorrect unit/description in `vm.vmtotal' output Responsible-Changed-From-To: freebsd-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Thu Feb 16 20:02:54 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165208 From jake at mischler.com Thu Feb 16 20:10:10 2012 From: jake at mischler.com (Dave Mischler) Date: Thu Feb 16 20:10:17 2012 Subject: kern/165212: No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) Message-ID: <201202162000.q1GK0gV7049091@red.freebsd.org> >Number: 165212 >Category: kern >Synopsis: No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 16 20:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dave Mischler >Release: 10-CURRENT >Organization: >Environment: FreeBSD halfpint.mischler.com 10.0-CURRENT FreeBSD 10.0-CURRENT #3: Wed Feb 15 16:38:41 EST 2012 mischler@rundlet.mischler.com:/usr/obj/usr/src/sys/HALFPINT i386 >Description: Nothing is ever received by ath0 on an Acer Aspire One A0751h-1279 under 8.2, 9.0-RELEASE, 9.0-STABLE or 10.0-CURRENT. It works on Ubuntu-10.10 (only version I tried). I also tried an AR5B95 card, and had the same results (works on Ubuntu, not on FreeBSD). I had the PCI mapping problem under 8.2 (see http://lists.freebsd.org/pipermail/freebsd-mobile/2011-June/012364.html for more info). I discussed this matter on freebsd-wireless starting with http://docs.freebsd.org/cgi/getmsg.cgi?fetch=87215+0+archive/2012/freebsd-wireless/20120212.freebsd-wireless Here is what shows up in dmesg.today for ath0 with the AR5BHB63 installed: ath0: mem 0xd0000000-0xd000ffff irq 17 at device 0.0 on pci3 ath0: AR2425 mac 14.2 RF5424 phy 7.0 and this is what shows up from pciconf -lv: ath0@pci0:3:0:0: class=0x020000 card=0xe00d105b chip=0x001c168c rev=0x01 hdr=0x00 vendor = 'Atheros Communications Inc.' device = 'AR242x / AR542x Wireless Network Adapter (PCI-Express)' class = network subclass = ethernet I boot the system and run the following commands and never get any responses: ifconfig wlan0 create wlandev ath0 ifconfig wlan0 up scan ifconfig wlan0 list scan >How-To-Repeat: Try to connect to a WiFi network with an Acer Aspire One A0751h-1279 netbook running FreeBSD 8.2 or later. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From adam.twardowski at gmail.com Thu Feb 16 21:30:13 2012 From: adam.twardowski at gmail.com (Adam Twardowski) Date: Thu Feb 16 21:30:19 2012 Subject: kern/165214: Kernel panic in ieee80211_output.c:2505 Message-ID: <201202162121.q1GLLODr094841@red.freebsd.org> >Number: 165214 >Category: kern >Synopsis: Kernel panic in ieee80211_output.c:2505 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 16 21:30:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Adam Twardowski >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD p4 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Mon Feb 13 03:19:58 EST 2012 root@p4:/usr/obj/usr/src/sys/ROUTETABLES i386 >Description: [513][root.p4: ROUTETABLES]$ # kgdb kernel.debug /var/crash/vmcore.2 GNU gdb 6.1.1 [FreeBSD] Copyright 2004 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-marcel-freebsd"... Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x20:0xc0746b9d stack pointer = 0x28:0xd85acbdc frame pointer = 0x28:0xd85acbf4 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 = 15 (usbus4) trap number = 12 panic: page fault cpuid = 0 KDB: stack backtrace: #0 0xc069421a at kdb_backtrace+0x43 #1 0xc0663652 at panic+0x114 #2 0xc08fbcb4 at trap_fatal+0x320 #3 0xc08fbd49 at trap_pfault+0x89 #4 0xc08fca67 at trap+0x437 #5 0xc08e6e7c at calltrap+0x6 #6 0xc072b61a at ieee80211_process_callback+0x46 #7 0xc0574743 at urtw_bulk_tx_callback+0x96 #8 0xc056f8ab at usbd_callback_wrapper+0x70c #9 0xc056bda4 at usb_command_wrapper+0xc5 #10 0xc056e7ce at usb_callback_proc+0x100 #11 0xc0568c8e at usb_process+0xf5 #12 0xc06375db at fork_exit+0x91 #13 0xc08e6ef4 at fork_trampoline+0x8 Uptime: 3h44m34s Physical memory: 1006 MB Dumping 209 MB: 194 178 162 146 130 114 98 82 66 50 34 18 2 Reading symbols from /boot/kernel/geom_mirror.ko...Reading symbols from /boot/kernel/geom_mirror.ko.symbols...done. done. Loaded symbols for /boot/kernel/geom_mirror.ko #0 doadump (textdump=1) at pcpu.h:244 244 __asm("movl %%fs:0,%0" : "=r" (td)); (kgdb) list *0xc0746b9d 0xc0746b9d is in ieee80211_tx_mgt_cb (/usr/src/sys/net80211/ieee80211_output.c:2505). 2500 } 2501 2502 static void 2503 ieee80211_tx_mgt_cb(struct ieee80211_node *ni, void *arg, int status) 2504 { 2505 struct ieee80211vap *vap = ni->ni_vap; 2506 enum ieee80211_state ostate = (enum ieee80211_state) arg; 2507 2508 /* 2509 * Frame transmit completed; arrange timer callback. If (kgdb) backtrace #0 doadump (textdump=1) at pcpu.h:244 #1 0xc06633fe in kern_reboot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:442 #2 0xc066368f in panic (fmt=Variable "fmt" is not available. ) at /usr/src/sys/kern/kern_shutdown.c:607 #3 0xc08fbcb4 in trap_fatal (frame=0xd85acb9c, eva=0) at /usr/src/sys/i386/i386/trap.c:975 #4 0xc08fbd49 in trap_pfault (frame=0xd85acb9c, usermode=0, eva=0) at /usr/src/sys/i386/i386/trap.c:839 #5 0xc08fca67 in trap (frame=0xd85acb9c) at /usr/src/sys/i386/i386/trap.c:558 #6 0xc08e6e7c in calltrap () at /usr/src/sys/i386/i386/exception.s:168 #7 0xc0746b9d in ieee80211_tx_mgt_cb (ni=0x0, arg=0x2, status=0) at /usr/src/sys/net80211/ieee80211_output.c:2504 #8 0xc072b61a in ieee80211_process_callback (ni=0x0, m=0xc818f100, status=0) at /usr/src/sys/net80211/ieee80211_freebsd.c:478 #9 0xc0574743 in urtw_bulk_tx_callback (xfer=0xc3cc9168, error=USB_ERR_NORMAL_COMPLETION) at /usr/src/sys/dev/usb/wlan/if_urtw.c:4176 #10 0xc056f8ab in usbd_callback_wrapper (pq=0xc3cc9030) at /usr/src/sys/dev/usb/usb_transfer.c:2231 #11 0xc056bda4 in usb_command_wrapper (pq=0xc3cc9030, xfer=0x0) at /usr/src/sys/dev/usb/usb_transfer.c:2860 #12 0xc056e7ce in usb_callback_proc (_pm=0xc3cc9044) at /usr/src/sys/dev/usb/usb_transfer.c:2096 #13 0xc0568c8e in usb_process (arg=0xc3a96ccc) at /usr/src/sys/dev/usb/usb_process.c:170 #14 0xc06375db in fork_exit (callout=0xc0568b99 , arg=0xc3a96ccc, frame=0xd85acd28) at /usr/src/sys/kern/kern_fork.c:995 #15 0xc08e6ef4 in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:275 (kgdb) >How-To-Repeat: Not sure, seems to happen randomly. I did notice that that it happened about 15 min after the wireless link went down. The adapter is an Alfa AWUS036H. urtw0: on usbus4 urtw0: unknown RTL8187L type: 0x8000000 Feb 16 05:51:17 p4 kernel: wlan0: link state changed to DOWN Feb 16 06:06:36 p4 syslogd: kernel boot file is /boot/kernel/kernel Feb 16 06:06:37 p4 kernel: Copyright (c) 1992-2012 The FreeBSD Project. Feb 16 06:06:37 p4 kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From adrian at FreeBSD.org Fri Feb 17 03:00:22 2012 From: adrian at FreeBSD.org (Adrian Chadd) Date: Fri Feb 17 03:00:29 2012 Subject: kern/165220: [ath] "ath_rx_tasklet: sc_inreset_cnt > 0; skipping" messages Message-ID: <201202170250.q1H2oB7u022658@red.freebsd.org> >Number: 165220 >Category: kern >Synopsis: [ath] "ath_rx_tasklet: sc_inreset_cnt > 0; skipping" messages >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 17 03:00:21 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Adrian Chadd >Release: 9.0-RELEASE i386, with -HEAD net80211/ath >Organization: >Environment: >Description: There are far too many of the following messages showing up: [100191] ath0: ath_rx_tasklet: sc_inreset_cnt > 0; skipping [100191] ath0: ath_rx_tasklet: sc_inreset_cnt > 0; skipping [100191] ath0: ath_rx_tasklet: sc_inreset_cnt > 0; skipping [100191] ath0: ath_rx_tasklet: sc_inreset_cnt > 0; skipping [100191] ath0: ath_start: sc_inreset_cnt > 0; bailing [100191] ath0: ath_rx_tasklet: sc_inreset_cnt > 0; skipping [100191] ath0: ath_rx_tasklet: sc_inreset_cnt > 0; skipping [100191] ath0: ath_rx_tasklet: sc_inreset_cnt > 0; skipping . What's happening is that a bunch of TX or RX completion is occuring at the same time as a channel change/reset. The previous code just had these run concurrently, causing all kinds of random and weird behaviour. I introduced some debugging in FreeBSD-HEAD that tries to (a) stop these and (b) log when they occur, so I could actually try finding/figuring out what's going on. This is one of these cases. :-) >How-To-Repeat: Just run ath :-) >Fix: The problem is that although interrupts are disabled in reset, the ath taskqueue may currently be running and this means existing TX completion and RX will occur. I think the fix is to do this: * grab the PCU lock * disable interrupts * grab the reset counter * stop the ath taskqueue and wait for pending tasks to complete . but is this still racy? A patch I've done to do the above in ath_reset() and ath_chan_change() reduces the instances of this quite heavily but it still occasionally turns up. >Release-Note: >Audit-Trail: >Unformatted: From dfilter at FreeBSD.ORG Fri Feb 17 03:30:15 2012 From: dfilter at FreeBSD.ORG (dfilter service) Date: Fri Feb 17 03:30:22 2012 Subject: kern/165220: commit references a PR Message-ID: <201202170330.q1H3UEd3039520@freefall.freebsd.org> The following reply was made to PR kern/165220; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/165220: commit references a PR Date: Fri, 17 Feb 2012 03:23:16 +0000 (UTC) Author: adrian Date: Fri Feb 17 03:23:01 2012 New Revision: 231854 URL: http://svn.freebsd.org/changeset/base/231854 Log: Begin breaking out the txrx stop code into a locked and unlocked variant. PR: kern/165220 Modified: head/sys/dev/ath/if_ath.c Modified: head/sys/dev/ath/if_ath.c ============================================================================== --- head/sys/dev/ath/if_ath.c Fri Feb 17 03:01:29 2012 (r231853) +++ head/sys/dev/ath/if_ath.c Fri Feb 17 03:23:01 2012 (r231854) @@ -1903,15 +1903,16 @@ ath_stop_locked(struct ifnet *ifp) #define MAX_TXRX_ITERATIONS 1000 static void -ath_txrx_stop(struct ath_softc *sc) +ath_txrx_stop_locked(struct ath_softc *sc) { int i = MAX_TXRX_ITERATIONS; ATH_UNLOCK_ASSERT(sc); + ATH_PCU_LOCK_ASSERT(sc); + /* Stop any new TX/RX from occuring */ taskqueue_block(sc->sc_tq); - ATH_PCU_LOCK(sc); /* * Sleep until all the pending operations have completed. * @@ -1925,7 +1926,6 @@ ath_txrx_stop(struct ath_softc *sc) msleep(sc, &sc->sc_pcu_mtx, 0, "ath_txrx_stop", 1); i--; } - ATH_PCU_UNLOCK(sc); if (i <= 0) device_printf(sc->sc_dev, @@ -1935,6 +1935,17 @@ ath_txrx_stop(struct ath_softc *sc) #undef MAX_TXRX_ITERATIONS static void +ath_txrx_stop(struct ath_softc *sc) +{ + ATH_UNLOCK_ASSERT(sc); + ATH_PCU_UNLOCK_ASSERT(sc); + + ATH_PCU_LOCK(sc); + ath_txrx_stop_locked(sc); + ATH_PCU_UNLOCK(sc); +} + +static void ath_txrx_start(struct ath_softc *sc) { _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From dfilter at FreeBSD.ORG Fri Feb 17 03:50:11 2012 From: dfilter at FreeBSD.ORG (dfilter service) Date: Fri Feb 17 03:50:18 2012 Subject: kern/165220: commit references a PR Message-ID: <201202170350.q1H3oBKj059019@freefall.freebsd.org> The following reply was made to PR kern/165220; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/165220: commit references a PR Date: Fri, 17 Feb 2012 03:46:48 +0000 (UTC) Author: adrian Date: Fri Feb 17 03:46:38 2012 New Revision: 231857 URL: http://svn.freebsd.org/changeset/base/231857 Log: Enforce some consistent ordering and handling of interrupt disable/enable with RX/TX halting. * Always disable/enable interrupts during a channel change, just to simply things. * Ensure that the ath taskqueue has completed and is paused before continuing. This dramatically reduces the instances of overlapping RX and reset conditions. PR: kern/165220 Modified: head/sys/dev/ath/if_ath.c Modified: head/sys/dev/ath/if_ath.c ============================================================================== --- head/sys/dev/ath/if_ath.c Fri Feb 17 03:39:06 2012 (r231856) +++ head/sys/dev/ath/if_ath.c Fri Feb 17 03:46:38 2012 (r231857) @@ -1934,6 +1934,7 @@ ath_txrx_stop_locked(struct ath_softc *s } #undef MAX_TXRX_ITERATIONS +#if 0 static void ath_txrx_stop(struct ath_softc *sc) { @@ -1944,6 +1945,7 @@ ath_txrx_stop(struct ath_softc *sc) ath_txrx_stop_locked(sc); ATH_PCU_UNLOCK(sc); } +#endif static void ath_txrx_start(struct ath_softc *sc) @@ -2049,11 +2051,12 @@ ath_reset(struct ifnet *ifp, ATH_RESET_T ATH_UNLOCK_ASSERT(sc); ATH_PCU_LOCK(sc); + ath_hal_intrset(ah, 0); /* disable interrupts */ + ath_txrx_stop_locked(sc); /* Ensure TX/RX is stopped */ if (ath_reset_grablock(sc, 1) == 0) { device_printf(sc->sc_dev, "%s: concurrent reset! Danger!\n", __func__); } - ath_hal_intrset(ah, 0); /* disable interrupts */ ATH_PCU_UNLOCK(sc); /* @@ -2061,7 +2064,6 @@ ath_reset(struct ifnet *ifp, ATH_RESET_T * and block future ones from occuring. This needs to be * done before the TX queue is drained. */ - ath_txrx_stop(sc); ath_draintxq(sc, reset_type); /* stop xmit side */ /* @@ -5383,21 +5385,16 @@ ath_chan_set(struct ath_softc *sc, struc struct ieee80211com *ic = ifp->if_l2com; struct ath_hal *ah = sc->sc_ah; int ret = 0; - int dointr = 0; /* Treat this as an interface reset */ ATH_PCU_LOCK(sc); + ath_hal_intrset(ah, 0); /* Stop new RX/TX completion */ + ath_txrx_stop_locked(sc); /* Stop pending RX/TX completion */ if (ath_reset_grablock(sc, 1) == 0) { device_printf(sc->sc_dev, "%s: concurrent reset! Danger!\n", __func__); } - if (chan != sc->sc_curchan) { - dointr = 1; - /* XXX only do this if inreset_cnt is 1? */ - ath_hal_intrset(ah, 0); - } ATH_PCU_UNLOCK(sc); - ath_txrx_stop(sc); DPRINTF(sc, ATH_DEBUG_RESET, "%s: %u (%u MHz, flags 0x%x)\n", __func__, ieee80211_chan2ieee(ic, chan), @@ -5466,10 +5463,10 @@ ath_chan_set(struct ath_softc *sc, struc ath_beacon_config(sc, NULL); } -#if 0 /* * Re-enable interrupts. */ +#if 0 ath_hal_intrset(ah, sc->sc_imask); #endif } @@ -5478,8 +5475,7 @@ finish: ATH_PCU_LOCK(sc); sc->sc_inreset_cnt--; /* XXX only do this if sc_inreset_cnt == 0? */ - if (dointr) - ath_hal_intrset(ah, sc->sc_imask); + ath_hal_intrset(ah, sc->sc_imask); ATH_PCU_UNLOCK(sc); /* XXX do this inside of IF_LOCK? */ _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From linimon at FreeBSD.org Fri Feb 17 04:20:48 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 17 04:20:54 2012 Subject: kern/164258: [mfi] mfi does not work with PERC5/i in AMD M350 motherboard Message-ID: <201202170420.q1H4Kleh088570@freefall.freebsd.org> Synopsis: [mfi] mfi does not work with PERC5/i in AMD M350 motherboard State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Feb 17 04:20:27 UTC 2012 State-Changed-Why: Apparently fixed in -stable. http://www.freebsd.org/cgi/query-pr.cgi?pr=164258 From linimon at FreeBSD.org Fri Feb 17 04:23:24 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 17 04:23:30 2012 Subject: kern/164839: upgrade from 7-STABLE to 8-STABLE causes wifi / wlan failure Message-ID: <201202170423.q1H4NN0P094560@freefall.freebsd.org> Synopsis: upgrade from 7-STABLE to 8-STABLE causes wifi / wlan failure State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Feb 17 04:23:14 UTC 2012 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=164839 From linimon at FreeBSD.org Fri Feb 17 04:26:27 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 17 04:26:43 2012 Subject: kern/164901: [regression] [patch] [lagg] igb/lagg poor traffic distribution Message-ID: <201202170426.q1H4QQBt094671@freefall.freebsd.org> Synopsis: [regression] [patch] [lagg] igb/lagg poor traffic distribution Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 17 04:26:12 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=164901 From linimon at FreeBSD.org Fri Feb 17 04:39:17 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 17 04:39:28 2012 Subject: kern/165032: [mii] [patch] brgphy(4) is not used for BCM57780 Message-ID: <201202170439.q1H4dHcR005684@freefall.freebsd.org> Old Synopsis: brgphy(4) is not used for BCM57780 New Synopsis: [mii] [patch] brgphy(4) is not used for BCM57780 Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 17 04:38:52 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165032 From linimon at FreeBSD.org Fri Feb 17 06:53:51 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 17 06:53:56 2012 Subject: kern/165174: [patch] [tap] allow tap(4) to keep its address on close Message-ID: <201202170653.q1H6rogk038114@freefall.freebsd.org> Synopsis: [patch] [tap] allow tap(4) to keep its address on close Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 17 06:53:28 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165174 From adrian at FreeBSD.org Fri Feb 17 07:23:45 2012 From: adrian at FreeBSD.org (adrian@FreeBSD.org) Date: Fri Feb 17 07:23:51 2012 Subject: kern/165220: [ath] "ath_rx_tasklet: sc_inreset_cnt > 0; skipping" messages Message-ID: <201202170723.q1H7NiHd066547@freefall.freebsd.org> Synopsis: [ath] "ath_rx_tasklet: sc_inreset_cnt > 0; skipping" messages Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Fri Feb 17 07:23:32 UTC 2012 Responsible-Changed-Why: Change http://www.freebsd.org/cgi/query-pr.cgi?pr=165220 From iordan at cdf.toronto.edu Fri Feb 17 16:03:57 2012 From: iordan at cdf.toronto.edu (Iordan Iordanov) Date: Fri Feb 17 16:04:32 2012 Subject: deadlock with both ports on x520-t2 brought up Message-ID: <4F3E7A6B.7060202@cdf.toronto.edu> Hello, This is more of a question about how to provide you with more information than a proper bug-report. What we've found is that with FreeBSD 9.0, when we bring up both ports of a 10GbaseT Intel x520-t2 adapter, and we start pushing data through them with (for example) iperf, processes start to deadlock and become un-killable. So far in our limited testing, bringing up only one port on the adapter does not seem to cause the same trouble. The interesting thing is that the same symptoms are repeated with Debian/KfreeBSD 6.0, which uses BSD kernel 8.1. Any ideas on how we can gather information for you? Has anybody experienced anything similar and can share information? Many thanks! Iordan Iordanov System Administrator, University of Toronto From jeremie at le-hen.org Fri Feb 17 18:00:32 2012 From: jeremie at le-hen.org (Jeremie Le Hen) Date: Fri Feb 17 18:00:39 2012 Subject: kern/154915: [libc] [patch] Force stdio output streams to line-buffered mode Message-ID: <201202171800.q1HI0VrW090362@freefall.freebsd.org> The following reply was made to PR kern/154915; it has been noted by GNATS. From: Jeremie Le Hen To: Oliver Fromme Cc: bug-followup@FreeBSD.org, jeremie@le-hen.org Subject: Re: kern/154915: [libc] [patch] Force stdio output streams to line-buffered mode Date: Fri, 17 Feb 2012 18:53:06 +0100 --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi Oliver, On Thu, Feb 16, 2012 at 02:49:50PM +0100, Oliver Fromme wrote: > I think introducing an environment variable for this purpose > is a bad hack. I would advise against this. > > Many tools already have options for unbuffered or line-buffered > output (for example cat -u), and there are also other ways to > circumvent such problems. > > For example, the problem quoted in the PR can be solved like this, > using the -u option of cat: > > $ iostat -x 1 | cat -un | grep ad1 This doesn't help if you enclose a command that doesn't have such an option between pipes. For instance: $ iostat -x 1 | cat -u | tr MG mg | cat -u | grep -n ad1 > or avoiding cat completely (also might be more efficient, > saving one process and one pipe, though I haven't benchmarked > this): > > $ iostat -x 1 | awk '{n+=1} /ad1/{print n, $0}' Right we can almost always replace a pipeline of commands with an awk (or whatever) script. But besides being sometimes inconvenient, saving a process or pipe does not always leads to performance benefits. The very example you took is a good illustration of my point: I sometimes have to dig into big log files and awk is naturally very powerful. Yet I noticed a *huge* performance gap between (gnu) grep and awk: $ time grep -n 'include.*stdio' 'FreeNode/##c.log' > /dev/null 1.10 real 0.97 user 0.12 sys $ time awk '{n+=1} /include.*stdio/{print n, $0}' 'FreeNode/##c.log' > /dev/null 3.74 real 3.63 user 0.08 sys > For certain other cases, I have the following alias in my ~/.zshrc > that simulates a TTY environment for a tool so it is forced to > use line-buffered output: > > alias intty='script -qt0 /dev/null' > > So I can write: > > $ intty sometool -args | grep ... > > However, the intty alias only works when it is the first command > in a pipeline (this is a limitation of the "script" command). I wasn't aware of that. Out of curiosity, I tried the following command in order to test this: $ vmstat 1 | script -qt 0 /dev/null grep . | cat And each line in output is printed twice. I didn't have time to investigate though. > In the above example, the cat command is not the first, but a > subshell can be used to work around this: > > $ intty sh -c 'iostat -x 1 | cat -n' | grep ad1 > > (It should work with any shell that supports aliases, not just > zsh, of course.) > > I suggest closing this PR. Well, an evil hack VS an even eviler workaround which is not as powerful IMHO ;). In fact, I made a far more better of version of my patch which doesn't modify libc. Instead it introduces a new shared library (libstdbuf.so) which is still controlled by environment variables, and an helper command (stdbuf(1)) is provided to do the environment-fu (including LD_PRELOAD) in your stead. Unfortuntately I forgot to update it in the PR database. You will find it attached to this email, I think the bug tracker will show it in the PR afterward. Can you tell me if it better fits your expectations in matter of "low-hackiness"? The standard code path is not modified at all. I would be glad if we could proceed with this, this is a feature I often miss. Thanks a lot for taking time to answer. Regards, -- Jeremie Le Hen Men are born free and equal. Later on, they're on their own. Jean Yanne --n8g4imXOkfNTN/H1 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="stdbuf.diff" diff -urNp src.HEAD_20111506/lib/libc/stdio/setbuf.3 src/lib/libc/stdio/setbuf.3 --- src.HEAD_20111506/lib/libc/stdio/setbuf.3 2007-01-09 01:28:07.000000000 +0100 +++ src/lib/libc/stdio/setbuf.3 2011-08-04 19:00:49.000000000 +0200 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)setbuf.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD: src/lib/libc/stdio/setbuf.3,v 1.17 2007/01/09 00:28:07 imp Exp $ +.\" $FreeBSD: src/lib/libc/stdio/setbuf.3,v 1.17.10.1 2009/08/03 08:13:06 kensmith Exp $ .\" .Dd June 4, 1993 .Dt SETBUF 3 @@ -83,6 +83,9 @@ normally does) it is line buffered. The standard error stream .Dv stderr is always unbuffered. +Note that these defaults maybe be altered using the +.Xr stdbuf 1 +utility. .Pp The .Fn setvbuf @@ -177,6 +180,7 @@ function returns what the equivalent .Fn setvbuf would have returned. .Sh SEE ALSO +.Xr stdbuf 1 , .Xr fclose 3 , .Xr fopen 3 , .Xr fread 3 , diff -urNp src.HEAD_20111506/lib/libstdbuf/Makefile src/lib/libstdbuf/Makefile --- src.HEAD_20111506/lib/libstdbuf/Makefile 1970-01-01 01:00:00.000000000 +0100 +++ src/lib/libstdbuf/Makefile 2011-08-04 18:49:59.000000000 +0200 @@ -0,0 +1,15 @@ +# $FreeBSD: src/lib/libftpio/Makefile,v 1.17.2.1 2009/08/03 08:13:06 kensmith Exp $ + +.include + +LIB= stdbuf +SRCS= stdbuf.c +SHLIB_MAJOR= 1 +MAN= libstdbuf.3 + +CFLAGS+= -I${.CURDIR} +LDADD= -lutil + +WARNS?= 6 + +.include diff -urNp src.HEAD_20111506/lib/libstdbuf/libstdbuf.3 src/lib/libstdbuf/libstdbuf.3 --- src.HEAD_20111506/lib/libstdbuf/libstdbuf.3 1970-01-01 01:00:00.000000000 +0100 +++ src/lib/libstdbuf/libstdbuf.3 2011-08-04 18:47:04.000000000 +0200 @@ -0,0 +1,111 @@ +.\" Copyright (c) 2011 Jeremie Le Hen +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" $FreeBSD$ +.\" +.Dd August 4, 2011 +.Dt LIBSTDBUF 3 +.Os +.Sh NAME +.Nm libstdbuf +.Nd preloaded library to change standard streams initial buffering +.Sh DESCRIPTION +The +.Nm +library is meant to be preloaded with the +.Ev LD_PRELOAD +environment variable to as to change the initial buffering +of standard input, standard output and standard error streams. +.Pp +Although you may load and configure this library manually, +an utility, +.Xr stdbuf 1 , +can be used to run a command with the appropriate environment variables. +.Sh ENVIRONMENT +Each stream can be configured indepentently through the following +environment variables (values are defined below): +.Bl -tag -width size -offset indent +.It Ev STDBUF_0 +Initial buffering definition for the standard input stream +.It Ev STDBUF_1 +Initial buffering definition for the standard output stream +.It Ev STDBUF_2 +Initial buffering definition for the standard error stream +.It Ev _STDBUF_I +GNU-compatible variable for +.Ev STDBUF_0 +.It Ev _STDBUF_O +GNU-compatible variable equivalent to +.Ev STDBUF_1 +.It Ev _STDBUF_E +GNU-compatible variable equivalent to +.Ev STDBUF_2 +.El +.Pp +Each variable may take one of the following values: +.Bl -tag -width size -offset indent +.It Qq 0 +unbuffered +.It Qq L +line buffered +.It Qq B +fully buffered with the default buffer size +.It Ar size +fully buffered with a buffer of +.Ar size +bytes +.El +.Sh EXAMPLE +In the following example, the stdout stream of the +.Xr awk 1 +command +will be fully buffered by default because it does not refer +to a terminal. +.Nm +is used to force it to be line-buffered so +.Xr vmstat 8 Ns 's +output will not stall until the full buffer fills. +.Bd -literal -offset indent +# vmstat 1 | LD_PRELOAD=/usr/lib/libstdbuf.so \\ + STDBUF_1=L awk '$2 > 1 || $3 > 1' | cat -n +.Ed +.Pp +See also the manpage of +.Xr stdbuf 1 +for a simpler way to do this. +.Sh HISTORY +The +.Nm +library first appeared in +.Fx 9.0 . +.Sh AUTHORS +.An -nosplit +The original idea of the +.Nm +command comes from +.An Padraig Brady +who implemented it in the GNU coreutils. +.An Jeremie Le Hen +implemented it on +.Fx . diff -urNp src.HEAD_20111506/lib/libstdbuf/stdbuf.c src/lib/libstdbuf/stdbuf.c --- src.HEAD_20111506/lib/libstdbuf/stdbuf.c 1970-01-01 01:00:00.000000000 +0100 +++ src/lib/libstdbuf/stdbuf.c 2011-08-04 18:17:07.000000000 +0200 @@ -0,0 +1,105 @@ +/*- + * Copyright (c) 2011 Jeremie Le Hen + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + */ + +#include +#include +#include +#include +#include +#include +#include + +static const char * +stream_name(FILE *s) +{ + if (s == stdin) + return "stdin"; + if (s == stdout) + return "stdout"; + if (s == stderr) + return "stderr"; + /* This should not happen. */ + abort(); +} + +static void +change_buf(FILE *s, const char *bufmode) +{ + size_t bufsiz; + uint64_t sizearg; + int mode; + + bufsiz = 0; + if (bufmode[0] == '0' && bufmode[1] == '\0') + mode = _IONBF; + else if (bufmode[0] == 'L' && bufmode[1] == '\0') + mode = _IOLBF; + else if (bufmode[0] == 'B' && bufmode[1] == '\0') { + mode = _IOFBF; + bufsiz = 0; + } else { + errno = 0; + if (expand_number(bufmode, &sizearg) == -1) { + warn("Wrong buffer mode '%s' for %s", bufmode, + stream_name(s)); + return; + } + if (sizearg > SIZE_T_MAX) { + warn("Buffer size too big for %s", stream_name(s)); + return; + } + mode = _IOFBF; + bufsiz = (size_t)sizearg; + } + if (setvbuf(s, NULL, mode, bufsiz) != 0) + warn("Cannot set buffer mode '%s' for %s", bufmode, + stream_name(s)); +} + +__attribute__ ((constructor)) static void +stdbuf(void) +{ + char *i_mode, *o_mode, *e_mode; + + i_mode = getenv("STDBUF_0"); + if (i_mode == NULL) + i_mode = getenv("_STDBUF_I"); + o_mode = getenv("STDBUF_1"); + if (o_mode == NULL) + o_mode = getenv("_STDBUF_O"); + e_mode = getenv("STDBUF_2"); + if (e_mode == NULL) + e_mode = getenv("_STDBUF_E"); + + if (e_mode) + change_buf(stderr, e_mode); + if (i_mode) + change_buf(stdin, i_mode); + if (o_mode) + change_buf(stdout, o_mode); +} diff -urNp src.HEAD_20111506/usr.bin/stdbuf/Makefile src/usr.bin/stdbuf/Makefile --- src.HEAD_20111506/usr.bin/stdbuf/Makefile 1970-01-01 01:00:00.000000000 +0100 +++ src/usr.bin/stdbuf/Makefile 2011-08-02 19:16:30.000000000 +0200 @@ -0,0 +1,8 @@ +# $Id$ + +PROG= stdbuf +SRCS= stdbuf.c + +WARNS?= 6 + +.include Files src.HEAD_20111506/usr.bin/stdbuf/sh.core and src/usr.bin/stdbuf/sh.core differ diff -urNp src.HEAD_20111506/usr.bin/stdbuf/stdbuf.1 src/usr.bin/stdbuf/stdbuf.1 --- src.HEAD_20111506/usr.bin/stdbuf/stdbuf.1 1970-01-01 01:00:00.000000000 +0100 +++ src/usr.bin/stdbuf/stdbuf.1 2011-08-04 18:46:35.000000000 +0200 @@ -0,0 +1,124 @@ +.\" Copyright (C) 2011 Jeremie Le Hen +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code and documentation must retain the above +.\" copyright notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" 3. All advertising materials mentioning features or use of this software +.\" must display the following acknowledgement: +.\" This product includes software developed or owned by Caldera +.\" International, Inc. +.\" 4. Neither the name of Caldera International, Inc. nor the names of other +.\" contributors may be used to endorse or promote products derived from +.\" this software without specific prior written permission. +.\" +.\" USE OF THE SOFTWARE PROVIDED FOR UNDER THIS LICENSE BY CALDERA +.\" INTERNATIONAL, INC. AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR +.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +.\" IN NO EVENT SHALL CALDERA INTERNATIONAL, INC. BE LIABLE FOR ANY DIRECT, +.\" INDIRECT INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +.\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +.\" POSSIBILITY OF SUCH DAMAGE. +.\" +.\" $FreeBSD: src/usr.bin/dc/dc.1,v 1.2 2010/01/22 23:50:46 delphij Exp $ +.\" +.Dd August 4, 2011 +.Dt STDBUF 1 +.Os +.Sh NAME +.Nm stdbuf +.Nd change standard streams initial buffering +.Sh SYNOPSIS +.Nm +.Op Fl e Ar bufdef +.Op Fl i Ar bufdef +.Op Fl o Ar bufdef +.Op Ar command Op ... +.Sh DESCRIPTION +.Nm +is used to change the initial buffering of standard input, +standard output and/or standard error streams for +.Ar command . +It relies on +.Xr libstdbuf 3 +which is loaded and configured by +.Nm +through environment variables. +.Pp +The options are as follows: +.Bl -tag -width Ds +.It Fl e Ar bufdef +Set initial buffering of the standard error stream for +.Ar command +as defined by +.Ar bufdef +.Pq see Sx BUFFER DEFINITION . +.It Fl i Ar bufdef +Set initial buffering of the standard input stream for +.Ar command +as defined by +.Ar bufdef +.Pq see Sx BUFFER DEFINITION . +.It Fl o Ar bufdef +Set initial buffering of the standard output stream for +.Ar command +as defined by +.Ar bufdef +.Pq see Sx BUFFER DEFINITION . +.El +.Sh BUFFER DEFINITION +Buffer definition is the same as in +.Xr libstdbuf 3 : +.Bl -tag -width size -offset indent +.It Qq 0 +unbuffered +.It Qq L +line buffered +.It Qq B +fully buffered with the default buffer size +.It Ar size +fully buffered with a buffer of +.Ar size +bytes +.El +.Sh EXAMPLES +In the following example, the stdout stream of the +.Xr awk 1 +command +will be fully buffered by default because it does not refer +to a terminal. +.Nm +is used to force it to be line-buffered so +.Xr vmstat 8 Ns 's +output will not stall until the full buffer fills. +.Bd -literal -offset indent +# vmstat 1 | stdbuf -o L awk '$2 > 1 || $3 > 1' | cat -n +.Ed +.Sh SEE ALSO +.Xr libstdbuf 3 , +.Xr setvbuf 3 +.Sh HISTORY +The +.Nm +utility first appeared in +.Fx 9.0 . +.Sh AUTHORS +.An -nosplit +The original idea of the +.Nm +command comes from +.An Padraig Brady +who implemented it in the GNU coreutils. +.An Jeremie Le Hen +implemented it on +.Fx . diff -urNp src.HEAD_20111506/usr.bin/stdbuf/stdbuf.c src/usr.bin/stdbuf/stdbuf.c --- src.HEAD_20111506/usr.bin/stdbuf/stdbuf.c 1970-01-01 01:00:00.000000000 +0100 +++ src/usr.bin/stdbuf/stdbuf.c 2011-08-04 18:17:50.000000000 +0200 @@ -0,0 +1,107 @@ +/*- + * Copyright (c) 2011 Jeremie Le Hen + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + */ + +#include +#include +#include +#include + +#define LIBSTDBUF "/usr/lib/libstdbuf.so" + +extern char *__progname; + +static void usage(int); + +static void +usage(int s) +{ + + fprintf(stderr, "Usage: %s [-e bufdef] [-i bufdef] [-o bufdef] " + " [args ...]\n", __progname); + fprintf(stderr, " ``bufdef'' being:\n"); + fprintf(stderr, " - \"0\" to disable buffering;\n"); + fprintf(stderr, " - \"L\" to set line-buffering;\n"); + fprintf(stderr, " - to set full-buffering.\n"); + exit(s); +} + +int +main(int argc, char *argv[]) +{ + int i; + char *ibuf = NULL, *obuf = NULL, *ebuf = NULL; + char *preload0, *preload1; + + while ((i = getopt(argc, argv, ":e:i:o:")) != -1) { + switch (i) { + case 'e': + ebuf = optarg; + break; + case 'i': + ibuf = optarg; + break; + case 'o': + obuf = optarg; + break; + case ':': + warnx("Missing argument for option -%c", optopt); + usage(1); + break; + case '?': + default: + warnx("Unknown option -%c", optopt); + usage(1); + break; + } + } + argc -= optind; + argv += optind; + + if (ibuf != NULL && setenv("STDBUF_0", ibuf, 1) == -1) + warn("Failed to set environment variable: %s=%s", + "STDBUF_0", ibuf); + if (obuf != NULL && setenv("STDBUF_1", obuf, 1) == -1) + warn("Failed to set environment variable: %s=%s", + "STDBUF_1", obuf); + if (ebuf != NULL && setenv("STDBUF_2", ebuf, 1) == -1) + warn("Failed to set environment variable: %s=%s", + "STDBUF_2", ebuf); + + preload0 = getenv("LD_PRELOAD"); + if (preload0 == NULL) + i = asprintf(&preload1, "LD_PRELOAD=" LIBSTDBUF); + else + i = asprintf(&preload1, "LD_PRELOAD=%s:%s", preload0, + LIBSTDBUF); + + if (i < 0 || putenv(preload1) == -1) + warn("Failed to set environment variable: %s", preload1); + + execvp(argv[0], argv); + err(2, "%s", argv[0]); +} --n8g4imXOkfNTN/H1-- From linimon at FreeBSD.org Fri Feb 17 18:23:34 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 17 18:23:40 2012 Subject: kern/165021: [ath] ath device timeout during scan/attach, if wlan_ccmp/wlan_tkip isn't loaded Message-ID: <201202171823.q1HINY90018128@freefall.freebsd.org> Synopsis: [ath] ath device timeout during scan/attach, if wlan_ccmp/wlan_tkip isn't loaded Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 17 18:23:14 UTC 2012 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=165021 From linimon at FreeBSD.org Fri Feb 17 18:32:26 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 17 18:32:38 2012 Subject: kern/165181: [igb] igb freezes after about 2 weeks of uptime Message-ID: <201202171832.q1HIWQmu028254@freefall.freebsd.org> Old Synopsis: IGB freezes after about 2 weeks of uptime New Synopsis: [igb] igb freezes after about 2 weeks of uptime Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 17 18:31:59 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165181 From robrob2626 at yahoo.com Fri Feb 17 20:10:14 2012 From: robrob2626 at yahoo.com (robert) Date: Fri Feb 17 20:10:20 2012 Subject: kern/165252: [pf] ken panics with VIMAGE and PF on FreeBSD 9.0 rel Message-ID: <201202172008.q1HK8OMm079964@red.freebsd.org> >Number: 165252 >Category: kern >Synopsis: [pf] ken panics with VIMAGE and PF on FreeBSD 9.0 rel >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 17 20:10:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: robert >Release: FreeBSD 9.0 Release >Organization: n/a >Environment: FreeBSD base.xxxxxxxxxx.com 9.0-RELEASE FreeBSD 9.0-RELEASE #2: Thu Feb 16 21:04:11 CET 2012 root@base.xxxxxxxxxx.com:/usr/obj/usr/src/sys/MYKERNEL amd64 >Description: I am getting constant kernel panics with VIMAGE and PF on FreeBSD 9-RELEASE with jails. I have tried diffrent PF configurations with VIMAGE + epair or VIMAGE + netgragh and still get kernel panics. The kernel panics stop as soon as I disable PF in rc.conf. I am attaching an example pic of said panics. http://i40.tinypic.com/2q00etz.jpg >How-To-Repeat: Example of setup PF + VIMAGE + epair. http://wiki.polymorf.fr/index.php/Howto:FreeBSD_jail_vnet Example of setup PF + VIMAGE + netgragh http://druidbsd.sourceforge.net/vimage.shtml >Fix: NONE >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Fri Feb 17 20:17:42 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 17 20:17:49 2012 Subject: kern/165252: [pf] [panic] kernel panics with VIMAGE and PF on FreeBSD 9.0 rel Message-ID: <201202172017.q1HKHgLk020657@freefall.freebsd.org> Old Synopsis: [pf] ken panics with VIMAGE and PF on FreeBSD 9.0 rel New Synopsis: [pf] [panic] kernel panics with VIMAGE and PF on FreeBSD 9.0 rel Responsible-Changed-From-To: freebsd-bugs->freebsd-pf Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 17 20:17:18 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165252 From linimon at FreeBSD.org Fri Feb 17 20:20:21 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 17 20:20:33 2012 Subject: kern/165087: [unionfs] lock violation in unionfs Message-ID: <201202172020.q1HKKKml021158@freefall.freebsd.org> Old Synopsis: lock violation in unionfs New Synopsis: [unionfs] lock violation in unionfs Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 17 20:19:43 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165087 From linimon at FreeBSD.org Fri Feb 17 20:25:47 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 17 20:25:53 2012 Subject: kern/165210: [sctp] SCTP sockets don't bind on interfaces created by netgraph Message-ID: <201202172025.q1HKPlj9029283@freefall.freebsd.org> Old Synopsis: SCTP sockets don't bind on interfaces created by netgraph New Synopsis: [sctp] SCTP sockets don't bind on interfaces created by netgraph Responsible-Changed-From-To: freebsd-bugs->rrs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 17 20:23:18 UTC 2012 Responsible-Changed-Why: Randall, are you still working on sctp? If not, just reassign the PR back to freebsd-net@. http://www.freebsd.org/cgi/query-pr.cgi?pr=165210 From linimon at FreeBSD.org Fri Feb 17 20:26:14 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 17 20:26:20 2012 Subject: kern/165214: [ieee80211] Kernel panic in ieee80211_output.c:2505 Message-ID: <201202172026.q1HKQD33029343@freefall.freebsd.org> Old Synopsis: Kernel panic in ieee80211_output.c:2505 New Synopsis: [ieee80211] Kernel panic in ieee80211_output.c:2505 Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 17 20:25:58 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165214 From biuro at artbettona.pl Fri Feb 17 21:30:17 2012 From: biuro at artbettona.pl (uPdaoIwGeFNtgwik) Date: Fri Feb 17 21:30:23 2012 Subject: misc/165255: CEpgavNLQUDaqGaV Message-ID: <201202172122.q1HLMa5R010505@red.freebsd.org> >Number: 165255 >Category: misc >Synopsis: CEpgavNLQUDaqGaV >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 17 21:30:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: uPdaoIwGeFNtgwik >Release: qajJSNZGElCq >Organization: gJirmbKsqgIcfvxQ >Environment: Wat een rare term "werkende moereds"; alsof een moeder an sich niet werkt. Deze moeder werkt zo'n beetje 24 uur per dag. >Description: Wat een rare term "werkende moereds"; alsof een moeder an sich niet werkt. Deze moeder werkt zo'n beetje 24 uur per dag. >How-To-Repeat: Wat een rare term "werkende moereds"; alsof een moeder an sich niet werkt. Deze moeder werkt zo'n beetje 24 uur per dag. >Fix: Wat een rare term "werkende moereds"; alsof een moeder an sich niet werkt. Deze moeder werkt zo'n beetje 24 uur per dag. >Release-Note: >Audit-Trail: >Unformatted: From gjb at FreeBSD.org Fri Feb 17 21:41:28 2012 From: gjb at FreeBSD.org (gjb@FreeBSD.org) Date: Fri Feb 17 21:41:34 2012 Subject: junk/165255: CEpgavNLQUDaqGaV Message-ID: <201202172141.q1HLfR16004161@freefall.freebsd.org> Synopsis: CEpgavNLQUDaqGaV State-Changed-From-To: open->closed State-Changed-By: gjb State-Changed-When: Fri Feb 17 21:41:05 UTC 2012 State-Changed-Why: Spam. Responsible-Changed-From-To: freebsd-bugs->gnats-adm Responsible-Changed-By: gjb Responsible-Changed-When: Fri Feb 17 21:41:05 UTC 2012 Responsible-Changed-Why: Spam. http://www.freebsd.org/cgi/query-pr.cgi?pr=165255 From linimon at FreeBSD.org Sat Feb 18 01:05:10 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat Feb 18 01:05:17 2012 Subject: kern/164910: Re: [hang] System can't dump corefile [regression] Message-ID: <201202180105.q1I15Ax4093923@freefall.freebsd.org> Synopsis: Re: [hang] System can't dump corefile [regression] Responsible-Changed-From-To: frebsd-bugs->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sat Feb 18 01:04:51 UTC 2012 Responsible-Changed-Why: fix typo in closed PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=164910 From jiashiun at gmail.com Sat Feb 18 18:30:13 2012 From: jiashiun at gmail.com (Jia-Shiun Li) Date: Sat Feb 18 18:30:24 2012 Subject: kern/165271: Correct Marvell SATA controller names Message-ID: <201202181830.q1IIU1CK000422@red.freebsd.org> >Number: 165271 >Category: kern >Synopsis: Correct Marvell SATA controller names >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 18 18:30:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jia-Shiun Li >Release: FreeBSD 10.0-CURRENT i386 >Organization: >Environment: System: FreeBSD bsdvm 10.0-CURRENT FreeBSD 10.0-CURRENT #2: Sat Jan 28 20:56:05 CST 2012 root@bsdvm:/usr/obj/usr/src/sys/vm i386 >Description: Correct Marvell SATA controller names in ata driver. Unlike that all prefixed 88SX in ata driver/manpage, Marvell SATA controllers actually have two type of prefixes: 88SX[567]0xx 88SE61xx 88SE91xx 88SE92xx ref: http://www.marvell.com/storage/system-solutions/sata-controllers/ >How-To-Repeat: >Fix: Patch attached with submission follows: Index: share/man/man4/ata.4 =================================================================== --- share/man/man4/ata.4 (revision 231896) +++ share/man/man4/ata.4 (working copy) @@ -193,8 +193,8 @@ .It JMicron: JMB360, JMB361, JMB363, JMB365, JMB366, JMB368. .It Marvell -88SX5040, 88SX5041, 88SX5080, 88SX5081, 88SX6041, 88SX6042, 88SX6081, 88SX6101, -88SX6102, 88SX6111, 88SX6121, 88SX6141, 88SX6145, 88SX7042. +88SX5040, 88SX5041, 88SX5080, 88SX5081, 88SX6041, 88SX6042, 88SX6081, 88SE6101, +88SE6102, 88SE6111, 88SE6121, 88SE6141, 88SE6145, 88SX7042. .It National: SC1100. .It NetCell: Index: share/man/man4/ahci.4 =================================================================== --- share/man/man4/ahci.4 (revision 231896) +++ share/man/man4/ahci.4 (working copy) @@ -146,7 +146,7 @@ .Pp Also, in cooperation with atamarvell and atajmicron drivers of ata(4), it supports AHCI part of legacy-PATA + AHCI-SATA combined controllers, -such as JMicron JMB36x and Marvell 88SX61xx. +such as JMicron JMB36x and Marvell 88SE61xx. .Sh FILES .Bl -tag -width /dev/led/ahcich*.locate .It Pa /dev/led/ahcich*.act Index: sys/dev/ahci/ahci.c =================================================================== --- sys/dev/ahci/ahci.c (revision 231896) +++ sys/dev/ahci/ahci.c (working copy) @@ -186,13 +186,13 @@ {0x2365197b, 0x00, "JMicron JMB365", AHCI_Q_NOFORCE}, {0x2366197b, 0x00, "JMicron JMB366", AHCI_Q_NOFORCE}, {0x2368197b, 0x00, "JMicron JMB368", AHCI_Q_NOFORCE}, - {0x611111ab, 0x00, "Marvell 88SX6111", AHCI_Q_NOFORCE | AHCI_Q_1CH | + {0x611111ab, 0x00, "Marvell 88SE6111", AHCI_Q_NOFORCE | AHCI_Q_1CH | AHCI_Q_EDGEIS}, - {0x612111ab, 0x00, "Marvell 88SX6121", AHCI_Q_NOFORCE | AHCI_Q_2CH | + {0x612111ab, 0x00, "Marvell 88SE6121", AHCI_Q_NOFORCE | AHCI_Q_2CH | AHCI_Q_EDGEIS | AHCI_Q_NONCQ | AHCI_Q_NOCOUNT}, - {0x614111ab, 0x00, "Marvell 88SX6141", AHCI_Q_NOFORCE | AHCI_Q_4CH | + {0x614111ab, 0x00, "Marvell 88SE6141", AHCI_Q_NOFORCE | AHCI_Q_4CH | AHCI_Q_EDGEIS | AHCI_Q_NONCQ | AHCI_Q_NOCOUNT}, - {0x614511ab, 0x00, "Marvell 88SX6145", AHCI_Q_NOFORCE | AHCI_Q_4CH | + {0x614511ab, 0x00, "Marvell 88SE6145", AHCI_Q_NOFORCE | AHCI_Q_4CH | AHCI_Q_EDGEIS | AHCI_Q_NONCQ | AHCI_Q_NOCOUNT}, {0x91201b4b, 0x00, "Marvell 88SE912x", AHCI_Q_EDGEIS|AHCI_Q_NOBSYRES}, {0x91231b4b, 0x11, "Marvell 88SE912x", AHCI_Q_NOBSYRES|AHCI_Q_ALTSIG}, Index: sys/dev/ata/chipsets/ata-ahci.c =================================================================== --- sys/dev/ata/chipsets/ata-ahci.c (revision 231896) +++ sys/dev/ata/chipsets/ata-ahci.c (working copy) @@ -180,12 +180,12 @@ ctlr->ichannels = ATA_INL(ctlr->r_res2, ATA_AHCI_PI); ctlr->channels = MAX(flsl(ctlr->ichannels), (ATA_INL(ctlr->r_res2, ATA_AHCI_CAP) & ATA_AHCI_CAP_NPMASK) + 1); - if (pci_get_devid(dev) == ATA_M88SX6111) + if (pci_get_devid(dev) == ATA_M88SE6111) ctlr->channels = 1; - else if (pci_get_devid(dev) == ATA_M88SX6121) + else if (pci_get_devid(dev) == ATA_M88SE6121) ctlr->channels = 2; - else if (pci_get_devid(dev) == ATA_M88SX6141 || - pci_get_devid(dev) == ATA_M88SX6145) + else if (pci_get_devid(dev) == ATA_M88SE6141 || + pci_get_devid(dev) == ATA_M88SE6145) ctlr->channels = 4; ctlr->reset = ata_ahci_reset; Index: sys/dev/ata/chipsets/ata-marvell.c =================================================================== --- sys/dev/ata/chipsets/ata-marvell.c (revision 231896) +++ sys/dev/ata/chipsets/ata-marvell.c (working copy) @@ -108,12 +108,12 @@ { ATA_M88SX6042, 0, 4, MV_6042, ATA_SA300, "88SX6042" }, { ATA_M88SX6081, 0, 8, MV_60XX, ATA_SA300, "88SX6081" }, { ATA_M88SX7042, 0, 4, MV_7042, ATA_SA300, "88SX7042" }, - { ATA_M88SX6101, 0, 0, MV_61XX, ATA_UDMA6, "88SX6101" }, - { ATA_M88SX6102, 0, 0, MV_61XX, ATA_UDMA6, "88SX6102" }, - { ATA_M88SX6111, 0, 1, MV_61XX, ATA_UDMA6, "88SX6111" }, - { ATA_M88SX6121, 0, 2, MV_61XX, ATA_UDMA6, "88SX6121" }, - { ATA_M88SX6141, 0, 4, MV_61XX, ATA_UDMA6, "88SX6141" }, - { ATA_M88SX6145, 0, 4, MV_61XX, ATA_UDMA6, "88SX6145" }, + { ATA_M88SE6101, 0, 0, MV_61XX, ATA_UDMA6, "88SE6101" }, + { ATA_M88SE6102, 0, 0, MV_61XX, ATA_UDMA6, "88SE6102" }, + { ATA_M88SE6111, 0, 1, MV_61XX, ATA_UDMA6, "88SE6111" }, + { ATA_M88SE6121, 0, 2, MV_61XX, ATA_UDMA6, "88SE6121" }, + { ATA_M88SE6141, 0, 4, MV_61XX, ATA_UDMA6, "88SE6141" }, + { ATA_M88SE6145, 0, 4, MV_61XX, ATA_UDMA6, "88SE6145" }, { 0x91a41b4b, 0, 0, MV_91XX, ATA_UDMA6, "88SE912x" }, { 0, 0, 0, 0, 0, 0}}; Index: sys/dev/ata/ata-pci.h =================================================================== --- sys/dev/ata/ata-pci.h (revision 231896) +++ sys/dev/ata/ata-pci.h (working copy) @@ -278,12 +278,12 @@ #define ATA_M88SX6042 0x604211ab #define ATA_M88SX6081 0x608111ab #define ATA_M88SX7042 0x704211ab -#define ATA_M88SX6101 0x610111ab -#define ATA_M88SX6102 0x610211ab -#define ATA_M88SX6111 0x611111ab -#define ATA_M88SX6121 0x612111ab -#define ATA_M88SX6141 0x614111ab -#define ATA_M88SX6145 0x614511ab +#define ATA_M88SE6101 0x610111ab +#define ATA_M88SE6102 0x610211ab +#define ATA_M88SE6111 0x611111ab +#define ATA_M88SE6121 0x612111ab +#define ATA_M88SE6141 0x614111ab +#define ATA_M88SE6145 0x614511ab #define ATA_MARVELL2_ID 0x1b4b #define ATA_MICRON_ID 0x1042 >Release-Note: >Audit-Trail: >Unformatted: From bsdports at wayfair.com Sun Feb 19 00:30:04 2012 From: bsdports at wayfair.com (Evan Sarmiento) Date: Sun Feb 19 00:30:11 2012 Subject: misc/165283: New port databases/py-carbon Message-ID: <201202190024.q1J0O29Z024109@red.freebsd.org> >Number: 165283 >Category: misc >Synopsis: New port databases/py-carbon >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 19 00:30:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Evan Sarmiento >Release: 8.2-RELEASE-p2 >Organization: Wayfair, LLC. >Environment: FreeBSD devwebbsd05.csnzoo.com 8.2-RELEASE-p2 FreeBSD 8.2-RELEASE-p2 #0: Wed Aug 31 15:24:02 EDT 2011 root@freebsd82template:/usr/obj/usr/src/sys/XENHVM amd64 >Description: New port databases/py-carbon Carbon is a backend data caching and persistence daemon for Graphite WWW: http://launchpad.net/graphite >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-carbon # py-carbon/files # py-carbon/files/patch-setup.cfg # py-carbon/files/pkg_message.in # py-carbon/files/carbon.in # py-carbon/files/patch-setup.py # py-carbon/Makefile # py-carbon/distinfo # py-carbon/pkg-descr # py-carbon/pkg-plist # echo c - py-carbon mkdir -p py-carbon > /dev/null 2>&1 echo c - py-carbon/files mkdir -p py-carbon/files > /dev/null 2>&1 echo x - py-carbon/files/patch-setup.cfg sed 's/^X//' >py-carbon/files/patch-setup.cfg << 'ca4622eb396bbd264092fa7044c29027' X--- setup.cfg.org 2011-05-05 20:55:25.000000000 -0400 X+++ setup.cfg 2011-05-05 20:55:31.000000000 -0400 X@@ -1,3 +1 @@ X [install] X-prefix = /opt/graphite X-install-lib = %(prefix)s/lib ca4622eb396bbd264092fa7044c29027 echo x - py-carbon/files/pkg_message.in sed 's/^X//' >py-carbon/files/pkg_message.in << '3d7de4a7f3d59f6faee687cda19ee535' X* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * X XThis port now includes an rc script: X X%%PREFIX%%/etc/rc.d/carbon X XAdd: X Xcarbon_enable="YES" X Xto /etc/rc.conf, then start it via: X X%%PREFIX%%/etc/rc.d/carbon start X XOnce started, finish setting up Graphite X X X* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * X 3d7de4a7f3d59f6faee687cda19ee535 echo x - py-carbon/files/carbon.in sed 's/^X//' >py-carbon/files/carbon.in << '9aceafa47bdcfdbc5d149aa0261fb02f' X#!/bin/sh X# X# PROVIDE: carbon X# KEYWORD: shutdown X# X# Add the following lines to /etc/rc.conf.local or /etc/rc.conf X# to enable this service: X# X# carbon_enable (bool): Set to NO by default. X# Set it to YES to enable it. X# carbon_conf_dir: Directory where sabnzbd configuration X# data is stored. X# Default: /usr/local/sabnzbd X# carbon_user: The user account sabnzbd daemon runs as what X# you want it to be. It uses 'www' user by X# default. Do not sets it as empty or it will run X# as root. X# carbon_group: The group account sabnzbd daemon runs as what X# you want it to be. It uses 'www' group by X# default. Do not sets it as empty or it will run X# as wheel. X X. /etc/rc.subr X Xname="carbon" Xrcvar=${name}_enable X Xload_rc_config ${name} X X: ${carbon_enable:="NO"} X: ${carbon_user:="root"} X: ${carbon_group:="wheel"} X: ${carbon_conf:="/usr/local/etc/carbon/carbon.conf"} X: ${carbon_debug:="NO"} X: ${carbon_logdir:="/usr/local/graphite/storage/log"} X: ${carbon_pidfile:="/var/run/carbon.pid"} X Xstatus_cmd="${name}_status" Xstop_cmd="${name}_stop" X Xcommand_interpreter="/usr/local/bin/python2.7" Xcommand="/usr/local/bin/carbon-cache.py" Xcommand_args="--config=${carbon_conf} --logdir ${carbon_logdir} --pidfile ${carbon_pidfile} start" X Xcarbon_stop() { X echo "Stopping $name" X X /usr/local/bin/carbon-cache.py --config=${carbon_conf} --pidfile ${carbon_pidfile} stop X} X Xcarbon_status() { X /usr/local/bin/carbon-cache.py --config=${carbon_conf} --pidfile ${carbon_pidfile} status X X} X Xrun_rc_command "$1" X 9aceafa47bdcfdbc5d149aa0261fb02f echo x - py-carbon/files/patch-setup.py sed 's/^X//' >py-carbon/files/patch-setup.py << 'ef069219445b1210f91de639f04c1e44' X--- setup.py.orig 2011-04-03 22:20:13.000000000 -0400 X+++ setup.py 2011-05-05 22:03:42.000000000 -0400 X@@ -12,9 +12,9 @@ X setup_kwargs = dict() X X X-storage_dirs = [ ('storage/whisper',[]), ('storage/lists',[]), X- ('storage/log',[]), ('storage/rrd',[]) ] X-conf_files = [ ('conf', glob('conf/*.example')) ] X+storage_dirs = [ ('/var/db/graphite/storage/whisper',[]), ('/var/db/graphite/storage/lists',[]), X+ ('/var/db/graphite/storage/log',[]), ('/var/db/graphite/storage/rrd',[]) ] X+conf_files = [ ('/usr/local/etc/carbon', glob('conf/*.example')) ] X X setup( X name='carbon', ef069219445b1210f91de639f04c1e44 echo x - py-carbon/Makefile sed 's/^X//' >py-carbon/Makefile << 'b456de5c952142054c582065da667cdd' X# New ports collection makefile for: py-carbon X# Date created: 2011-05-01 X# Whom: Evan Sarmiento X# X# $FreeBSD$ X# X XPORTNAME= carbon XPORTVERSION= 0.9.9 XCATEGORIES= databases python XMASTER_SITES= http://launchpad.net/graphite/0.9/${PORTVERSION}/+download/ XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= bsdports@wayfair.com XCOMMENT= Backend storage application for graphite X XRUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}txamqp>=0.3:${PORTSDIR}/net/py-txamqp \ X ${PYTHON_PKGNAMEPREFIX}whisper>=0.9.9:${PORTSDIR}/databases/py-whisper \ X ${PYTHON_PKGNAMEPREFIX}twisted>=11.0.0:${PORTSDIR}/devel/py-twisted XBUILD_DEPENDS= ${RUN_DEPENDS} X XUSE_PYTHON= 2.6+ XUSE_PYDISTUTILS= yes XUSE_TWISTED= yes XFETCH_ARGS= -pRr XUSE_RC_SUBR= carbon X X.include b456de5c952142054c582065da667cdd echo x - py-carbon/distinfo sed 's/^X//' >py-carbon/distinfo << '24da0b8603b84d54b1948683bb02164c' XSHA256 (carbon-0.9.9.tar.gz) = b3d42e3b93c09a82646168d7439e25cfc52143d77eba8a1f8ed45e415bb3b5cb XSIZE (carbon-0.9.9.tar.gz) = 39813 24da0b8603b84d54b1948683bb02164c echo x - py-carbon/pkg-descr sed 's/^X//' >py-carbon/pkg-descr << '781200e65ef008160ab1ca278d081168' XCarbon is a backend data caching and persistence daemon for Graphite X XWWW: http://launchpad.net/graphite 781200e65ef008160ab1ca278d081168 echo x - py-carbon/pkg-plist sed 's/^X//' >py-carbon/pkg-plist << '46f6acee39ddd092a64741a2828985d1' Xbin/carbon-aggregator.py Xbin/carbon-cache.py Xbin/carbon-client.py Xbin/carbon-relay.py Xbin/validate-storage-schemas.py Xetc/carbon Xetc/carbon/rewrite-rules.conf.example Xetc/carbon/carbon.amqp.conf.example Xetc/carbon/carbon.conf.example Xetc/carbon/aggregation-rules.conf.example Xetc/carbon/relay-rules.conf.example Xetc/carbon/storage-schemas.conf.example X%%PYTHON_SITELIBDIR%%/twisted/plugins/carbon_aggregator_plugin.py X%%PYTHON_SITELIBDIR%%/twisted/plugins/carbon_relay_plugin.py X%%PYTHON_SITELIBDIR%%/twisted/plugins/carbon_cache_plugin.py X%%PYTHON_SITELIBDIR%%/twisted/plugins/carbon_aggregator_plugin.pyc X%%PYTHON_SITELIBDIR%%/twisted/plugins/carbon_relay_plugin.pyc X%%PYTHON_SITELIBDIR%%/twisted/plugins/carbon_cache_plugin.pyc X%%PYTHON_SITELIBDIR%%/twisted/plugins/carbon_aggregator_plugin.pyo X%%PYTHON_SITELIBDIR%%/twisted/plugins/carbon_relay_plugin.pyo X%%PYTHON_SITELIBDIR%%/twisted/plugins/carbon_cache_plugin.pyo X%%PYTHON_SITELIBDIR%%/carbon X%%PYTHON_SITELIBDIR%%/carbon/amqp_publisher.py X%%PYTHON_SITELIBDIR%%/carbon/cache.py X%%PYTHON_SITELIBDIR%%/carbon/client.py X%%PYTHON_SITELIBDIR%%/carbon/util.py X%%PYTHON_SITELIBDIR%%/carbon/relayrules.py X%%PYTHON_SITELIBDIR%%/carbon/hashing.py X%%PYTHON_SITELIBDIR%%/carbon/log.py X%%PYTHON_SITELIBDIR%%/carbon/manhole.py X%%PYTHON_SITELIBDIR%%/carbon/events.py X%%PYTHON_SITELIBDIR%%/carbon/__init__.py X%%PYTHON_SITELIBDIR%%/carbon/routers.py X%%PYTHON_SITELIBDIR%%/carbon/conf.py X%%PYTHON_SITELIBDIR%%/carbon/management.py X%%PYTHON_SITELIBDIR%%/carbon/writer.py X%%PYTHON_SITELIBDIR%%/carbon/amqp_listener.py X%%PYTHON_SITELIBDIR%%/carbon/rewrite.py X%%PYTHON_SITELIBDIR%%/carbon/instrumentation.py X%%PYTHON_SITELIBDIR%%/carbon/storage.py X%%PYTHON_SITELIBDIR%%/carbon/state.py X%%PYTHON_SITELIBDIR%%/carbon/service.py X%%PYTHON_SITELIBDIR%%/carbon/protocols.py X%%PYTHON_SITELIBDIR%%/carbon/aggregator X%%PYTHON_SITELIBDIR%%/carbon/aggregator/rules.py X%%PYTHON_SITELIBDIR%%/carbon/aggregator/__init__.py X%%PYTHON_SITELIBDIR%%/carbon/aggregator/receiver.py X%%PYTHON_SITELIBDIR%%/carbon/aggregator/buffers.py X%%PYTHON_SITELIBDIR%%/carbon/aggregator/rules.pyc X%%PYTHON_SITELIBDIR%%/carbon/aggregator/__init__.pyc X%%PYTHON_SITELIBDIR%%/carbon/aggregator/receiver.pyc X%%PYTHON_SITELIBDIR%%/carbon/aggregator/buffers.pyc X%%PYTHON_SITELIBDIR%%/carbon/aggregator/rules.pyo X%%PYTHON_SITELIBDIR%%/carbon/aggregator/__init__.pyo X%%PYTHON_SITELIBDIR%%/carbon/aggregator/receiver.pyo X%%PYTHON_SITELIBDIR%%/carbon/aggregator/buffers.pyo X%%PYTHON_SITELIBDIR%%/carbon/amqp0-8.xml X%%PYTHON_SITELIBDIR%%/carbon/amqp_publisher.pyc X%%PYTHON_SITELIBDIR%%/carbon/cache.pyc X%%PYTHON_SITELIBDIR%%/carbon/client.pyc X%%PYTHON_SITELIBDIR%%/carbon/util.pyc X%%PYTHON_SITELIBDIR%%/carbon/relayrules.pyc X%%PYTHON_SITELIBDIR%%/carbon/hashing.pyc X%%PYTHON_SITELIBDIR%%/carbon/log.pyc X%%PYTHON_SITELIBDIR%%/carbon/manhole.pyc X%%PYTHON_SITELIBDIR%%/carbon/events.pyc X%%PYTHON_SITELIBDIR%%/carbon/__init__.pyc X%%PYTHON_SITELIBDIR%%/carbon/routers.pyc X%%PYTHON_SITELIBDIR%%/carbon/conf.pyc X%%PYTHON_SITELIBDIR%%/carbon/management.pyc X%%PYTHON_SITELIBDIR%%/carbon/writer.pyc X%%PYTHON_SITELIBDIR%%/carbon/amqp_listener.pyc X%%PYTHON_SITELIBDIR%%/carbon/rewrite.pyc X%%PYTHON_SITELIBDIR%%/carbon/instrumentation.pyc X%%PYTHON_SITELIBDIR%%/carbon/storage.pyc X%%PYTHON_SITELIBDIR%%/carbon/state.pyc X%%PYTHON_SITELIBDIR%%/carbon/service.pyc X%%PYTHON_SITELIBDIR%%/carbon/protocols.pyc X%%PYTHON_SITELIBDIR%%/carbon/amqp_publisher.pyo X%%PYTHON_SITELIBDIR%%/carbon/cache.pyo X%%PYTHON_SITELIBDIR%%/carbon/client.pyo X%%PYTHON_SITELIBDIR%%/carbon/util.pyo X%%PYTHON_SITELIBDIR%%/carbon/relayrules.pyo X%%PYTHON_SITELIBDIR%%/carbon/hashing.pyo X%%PYTHON_SITELIBDIR%%/carbon/log.pyo X%%PYTHON_SITELIBDIR%%/carbon/manhole.pyo X%%PYTHON_SITELIBDIR%%/carbon/events.pyo X%%PYTHON_SITELIBDIR%%/carbon/__init__.pyo X%%PYTHON_SITELIBDIR%%/carbon/routers.pyo X%%PYTHON_SITELIBDIR%%/carbon/conf.pyo X%%PYTHON_SITELIBDIR%%/carbon/management.pyo X%%PYTHON_SITELIBDIR%%/carbon/writer.pyo X%%PYTHON_SITELIBDIR%%/carbon/amqp_listener.pyo X%%PYTHON_SITELIBDIR%%/carbon/rewrite.pyo X%%PYTHON_SITELIBDIR%%/carbon/instrumentation.pyo X%%PYTHON_SITELIBDIR%%/carbon/storage.pyo X%%PYTHON_SITELIBDIR%%/carbon/state.pyo X%%PYTHON_SITELIBDIR%%/carbon/service.pyo X%%PYTHON_SITELIBDIR%%/carbon/protocols.pyo X@dirrm etc/carbon X@dirrm %%PYTHON_SITELIBDIR%%/carbon/aggregator X@dirrm %%PYTHON_SITELIBDIR%%/carbon 46f6acee39ddd092a64741a2828985d1 exit >Release-Note: >Audit-Trail: >Unformatted: From gjb at FreeBSD.org Sun Feb 19 00:36:23 2012 From: gjb at FreeBSD.org (gjb@FreeBSD.org) Date: Sun Feb 19 00:36:35 2012 Subject: ports/165283: New port databases/py-carbon Message-ID: <201202190036.q1J0aN2m066561@freefall.freebsd.org> Synopsis: New port databases/py-carbon Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: gjb Responsible-Changed-When: Sun Feb 19 00:35:50 UTC 2012 Responsible-Changed-Why: Reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=165283 From tim.matthews7 at gmail.com Sun Feb 19 00:40:02 2012 From: tim.matthews7 at gmail.com (Tim M) Date: Sun Feb 19 00:40:09 2012 Subject: kern/165284: shutdown failing since upgrade to 9 Message-ID: <201202190035.q1J0Z9JH048415@red.freebsd.org> >Number: 165284 >Category: kern >Synopsis: shutdown failing since upgrade to 9 >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 Feb 19 00:40:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Tim M >Release: 9.0-STABLE FreeBSD >Organization: - >Environment: 9.0-STABLE FreeBSD amd64 >Description: Shutdown starts, syncing disks part succeeds, final power off should then occur, lots of messages appear on the screen regarding uhub (similar to startup messages perhaps), computer powers off then powers back on. Was not occurring on 8.2 and appeared only once upgraded to 9. I cannot get the full output of the messages but it appears as if some code change to relating to usb is preventing shutdown from completing. >How-To-Repeat: Attempt to shutdown. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From avg at FreeBSD.org Sun Feb 19 08:50:05 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Sun Feb 19 08:50:11 2012 Subject: kern/165284: shutdown failing since upgrade to 9 Message-ID: <201202190850.q1J8o4i1055248@freefall.freebsd.org> The following reply was made to PR kern/165284; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, tim.matthews7@gmail.com Cc: Subject: Re: kern/165284: shutdown failing since upgrade to 9 Date: Sun, 19 Feb 2012 10:46:17 +0200 This looks like possibly an issue with improper Wakeup-On-LAN configuration on your network interface. Could you please double-check this theory? -- Andriy Gapon From alan.braslau at cea.fr Sun Feb 19 09:30:06 2012 From: alan.braslau at cea.fr (Alan Braslau) Date: Sun Feb 19 09:30:12 2012 Subject: kern/163154: [iwn] fatal firmware error on 9.0-RC3 Message-ID: <201202190930.q1J9U5jG091435@freefall.freebsd.org> The following reply was made to PR kern/163154; it has been noted by GNATS. From: Alan Braslau To: bug-followup@FreeBSD.org, trois.six@free.fr Cc: Subject: Re: kern/163154: [iwn] fatal firmware error on 9.0-RC3 Date: Sun, 19 Feb 2012 09:58:47 +0100 Bug confirmed under 9.0-RELEASE iwn0: mem 0xf1ffe000-0xf1ffffff irq 17 at device 0.0 on pci12 I get the exact same behavior and error messages as reported if I attempt to connect to a 5GHz ssid, however, this wireless functions correctly using a ssid over a 11g channel (2412 MHz). Alan From scavenger23 at hotmail.de Sun Feb 19 16:20:02 2012 From: scavenger23 at hotmail.de (QnjvIQNvao) Date: Sun Feb 19 16:20:07 2012 Subject: misc/165295: UBvOcEhysLEULAndh Message-ID: <201202191614.q1JGEUeb095354@red.freebsd.org> >Number: 165295 >Category: misc >Synopsis: UBvOcEhysLEULAndh >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 19 16:20:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: QnjvIQNvao >Release: qIkkqTeFAkSiTPjDuJc >Organization: dvfnxzxcZWPAx >Environment: Hello!How to dnwoload books? I can not understand. There is a description and size, but no links.Thank you for your reply (renatovski@mail.ru). >Description: Hello!How to dnwoload books? I can not understand. There is a description and size, but no links.Thank you for your reply (renatovski@mail.ru). >How-To-Repeat: Hello!How to dnwoload books? I can not understand. There is a description and size, but no links.Thank you for your reply (renatovski@mail.ru). >Fix: Hello!How to dnwoload books? I can not understand. There is a description and size, but no links.Thank you for your reply (renatovski@mail.ru). >Release-Note: >Audit-Trail: >Unformatted: From eadler at FreeBSD.org Sun Feb 19 16:22:47 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Sun Feb 19 16:22:55 2012 Subject: junk/165295: UBvOcEhysLEULAndh Message-ID: <201202191622.q1JGMliY090556@freefall.freebsd.org> Synopsis: UBvOcEhysLEULAndh State-Changed-From-To: open->closed State-Changed-By: eadler State-Changed-When: Sun Feb 19 16:22:08 UTC 2012 State-Changed-Why: Backstroke lover always hidin' 'neath the covers Till I talked to your daddy, he say He said "you ain't seen nothin' till you're down on a muffin Then you're sure to be a-changin' your ways" I met a cheerleader, was a real young bleeder Oh, the times I could reminisce 'Cause the best things of lovin' with her sister and her cousin Only started with a little kiss Like this! Responsible-Changed-From-To: freebsd-bugs->gnats-admin Responsible-Changed-By: eadler Responsible-Changed-When: Sun Feb 19 16:22:08 UTC 2012 Responsible-Changed-Why: Backstroke lover always hidin' 'neath the covers Till I talked to your daddy, he say He said "you ain't seen nothin' till you're down on a muffin Then you're sure to be a-changin' your ways" I met a cheerleader, was a real young bleeder Oh, the times I could reminisce 'Cause the best things of lovin' with her sister and her cousin Only started with a little kiss Like this! http://www.freebsd.org/cgi/query-pr.cgi?pr=165295 From rozhuk.im at gmail.com Sun Feb 19 17:50:01 2012 From: rozhuk.im at gmail.com (Ivan Rozhuk) Date: Sun Feb 19 17:50:14 2012 Subject: kern/165296: Fix EVL_APPLY_VLID, update EVL_APPLY_PRI macro Message-ID: <201202191743.q1JHhvBl044033@red.freebsd.org> >Number: 165296 >Category: kern >Synopsis: Fix EVL_APPLY_VLID, update EVL_APPLY_PRI macro >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 19 17:50:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Ivan Rozhuk >Release: 9.0 >Organization: >Environment: FreeBSD firewall 9.0-STABLE FreeBSD 9.0-STABLE #0: Sat Jan 21 11:32:18 IRKT 2012 root@firewall:/tmp/obj/usr/src/sys/RIM i386 >Description: EVL_APPLY_VLID macro removes the flag Canonical Format Indicator (CFI) and the Priority Code Point (PCP) instead of removing VLAN Identifier (VID). The new VID is superimposed on the old one. (m) -> m_pkthdr.ether_vtag & = EVL_VLID_MASK; \ (m) -> m_pkthdr.ether_vtag | = (vlid); \ The correct version: (m) -> m_pkthdr.ether_vtag & = ~ EVL_VLID_MASK; \ (m) -> m_pkthdr.ether_vtag | = ((vlid) & EVL_VLID_MASK); \ >How-To-Repeat: >Fix: apply patch Patch attached with submission follows: --- ./if_vlan_var.h.orig 2011-09-23 09:51:37.000000000 +0900 +++ ./if_vlan_var.h 2012-02-20 02:28:50.000000000 +0900 @@ -52,27 +52,24 @@ #define EVL_APPLY_VLID(m, vlid) \ do { \ if ((m)->m_flags & M_VLANTAG) { \ - (m)->m_pkthdr.ether_vtag &= EVL_VLID_MASK; \ - (m)->m_pkthdr.ether_vtag |= (vlid); \ + (m)->m_pkthdr.ether_vtag &= ~EVL_VLID_MASK; \ } else { \ - (m)->m_pkthdr.ether_vtag = (vlid); \ + (m)->m_pkthdr.ether_vtag = 0; \ (m)->m_flags |= M_VLANTAG; \ } \ + (m)->m_pkthdr.ether_vtag |= ((vlid) & EVL_VLID_MASK); \ } while (0) /* Set the priority ID in an mbuf packet header non-destructively. */ #define EVL_APPLY_PRI(m, pri) \ do { \ if ((m)->m_flags & M_VLANTAG) { \ - uint16_t __vlantag = (m)->m_pkthdr.ether_vtag; \ - (m)->m_pkthdr.ether_vtag |= EVL_MAKETAG( \ - EVL_VLANOFTAG(__vlantag), (pri), \ - EVL_CFIOFTAG(__vlantag)); \ + (m)->m_pkthdr.ether_vtag &= ~EVL_PRI_MASK; \ } else { \ - (m)->m_pkthdr.ether_vtag = \ - EVL_MAKETAG(0, (pri), 0); \ + (m)->m_pkthdr.ether_vtag = 0; \ (m)->m_flags |= M_VLANTAG; \ } \ + (m)->m_pkthdr.ether_vtag |= (((pri) & 7) << 1); \ } while (0) /* sysctl(3) tags, for compatibility purposes */ >Release-Note: >Audit-Trail: >Unformatted: From rozhuk.im at gmail.com Sun Feb 19 18:20:08 2012 From: rozhuk.im at gmail.com (rozhuk.im@gmail.com) Date: Sun Feb 19 18:20:14 2012 Subject: kern/165296: Fix EVL_APPLY_VLID, update EVL_APPLY_PRI macro Message-ID: <201202191820.q1JIK7Ej094416@freefall.freebsd.org> The following reply was made to PR kern/165296; it has been noted by GNATS. From: rozhuk.im@gmail.com To: , Cc: Subject: Re: kern/165296: Fix EVL_APPLY_VLID, update EVL_APPLY_PRI macro Date: Mon, 20 Feb 2012 03:16:00 +0900 This is a multi-part message in MIME format. ------=_NextPart_000_0046_01CCEF7D.FB03C320 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit - (m)->m_pkthdr.ether_vtag |= (((pri) & 7) << 1); \ + (m)->m_pkthdr.ether_vtag |= (((pri) & 7) << 13); \ ------=_NextPart_000_0046_01CCEF7D.FB03C320 Content-Type: application/octet-stream; name="if_vlan_var.h.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="if_vlan_var.h.patch" --- ./if_vlan_var.h.orig 2011-09-23 09:51:37.000000000 +0900=0A= +++ ./if_vlan_var.h 2012-02-20 03:11:20.000000000 +0900=0A= @@ -52,27 +52,24 @@=0A= #define EVL_APPLY_VLID(m, vlid) \=0A= do { \=0A= if ((m)->m_flags & M_VLANTAG) { \=0A= - (m)->m_pkthdr.ether_vtag &=3D EVL_VLID_MASK; \=0A= - (m)->m_pkthdr.ether_vtag |=3D (vlid); \=0A= + (m)->m_pkthdr.ether_vtag &=3D ~EVL_VLID_MASK; \=0A= } else { \=0A= - (m)->m_pkthdr.ether_vtag =3D (vlid); \=0A= + (m)->m_pkthdr.ether_vtag =3D 0; \=0A= (m)->m_flags |=3D M_VLANTAG; \=0A= } \=0A= + (m)->m_pkthdr.ether_vtag |=3D ((vlid) & EVL_VLID_MASK); \=0A= } while (0)=0A= =0A= /* Set the priority ID in an mbuf packet header non-destructively. */=0A= #define EVL_APPLY_PRI(m, pri) \=0A= do { \=0A= if ((m)->m_flags & M_VLANTAG) { \=0A= - uint16_t __vlantag =3D (m)->m_pkthdr.ether_vtag; \=0A= - (m)->m_pkthdr.ether_vtag |=3D EVL_MAKETAG( \=0A= - EVL_VLANOFTAG(__vlantag), (pri), \=0A= - EVL_CFIOFTAG(__vlantag)); \=0A= + (m)->m_pkthdr.ether_vtag &=3D ~EVL_PRI_MASK; \=0A= } else { \=0A= - (m)->m_pkthdr.ether_vtag =3D \=0A= - EVL_MAKETAG(0, (pri), 0); \=0A= + (m)->m_pkthdr.ether_vtag =3D 0; \=0A= (m)->m_flags |=3D M_VLANTAG; \=0A= } \=0A= + (m)->m_pkthdr.ether_vtag |=3D (((pri) & 7) << 13); \=0A= } while (0)=0A= =0A= /* sysctl(3) tags, for compatibility purposes */=0A= ------=_NextPart_000_0046_01CCEF7D.FB03C320-- From linimon at FreeBSD.org Sun Feb 19 19:39:02 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 19 19:39:08 2012 Subject: kern/136777: [build] Building new Kernel with PF and PAE support failed on FreeBSD 7.2-RELEASE-p2 Message-ID: <201202191939.q1JJd1fU070095@freefall.freebsd.org> Synopsis: [build] Building new Kernel with PF and PAE support failed on FreeBSD 7.2-RELEASE-p2 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Feb 19 19:38:29 UTC 2012 State-Changed-Why: Surely by now this problem has been fixed. Sorry this PR sat for so long. http://www.freebsd.org/cgi/query-pr.cgi?pr=136777 From linimon at FreeBSD.org Sun Feb 19 22:19:04 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 19 22:19:09 2012 Subject: kern/165152: [ip6] Does not work through the issue of ipv6 addresses via rtadvd Message-ID: <201202192219.q1JMJ3tf020330@freefall.freebsd.org> Old Synopsis: Does not work through the issue of ipv6 addresses via rtadvd New Synopsis: [ip6] Does not work through the issue of ipv6 addresses via rtadvd Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 19 22:18:12 UTC 2012 Responsible-Changed-Why: recategorize. http://www.freebsd.org/cgi/query-pr.cgi?pr=165152 From linimon at FreeBSD.org Sun Feb 19 22:19:20 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 19 22:19:31 2012 Subject: ports/165117: [NEW PORT] databases/xtrabackup - version 1.6.5 of Percona's xtrabackup utility Message-ID: <201202192219.q1JMJKNj020422@freefall.freebsd.org> Synopsis: [NEW PORT] databases/xtrabackup - version 1.6.5 of Percona's xtrabackup utility Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 19 22:19:11 UTC 2012 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=165117 From linimon at FreeBSD.org Sun Feb 19 22:19:52 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 19 22:19:59 2012 Subject: misc/165083: Search Value is a Digital Marketing Agency offering comprehensive Internet Marketing Solutions. Our result oriented Search Marketing processes are designed to provide you business comprehensive online exposure. Message-ID: <201202192219.q1JMJqUB020547@freefall.freebsd.org> Synopsis: Search Value is a Digital Marketing Agency offering comprehensive Internet Marketing Solutions. Our result oriented Search Marketing processes are designed to provide you business comprehensive online exposure. State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Feb 19 22:19:30 UTC 2012 State-Changed-Why: not applicable to an open source project. Responsible-Changed-From-To: freebsd-bugs->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 19 22:19:30 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=165083 From linimon at FreeBSD.org Sun Feb 19 22:22:22 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 19 22:22:27 2012 Subject: bin/164950: bsdinstall(8): pc-style partitions: no way to set 'bootable' ('active') flag Message-ID: <201202192222.q1JMMMeo028772@freefall.freebsd.org> Old Synopsis: new bsd installer, pc-style partitions: no way to set 'bootable' ('active') flag New Synopsis: bsdinstall(8): pc-style partitions: no way to set 'bootable' ('active') flag Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 19 22:22:01 UTC 2012 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=164950 From linimon at FreeBSD.org Sun Feb 19 22:23:42 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 19 22:23:55 2012 Subject: bin/164914: interface still accept packets even without IP address Message-ID: <201202192223.q1JMNggD028848@freefall.freebsd.org> Synopsis: interface still accept packets even without IP address State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Feb 19 22:22:31 UTC 2012 State-Changed-Why: Apparently this is by design. Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 19 22:22:31 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=164914 From linimon at FreeBSD.org Sun Feb 19 22:24:05 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 19 22:24:23 2012 Subject: misc/164827: cvsup10.us.FreeBSD.org not updated with recent ports changes Message-ID: <201202192224.q1JMO4jx028900@freefall.freebsd.org> Synopsis: cvsup10.us.FreeBSD.org not updated with recent ports changes Responsible-Changed-From-To: freebsd-bugs->clusteradm Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 19 22:23:50 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=164827 From linimon at FreeBSD.org Sun Feb 19 22:24:52 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 19 22:25:03 2012 Subject: amd64/164773: [boot] 9.0 amd64 fails to boot on HP DL145 G3 [regression] Message-ID: <201202192224.q1JMOpoQ028973@freefall.freebsd.org> Old Synopsis: 9.0 amd64 fails to boot on HP DL145 G3 New Synopsis: [boot] 9.0 amd64 fails to boot on HP DL145 G3 [regression] Responsible-Changed-From-To: freebsd-bugs->freebsd-amd64 Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 19 22:24:11 UTC 2012 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=164773 From linimon at FreeBSD.org Sun Feb 19 22:25:14 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 19 22:25:20 2012 Subject: ports/164716: net-mgmt/xymon-server add menu options Message-ID: <201202192225.q1JMPEi2029046@freefall.freebsd.org> Old Synopsis: ports: net-mgmt/xymon-server add menu options New Synopsis: net-mgmt/xymon-server add menu options Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 19 22:25:02 UTC 2012 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=164716 From linimon at FreeBSD.org Sun Feb 19 22:27:25 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 19 22:27:32 2012 Subject: misc/163495: [build] Problem compiling world with _Noreturn Message-ID: <201202192227.q1JMRPYi029286@freefall.freebsd.org> Synopsis: [build] Problem compiling world with _Noreturn State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Sun Feb 19 22:26:22 UTC 2012 State-Changed-Why: Feedback timeout (1 month). For problems compiling src, in general you should first check the stable@ or current@ mailing lists, as these kinds of problems tend to get reported there and fixed more quickly than via GNATS. http://www.freebsd.org/cgi/query-pr.cgi?pr=163495 From linimon at FreeBSD.org Sun Feb 19 22:29:53 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 19 22:30:00 2012 Subject: kern/162524: No full shutdown in FreeBSD 9.0-RC1 Message-ID: <201202192229.q1JMTqqC029435@freefall.freebsd.org> Synopsis: No full shutdown in FreeBSD 9.0-RC1 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sun Feb 19 22:28:27 UTC 2012 State-Changed-Why: feedback received. reclassify, since we are seeing other reports of this. Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 19 22:28:27 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=162524 From stadtkind2 at gmx.de Sun Feb 19 23:10:01 2012 From: stadtkind2 at gmx.de (Stefan Krueger) Date: Sun Feb 19 23:10:12 2012 Subject: kern/165303: CPU freq changing not supported on VIA VE-900 (Nano X2 L4050) Message-ID: <201202192309.q1JN8x2S023927@red.freebsd.org> >Number: 165303 >Category: kern >Synopsis: CPU freq changing not supported on VIA VE-900 (Nano X2 L4050) >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 Feb 19 23:10:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Stefan Krueger >Release: FreeBSD 9.0-REL >Organization: >Environment: >Description: There's no dev.cpu.0.freq sysctl even though there's a dev.cpu.0.freq_levels sysctl, thus powerd does not work thus CPU freq changing is not supported on Via Nano X2 CPUs. # sysctl dev.cpu dev.cpu.0.%desc: ACPI CPU dev.cpu.0.%driver: cpu dev.cpu.0.%location: handle=\_PR_.P001 dev.cpu.0.%pnpinfo: _HID=none _UID=0 dev.cpu.0.%parent: acpi0 dev.cpu.0.freq_levels: 1400/0 1200/0 1000/0 800/0 dev.cpu.0.cx_supported: C1/1 dev.cpu.0.cx_lowest: C1 dev.cpu.0.cx_usage: 100.00% last 2430us dev.cpu.1.%desc: ACPI CPU dev.cpu.1.%driver: cpu dev.cpu.1.%location: handle=\_PR_.P002 dev.cpu.1.%pnpinfo: _HID=none _UID=0 dev.cpu.1.%parent: acpi0 dev.cpu.1.cx_supported: C1/1 dev.cpu.1.cx_lowest: C1 dev.cpu.1.cx_usage: 100.00% last 58451us >How-To-Repeat: Start powerd on a Via Nano x2 L4050 and notice no freq. changes are done despite: # dmesg | grep est est0: on cpu0 est1: on cpu1 and # sysctl dev.cpu.0.freq_levels dev.cpu.0.freq_levels: 1400/0 1200/0 1000/0 800/0 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From marka at isc.org Mon Feb 20 01:20:10 2012 From: marka at isc.org (Mark Andrews) Date: Mon Feb 20 01:20:17 2012 Subject: kern/165305: Feature parity between IP_TOS and IPV6_TCLASS Message-ID: <201202200113.q1K1DOCX012538@sex.dv.isc.org> >Number: 165305 >Category: kern >Synopsis: Feature parity between IP_TOS and IPV6_TCLASS >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 20 01:20:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Mark Andrews >Release: FreeBSD 8.2-STABLE i386 >Organization: ISC >Environment: System: FreeBSD sex.dv.isc.org 8.2-STABLE FreeBSD 8.2-STABLE #15: Thu Dec 29 08:21:01 EST 2011 marka@sex.dv.isc.org:/usr/obj/usr/src/sys/DEBUG i386 >Description: IPV6_TCLASS can be set on both a socket basis and on a per packet basis. Additionally IPV6_TCLASS can be received via a control message by setting IPV6_RECVTCLASS on the socket. IP_TOS can only be set socket basis with no per packet control which makes it setting different the TOS in UDP replies difficult (i.e. require raw sockets to be used). Additionally the only way to obtain the IP_TOS field is to use raw sockets or use a packet filter. >How-To-Repeat: >Fix: Extend control_msg to support setting IP_TOS on a per packet basis. Add a new setsockopt (IP_RECVTOS to be consistent with linux's extension to the socket API) and return the value via a control_msg. >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Mon Feb 20 01:54:23 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Feb 20 01:54:29 2012 Subject: kern/165296: [vlan] [patch] Fix EVL_APPLY_VLID, update EVL_APPLY_PRI macro Message-ID: <201202200154.q1K1sMZL035362@freefall.freebsd.org> Old Synopsis: Fix EVL_APPLY_VLID, update EVL_APPLY_PRI macro New Synopsis: [vlan] [patch] Fix EVL_APPLY_VLID, update EVL_APPLY_PRI macro Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 20 01:54:04 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165296 From linimon at FreeBSD.org Mon Feb 20 01:57:11 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Feb 20 01:57:18 2012 Subject: kern/165305: [ip6] [request] Feature parity between IP_TOS and IPV6_TCLASS Message-ID: <201202200157.q1K1vAvJ035552@freefall.freebsd.org> Old Synopsis: Feature parity between IP_TOS and IPV6_TCLASS New Synopsis: [ip6] [request] Feature parity between IP_TOS and IPV6_TCLASS Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 20 01:56:52 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165305 From tim.matthews7 at gmail.com Mon Feb 20 02:30:14 2012 From: tim.matthews7 at gmail.com (Tim Matthews) Date: Mon Feb 20 02:30:21 2012 Subject: kern/165284: shutdown failing since upgrade to 9 Message-ID: <201202200230.q1K2UEGa063320@freefall.freebsd.org> The following reply was made to PR kern/165284; it has been noted by GNATS. From: Tim Matthews To: bug-followup@freebsd.org, Andriy Gapon Cc: Subject: Re: kern/165284: shutdown failing since upgrade to 9 Date: Mon, 20 Feb 2012 15:28:48 +1300 --047d7b2ee3fbefc5eb04b95c0d16 Content-Type: text/plain; charset=ISO-8859-1 I've just realized I can get a successful shutdown by disabling PME in the BIOS. Not sure if this is considered a solution or mere workaround though. Thanks for your help. --047d7b2ee3fbefc5eb04b95c0d16 Content-Type: text/html; charset=ISO-8859-1 I've just realized I can get a successful shutdown by disabling PME in the BIOS. Not sure if this is considered a solution or mere workaround though.

Thanks for your help.
--047d7b2ee3fbefc5eb04b95c0d16-- From adrian at FreeBSD.org Mon Feb 20 02:40:10 2012 From: adrian at FreeBSD.org (Adrian Chadd) Date: Mon Feb 20 02:40:21 2012 Subject: kern/165306: [ath] race conditions between scanning and beacon timeout programming Message-ID: <201202200230.q1K2UV3r094777@red.freebsd.org> >Number: 165306 >Category: kern >Synopsis: [ath] race conditions between scanning and beacon timeout programming >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 Feb 20 02:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Adrian Chadd >Release: 9.0-RELEASE i386 w/ HEAD net80211/ath >Organization: >Environment: >Description: There seem to be issues where net80211 doesn't quite get the "beacon miss" notification. It stays associated, the beacon interrupt/notification isn't occuring. Adding on reset/beacon debugging (0x20 + 0x80) on ath0 (sysctl dev.ath.0.debug=0xa0) didn't show any beacon miss interrupts, software or hardware. This is with one VAP STA on an AR9280. What I think is happening is: * the transition to -> RUN doesn't program in any beacon timers by default - it waits for the first beacon to be RX'ed before it programs in timers; * but if it loses connectivity during a scan, the beacon timers won't ever be reprogrammed, as no beacons will occur. So it stays associated. >How-To-Repeat: The above should be doable to reproduce - just enable beacon debugging, then do a scan and kill the AP whilst the station is scanning. >Fix: It may be that we need to: * program in some beacon TSF value for the initial state transition to RUN, and hope that a new beacon will come in and reprogram the timers. * .. or also enable swbeacon support too for single-VAP STA mode? >Release-Note: >Audit-Trail: >Unformatted: From tim.matthews7 at gmail.com Mon Feb 20 02:40:12 2012 From: tim.matthews7 at gmail.com (Tim Matthews) Date: Mon Feb 20 02:40:22 2012 Subject: kern/165284: shutdown failing since upgrade to 9 Message-ID: <201202200240.q1K2eCkx073954@freefall.freebsd.org> The following reply was made to PR kern/165284; it has been noted by GNATS. From: Tim Matthews To: bug-followup@freebsd.org, Andriy Gapon Cc: Subject: Re: kern/165284: shutdown failing since upgrade to 9 Date: Mon, 20 Feb 2012 15:04:50 +1300 --047d7b2ee3fb39491604b95bb843 Content-Type: text/plain; charset=ISO-8859-1 On Sun, Feb 19, 2012 at 9:46 PM, Andriy Gapon wrote: > > This looks like possibly an issue with improper Wakeup-On-LAN > configuration on > your network interface. Could you please double-check this theory? > > -- > Andriy Gapon > None of the wired ethernet sockets are used or even have a cable in. I tried shutting down without my usb wifi and it still failed in the same way. --047d7b2ee3fb39491604b95bb843 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
On Sun, Feb 19, 2012 at 9:46 PM, Andriy Gapon <av= g@freebsd.org> wrote:

This looks like possibly an issue with improper Wakeup-On-LAN configuration= on
your network interface. =A0Could you please double-check this theory?

--
Andriy Gapon

None of the wired ethernet sockets are used o= r even have a cable in. I tried shutting down without my usb wifi and it st= ill failed in the same way.


--047d7b2ee3fb39491604b95bb843-- From adrian at FreeBSD.org Mon Feb 20 02:43:07 2012 From: adrian at FreeBSD.org (adrian@FreeBSD.org) Date: Mon Feb 20 02:43:18 2012 Subject: kern/165306: [ath] race conditions between scanning and beacon timeout programming Message-ID: <201202200243.q1K2h7Zi081981@freefall.freebsd.org> Synopsis: [ath] race conditions between scanning and beacon timeout programming Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Mon Feb 20 02:42:58 UTC 2012 Responsible-Changed-Why: Reassign http://www.freebsd.org/cgi/query-pr.cgi?pr=165306 From miryamlocher at yahoo.com.ar Mon Feb 20 05:10:12 2012 From: miryamlocher at yahoo.com.ar (HQWCpKchlmEakIwVw) Date: Mon Feb 20 05:10:18 2012 Subject: misc/165310: lTrpoVJUd Message-ID: <201202200505.q1K55C6W076466@red.freebsd.org> >Number: 165310 >Category: misc >Synopsis: lTrpoVJUd >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 20 05:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: HQWCpKchlmEakIwVw >Release: JGxkLtEx >Organization: UHDRewtvYnIxv >Environment: Nice read, I just psesad this onto a colleague who was doing a little research on that. And he actually bought me lunch since I found it for him smile Thus let me rephrase that: Thank you for lunch! Life is a continual upgrade. by J. Mark Wallace. >Description: Nice read, I just psesad this onto a colleague who was doing a little research on that. And he actually bought me lunch since I found it for him smile Thus let me rephrase that: Thank you for lunch! Life is a continual upgrade. by J. Mark Wallace. >How-To-Repeat: Nice read, I just psesad this onto a colleague who was doing a little research on that. And he actually bought me lunch since I found it for him smile Thus let me rephrase that: Thank you for lunch! Life is a continual upgrade. by J. Mark Wallace. >Fix: Nice read, I just psesad this onto a colleague who was doing a little research on that. And he actually bought me lunch since I found it for him smile Thus let me rephrase that: Thank you for lunch! Life is a continual upgrade. by J. Mark Wallace. >Release-Note: >Audit-Trail: >Unformatted: From gjb at FreeBSD.org Mon Feb 20 05:12:35 2012 From: gjb at FreeBSD.org (gjb@FreeBSD.org) Date: Mon Feb 20 05:12:41 2012 Subject: junk/165310: lTrpoVJUd Message-ID: <201202200512.q1K5CZ8A023339@freefall.freebsd.org> Synopsis: lTrpoVJUd State-Changed-From-To: open->closed State-Changed-By: gjb State-Changed-When: Mon Feb 20 05:12:10 UTC 2012 State-Changed-Why: Spam. Responsible-Changed-From-To: freebsd-bugs->gnats-adm Responsible-Changed-By: gjb Responsible-Changed-When: Mon Feb 20 05:12:10 UTC 2012 Responsible-Changed-Why: Spam. http://www.freebsd.org/cgi/query-pr.cgi?pr=165310 From avg at FreeBSD.org Mon Feb 20 09:40:12 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Mon Feb 20 09:40:25 2012 Subject: kern/165284: shutdown failing since upgrade to 9 Message-ID: <201202200940.q1K9eCmW003487@freefall.freebsd.org> The following reply was made to PR kern/165284; it has been noted by GNATS. From: Andriy Gapon To: Tim Matthews Cc: bug-followup@FreeBSD.org Subject: Re: kern/165284: shutdown failing since upgrade to 9 Date: Mon, 20 Feb 2012 11:31:46 +0200 on 20/02/2012 04:28 Tim Matthews said the following: > I've just realized I can get a successful shutdown by disabling PME in the BIOS. > Not sure if this is considered a solution or mere workaround though. > > Thanks for your help. For the future references can you please let us know the exact names/placement of the option(s) that you tweaked in the BIOS? A digital camera screenshot would be nice too. Thank you! -- Andriy Gapon From fabrice.bruel at orange.com Mon Feb 20 11:00:32 2012 From: fabrice.bruel at orange.com (Fabrice Bruel) Date: Mon Feb 20 11:00:38 2012 Subject: kern/165315: States never cleared in PF with DEVICE_POLLING Message-ID: <201202201056.q1KAusxT003883@red.freebsd.org> >Number: 165315 >Category: kern >Synopsis: States never cleared in PF with DEVICE_POLLING >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 20 11:00:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Fabrice Bruel >Release: 8.1 release p8 >Organization: Equant >Environment: FreeBSD HP360FBSD81 8.1-RELEASE-p8 FreeBSD 8.1-RELEASE-p8 #12: Fri Feb 17 13:17:11 GMT 2012 root@HP360FBSD81:/usr/obj/usr/src/sys/FBSD81PF amd64 >Description: I'm testing hardware to improve a high load firewall. I'm using HP 360G7 and a Intel Quad port 82571EB (em(4)). In this hardware, if I don't activate DEVICE_POLLING, network rate is very poor and sinusoidale. If I activate DEVICE_POLLING, network is stable and fast, but : - in 8.1p8, PF and rules over physical interfaces (em0 and em1) work perfectly, but if I applied PF rules on Vlan interfaces, many states would be never cleared - in 8-STABLE is worse, a lot of state are never cleared on physical interfaces I'm using PF in kernel mode. >How-To-Repeat: Enabling DEVICE_POLLING in kernel, and on em(4) interface. Create vlan on this interfaces, generate network TCP highload, stop it and look at pfctl -si "currentesentries", it never decrease to 0 (or 2 in you are in ssh). >Fix: >Release-Note: >Audit-Trail: >Unformatted: From bugmaster at FreeBSD.org Mon Feb 20 11:09:28 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 20 11:11:23 2012 Subject: Current problem reports containing patches Message-ID: <201202201109.q1KB9QvL092033@freefall.freebsd.org> (Note: an HTML version of this report is available at http://people.freebsd.org/~linimon/studies/prs/prs_for_tag_patch.html .) S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/165313 roam [patch] security/apg fails to build with WITH_CRACKLIB o ports/165312 roam [patch] security/apg typo f ports/165309 swills [PATCH] net-im/kmess-kde4: switch from libungif to gif o ports/165307 gahr [PATCH] print/lilypond: set MAKE_JOBS_UNSAFE o ports/165299 ashish [PATCH] editors/emacs-devel: switch to graphics/giflib o ports/165298 ashish [PATCH] editors/emacs: switch to graphics/giflib o ports/165297 bf [PATCH] graphics/imlib2: switch to graphics/giflib o kern/165296 net [vlan] [patch] Fix EVL_APPLY_VLID, update EVL_APPLY_PR o ports/165292 miwi [PATCH] Allow emulators/mame to be build with clang o ports/165291 glewis [PATCH] archivers/libarchive: update to 3.0.3 f ports/165288 sunpoet [PATCH] databases/p5-DBM-Deep: update to 2.0004 o ports/165282 gnome typo in x11-toolkits/gtk30 pkg-plist [patch] o ports/165275 sahil [PATCH] devel/p5-MooseX-Storage: move some DEPENDS to o kern/165271 [ata] [patch] Correct Marvell SATA controller names o ports/165268 skv [PATCH] devel/p5-MooseX-Declare: update to 0.35 f ports/165265 crees [patch] databases/postgresql-docs: build docs for Pg 9 o ports/165254 x11 [PATCH] fixes to x11-fonts/xorg-fonts makefile to hand o ports/165248 portmgr [PATCH] [MAINTAINER] Repocopy (rename) and update to x f ports/165247 [PATCH] audio/alsa-plugins: remove parts of FreeBSD-sp f ports/165244 crees [PATCH] Fix port: net/v6eval on 9+ f ports/165243 swills [PATCH] devel/p5-MooseX-App-Cmd: add missing DEPENDS, o ports/165242 skv [PATCH] devel/p5-Moose-Policy: update to 0.05 o ports/165241 clsung [PATCH] devel/p5-Module-CPANTS-Analyse: add missing DE o ports/165238 portmgr [bsd.port.mk] [patch] Resize port config dialog box in o ports/165237 clsung [PATCH] devel/p5-Module-Build-Convert: add missing DEP o ports/165233 kuriyama [PATCH] devel/p5-Log-Dispatch-Screen-Color: add missin o ports/165219 kuriyama [PATCH] devel/p5-Log-Dispatch-Colorful: add missing DE a ports/165211 jgh [PATCH] multimedia/zoneminder: update up to 1.25.0 rel f ports/165197 [patch] benchmarks/xdd: fix CPU detection slew of stri o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking f ports/165188 eadler [PATCH] update devel/yasm to latest version o ports/165184 clsung [PATCH] devel/p5-Git-PurePerl: add misisng DEPENDS o ports/165183 skv [PATCH] devel/p5-Getopt-Popt: mark deprecated since th f ports/165176 [PATCH] mail/dovecot: update to 2.0.18, mail/dovecot2- o kern/165174 net [patch] [tap] allow tap(4) to keep its address on clos o ports/165168 skv [PATCH] www/p5-HTTP-BrowserDetect: update to 1.41 f ports/165165 sunpoet [PATCH] www/p5-Mojolicious: update to 2.49 o bin/165164 [PATCH][bin] xargs(1) incorrect pointer passed to wait o ports/165161 lth [PATCH] devel/p5-File-Find-Rule-Perl: add missing DEPE f ports/165159 miwi [PATCH] lang/ocaml: fix build error for systems that u o ports/165156 mm [patch] devel/pcre does not build with LIBEDIT OPTION o stand/165155 standards [PATCH][bin][standards] xargs does not print diagnosti f ports/165150 swills [PATCH] devel/p5-File-Dir-Dumper: update to 0.0.7 o ports/165148 acm [PATCH] devel/p5-File-DesktopEntry: add missing DEPEND a ports/165143 portmgr [exp-run] [patch] devel/apr: CVE / Update / exp-run / f ports/165135 decke [PATCH] audio/decibel-audio-player: update to 1.08 f ports/165131 sunpoet [PATCH] devel/p5-Capture-Tiny: update to 0.16 o ports/165126 jlaffaye [PATCH] irc/libircclient: update to 1.6 o ports/165125 portmgr [patch] ports/Mk/bsd.port.mk misspelling correction f ports/165124 swills [PATCH] devel/p5-Digest-TransformPath: remove broken t f ports/165123 swills [PATCH] devel/p5-Devel-ebug: update to 0.52 o ports/165112 kuriyama [PATCH] devel/p5-Devel-KYTProf: add missing DEPENDS o ports/165109 miwi [PATCH] devel/p5-Devel-Events-Objects: add missing dep o ports/165097 gnome [PATCH] Remove dep from irc/xchat o ports/165086 kwm [PATCH] Remove net/socks5 dep from irc/xchat-gnome a ports/165082 ashish [PATCH] [exp-run] exp-run required for updating bsd.em o ports/165081 az [PATCH] devel/p5-Class-Load: update to 0.17 f ports/165074 miwi [PATCH] www/xpi-bookmarkdd: update to 0.7.5 f ports/165073 miwi [PATCH] www/xpi-yslow: update to 3.0.9 o ports/165072 nork [PATCH] www/xpi-user_agent_switcher: update to 0.7.3 f ports/165071 miwi [PATCH] www/xpi-stumbleupon: update to 3.76 f ports/165070 miwi [PATCH] www/xpi-searchstatus: update to 1.39 f ports/165069 miwi [PATCH] www/xpi-modify_headers: update to 0.7.1.2b o ports/165068 nork [PATCH] www/xpi-it_s_all_text: update to 1.6.0 o ports/165067 skreuzer [PATCH] www/xpi-httpfox: update to 0.8.10 o ports/165065 nork [PATCH] www/xpi-firemobilesimulator: update to 1.2.2 o ports/165064 skreuzer [PATCH] www/xpi-errorzilla: update to 0.42 f ports/165062 miwi [PATCH] mail/xpi-dispmua: update to 1.6.6 a ports/165046 sahil [PATCH] mail/postfix preserve ident in mailer.conf f ports/165042 swills [PATCH] devel/p5-Data-Average: add missing DEPENDS f ports/165037 swills [PATCH] devel/p5-Config-Wrest: add missing DEPENDS o kern/165032 net [mii] [patch] brgphy(4) is not used for BCM57780 f ports/165029 sunpoet [PATCH] sysutils/p5-Sys-HostIP: update to 1.91 o sparc/165025 sparc64 [PATCH] zfsboot support for sparc64 o ports/165023 gordon [patch] devel/p4v port is marked broken and also stale f ports/165016 pgollucci [PATCH] mail/rubygem-mail: update to 2.4.1 f ports/165006 [patch] add missing dependencies to audio/audacity-dev o ports/165003 [patch] audio/icecast 2.3.2 may leak memory and take e o bin/164976 [PATCH] tzsetup(8): Fix VERBOSE reporting on results w o ports/164975 clsung [PATCH] www/p5-Jifty: add missing DEPENDS o ports/164973 kuriyama [PATCH] www/p5-Plack: add TEST_DEPENDS, other changes o ports/164971 kuriyama [PATCH] devel/p5-Test-TCP: update to 1.15 o ports/164968 clsung [PATCH] mail/p5-Email-MIME-CreateHTML: add missing DEP s ports/164963 crees [PATCH] ports-mgmt/porttools: add submit -P to print P f ports/164960 swills [PATCH] devel/p5-Class-Declare: update to 0.17 f ports/164944 amdmi3 [PATCH] games/instead: update to 1.6.2 p docs/164940 eadler [PATCH] xref err.3 in strerror.3 o docs/164939 eadler [PATCH] add a standards section to err.3 o docs/164938 eadler [PATCH] consistently use file system in config and tun o bin/164933 [nfs] [patch] mountd(8) drops mixed security flavors f o docs/164920 eadler [PATCH] changes to swap section of config chapter o ports/164913 kuriyama [PATCH] devel/p5-Module-Metadata: update to 1.000009 o ports/164906 crees [PATCH] graphics/libjpeg-turbo: add -fPIC o ports/164905 gecko www/seamonkey fails to build with clang [patch] o kern/164901 net [regression] [patch] [lagg] igb/lagg poor traffic dist f ports/164891 pgollucci [PATCH] sysutils/rubygem-sys-filesystem: update to 1.0 f ports/164888 pgollucci [PATCH] net/rubygem-whois: update to 2.2.0 f ports/164882 pgollucci [PATCH] ftp/rubygem-curb: update to 0.7.17 o ports/164874 joerg [patch] unbreak devel/avr-gcc o ports/164870 portmgr [PATCH] bsd.licenses.mk Set IGNORE if BATCH is set and f ports/164855 miwi [PATCH] textproc/py-chardet o ports/164847 portmgr [bsd.port.mk] [patch] java/diablo-jdk16 does not build f ports/164813 glewis [PATCH] www/jericho-html: update to 3.2 o ports/164786 [PATCH] devel/simian: Re-adding the deleted port o ports/164785 sylvio [patch] devel/bglibs: linking with libbg causes time(3 f ports/164784 jgh [patch] x11-toolkits/swt-devel: (correction) update to f ports/164782 swills [PATCH] devel/p5-Log-Dispatchouli: add missing BUILD_D o ports/164778 swills [PATCH] net/p5-Net-Jifty: add TEST_DEPENDS, use new fo o ports/164750 fluffy [PATCH] news/inn: Fix rc script o kern/164724 [dtrace] [patch] Signal bug in Dtrace o ports/164719 sylvio [PATCH] irc/bip: update to fix CVE-2012-0806 o conf/164709 eadler [patch] [pc-sysinstall] add raidz3 support; permit 'ra f ports/164701 sunpoet [PATCH] mail/p5-Email-Sender: update to 0.110003 o ports/164692 skv [PATCH] devel/otrs: update to version 3.0.11 o kern/164674 [patch] [libc] vfprintf/vfwprintf return error (EOF) o o bin/164672 [patch] mptutil(8): fix build error with DEBUG o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o ports/164625 lme [PATCH] port net-mgmt/icinga to support IDOUtils o ports/164618 lx [patch] textproc/scim: building with clang failed o bin/164604 [patch] tftp(1): TFTP pxeboot: should use root-path pr f ports/164597 wxs [patch] security/py-pycrypto: update to 2.5 p bin/164570 maxim [patch] pom(6) wrong usage message o ports/164566 skv [patch] databases/pgbouncer: update to latest version o bin/164561 portmgr [patch] pkg_version(1): update references to INDEX-8 f o ports/164544 miwi [patch] x11-servers/xorg-server: prune unused deps f ports/164540 miwi [PATCH] x11-themes/icons-tango: Fix fetching f ports/164539 miwi [patch] Update for audio/libmtp (from 1.0.6 to 1.1.1) o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP o bin/164535 [patch] ps(1) truncates command to screen size even wh o ports/164504 gnome [patch] net/opal3: patch configure to recognize amd64 o ports/164502 [patch] news/sabnzbdplus not starting on boot o ports/164500 gnome [patch] Build x11-toolkits/libwnck without startup_not o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu o ports/164488 timur [patch] devel/talloc,devel/tdb: fix compile with MAKE_ o ports/164449 crees [PATCH] finance/gnucash update to 2.4.9 o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164418 miwi [PATCH] shells/mksh doesn't build with Clang. o ports/164416 kuriyama [PATCH] textproc/iso8879: Fix on 9 and 10 o ports/164403 portmgr [patch] Mk/bsd.licenses.mk: bring back --hline o bin/164378 [patch] improvement of pkg_info(1) warning o kern/164369 adrian [if_bridge] [patch] two STP bridges have the same id o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak p ports/164349 x11 [PATCH] x11/libXinerama :1 LeftOf or Above :0 mouse is o ports/164341 lev [patch] sysutils/graid5: remove post-deinstall target p bin/164317 glebius [patch] write(1): add multibyte character support p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method o bin/164302 [patch] mail(1) expands aliases beyond # o ports/164298 pgollucci [PATCH] Make print/foomatic-filters not eat PS files o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS f ports/164253 lwhsu [PATCH] databases/cassandra: update to 1.0.7 f ports/164243 miwi [PATCH] emulators/dosbox: Fix build with clang o ports/164239 gecko [PATCH] mail/thunderbird: crash with nss_ldap p kern/164238 eadler [patch] NULL pointer dereference in setusercontext (li f ports/164237 wxs [PATCH] security/suricata: overwrite files from libhtp f ports/164235 pgollucci [patch] graphics/vigra: update to 1.8.0 o docs/164217 eadler [patch] correct synchronize flag in setfacl(1) manpage o kern/164210 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164209 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164208 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164207 portmgr [PATCH] bsd.port.mk includes top-level Makefile.inc fr o misc/164206 [build] [patch] buildworld WITHOUT_OPENSSL stops at li p bin/164192 emaste [patch] wpa_supplicant(8): Fix typo intr-by SVN r21473 o ports/164190 mm [PATCH] devel/liboil: Fix build with clang o ports/164187 gnome [PATCH] net/avahi etc should use USERS f ports/164181 [PATCH] www/xxxterm: Fix ssl_ca_file path and style o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i f ports/164046 bapt [PATCH] sysutils/kkbswitch: %%DOCSDIR%%/common is syml f ports/164045 bapt [PATCH] java/dbvis: prevent dirrm beginning with a / p bin/164042 emaste [PATCH] tzsetup(8): Fix VERBOSE to work with new UTC m p bin/164041 emaste [PATCH] tzsetup(8): Remove unnecessary code duplicatio p bin/164039 emaste [PATCH] tzsetup(8): Don't write /var/db/zoneinfo eithe p bin/164038 wollman [PATCH] tzsetup(8): Increase buffer size to hold error f ports/164029 [PATCH] graphics/bmeps fix build with databases/gdbm o ports/164010 timur [patch] net/samba36: Split up samba scripts into more o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/163978 [hwpmc] [patch] Loading hwpmc with an unknown cpuid ca o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de f ports/163924 miwi [PATCH] archivers/xarchiver, warning when delete deskt o ports/163909 bf [MAINTAINER-UPDATE][PATCH] please update math/lapacke o ports/163908 fluffy [patch] filesystem based race condition in multimedia/ o ports/163884 nivit [Patch]databases/py-sqlalchemy:strict depend on py-MyS o bin/163863 [patch] adduser(8): confusing usr.sbin/adduser output o bin/163847 [PATCH] German filename conversion scheme for mount_nw o conf/163828 [patch] /etc/periodic/daily/110.clean-tmps tries to un p conf/163789 eadler [patch] Make etc/Makefile more conflict resistant o conf/163778 imp [patch] Conditionalize tools in the source tree o bin/163775 [patch] sfxge(4) explitly sets -g -DDEBUG=1; infects k o bin/163773 eadler [patch] pc-sysinstall(8): pc-sysinstall/backend.sh - c o bin/163772 [patch] nvi(1) - don't mask O_DIRECTORY symbol o bin/163769 [patch] fix zpool(8) compile time warnings o misc/163768 [patch] [boot] fix non-ficl compile time warnings o ports/163762 pgollucci [PATCH] multimedia/mythtv still thinks it's 0.24.0 o ports/163751 lme [PATCH] games/scummvm: chase audio/fluidsynth shlib ve o docs/163742 doc [patch] document failok mount(8) option o ports/163725 swills [PATCH] emulators/open-vm-tools: Update to latest vers o kern/163724 wireless [mwl] [patch] NULL check before dereference f ports/163718 dinoex [PATCH] graphics/jasper: security updates for CVE-2011 o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c f ports/163704 gnome [PATCH] devel/ptlib26: disable ODBC by default f ports/163684 olgeni [PATCH] lang/clojure-mode.el: update to 1.11.5 o ports/163675 pgollucci [PATCH] devel/buildbot: update to 0.8.5 o ports/163674 pgollucci [PATCH] devel/buildbot-slave: update to 0.8.5 p conf/163668 jh [patch] fstab[5] 'failok' option has no effect on miss o ports/163666 jgh [PATCH] Add user "gerrit" to UIDs and GIDs f ports/163655 miwi [PATCH] games/odamex update to 0.5.6 o ports/163647 pgollucci [patch] sysutils/xosview: does not build on 10-CURRENT o ports/163643 pgollucci [patch] astro/wmspaceweather: URL changed + two minor o ports/163583 [patch] x11/kdelibs3 conflicts with openssl-1 f ports/163555 danfe [PATCH] irc/bitchx is out of date and BitchX 1.2 does a ports/163550 dinoex [patch] ftp/vsftpd{,-ext}: respect CC/CFLAGS/STRIP uni p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi o ports/163519 gnome [patch] graphics/gimp-app: unbreak build with clang=20 o ports/163518 gnome [patch] x11/babl: unbreak SSE build with clang o bin/163515 [patch] b64encode(1)/uuencode(1) create files with no o ports/163514 itetcu [PATCH] ports-mgmt/tinderbox-devel: Report the proper o ports/163511 portmgr [PATCH] bsd.port.mk: Allow existing users on system to o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands a java/163456 java [patch] java/openjdk6: build and distribute open timez o ports/163454 gecko [patch] www/firefox-beta: unbreak with libc++ o kern/163450 [puc] [patch] new pci quad serial card supported by pu o ports/163443 gnome [patch] graphics/poppler: unbreak with libc++ o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf f ports/163306 pgollucci [patch] upgrade sysutils/nut to 2.6.2 and fix misc por o ports/163291 doceng [PATCH] print/ghostscript9: Automatically disable X11 o ports/163232 bf [patch] math/metis: respect CC o ports/163226 obrien [patch] vietnamese/libviet: respect CC/CFLAGS o bin/163219 gtetlow [patch] man: fix 'zcat: standard input is a terminal - o docs/163177 doc [patch] man page for gnats(7) incorrectly lists gnatsd o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o ports/163066 eadler [patch] bsd.database.mk: Allow db5 to be selected by U o ports/163063 python [PATCH] fix for ports-mgmt/portbuilder o ports/163056 miwi [patch] audio/xmms2: update to 0.8 o ports/163055 mm [patch] multimedia/ffmpeg: broken without /usr/bin/per o bin/163053 [patch] camcontrol(8): 'camcontrol nego -D' is ignored o docs/163043 doc [patch] gsched.8: remove reference to gsched_as a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ o ports/162920 miwi [patch] respect STRIP/LDFLAGS consistently across untr o misc/162866 [build] [patch] extract revision from hg in newvers.sh p kern/162789 glebius [PATCH] if_clone may create multiple interfaces with t o ports/162768 pgollucci [PATCH] ftp/proftpd port update which fixes mod_sql_my o docs/162765 doc [patch] lseek(2) may return successful although no see o ports/162755 gnome [PATCH] graphics/evince: segfault on showing propertie o ports/162726 miwi [PATCH] update graphics/box to 0.3.0 and graphics/boxe o ports/162721 portmgr [PATCH] bsd.port.mk: config target should complain if f ports/162694 pgollucci [patch] [update] multimedia/pitivi to 0.15.0 o bin/162670 gabor [patch] libkiconv doesn't work with iconv() in libc o bin/162661 gavin [patch] ftp(8) is giving up on IPv6 o ports/162602 pgollucci devel/st [patch] event.c missing from work/st-1.9/Make o ports/162510 nork [patch] Upgrade graphics/OpenEXR to version 1.7.0 o ports/162414 cy [PATCH] sysutils/syslog-ng: misc. fixes o ports/162397 portmgr [patch] Mk/bsd.port.mk: add new target add-plist-build o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen f ports/162386 eadler [PATCH] Bring back games/tome o ports/162381 sunpoet [PATCH] audio/icecast2 upgrade to kh development branc o kern/162352 net [patch] Enhancement: add SO_PROTO to socket.h o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib p docs/162265 doc [Patch] ipfw.8: Documentation clarity a ports/162264 cy [patch] unbreak net/tridiavnc for non-i386 p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 o kern/162201 zec [ip] [patch] multicast forwarding cache hash always al o ports/162191 ashish [PATCH] editor/emacs: VC doesn't work with subversion o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o kern/162174 [kernel] [patch] rman_manage_region() error return pat o bin/162064 [patch] Loop in fetch(1) when sending SIGINFO after th f ports/162050 sumikawa [patch] misc/lv directory opening problem fix o ports/162042 bapt [patch] multimedia/libass: add HARFBUZZ option o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o bin/161986 [patch] netstat(1): Interface auto-width in "netstat - o ports/161984 autotools [patch] devel/libtool: don't split INFO doc (install) o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup p conf/161847 gavin [patch] reaper of the dead: remove ancient devfs examp o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o bin/161807 fs [patch] add option for explicitly specifying metadata o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico p bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks o www/161672 gavin [patch] add support for 10.x to query-pr o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/161421 gecko [patch] www/firefox: use libevent2 o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li o bin/161401 [patch] have service(8) run scripts with the same reso o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161185 pgollucci [patch] Remove unnecessary graphics/cairo dependency f o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 pgollucci [patch] misc/ttyrec: don't depend on pty(4), use openp o bin/161048 sysinstall [patch] bsdinstall(8): should run a concurrent shell o o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o bin/161028 [PATCH] service(8) -- Minor improvements o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO o ports/160969 [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 x11 [patch] ports/x11/libXi broken manpages o ports/160963 x11 [patch] x11/bigreqsproto: disable specs o ports/160930 [PATCH] devel/gdb: HW watchpoint support for amd64 o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o bin/160834 [patch] grep(1): fixes for POSIX conformance o ports/160816 swills [PATCH] security/stunnel: update to 4.44 o ports/160798 pgollucci [PATCH] games/wesnoth-devel: update to latest version o ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 o bin/160596 eadler [patch] tzsetup(8): Use libodialog when doing tzsetup o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x f ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o ports/160492 bf [patch] lang/ocaml: respect CC o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries p ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn o misc/160463 eadler [build] [patch] fix build dependency for dtrace module o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i s docs/160369 gjb [patch] update sample simple makefile with new convent o bin/160295 [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159947 pgollucci [patch] databases/gnats4 set default index type to pla o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 o bin/159833 camcontrol(8): [patch] add ATA security options to cam o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l a bin/159665 rik [patch] ctm(1) does not work with bzip2 or xz compress o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator f ports/159636 [patch] net/freevrrpd: RC script for freevrrpd that co o conf/159625 [PATCH] replace hardcoded /usr/local with a variable i o ports/159613 gnome [PATCH] misc/gnomehier: use dirrmtry for PREFIX/share/ o usb/159611 miwi [PATCH] USB stick extrememory Snippy needs quirks o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() o docs/159307 doc [patch] lpd smm chapter unconditionally installed o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/159279 [headers] [patch] __FreeBSD_cc_version in includes o kern/158376 [udf] [patch] The UDF file system under counts the num o bin/158363 [patch] partial restore problem in restore(8) o ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/158351 [cam] [patch] missing #includes in p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/157946 [patch] 'BSM conversion requested for unknown event' g o conf/157903 [devd.conf] [patch] automated kldload for USB class de f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o conf/157466 [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157337 eadler [handbook] [patch] Indentation changes to network serv o docs/157316 doc [patch] update devstat(9) man page o docs/157234 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o bin/156768 [patch] sockstat(1): missing spaces between long field o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156637 [headers] [patch] sys/types.h can't be included when _ p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156358 jkim [patch] make amdtemp.c compatible with Llano/Brazos pl o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o ports/156015 pgollucci [PATCH] dns/unbound add MUNIN-plugin o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o ports/155890 tabthorpe [patch] Mk/bsd.licenses.mk: don't leave temporary file o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an o bin/155567 [patch] cvs(1): add -r tag:date to CVS o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o kern/154915 [libc] [patch] Force stdio output streams to line-buff o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o bin/154570 [patch] gvinum(8) can't be built as part of the kernel f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o conf/154484 [patch] request for new functionality. jail zfs datase o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy a ports/154455 roam [patch] security/stunnel: add aloha sendproxy support p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o ports/154352 pgollucci [patch] multimedia/xmms: update using desktop and mime f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l f ports/154254 rene [patch] mail/asmail imap login broken with gmail at al o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o ports/154241 pgollucci [patch] games/wesnoth: move USE_* under bsd.port.optio f ports/154209 python [PATCH] lang/python: Install symlink for ptags o conf/154062 net [vlan] [patch] change to way of auto-generatation of v p bin/154042 delphij [patch] fix several rtprio(1) issues o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153567 pgollucci [PATCH] x11/fpc-x11: doesn't respect localbase o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o bin/153527 [patch] wake(8) should use sysexits.h o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o ports/153429 [patch] Fix explicite uses of unzip in ports o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out o ports/153231 pgollucci [PATCH] net-mgmt/nrpe2 enable ssl by default p bin/153206 maxim [patch] netstat(1): "netstat -sz" doesn't reset any IP o misc/153157 [build] [patch] Add support for generating userland de o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error a docs/153012 doc [patch] iostat(8) requires an argument to -c option o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o ports/152847 pgollucci [patch] port/buildbot-slave could use a startup script o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152792 [acpica] [patch] move temperature conversion macros to o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p o kern/152485 arundel [patch] seek offset for /dev/null(4) and /dev/zero(4) o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o ports/152224 python [patch] fix installed permissions for lang/python27 o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152131 script(1): [patch] Useless code in script.c (part 1) o bin/152084 [patch] pw(8) does not allow @ or ! in gecos o ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o bin/151937 [patch] netstat(1) utility lack support of displaying o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr p bin/151866 des [libfetch] [patch] closing the cached FTP connection o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/151600 [patch] route(8) does not always flush stdout o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o bin/151186 [patch] routed(8) turns RIP off if just one network ca o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl p bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o bin/150771 [patch] csup(1) GNUmakefile missing o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of o www/150553 www [patch] update Russian "FreeBSD Community" page o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the o kern/150251 net [patch] [ixgbe] Late cable insertion broken o bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o kern/150206 [patch] nmount(2): can't switch root partition to rw u o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a o stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o bin/149972 [patch] pw(8): usermod -u should error o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 pgollucci [PATCH] mail/dspam: important cleanup p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o www/149446 www [patch] improve misleading title of "report a bug" o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o kern/149173 fs [patch] [zfs] make OpenSolaris installa o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o gnu/143254 [patch] groff(1) build in base system does not honor P p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip p kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o docs/142917 arundel [patch] top(1) man page does not include information a o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o ports/142743 [PATCH] devel/cross-binutils: installed by *-rtems-gcc a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) p docs/142367 roam [patch] wlan(4) does not document requirement for kern o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o kern/141682 [libc] [patch] Faster version of strncpy(3) o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o kern/141655 [sio] [patch] Serial Console failure on Dell servers o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o ports/140939 rea [patch] security/vuxml: fix and extend files/newentry. o kern/140728 jfv [em] [patch] Fast irq registration in em driver a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- p conf/140650 cperciva [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p docs/140457 doc [patch] Grammar fix for isspace(3) o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum o ports/140364 ruby [patch] ports-mgmt/portupgrade-devel: #! line substitu o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n a bin/140309 bapt [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/140185 [patch] expand_number(3) does not detect overflow in n o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o ports/139872 crees [PATCH] ports-mgmt/porttools: improve port's directory o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o bin/139389 pluknet [patch] Change top(1) to display thread IDs o bin/139346 net [patch] arp(8) add option to remove static entries lis a bin/139314 [patch] install(1): install -d reports success on fail p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o kern/139080 [libc] [patch] closelog() can close negative file desc a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o ports/137958 ruby [patch] ports-mgmt/portupgrade fails with recursive de o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow p bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o conf/137671 [patch][request] enhance beastie.4th: possibility to d s gnu/137665 [patch] dialog(1) goes into tight loop on encountering p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct o bin/136994 net [patch] ifconfig(8) print carp mac address o ports/136917 python [patch] lang/python26: gettext detection o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa p gnu/136705 emaste [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136669 [libc] [patch] setmode(3) should always set errno on e o bin/136661 melifaro [patch] ndp(8) ignores -f option o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE o kern/135608 [patch] sysctl(8) should be able to handle byte values o docs/135516 doc [patch] pax(1) manual not mentioning chflags unawarene o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o kern/134249 [libiconv] [patch] ignore case for character set names o kern/134225 [libexec] [patch] Reduce disk write load from save-ent p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article o bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o bin/131427 [patch] Add to fetch(1) an ability to limit a number o p bin/131250 brian [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o kern/130657 bz [ip6] [patch] ipv6 class option o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a f ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o kern/130286 [patch] hifn(4) changes o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El p bin/130159 brian [patch] ppp(8) fails to correctly set routes p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o bin/129814 [patch] support of per script nice(1) value in periodi o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di o bin/129405 [patch] tcsh(1) vfork bugs p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o kern/129352 yongari [xl] [patch] xl0 watchdog timeout o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o docs/129024 keramida [patch] ipfw(8) improvements o usb/128977 usb [usb67] [patch] uaudio is not full duplex p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct p kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o conf/128433 [patch] Add option to allow a full login when doing 's o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to p bin/127986 [patch] ee(1): fix compiler warnings caused by use of p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t s bin/127918 [ata] [request] [patch] ATA Security support for ataco o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o bin/127633 edwin [patch] Update top(1) to 3.8b1 o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127276 [patch] ldd(1) invokes linux yes o bin/127265 [patch] ddb(4): Adding the ddb command set from module o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o bin/126433 [patch] some missing checks in rm(1) o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o kern/126075 net [inet] [patch] internet control accesses beyond end of o bin/125922 net [patch] Deadlock in arp(8) o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc a kern/125613 trasz [ufs] [patch] ACL problems with special files o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o conf/125041 [patch] periodic(8) new file: /etc/periodic/security/8 o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/124963 alc [vm] [patch] old pagezero fixes for alc o kern/124881 [devfs] [patch] [request] Add possibility to check whi o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o conf/124747 rc [patch] savecore can't create dump from encrypted swap a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o misc/124431 bde [build] [patch] minor revision of BDECFLAGS p bin/124392 [patch] bootparamd(8) does not work on arm p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net p bin/124052 [patch] adduser(8) throws errors when -f input file in o kern/123892 net [tap] [patch] No buffer space available o kern/123858 net [stf] [patch] stf not usable behind a NAT o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 f bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o conf/123119 rc [patch] rc script for ipfw does not handle IPv6 f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o conf/122883 [patch] login class for ukrainian users accounts o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o conf/122170 rc [patch] [request] New feature: notify admin via page o p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab o bin/122043 [patch] du(1) does not support byte-count-based report o conf/122037 [patch] add rsync example for inetd.conf o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user o conf/121064 [patch] Use ASCII characters for box/line characters i o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o conf/120263 [patch] 800.loginfail misses relevant security informa p bin/120256 gavin [patch] ftp(1): ftp -u URL/ returns a -1 p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o bin/118325 rc [patch] [request] new periodic script to test statuses p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/118126 fs [nfs] [patch] Poor NFS server write performance o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o bin/118069 [patch] camcontrol(8) should be able to leave device s o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing s bin/117830 [patch] who(1) no longer displays entries for folk log f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o bin/117687 [patch] fstab(5) format cannot handle spaces o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o bin/117520 [patch] csup(1) not-really-equivalent to cvsup o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117339 net [patch] route(8): loading routing management commands p bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th p stand/116826 jilles [patch] sh(1) support for POSIX character classes o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c p bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's p docs/115065 doc [patch] sync ps.1 with p_flag and keywords o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which o bin/113518 [patch] make(1): Prevent execution when command is a c o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o bin/113074 [patch] ppp(8): include for strcasecmp(3) s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112477 marius [ofw] [patch] Add support to set the node and type on o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112336 [patch] install(1): install -S (safe copy) with -C or s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111537 net [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110995 [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110146 joerg [patch] [request] Allow arbitrary gdb(1) options to by o bin/110068 [patch] rewrite of mdmfs(8) in shell o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit p docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105456 keramida [patch] overhaul of the security chapter (14) o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w p stand/104743 jilles [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive a bin/104092 keramida [patch] iostat(8): missing blanks in iostat output o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o ports/102946 secteam [patch] ports-mgmt/portaudit a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o bin/102162 [patch] tftpd(8): Limit port range for tftpd o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o conf/100616 [patch] syslog.conf: lines after exclamation point ign a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o bin/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/99328 [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/96999 [procfs] [patch] procfs reports incorrect information a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o bin/95698 philip [patch] moused(8): Software control of sysmouse o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind s www/94423 danger [patch] XML'ified release todo list o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work p kern/93331 [kernel] [patch] broken asm in kernel o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o conf/92523 rc [patch] allow rc scripts to kill process after a timeo s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o conf/91732 [patch] 800.loginfail: fix log message grep expression o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command o kern/91134 fs [smbfs] [patch] Preserve access and modification time f bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o bin/90311 [patch] add "eject" to mt(1) o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco o conf/88913 rc [patch] wrapper support for rc.subr o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 fs [patch] newfs(8): introduce -A flag for newfs to enabl o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so o www/87119 hrs [patch] encode copyright and such symbolically o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o bin/86485 eadler [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou f i386/85656 jhb [i386] [patch] expose more i386 specific CPU informati f i386/85655 jhb [i386] [patch] expose cpu info for i386 systems o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( a bin/77651 [patch] init(8) can lose shutdown related signals s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o bin/76362 [patch] sys directory link points to wrong location o gnu/76169 [patch] Add PAM support to cvs pserver o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o conf/74004 [patch] add fam support to inetd.conf o conf/73786 [patch] added WARNING in spanish to stable-supfile o conf/73677 rc [patch] add support for powernow states to power_profi o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o conf/72901 [patch]: dot.profile: prevent printing when doing an s o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o conf/72277 [patch] update for /usr/share/skel o conf/71994 [patch] dot.login: login shell may unnecessarily print o bin/71749 [patch] truss -f causes circular wait when traced proc o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71602 [patch] uninitialized "len" used instead of "slen" wit s bin/71290 des [patch] passwd(1) cannot change passwords other than N o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters o bin/70476 [patch] reboot(8) change, -p behavior default for halt o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports a kern/68905 secteam [patch] core dumps are assigned wrong ownership o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) f kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE a bin/63197 [patch] tftp(1) Bus error, core dumped a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s i386/61481 [patch] a mechanism to wire io-channel-check to userla o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o bin/58483 [patch] mount(8): allow type special or node relative o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement o bin/57715 [patch] tcopy(1) enhancement o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s bin/57407 [patch] Better NTP support for dhclient(8) and friends o docs/57298 doc [patch] add using compact flash cards info to handbook s bin/57255 usb [patch] usbd(8) and multi-function devices o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR o bin/55546 [patch] cdcontrol(1) play tr m:s.f interface is partia o bin/55539 [patch] Parse fstab(5) with spaces in path names f misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o conf/54170 [patch] error from weekly periodic script 330.catman s stand/53682 [feature request] [patch] add fuser(1) utility o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 [request] [patch] New functionality for mail(1) s usb/51958 usb [urio] [patch] update for urio driver o kern/51583 fs [nullfs] [patch] allow to work with devices and socket s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee o bin/51137 [patch] config(8) should check if a scheduler is selec o kern/51009 [aue] [patch] buggy aue driver fixed. s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48183 [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] Add documentation on the fixit disk o bin/47815 [patch] stty(1) -all should work. o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit a kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals o bin/46758 [patch] moused(8) enhancements o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o conf/45222 [patch] daily rejected mail hosts report too long o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44202 [rp] [patch] -stable rp driver does not work with mult o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl a bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login a bin/41583 [patch] mtree(8) assorted mtree bugs o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41271 [patch] non-suid crontab(1) o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o conf/40777 [patch] disktab does not support 2.88MB floppies o bin/40597 [patch] add fdisk(8) ability of showing extended parti o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix a bin/38727 [patch] mptable(1) should complain about garbage argum a kern/38554 net [patch] changing interface ipaddress doesn't seem to w s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o bin/37083 [patch] [request] small improvement to talk(1): add cl o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36902 [libc] [patch] proposed new format code %N for strftim o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce o bin/35886 [patch] pax(1) enhancement: custom time format for lis o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md o bin/34412 [patch] tftp(1) will still try and receive traffic eve o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o bin/33809 [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31890 [syscons] [patch] new syscons font o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o bin/30542 [patch] add -q option to shut up killall(1) s threa/30464 threads [patch] pthread mutex attributes -- pshared o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt s kern/29423 [request] [patch] new feature: kernel security hooks i p bin/29363 simon [patch] newsyslog(8) can support time as extension f kern/29355 [kernel] [patch] add lchflags support o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28364 bapt [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u o docs/27605 doc [patch] Cross-document references () o bin/27306 [patch] hw watchpoints work unreliable under gdb(1) o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password f kern/24959 net [patch] proper TCP_NOPUSH/TCP_CORK compatibility o bin/24485 [patch] to make cron(8) handle clock jumps o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23254 bapt [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network o kern/21998 net [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o kern/19756 [patch] Inability to use linux extended partition (typ s kern/19535 [procfs] [patch] procfs_rlimit tidyup o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16422 [patch] [request] newfs(8) always make root's / direct o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15168 [patch] Adding tracklist support to fdformat(1) p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai s kern/13326 [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts a kern/11024 mtm [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry o bin/4116 [patch] [kerberos] Kerberized login as .root fai s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 1912 problems total. From bugmaster at FreeBSD.org Mon Feb 20 11:15:07 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 20 11:15:24 2012 Subject: Current problem reports sorted by tag Message-ID: <201202201109.q1KB9S2W092039@freefall.freebsd.org> (Note: a better version of this report is available at http://people.freebsd.org/~linimon/studies/prs/pr_tag_index.html .) Problem reports for tag '2tb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/118912 fs [2tb] disk sizing/geometry problem with large array s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t 7 problems total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148083 scsi [aac] Strange device reporting o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg 2 problems total. Problem reports for tag 'acd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/150628 [acd] [ata] burncd(1) can't write to optical drive 1 problem total. Problem reports for tag 'acl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p 2 problems total. Problem reports for tag 'acpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164329 acpi [acpi] hw.acpi.thermal.tz0.temperature shows strange v o kern/162859 acpi [acpi] ACPI battery/acline monitoring partialy working o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o kern/160838 acpi [acpi] ACPI Battery Monitor Non-Functional o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne o kern/154955 acpi [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3 o kern/152438 acpi [acpi]: patch to acpi_asus(4) to add extra sysctls for o kern/152098 acpi [acpi] Lenovo T61p does not resume o i386/146715 acpi [acpi] Suspend works, resume not on a HP Probook 4510s o kern/145306 acpi [acpi]: Can't change brightness on HP ProBook 4510s f i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A o kern/143420 acpi [acpi] ACPI issues with Toshiba o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve f kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? f i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o bin/126162 acpi [acpi] ACPI autoload failed : loading required module o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H f i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f f kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o kern/91594 acpi [acpi] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/ 33 problems total. Problem reports for tag 'acpi_hp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163268 acpi [acpi_hp] fix driver detach in absence of CMI 1 problem total. Problem reports for tag 'acpi_ibm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP 1 problem total. Problem reports for tag 'acpi_thermal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa 1 problem total. Problem reports for tag 'acpica': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152792 [acpica] [patch] move temperature conversion macros to 1 problem total. Problem reports for tag 'ada': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157397 [ada] ahci/ada/cam NCQ timeouts on Samsung and non-dis 1 problem total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets 2 problems total. Problem reports for tag 'aha': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/83765 [aha] Adaptec 1542-CP requires plug-and-play switch se 1 problem total. Problem reports for tag 'ahc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123674 scsi [ahc] ahc driver dumping o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 s kern/45568 gibbs [ahc] ahc(A19160) pci parity error s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S 6 problems total. Problem reports for tag 'ahci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/161768 [ahci] [panic] Panics after AHCI timeouts o kern/161248 [ahci] Time out, extremly slow response while copying o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar f kern/158569 gavin [ahci] ROOT MOUNT ERROR (caused by AHCI module) o kern/155628 [ahci] ahci disables dvd device o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume 8 problems total. Problem reports for tag 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o kern/123520 scsi [ahd] unable to boot from net while using ahd o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system 6 problems total. Problem reports for tag 'aic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with 1 problem total. Problem reports for tag 'aic7xxx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c o kern/156513 scottl [aic7xxx] [patch] missing check of scb. 2 problems total. Problem reports for tag 'altq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue s kern/94182 [altq] [request] altq support for vlan driver 4 problems total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag 3 problems total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o kern/153303 [amr] amr device driver dont detect logical drive amrd o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/113098 [amr] Cannot read from amrd while under heavy load o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a 6 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci s kern/75407 net [an] an(4): no carrier after short time o kern/36170 [an] [patch] an(4) does an_init() even if interface is 4 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup 1 problem total. Problem reports for tag 'apm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in 1 problem total. Problem reports for tag 'ar': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o kern/94393 [ar] PseudoRAID loses track of the master disk o kern/93771 [ar] [panic] atacontrol status ar1 causes panic 8 problems total. Problem reports for tag 'arcmsr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154299 [arcmsr] arcmsr fails to detect all attached drives o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 2 problems total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/145300 qingli [arp] ARP table mapping is not refreshed on a MAC addr o kern/144777 qingli [arp] proxyarp broken in 8.0 [regression] o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/119432 net [arp] route add -host -iface causes arp e o conf/23063 net [arp] [patch] for static ARP tables in rc.network 10 problems total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 2 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165271 [ata] [patch] Correct Marvell SATA controller names o kern/164694 [ata] Regression in 3726 port multiplier support in 9. o kern/162620 [ata] SATA device lost when changing brightness on Len o kern/162609 [ata] Cannot write to Sony DRU-835A DVD drive o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar o kern/159511 [ata] ad0 disappear after upgrading to 8.2-STABLE, roo o kern/159326 [ata] [panic] kernel panics when accessing spindowned o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o kern/149201 [ata] DVD/CD Drive Error o kern/148675 [ata] [panic] kernel panics - reboots o kern/148361 [ata] [panic] Kernel Panic, With Faulty Drives o kern/147227 [ata] SSD preformance issues o kern/146661 [ata] damage files on ufs on ata pseudo raid when runn o kern/146270 [ata] Divide by zero in ata driver o kern/144930 [ata] SATA DVD Drive is not detected s kern/144770 [ata] hard drive spindown functionality broken? o bin/144641 [ata] burncd(8) freezes whole system while trying to b o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o kern/143126 [ata] Data loss on read timeout o kern/142802 [ata] [panic] on removing drive: recursed on non-recur o i386/142421 i386 [ata] optical drives not found o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141653 [ata] [panic] Panic in ata? o kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o kern/138537 [ata] [panic] Memory modified after free o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/136356 [ata] SATA / ICH7 problems o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/132252 [ata] No CD/DVD devices found! o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130726 [ata] DMA errors accessing multiple SATA channels f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o kern/130171 [ata] UDMA CF cards do not work with FreeBSD o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/128035 [ata] unexpexted detach of external SATA drive s bin/127918 [ata] [request] [patch] ATA Security support for ataco o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o kern/126142 [ata] M5281: READ DMA faults, device detaching o kern/125859 [ata] [patch] sata access failure [regression] a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already f kern/120717 [ata] boot problem when recognizing ata1 o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o kern/120177 [ata] ATA DMA modes don't work on CF cards o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o kern/117972 [ata] SATA DLT V4 not recognized properly o kern/117443 [ata] [hang] system hang with ataidle o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/116935 [ata] Intermittent error with Promise PDC40718 o kern/115479 [ata] [request] ASUS P5K SE need more support o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 o kern/114213 [ata] optical drive not detected in the 6.x series of s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/106432 [ata] Record of disks (DVD-R) through the k3b program s kern/104950 [ata] [request] no support for SATA controller Initio o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96171 [ata] burncd(8): (ATA driver) fails to write in vcd mo o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m s bin/81692 [patch] [ata] atacontrol(8) support for disk APM and a o kern/79783 [ata] hw.ata.atapi_dma=1 reduces HDD writing transfer o kern/78758 [ata] [patch] Add support for re-sizing ATA disks o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 102 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/118161 [atapicam] failure message from ATAPI CDROM in the boo o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi a kern/78929 [atapicam] atapicam prevents boot, system hangs o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong 6 problems total. Problem reports for tag 'ataraid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159271 [ataraid] [patch] "pseudo-raid" controllers does not w o kern/148748 [ataraid] Metadata Read Write Inconsistency o kern/134887 [ataraid] source consistency problem o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr 6 problems total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165306 wireless [ath] race conditions between scanning and beacon time o kern/165220 wireless [ath] "ath_rx_tasklet: sc_inreset_cnt > 0; skipping" m o kern/165149 wireless [ath] [net80211] Ping with data length more than iv_fr o kern/165060 wireless [ath] vap->iv_bss race conditions causing crashes insi o kern/165021 wireless [ath] ath device timeout during scan/attach, if wlan_c o kern/164721 wireless [ath] ath device timeouts o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode o kern/163719 wireless [ath] ath interface do not receive multicast o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin o kern/163573 wireless [ath] hostap mode TX buffer hang o kern/163559 wireless [ath] kernel panic AH_DEBUG o bin/163455 [ath] "bssid" in wlanN create_args does not change wla o kern/163318 wireless [ath] ath(4) stops working o kern/163082 wireless [ath] ar9285 diversity fixes o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang p kern/162475 bschmidt [ath] functions with return type HAL_BOOL (might) retu o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o kern/156884 wireless [ath] ath instablity o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154567 wireless [ath] ath(4) lot of bad series(0) o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/153448 wireless [ath] ath networking device loses association after a o kern/152750 wireless [ath] ath0 lot of bad series hwrate o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o kern/148322 wireless [ath] Triggering atheros wifi beacon misses in hostap o kern/148317 wireless [ath] FreeBSD 7.x hostap memory leak in net80211 or At o kern/148078 wireless [ath] wireless networking stops functioning o kern/145826 wireless [panic] [ath] Unable to configure adhoc mode on ath0/w p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 wireless [ath] [panic] ath(4) related panic o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach f kern/105348 wireless [ath] ath device stopps TX 54 problems total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data o kern/91311 net [aue] aue interface hanging o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o kern/51009 [aue] [patch] buggy aue driver fixed. 6 problems total. Problem reports for tag 'axe': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack o usb/88408 usb [axe] axe0 read PHY failed 2 problems total. Problem reports for tag 'bce': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155004 yongari [bce] [panic] kernel panic in bce0 driver o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 3 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/155442 jhb [bge] bge driver is seen but does not respond to netwo o kern/136876 yongari [bge] bge will not resume properly after suspend 2 problems total. Problem reports for tag 'binutils': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD 2 problems total. Problem reports for tag 'bktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/104675 [bktr] METEORSINPUT seemingly not setting input o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/56245 [bktr] Distorted and choppy video with bktr-driver on s kern/48279 [bktr] Brooktre878 may cause freeze o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. 18 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163985 [boot0] Incorrect operand size in boot0 o kern/159222 [boot0] unusual behavior writing boot0 from single use p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive 3 problems total. Problem reports for tag 'bootinst': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/22914 [bootinst] bootinst messages are not updated 1 problem total. Problem reports for tag 'bpf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164534 csjp [bpf] net.bpf.zerocopy_enable=1 makes pflogd eat cpu a o kern/163370 csjp [bpf] [request] enable zero-copy BPF by default o kern/158930 net [bpf] BPF element leak in ifp->bpf_if->bif_dlist p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents f kern/138029 net [bpf] [panic] periodically kernel panic and reboot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. 8 problems total. Problem reports for tag 'bsd.commands.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/159725 portmgr [bsd.commands.mk] Add new command: JOT 1 problem total. Problem reports for tag 'bsd.gnome.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/162260 gnome [bsd.gnome.mk] don't add useless dependency for INSTAL 1 problem total. Problem reports for tag 'bsd.java.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo 1 problem total. Problem reports for tag 'bsd.port.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/165238 portmgr [bsd.port.mk] [patch] Resize port config dialog box in o ports/164847 portmgr [bsd.port.mk] [patch] java/diablo-jdk16 does not build o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164390 portmgr [bsd.port.mk] make package-recursive fails with noise o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ s ports/162178 portmgr [bsd.port.mk] Add bsd.clang.mk with Clang/LLVM support o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/158962 portmgr [bsd.port.mk] Make EXTRACT_CMD more flexible-- support o ports/158936 portmgr [bsd.port.mk] Add a filename field to DESKTOP_ENTRIES o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to s ports/148695 portmgr [bsd.port.mk] [patch] Easier / automatic regression-te s ports/148637 portmgr [bsd.port.mk] Options are ignored for any port that de o ports/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend f ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe 26 problems total. Problem reports for tag 'bsd.python.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken 1 problem total. Problem reports for tag 'busdma': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach 1 problem total. Problem reports for tag 'bwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) 1 problem total. Problem reports for tag 'bwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall 2 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164909 [cam] devfs does not create entries when removable med o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o kern/158351 [cam] [patch] missing #includes in o kern/153514 scsi [cam] [panic] CAM related panic s kern/149927 scsi [cam] hard drive not stopped before removing power dur o kern/148070 [cam] [panic] panic: _mtx_lock_sleep: recursed on non- a usb/143790 usb [boot] [cam] can not boot from usb hdd f kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo 22 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad 6 problems total. Problem reports for tag 'carp': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/153848 bz [carp] [ipv6] backup host can't connect to master host a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash p kern/132285 glebius [carp] alias gives incorrect hash in dmesg o kern/132107 glebius [carp] carp(4) advskew setting ignored when carp IP us f kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat p kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi p kern/126945 glebius [carp] CARP interface destruction with ifconfig destro p kern/126714 glebius [carp] CARP interface renaming makes system no longer o kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg p kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste p kern/117448 glebius [carp] 6.2 kernel crash [regression] p kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) 12 problems total. Problem reports for tag 'cas': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/157932 gavin [cas] loading CAS4 at boot hangs system 1 problem total. Problem reports for tag 'cbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114550 [cbb] Cardbus WiFi card activation problem 1 problem total. Problem reports for tag 'cd': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from 1 problem total. Problem reports for tag 'cd9660': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored 3 problems total. Problem reports for tag 'cdce': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op 1 problem total. Problem reports for tag 'ciss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159412 scsi [ciss] 7.3 RELEASE: ciss0 ADAPTER HEARTBEAT FAILED err o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o kern/149219 [ciss] DL380 G6 P212 trouble o kern/146287 scsi [ciss] ciss(4) cannot see more than one SmartArray con o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125647 [ciss] [panic] System randomly crashes - ciss driver 10 problems total. Problem reports for tag 'coda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162944 fs [coda] Coda file system module looks broken in 9.0 1 problem total. Problem reports for tag 'conf': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/160276 brueffer [conf] Spelling Mistake in comments in configure-files 1 problem total. Problem reports for tag 'coretemp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158160 [coretemp] coretemp reports incorrect CPU temperature 1 problem total. Problem reports for tag 'cpufreq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146436 [cpufreq] [panic] Panic when changing profile to econo o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf f kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de 7 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac p kern/115695 [crypto] When "device padlock" defined first ssh to ma o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p 6 problems total. Problem reports for tag 'cue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75710 [cue] cue0 device configuration causes kernel panic 1 problem total. Problem reports for tag 'cxgb': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi p kern/146759 np [cxgb] [patch] cxgb panic calling cxgb_set_lro() witho o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/125806 np [cxgb] cxgb packet counters do not work 4 problems total. Problem reports for tag 'cy': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom 1 problem total. Problem reports for tag 'dc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/82070 [dc] Not all dc(4) devices can be used: MII without an o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite 7 problems total. Problem reports for tag 'de': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133495 [de] interface not properly initialized on boot o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern 2 problems total. Problem reports for tag 'devctl': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use 1 problem total. Problem reports for tag 'devd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. 1 problem total. Problem reports for tag 'devd.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/157903 [devd.conf] [patch] automated kldload for USB class de 1 problem total. Problem reports for tag 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124881 [devfs] [patch] [request] Add possibility to check whi o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ p kern/114057 jh [devfs] devfs symlink over device doesn't work 3 problems total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo o kern/83254 [digi] driver can't init Digiboard PC/4e o kern/82227 [digi] Xem: chained concentrators not recognised o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection 6 problems total. Problem reports for tag 'diskless': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i 1 problem total. Problem reports for tag 'dri': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 1 problem total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 s kern/150514 kib [drm] [request] Reorganize DRM Directory to Support Dr p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel 5 problems total. Problem reports for tag 'dtrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164724 [dtrace] [patch] Signal bug in Dtrace o kern/160307 [dtrace] dtrace -lv can not identify the args of the o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr o kern/159612 [dtrace] walltimestamp and timestamp functions incompl p kern/159046 rwatson [dtrace] [patch] dtrace library is linked with a wrong o kern/159013 rwatson [dtrace] kldunload dtraceall crashing if userland dtra o bin/158431 [dtrace] crash in dt_proc_lookup when attaching to PID o kern/130998 [dtrace] DTrace stops tracing because of struct thread 8 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162558 net [dummynet] [panic] seldom dummynet panics f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same 12 problems total. Problem reports for tag 'e1000': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c 1 problem total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement 1 problem total. Problem reports for tag 'editline': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi 1 problem total. Problem reports for tag 'ef': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le 1 problem total. Problem reports for tag 'ehci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/156596 usb [ehci] Extremely high interrupt rate on ehci/uhci IRQ1 o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci 9 problems total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162153 net [em] intel em driver 7.2.4 don't compile o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/159294 net [em] em watchdog timeouts o kern/158635 net [em] TSO breaks BPF packet captures with em driver o kern/157418 net [em] em driver lockup during boot on Supermicro X9SCM- o kern/156667 net [em] em0 fails to init on CURRENT after March 17 o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o kern/153308 net [em] em interface use 100% cpu o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o kern/150516 jfv [em] e1000 receive queue handling problem o kern/148004 jfv [em] Inconsistent networking with em driver on FreeBSD o kern/147989 jfv [em] em Receive errors / CRC Errors / Alignment Errors o kern/146263 jfv [em] [panic] Panic in em(4) SIOCADDMULTI/em_set_multi/ p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/143573 jfv [em] em(4) NIC crashes intermittently o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140778 jfv [em] randomly panic in vlan/em o kern/140728 jfv [em] [patch] Fast irq registration in em driver o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122058 jfv [em] [panic] Panic on em1: taskq o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o kern/121298 jfv [em] [panic] Fatal trap 12: page fault while in kernel o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o kern/117043 jfv [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM o kern/115930 jfv [em] Dell nic enumeration problem o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/101226 jfv [em] Access to IPMI module is lost when the em driver 50 problems total. Problem reports for tag 'endian': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA 1 problem total. Problem reports for tag 'ep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151690 net [ep] network connectivity won't work until dhclient is 1 problem total. Problem reports for tag 'est': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165303 [est] CPU freq changing not supported on VIA VE-900 (N o i386/145718 i386 [est] [patch] fix freq calculation from MSR for CPUs w 2 problems total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx 1 problem total. Problem reports for tag 'exp-run': S Tracker Resp. Description -------------------------------------------------------------------------------- a ports/165245 crees [exp-run] Make databases/postgresql90-client the defau a ports/165223 linimon [exp-run] update ruby 1.8.7 to p358 and update ruby 1. a ports/165143 portmgr [exp-run] [patch] devel/apr: CVE / Update / exp-run / a ports/165082 ashish [PATCH] [exp-run] exp-run required for updating bsd.em o ports/164896 portmgr [exp-run] add support for testing perl modules f ports/163524 linimon [exp-run] estimate number of ports utilizing old inter o ports/162948 portmgr [exp-run] 10.0 exp-run without libreadline in base sys o ports/160624 portmgr [exp-run] Process USE_ flags in both parts of bsd.port a ports/159117 linimon [exp-run] Clang exp-run request. o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por 14 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155199 fs [ext2fs] ext3fs mounted as ext2fs gives I/O errors o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems 3 problems total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119618 [fdc] Double Density Disks do not work correctly o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o kern/79944 [fdc] virtual floppy controller of Virtual PC does not s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o kern/74827 [fdc] Problem writing data to floppies o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/66960 [fdc] [patch] filesystems not unmounted during reboot 10 problems total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159971 mckusick [ffs] [panic] panic with soft updates journaling durin o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/116583 fs [ffs] [hang] System freezes for short time when using o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna 7 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 2 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/113785 firewire [firewire] dropouts when playing DV on firewire o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w 14 problems total. Problem reports for tag 'flowtable': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155604 kmacy [flowtable] Flowtable excessively caches dest MAC addr o kern/148018 net [flowtable] flowtable crashes on ia64 f kern/146792 net [flowtable] flowcleaner 100% cpu's core load f kern/144917 net [flowtable] [panic] flowtable crashes system [regressi 4 problems total. Problem reports for tag 'fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, 2 problems total. Problem reports for tag 'fusefs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE 1 problem total. Problem reports for tag 'fusefs-ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/159191 usb [fusefs-ntfs] write on fusefs-ntfs mounted partition r 1 problem total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139162 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir 1 problem total. Problem reports for tag 'fwohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re 1 problem total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC 2 problems total. Problem reports for tag 'gbde': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo o kern/66162 [gbde] gbde destroy error 3 problems total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o kern/162010 geom [geli] panic: Provider's error should be set (error=0) f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during o kern/160409 geom [geli] failed to attach provider o kern/157863 geom [geli] kbdmux prevents geli passwords from being enter o kern/157722 fs [geli] unable to newfs a geli encrypted partition o arm/154227 arm [geli] using GELI leads to panic on ARM p kern/152609 pjd [geli] geli onetime on gzero panics o kern/146429 pjd [geli][panic][patch] kernel panic if geli autodetach i o kern/134113 geom [geli] Problem setting secondary GELI key o kern/133931 geom [geli] [request] intentionally wrong password to destr o bin/131415 geom [geli] keystrokes are unregulary sent to Geli when typ o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120066 [geli] geli boot password input fail when using serial o kern/117188 [geli] System crashes/reboots on access to file on GEL o kern/115856 geom [geli] ZFS thought it was degraded when it should have f kern/111967 [geli] glabel - label is seemingly not written to disk o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE 19 problems total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164254 geom [geom] gjournal not stopping on GPT partitions o kern/164252 geom [geom] gjournal overflow o kern/164143 geom [geom] Partition table not recognized after upgrade R8 o kern/162036 [geom] Fatal trap 12: page fault while in kernel mode o kern/161979 geom [geom] glabel doesn't update after newfs, and glabel s o kern/161752 geom [geom] glabel(8) doesn't get gpt label change o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra f kern/159595 geom [geom] [panic] panic on gmirror unload in vbox [regres o kern/158197 geom [geom] geom_cache with size>1000 leads to panics o kern/157739 geom [geom] GPT labels with geom_multipath o kern/157724 geom [geom] gpart(8) 'add' command must preserve gap for sc o kern/157723 geom [geom] GEOM should not process 'c' (raw) partitions fo o kern/155994 geom [geom] Long "Suspend time" when reading large files fr o kern/154226 geom [geom] GEOM label does not change when you modify them o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/150555 geom [geom] gjournal unusable on GPT partitions o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/145818 geom [geom] geom_stat_open showing cached information for n o kern/145042 geom [geom] System stops booting after printing message "GE o kern/142563 geom [geom] [hang] ioctl freeze in zpool o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o kern/140352 geom [geom] gjournal + glabel not working f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/135898 geom [geom] Severe filesystem corruption - large files or l o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o kern/131353 geom [geom] gjournal(8) kernel lock f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/129674 geom [geom] gjournal root did not mount on boot o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/123122 geom [geom] GEOM / gjournal kernel lock o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122067 geom [geom] [panic] Geom crashed during boot o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/113837 geom [geom] unable to access 1024 sector size storage o kern/113419 geom [geom] geom fox multipathing not failing back o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o kern/94632 geom [geom] Kernel output resets input while GELI asks for o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa o kern/84556 geom [geom] [panic] GBDE-encrypted swap causes panic at shu o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( 45 problems total. Problem reports for tag 'geom_part': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa 5 problems total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o kern/154943 net [gif] ifconfig gifX create on existing gifX clears IP o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o conf/97014 net [gif] gifconfig_gif? in rc.conf does not recognize IPv o conf/96094 [gif] startup scripts do not configure gif interfaces o kern/95532 [gif] if_gif has artificial limitations 12 problems total. Problem reports for tag 'gjournal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass 6 problems total. Problem reports for tag 'glxsb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec 1 problem total. Problem reports for tag 'gmirror': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147667 geom [gmirror] Booting with one component of a gmirror, the o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk f kern/128276 geom [gmirror] machine lock up when gmirror module is used o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad 5 problems total. Problem reports for tag 'gnats': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/164396 bugmeister [GNATs] add 'enhancement' class o misc/164395 bugmeister [GNATs] add support for .patch attachments o misc/164394 bugmeister [GNATS] Change some fields to 'unset' to prevent misca 3 problems total. Problem reports for tag 'gpio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m 1 problem total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164475 net [gre] gre misses RUNNING flag after a reboot o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/125239 net [gre] kernel crash when using gre f kern/122065 bz [ipsec] [gre] gre over ipsec not working o conf/111557 [gre] link1 flag doesn't work as intended when specifi p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with 8 problems total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/163879 doc [handbook] handbook does not say about how to force to o docs/162433 doc [handbook] QEMU instructions for FreeBSD guests o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 o docs/161057 doc [handbook] Error in section 18.17.4 of the handbook o docs/160460 doc [handbook] Network setup guide suggestion o docs/160447 doc [handbook] Developer's Handbook contains some outdated o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/160445 doc [handbook] Handbook does not mention ACL o docs/159374 brd [handbook] Difficulty following guide on configuring l o docs/159298 doc [handbook] document Konqueror with Webkit support to i o docs/157908 doc [handbook] Description of post-install should include o docs/157337 eadler [handbook] [patch] Indentation changes to network serv f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145631 blackend [handbook] References to ttyd0 serial devices in handb o docs/144543 chinsan [handbook] IPFW doc change o docs/144515 doc [handbook] Expand handbook Table of contents o docs/143416 doc [handbook] IPFW handbook page issues a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev o docs/140082 bland [handbook] handbook/jails: russian translation is miss o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/132718 doc [handbook] Information about adding a new mirror is ou o docs/121585 doc [handbook] Wrong multicast specification o docs/59240 blackend [patch] [handbook] update: linux MATLAB 28 problems total. Problem reports for tag 'hast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158098 pjd [hast] problem with copying data on hast-device 1 problem total. Problem reports for tag 'hdac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, o kern/152500 multimedia [hdac] play interrupt timeout, channel dead 2 problems total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h o kern/162952 [headers] Problems including netinet/tcp_var.h o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c o kern/159279 [headers] [patch] __FreeBSD_cc_version in includes o kern/156637 [headers] [patch] sys/types.h can't be included when _ o kern/155429 [headers] including malloc.h should not abort compile. o kern/149960 [headers] syntax error /usr/include/machine/endian.h a kern/149012 gavin [headers] [patch] please replace '#include -interfac s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o kern/83778 [ip6] [patch] JPv6 cannot use Jumbo Frames o kern/77341 net [ip6] problems with IPV6 implementation 34 problems total. Problem reports for tag 'ipf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 12 problems total. Problem reports for tag 'ipfilter': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162926 net [ipfilter] Infinite loop in ipfilter with fragmented I o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o kern/131601 net [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp 6 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking o kern/164690 ipfw [ipfw] Request for ipv6 support in ipfw tables o kern/163873 ipfw [ipfw] ipfw fwd does not work with 'via interface' in o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156279 net [if_bridge][divert][ipfw] unable to correctly re-injec f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo o kern/148928 hrs [ipfw] Problem with loading of ipfw NAT rules during s o kern/148827 ipfw [ipfw] divert broken with in-kernel ipfw o kern/148689 ipfw [ipfw] antispoof wrongly triggers on link local IPv6 a o kern/148430 ipfw [ipfw] IPFW schedule delete broken. o conf/148137 hrs [ipfw] call order of natd and ipfw startup scripts o kern/148091 ipfw [ipfw] ipfw ipv6 handling broken. f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o kern/137232 ipfw [ipfw] parser troubles o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/130109 net [ipfw] Can not set fib for packets originated from loc f kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o bin/83046 ipfw [ipfw] ipfw2 error: "setup" is allowed for icmp, but s o kern/82724 ipfw [ipfw] [patch] [request] Add setnexthop and defaultrou o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/56031 luigi [ipfw] ipfw hangs on every invocation s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau 49 problems total. Problem reports for tag 'ipl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 2 problems total. Problem reports for tag 'ipmi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147855 [ipmi] [patch] kernel panic when IPMI enabled on some o kern/125389 [ipmi] [bce] IPMI problem with bce a kern/123904 [ipmi] ipmi(4) reports negative temperature values on a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/79143 [ipmi] Broadcom NIC driver do not work for IPMI 5 problems total. Problem reports for tag 'ipnat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt 3 problems total. Problem reports for tag 'ips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may 1 problem total. Problem reports for tag 'ipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164400 net [ipsec] immediate crash after the start of ipsec proce o kern/159629 net [ipsec] [panic] kernel panic with IPsec in transport m o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o kern/147894 net [ipsec] IPv6-in-IPv4 does not work inside an ESP-only o kern/146190 vanhu [ipsec][patch] NAT traversal does not work in transpor o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/129517 net [ipsec] [panic] double fault / stack overflow s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs 26 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131087 bschmidt [ipw] [panic] ipw / iwi - no sent/received packets; iw o kern/126339 net [ipw] ipw driver drops the connection o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o kern/84861 thompsa [ipw] [patch] still can't get working ipw(4) with adho a kern/82926 thompsa [ipw] ipw(4) doesn't seem to do WPA, also leaves entri 5 problems total. Problem reports for tag 'ipx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi 1 problem total. Problem reports for tag 'irq': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/119696 [irq] [ral] ral device causes massive interrupt storm o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o 7 problems total. Problem reports for tag 'isa': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/37441 davidxu [isa] [patch] ISA PNP parse problem 1 problem total. Problem reports for tag 'iscsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157770 scsi [iscsi] [panic] iscsi_initiator panic o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc 2 problems total. Problem reports for tag 'isp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159414 mjacob [isp] isp(4)+gmultipath(8) : removing active fiber pat o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up 3 problems total. Problem reports for tag 'iwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164365 wireless [iwi] iwi0: UP/DOWN in f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o kern/123559 net [iwi] iwi periodically disassociates/associates [regre a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/116185 net [iwi] if_iwi driver leads system to reboot 9 problems total. Problem reports for tag 'iwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163154 [iwn] fatal firmware error on 9.0-RC3 o kern/161407 bschmidt [iwn] iwn panic on 9.0-BETA3 o kern/161293 wireless [iwn] hang at startup when starting network o kern/154826 bschmidt [iwn] iwn driver fails to power on adapter after resum f kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif 5 problems total. Problem reports for tag 'ix': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) 1 problem total. Problem reports for tag 'ixgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and 10 problems total. Problem reports for tag 'jail': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159918 jail [jail] inter-jail communication failure o kern/156584 bz [jail] ipv4 packet is not forward to v4-mapped binding o kern/156111 jail [jail] procstat -b not supported in jail o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o kern/145444 secteam [jail] sysinstall and sade can access host's disks fro o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o kern/133265 jail [jail] is there a solution how to run nfs client in ja o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o bin/78763 pjd [patch] [jail] Added jail support to ps(1) o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai 17 problems total. Problem reports for tag 'joy': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/64588 [joy] [request] Extend joystick driver architecture to 1 problem total. Problem reports for tag 'kbdmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/146793 gavin [kbdmap] [patch] Danish kbdmap for MacBook o conf/72465 [kbdmap] [patch] United States International keyboard 2 problems total. Problem reports for tag 'kbdmux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153459 [kbdmux][patch] add option to specify built-in keymap p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c 2 problems total. Problem reports for tag 'kerberos': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o kern/161888 [kerberos] nfs -sec=krb5x/ldap/krb5-heimdal fix/upgrad o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup o kern/151444 [kerberos] Kerberos5 is broken in the base system from o bin/147175 [kerberos] [patch] libhx509.so containes references to o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o bin/4116 [patch] [kerberos] Kerberized login as .root fai 8 problems total. Problem reports for tag 'kern.post.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE 1 problem total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/163623 eadler [kernel] sysctl net.inet.icmp.icmplim_output descripti o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib o kern/162174 [kernel] [patch] rman_manage_region() error return pat o kern/161949 [kernel] 64-bit structures are used even with 32-bit c o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/146588 [kernel] [patch] sys/kern/kern_uuid.c has a le16dec be p kern/145865 [kernel] [panic] kernel memory leak with disabled devd o kern/145590 [kernel] [patch] SIG_ATOMIC_{MIN,MAX} does not match s o kern/145434 [kernel] [patch] Kernel messages about processes don't o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/138117 [kernel] [panic] spin lock held too long o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o kern/129164 [kernel] Wrong priority value for normal processes o kern/121073 [kernel] [patch] run chroot as an unprivileged user o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o kern/119202 [kernel] [patch] Add generic support for disabling dev o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c p kern/93331 [kernel] [patch] broken asm in kernel o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o kern/85651 [kernel] [patch] debugging code to show entries in eve o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o kern/81588 [kernel] [patch] Devices with SI_CHEAPCLONE flag don't s kern/79339 [kernel] [patch] Kernel time code sync with improvemen s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX s kern/50827 [kernel] [patch] [request] add sane record locking o kern/50526 [kernel] [patch] update to #! line termination o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o kern/37555 [kernel] [patch] vnode flags appear to be changed in n f kern/29355 [kernel] [patch] add lchflags support 56 problems total. Problem reports for tag 'keyboard': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/165163 usb [keyboard] The USB RF keyboard and mouse become non-re o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o conf/160227 [keyboard] Please include new keyboard mapping: French o usb/156898 usb [keyboard] usb keyboard does not work while boot (ps2 o i386/153851 usb [keyboard] keyboard issues on new Intel Mother boards. o usb/153703 usb [keyboard] My USB keyboard can not be used in 8-STABLE o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER f kern/144938 usb [keyboard] [boot] Boot Failure with Apple (MB869LL/A) o kern/142390 [keyboard] 30th console switch hangs computer complete o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o kern/135164 [keyboard] UK currency key inactive o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o kern/115253 [keyboard] Wireless keyboard not working at boot o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, f kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o kern/80694 [keyboard] [patch] atkbd looped on Acer TravelMate 270 o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( 24 problems total. Problem reports for tag 'kld': S Tracker Resp. Description -------------------------------------------------------------------------------- p docs/142938 wkoszek [kld] share/examples: fix warnings 1 problem total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o kern/149857 [kqueue] kqueue not reporting EOF under certain circum o kern/137246 [kqueue] kevents not generated for file writes through o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i 11 problems total. Problem reports for tag 'kthread': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend 1 problem total. Problem reports for tag 'ktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot 1 problem total. Problem reports for tag 'lagg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164901 net [regression] [patch] [lagg] igb/lagg poor traffic dist o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) o kern/157182 net [lagg] lagg interface not working together with epair p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o kern/156226 net [lagg]: failover does not announce the failover to swi o kern/145728 net [lagg] Stops working lagg between two servers. o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/139117 net [lagg] + wlan boot timing (EBUSY) o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge 13 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115526 [libalias] libalias doesn't free memory o kern/105579 [libalias] dcc resume over natd in 6.x o kern/74450 [libalias] [patch] enable libalias/natd to create skip o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/41307 [libalias] [patch] logging of links lifecycle (add/del 6 problems total. Problem reports for tag 'libarchive': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport 4 problems total. Problem reports for tag 'libbsdxml': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157446 [libbsdxml] base expat needs minor fixes from vendor c 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164674 [patch] [libc] vfprintf/vfwprintf return error (EOF) o o kern/164637 [libc] Problem with vsnprintf in libc.so when compiled o kern/164445 [libc] lseek(2) always returns ENXIO with SEEK_DATA/SE s kern/164425 [libc] stat(2) doesn't work in 32bit mode on amd64 o kern/162976 [libc] cron fails unnecessarily via setlogin(2) with s o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159179 [libc] close(2) emitting ECONNRESET is not POSIX compl o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o kern/156684 [libc] getaddrinfo(3) returns improper error o kern/154915 [libc] [patch] Force stdio output streams to line-buff o bin/153502 [libc] regex(3) bug with UTF-8 locale p bin/152551 gavin [libc] Remove unused variables. o kern/152036 net [libc] getifaddrs(3) returns truncated sockaddrs for n o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc o stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o kern/149323 [libc] Applications with large memory footprint failin o kern/148581 [libc] fopen(3) fails with EMFILE if there are more th o kern/148179 [libc] Possible Memory Leak in getaddrinfo(3) o kern/147839 [libc] [patch] syscall(2) with wrong argument causing o kern/147756 [libc] open_socket_in: Protocol not supported - after o kern/147647 [libc] select(2) wakes after 24 hours even if timeout o kern/147226 [libc] read(fd, buffer, len) returns -1 immediately, o kern/146889 [libc] [patch] Not having NET_RT_IFLIST #defined cause o kern/146845 net [libc] close(2) returns error 54 (connection reset by o kern/142772 net [libc] lla_lookup: new lle malloc failed o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep s stand/141705 standards [libc] [request] libc lacks cexp (and friends) o kern/141682 [libc] [patch] Faster version of strncpy(3) a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139080 [libc] [patch] closelog() can close negative file desc o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o kern/136669 [libc] [patch] setmode(3) should always set errno on e o kern/134391 [libc] dladdr(3) does effectively not work on main pro o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error a bin/130504 [libc] Serious bug in regular expression library (rege o kern/128933 kib [libc] realpath(3) does not follow SUS specification f o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/126230 [libc] select(2) causing weird process cpu usage and l o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o kern/124160 net [libc] connect(2) function loops indefinitely o kern/121656 [libc] [patch] telldir(3) issues o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware s kern/114578 [libc] wide character printing using swprintf(dst, n, o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o bin/108118 [libc] files should not cache their EOF status p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o bin/102515 [libc] fsck_ufs crashes if no console at all o kern/100709 net [libc] getaddrinfo(3) should return TTL info o bin/99800 [libc] [patch] Add support for profiling multiple exec a bin/96840 [libc] [patch] getgrent() does not return large groups o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o bin/95002 [libc] hash db source code has a bug which prevents us p stand/94729 gnn [libc] fcntl() throws undocumented ENOTTY o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o kern/82980 [libc] realpath(3) treats regular files as directories s kern/79048 [libc] realloc() copies data even when the size of all o kern/78787 [libc] [patch] sysconf(_SC_CLK_TCK) may return incorre o kern/76398 [libc] stdio can lose data in the presence of signals o kern/75855 [libc] getpwent(3) functions on 5.3 with large passwor s bin/75767 [libc] [request] "fdclose" function in libc o kern/70511 [libc] When fread(3)ing with buffering turned off, man o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/68690 [libc] write(2) returns wrong value when EFAULT s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI s kern/56720 [libc] [request] UNICODE support in Resolver o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31647 net [libc] socket calls can return undocumented EINVAL o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d 87 problems total. Problem reports for tag 'libcrypt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/75934 [libcrypt] [patch] missing blowfish functionality in p 2 problems total. Problem reports for tag 'libcrypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O 1 problem total. Problem reports for tag 'libdialog': S Tracker Resp. Description -------------------------------------------------------------------------------- p gnu/148609 imp [libdialog] [patch] printing to a checklist window on 1 problem total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/148881 [libdisk] [patch] libdisk emits errors w/ disks that c o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk 6 problems total. Problem reports for tag 'libedit': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159226 [libedit] [patch] libedit does not always restore its p bin/145528 gavin [libedit] ftp(1) crashes in libedit when cancelling a o kern/117348 [libedit] Loading history file sometimes fails in libe 3 problems total. Problem reports for tag 'libexec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/110017 [libexec] [patch] serial port console output garbled o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/45729 [libexec] [patch] make rbootd transfer the default fil 5 problems total. Problem reports for tag 'libfetch': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature p bin/151866 des [libfetch] [patch] closing the cached FTP connection o kern/140835 des [libfetch] fetchParseURL(3) returns success with inval o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o kern/116005 des [libfetch] libfetch accepts invalid URLs o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip 6 problems total. Problem reports for tag 'libgcc': S Tracker Resp. Description -------------------------------------------------------------------------------- s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi 2 problems total. Problem reports for tag 'libgeom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157879 geom [libgeom] [regression] ABI change without version bump 1 problem total. Problem reports for tag 'libgssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147454 [libgssapi] libgssapi (heimdal) broken in head/, stabl o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free 2 problems total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134249 [libiconv] [patch] ignore case for character set names 1 problem total. Problem reports for tag 'libkrb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol 1 problem total. Problem reports for tag 'libkvm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163926 eadler [libkvm] libkvm.so.5 exports private symbols o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free 4 problems total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o stand/152415 kargl [libm] implementation of expl() o kern/147599 [libm] [patch] Import netbsd complex functions into ou 2 problems total. Problem reports for tag 'libmagic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149936 [libmagic] [patch] wrong handling of decompression uti 1 problem total. Problem reports for tag 'libmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78646 [libmap] [patch] libmap should canonicalize pathnames 1 problem total. Problem reports for tag 'libmd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file 1 problem total. Problem reports for tag 'libpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161456 [libpam] on a system bound to an LDAP server, top trie o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o bin/141016 [libpam] PAM checks in sshd too few? o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o bin/115946 des [libpam] [patch] not thread-safe o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc s kern/20333 des [libpam] ftp login fails on unix password when s/key a 13 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155370 [libpcap] [patch] description string is broken o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o bin/146592 [libpcap] [patch] libpcap 1.0.0 doesn't have error mes o kern/144325 [libpcap] tcpdump compiles complex expression to incor o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n 5 problems total. Problem reports for tag 'librpcsvc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa 1 problem total. Problem reports for tag 'libssh': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159745 [libssh] [patch] Fix improperly specified dependency l 1 problem total. Problem reports for tag 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/83424 [libstand] [patch] improper handling of malloc failure 3 problems total. Problem reports for tag 'libstdc++': Problem reports for tag 'libtacplus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will 1 problem total. Problem reports for tag 'libteken': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144743 [libteken] mouse positioning partialy working o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod 3 problems total. Problem reports for tag 'libusb': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker 2 problems total. Problem reports for tag 'libusbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83451 [libusbhid] [patch] improper handling of malloc failur 1 problem total. Problem reports for tag 'libutil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/84797 [libutil] [patch] State engine in the libutils propert s kern/38347 [libutil] [patch] [request] new library function abs2r o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f 3 problems total. Problem reports for tag 'libvgl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83426 [libvgl] [patch] improper handling of malloc failures 1 problem total. Problem reports for tag 'libwrap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all 1 problem total. Problem reports for tag 'libz': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/154073 delphij [libz] libz causes perl to exit on signal 11 1 problem total. Problem reports for tag 'linprocfs': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w 3 problems total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp p kern/148076 dchagin [linux] linux_sys_futex: unknown op 265 o kern/146237 emulation [linux] Linux binaries not reading directories mounted o kern/140156 emulation [linux] cdparanoia fails to read drive data o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails s kern/118230 acm [linux] games/linux-quake4 fails to start o kern/86619 emulation [linux] linux emulator interacts oddly with cp a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work s kern/21463 eadler [linux] Linux compatability mode should not allow setu 17 problems total. Problem reports for tag 'lo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o 3 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/155441 [loader] [patch] Firewire support in loader is broken f i386/138211 gavin [loader] Boot fails on Intel X5550 o kern/110995 [loader] [patch] loader wastes space worth symtab size o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same 9 problems total. Problem reports for tag 'locale': S Tracker Resp. Description -------------------------------------------------------------------------------- a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac p conf/105100 [patch] [locale] no support for lv (latvian) locale a conf/91106 versus [locale] date definitions in pl_PL locale are wrong 3 problems total. Problem reports for tag 'login.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/155480 [login.conf] maxproc does not work when command runnin 1 problem total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting 3 problems total. Problem reports for tag 'mac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145040 [mac] PANIC_REBOOT_WAIT_TIME not honored o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa 2 problems total. Problem reports for tag 'make.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the 2 problems total. Problem reports for tag 'mbuf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou 2 problems total. Problem reports for tag 'mca': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146590 [mca] [panic] MCA panics 7.3 1 problem total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163801 fs [md] [request] allow mfsBSD legacy installed in 'swap' o kern/162502 [md] mount -t mfs on vnode-based md device destroy him p kern/154228 fs [md] md getting stuck in wdrain state 3 problems total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157293 [mfi] mfiutil/mfi does not allow adding a previously c o kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if o kern/155499 [mfi] mfi(4) command timeout loop on boot on releng/8. o kern/124989 [mfi] mfi driver error - unexpected sense 4 problems total. Problem reports for tag 'mii': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165032 net [mii] [patch] brgphy(4) is not used for BCM57780 1 problem total. Problem reports for tag 'minidump': S Tracker Resp. Description -------------------------------------------------------------------------------- p amd64/139614 avg [minidump] minidumps fail when many interrupts fire o kern/118713 fs [minidump] [patch] Display media size required for a k 2 problems total. Problem reports for tag 'mips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR 2 problems total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o i386/55603 [mly] unable to reboot when system runs from Mylex A35 3 problems total. Problem reports for tag 'mmc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/141756 gavin [mmc] MMC card attached to blocks keybo 1 problem total. Problem reports for tag 'mmcsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164536 [modules] [request] disable building kernel modules th o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/114291 [RFE] [modules] [patch] add dynamic module references o kern/96346 [modules] [patch] disable build of modules that are al s kern/83738 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k f kern/48976 gavin [modules] nwfs.ko oddity 9 problems total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o kern/89166 [mouse] jumpy mouse movement o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/86298 usb [mouse] Known good USB mouse won't work with correct s 5 problems total. Problem reports for tag 'mpd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162267 qingli [mpd] mpd kernel panic 1 problem total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164844 [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SA o kern/163812 scsi [mpt] problem with mpt driver for lsi controlled conne f kern/163130 scsi [mpt] cannot dumpon to mpt connected disk o kern/162256 scsi [mpt] QUEUE FULL EVENT and 'mpt_cam_event: 0x0' o kern/147704 scsi [mpt] sys/dev/mpt: new chip revision, partially unsupp o kern/145768 scsi [mpt] can't perform I/O on SAS based SAN disk in freeb o kern/142351 scsi [mpt] LSILogic driver performance problems o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/128282 gavin [mpt] system failure on removing two drives o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/117688 [mpt] mpt disk timeout and hang 17 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154828 fs [msdosfs] Unable to create directories on external USB o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o kern/123939 fs [msdosfs] corrupts new files f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o kern/111843 fs [msdosfs] Long Names of files are incorrectly created o kern/109024 fs [msdosfs] [iconv] mount_msdosfs: msdosfs_iconv: Operat o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f kern/87368 bde [msdosfs] fat32 is very slow o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o kern/79441 trhodes [msdosfs] problem writing on mounted msdos-fs at /mnt p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c 23 problems total. Problem reports for tag 'msk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164569 net [msk] [hang] msk network driver cause freeze in FreeBS o kern/160420 net [msk] phy write timeout on HP 5310m o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel 3 problems total. Problem reports for tag 'multicast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155680 net [multicast] problems with multicast o kern/154169 net [multicast] [ip6] Node Information Query multicast add o kern/149086 net [multicast] Generic multicast join failure in 8.1 3 problems total. Problem reports for tag 'mutex': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131573 [mutex] lock_init() assumes zero-filled struct 1 problem total. Problem reports for tag 'mwl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163724 wireless [mwl] [patch] NULL check before dereference o kern/146427 net [mwl] Additional virtual access points don't work on m o kern/146426 net [mwl] 802.11n rates not possible on mwl o kern/146425 net [mwl] mwl dropping all packets during and after high u 4 problems total. Problem reports for tag 'mxge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update 1 problem total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o misc/157533 imp [nanobsd][patch] save_cfg improvements p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o misc/145962 imp [nanobsd] [patch] improved cfg save script p misc/144553 imp [nanobsd] NanoBSD's updatep* scripts fail with boot0cf p misc/140436 imp [nanobsd] pkg-add process fails when there is no /usr/ o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re 12 problems total. Problem reports for tag 'nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 3 problems total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe o kern/156016 [ncurses] Arrow keys don't work with any ncurses based o kern/154609 ed [ncurses] END key under screen not sending correct cod o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) 4 problems total. Problem reports for tag 'ndis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/131781 net [ndis] ndis keeps dropping the link f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress 11 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152569 net [net]: Multiple ppp connections and routing table prob o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad s kern/81147 jfv [net] [patch] em0 reinitialization while adding aliase s kern/12071 fanf [net] [patch] new function: large scale IP aliasing 6 problems total. Problem reports for tag 'net80211': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165149 wireless [ath] [net80211] Ping with data length more than iv_fr o kern/165146 wireless [net80211] Net802.11 Fragment number is assigned 1 (sh o kern/163574 wireless [net80211] overly-frequent HT occupancy changes 3 problems total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/154091 net [netgraph] [panic] netgraph, unaligned mbuf? o kern/153497 net [netgraph] netgraph panic due to race conditions o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/104751 net [netgraph] kernel panic, when getting info about my tr o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/97306 net [netgraph] NG_L2TP locks after connection with failed o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/82881 net [netgraph] [panic] ng_fec(4) causes kernel panic after o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE 22 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re p kern/146250 bz [netinet] [patch] Races on interface alias removal o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat 13 problems total. Problem reports for tag 'netisr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164145 [netisr] when one of netisr threads take 100% system i o kern/164130 rwatson [netisr] broken netisr initialization o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o kern/100519 net [netisr] suggestion to fix suboptimal network polling 4 problems total. Problem reports for tag 'netsmb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163135 [netsmb] Wrong check in netsmb 1 problem total. Problem reports for tag 'network.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o conf/147681 [network.subr][patch] Add inet6 keyword if it wasn't s 2 problems total. Problem reports for tag 'nfe': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/147684 yongari [nfe] nVidia MCP55 driver blocks IPMI LAN on load f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki 2 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/164933 [nfs] [patch] mountd(8) drops mixed security flavors f o kern/164462 fs [nfs] NFSv4 mounting fails to mount; asks for stronger o kern/163501 fs [nfs] NFS exporting a dir and a subdir in that dir to o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() f kern/157929 fs [nfs] NFS slow read o kern/154255 net [nfs] NFS not responding o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/147998 [nfs] [patch] NFS -mapall group permissions ignored wh o kern/146502 fs [nfs] FreeBSD 8 NFS Client Connection to Server o kern/145189 fs [nfs] nfsd performs abysmally under load o kern/143825 fs [nfs] [panic] Kernel panic on NFS client o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o kern/137327 dfr [nfs] nfs nlm memery leak o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c o kern/123755 dfr [nfs] fstat() fails to return ESTALE with rename()d fi o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown o bin/118318 mohans [nfs] NFS server hangs under special circumstances o kern/118126 fs [nfs] [patch] Poor NFS server write performance o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111162 [nfs] nfs_getpages does not restart interrupted system o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/105241 [nfs] problem with Linux NFS server up/down combined w o kern/97329 [nfs] [patch] code simplification o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur f kern/81770 [nfs] Always "NFS append race" at every NFS mount with o kern/79336 [nfs] NFS client doesn't detect file updates on Novell s kern/78884 [nfs] [patch] nfs client cache negative lookups o kern/78673 [nfs] [patch] nfs client open resets attrstamp ever if o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea s kern/67545 [nfs] NFS Diskless Mount Option Suggestion a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/35669 [nfs] NFSROOT breaks without a gateway o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo s kern/17108 [nfs] SecureRPC not supported in mount_nfs command 69 problems total. Problem reports for tag 'ng_l2tp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146082 net [ng_l2tp] a false invaliant check was performed in ng_ 1 problem total. Problem reports for tag 'ng_nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125704 [ng_nat] kernel libalias: repeatable panic 1 problem total. Problem reports for tag 'nis': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o bin/40215 [nis] NIS host search not terminate o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/24461 [nis] Being able to increase the YP timeout without re o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus 21 problems total. Problem reports for tag 'notes': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf 1 problem total. Problem reports for tag 'nsswitch.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163798 [nsswitch.conf] nsswitch.conf with nss_ldap ignore [su o conf/156945 [nsswitch.conf] Name service Switch does not work as d o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on 4 problems total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o kern/116515 rwatson [ntfs] NTFS mount does not check that user has permiss o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem 11 problems total. Problem reports for tag 'null': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139014 [null] /dev/null must be immunable to delete/unlink p kern/138526 gnn [null] /dev/null does not support nonblocking operatio 2 problems total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o kern/162591 fs [nullfs] cross-filesystem nullfs does not work as expe o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou o kern/158231 fs [nullfs] panic on unmounting nullfs mounted over ufs o o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o kern/130210 fs [nullfs] Error by check nullfs o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/51583 fs [nullfs] [patch] allow to work with devices and socket 12 problems total. Problem reports for tag 'nwfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange 1 problem total. Problem reports for tag 'ofw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112477 marius [ofw] [patch] Add support to set the node and type on 1 problem total. Problem reports for tag 'ohci': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion 6 problems total. Problem reports for tag 'openbsm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu 1 problem total. Problem reports for tag 'openpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin 1 problem total. Problem reports for tag 'oss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r 1 problem total. Problem reports for tag 'padlock': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164565 [padlock] [panic] kernel crash when kldunload'ing padl 1 problem total. Problem reports for tag 'pae': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/129550 i386 [pae] [kqueue] crash with PAE kernel 1 problem total. Problem reports for tag 'pam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o bin/113230 des [pam] [patch] const-ify PAM-headers o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/83099 des [pam] pam_login_access change causes cyrus-sasl-saslau s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password 8 problems total. Problem reports for tag 'parallels': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec f kern/138944 emulation [parallels] [regression] Parallels no longer works in 2 problems total. Problem reports for tag 'patm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 1 problem total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164189 [pccard] FreeBSD 9.0-RELEASE on Toshiba Satellite Pro o conf/160373 [pccard] [patch] pccard_ether does not take settings i o kern/147127 [pccard] [patch] Fix panic in pccard.c o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp 5 problems total. Problem reports for tag 'pccbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128608 imp [pccbb] [patch] add support for powering down and up C o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF 4 problems total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method f kern/158391 gavin [pci] Resource allocation issues with hda/ath o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m f kern/65355 [pci] [patch] TC1000 serial ports need enabling 8 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159236 multimedia [pcm] [patch] set PCM_CAP_DEFAULT for the default snd o kern/152622 multimedia [pcm] uaudio recording problem o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi 6 problems total. Problem reports for tag 'periodic': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163572 [periodic] not full output in daily run output is ambi o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o conf/152807 [periodic] security 900.tcpwrap does not report any re o kern/135502 net [periodic] Warning message raised by rtfree function i o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o conf/70715 [periodic] Lack of year in dates in auth.log can cause o conf/47596 [periodic] daily security run complains if timezone ch o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea 9 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165252 virtualization[vimage] [pf] [panic] kernel panics with VIMAGE and PF o kern/164402 pf [pf] pf crashes with a particular set of rules when fi o kern/164271 pf [pf] not working pf nat on FreeBSD 9.0 [regression] o kern/163208 pf [pf] PF state key linking mismatch o kern/161094 virtualization[vimage] [pf] [panic] kernel panic with pf + VIMAGE wh o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o kern/160370 pf [pf] Incorrect pfctl check of pf.conf o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/153307 pf [pf] Bug with PF firewall o kern/148290 pf [pf] "sticky-address" option of Packet Filter (PF) blo o kern/148260 pf [pf] [patch] pf rdr incompatible with dummynet o kern/148155 virtualization[vimage] [pf] Kernel panic with PF/IPFilter + VIMAGE k o kern/147789 pf [pf] Firewall PF no longer drops connections by sendin o kern/146832 bz [pf] "(self)" not always matching all local IPv6 addre o kern/146719 net [pf] [panic] PF or dumynet kernel panic o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin s kern/143808 virtualization[pf] pf does not work inside jail o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o conf/142961 pf [pf] No way to adjust pidfile in pflogd o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/140697 pf [pf] pf behaviour changes - must be documented o kern/137982 pf [pf] when pf can hit state limits, random IP failures o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/133732 pf [pf] max-src-conn issue o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent f kern/132176 pf [pf] pf stalls connection when using route-to [regress o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o kern/127920 pf [pf] ipv6 and synproxy don't play well together o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w o kern/127439 pf [pf] deadlock in pf o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is o kern/125467 pf [pf] pf keep state bug while handling sessions between s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. o kern/93825 pf [pf] pf reply-to doesn't work o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s o kern/92949 pf [pf] PF + ALTQ problems with latency a kern/86752 mlaier [pf] pf does not use default timeouts when reloading c o kern/82271 pf [pf] cbq scheduler cause bad latency 52 problems total. Problem reports for tag 'pf.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/145727 [pf.conf] pf rules not applied on boot if using inet6 1 problem total. Problem reports for tag 'pfil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164490 net [pfil] Incorrect IP checksum on pfil pass from ip_outp s kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall 3 problems total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker 4 problems total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/52256 embedded [picobsd] picobsd build script does not read in user/s o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt 3 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/93685 jilles [pipe] select on pipe write fails from '0' end 1 problem total. Problem reports for tag 'plip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/102035 net [plip] plip networking disables parallel port printing 2 problems total. Problem reports for tag 'pmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ 1 problem total. Problem reports for tag 'portalfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9679 [portalfs] [patch] fix for uninterruptible open in por 1 problem total. Problem reports for tag 'powerd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I 1 problem total. Problem reports for tag 'ppbus': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 1 problem total. Problem reports for tag 'ppc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o conf/119550 [ppp] ppp not starting during bootup. o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces s kern/84386 [ppp] [request] PPPoA Authentication built into FreeBS o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 15 problems total. Problem reports for tag 'pppd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr 3 problems total. Problem reports for tag 'procfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o kern/97505 [procfs] file entry of procfs points to "unknown" o kern/96999 [procfs] [patch] procfs reports incorrect information s kern/19535 [procfs] [patch] procfs_rlimit tidyup 4 problems total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/161043 jhb [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o kern/159063 [psm] ALPS touchpad recognized as PS mouse (no scrl, n o kern/147237 [psm] [patch] There is no IBM/Lenovo TrackPoint suppor o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o kern/137228 [psm] synaptics support delays 'mouse up' events when o kern/129125 [psm] psm0: failed to reset the aux device. f kern/128308 gavin [psm] psm0 cause page fault o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 o kern/109161 philip [psm] synaptic touchpad doesn't work o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation 16 problems total. Problem reports for tag 'ptrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace 1 problem total. Problem reports for tag 'pty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs 1 problem total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163450 [puc] [patch] new pci quad serial card supported by pu o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s 5 problems total. Problem reports for tag 'pxeboot': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146162 [pxeboot] PXE loader(8) sets nfs_opts[] = "export" cau o i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin 5 problems total. Problem reports for tag 'quota': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164734 [quota] 9.0 quota not working [regression] 1 problem total. Problem reports for tag 'quotas': S Tracker Resp. Description -------------------------------------------------------------------------------- s bin/42004 [quotas] quota is still IPv4 only, and not INET indepe 1 problem total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o f kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] f kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati 3 problems total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o kern/153937 net [ral] ralink panics the system (amd64 freeBSDD 8.X) wh f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 f kern/134168 gavin [ral] ral driver problem on RT2525 2.4GHz transceiver o kern/132238 [ral] ral driver does not support RT2860 o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o kern/119696 [irq] [ral] ral device causes massive interrupt storm f kern/117655 sam [ral] ral%d: device timeout when running as an access o kern/111457 net [ral] ral(4) freeze o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P o kern/95519 net [ral] ral0 could not map mbuf o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP f kern/82456 gavin [ral] WITNESS warning/backtrace in if_ral 19 problems total. Problem reports for tag 'random': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc 2 problems total. Problem reports for tag 'rc': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser 3 problems total. Problem reports for tag 'rc.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip 2 problems total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck o conf/147444 rc [rc.d] [patch] /etc/rc.d/zfs stop not called on reboot o conf/145445 rc [rc.d] error in /etc/rc.d/jail (bad logic) o conf/145440 hrs [rc.d] [patch] add multiple fib support (setfib) in /e o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o conf/137629 rc [rc.d] background_dhclient rc.conf option causing doub o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o conf/135338 rc [rc.d] pf startup order seems broken [regression] o bin/134250 [rc.d] mountlate: bogus error message when using neste o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a 21 problems total. Problem reports for tag 'rc.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands 1 problem total. Problem reports for tag 'rctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162407 [rctl] [panic] rctl crashes kernel with a page fault ( o kern/161552 [rctl] [panic] kernel panic with RCTL option: racct_al 2 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162509 net [re] [panic] Kernel panic may be related to if_re.c (r o kern/161381 net [re] RTL8169SC - re0: PHY write failed f kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. o kern/157429 net [re] Realtek RTL8169 doesn't work with re(4) o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f 5 problems total. Problem reports for tag 'release': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/145580 [release] /usr/src/release/Makefile does not honor HTT 1 problem total. Problem reports for tag 'resolver': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136013 [resolver] Resolver wrong diagnostics 1 problem total. Problem reports for tag 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' 1 problem total. Problem reports for tag 'route': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/161899 rc [route] ntpd(8): Repeating RTM_MISS packets causing hi o kern/155177 net [route] [panic] Panic when inject routes in kernel o kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 o kern/134531 net [route] [panic] kernel crash related to routes/zebra a kern/71474 net [route] route lookup does not skip interfaces marked d 5 problems total. Problem reports for tag 'rp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44202 [rp] [patch] -stable rp driver does not work with mult s i386/28975 [rp] RocketPort problems 2 problems total. Problem reports for tag 'rpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158340 [rpc] Possible dereference of null pointer by code tha p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o kern/150036 [rpc] Sun RPC license has less restrictions now. f kern/117711 [rpc] rpcbind binds to all interfaces on random ports o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux 7 problems total. Problem reports for tag 'rpc.quotad': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support 1 problem total. Problem reports for tag 'rtalloc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs 1 problem total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/152662 [rtld] load libraries with address hint (cf. prelink) o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/84199 [rtld] dlinfo does not handle RTLD_DI_SERINFOSIZE prop 4 problems total. Problem reports for tag 'rum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149643 net [rum] device not sending proper beacon frames in ap mo p usb/146693 thompsa [rum] Edimax EW‐7318USG not found in usbdevs or a kern/141696 virtualization[rum] [vimage] [panic] rum(4)+ vimage = kernel panic o kern/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o usb/133296 usb [rum] driver not working properly in hostap mode o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel 13 problems total. Problem reports for tag 'run': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/162500 maho math/suitesparse: gmake[2]: *** [run] Segmentation fau o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o usb/144387 usb [run] [panic] if_run panic 3 problems total. Problem reports for tag 'sa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe 1 problem total. Problem reports for tag 'safe': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/110662 sam [safe] safenet driver causes kernel panic 1 problem total. Problem reports for tag 'sbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136327 firewire [sbp] [boot] Asus M3N78-EM motherboard cannot boot wit o kern/119572 firewire [sbp] PowerBook not accessable when in target mode 2 problems total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163587 [sched_ule] The ULE scheduler does not load in the fou o kern/161097 [sched_ule] Unkillable process hanging waiting for "ex o kern/128177 jeff [sched_ule] wrong CPU usage reported by top(1)/ps(1) w p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/117420 jeff [sched_ule] round off in sched_balance_pair() s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a 7 problems total. Problem reports for tag 'scheduler': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' 1 problem total. Problem reports for tag 'scsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re o kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 drive if dis o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. 3 problems total. Problem reports for tag 'sctp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165210 rrs [sctp] SCTP sockets don't bind on interfaces created b 1 problem total. Problem reports for tag 'ses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi 1 problem total. Problem reports for tag 'sg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120487 scsi [sg] scsi_sg incompatible with scanners 1 problem total. Problem reports for tag 'siis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145714 [siis] removed SATA device on port multiplier resets e 1 problem total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159647 [sio] device sio will not compile o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o kern/128036 [sio] [patch] serial console mostly ignores typein to a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/97665 [sio] hang in sio driver o kern/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i o kern/51982 remko [sio] sio1: interrupt-level buffer overflows o kern/49039 [sio] [patch] add support for RS485 hardware where dir o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/26261 [sio] silo overflow problem in sio driver s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o 13 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 1 problem total. Problem reports for tag 'smb': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect 1 problem total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/159048 fs [smbfs] smb mount corrupts large files o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o kern/94733 fs [smbfs] smbfs may cause double unlock o kern/91134 fs [smbfs] [patch] Preserve access and modification time a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o kern/87859 fs [smbfs] System reboot while umount smbfs. o kern/80088 fs [smbfs] Incorrect file time setting on NTFS mounted vi o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o kern/61503 fs [smbfs] mount_smbfs does not work as non-root o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o kern/36566 fs [smbfs] System reboot with dead smb mount and umount 26 problems total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164203 [smp] usr/src/sys/sys/smp.h:124: warning: comparison b o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/67830 [smp] [patch] CPU affinity problem with forked child p 3 problems total. Problem reports for tag 'snapshots': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162362 fs [snapshots] [panic] ufs with snapshot(s) panics when g 1 problem total. Problem reports for tag 'snd_emu10k1': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system 7 problems total. Problem reports for tag 'snd_hda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s f kern/158424 multimedia [snd_hda] snd_hda driver doesn't expose 'rec' flag for o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/150284 multimedia [snd_hda] No gain with Audio o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o kern/141826 multimedia [snd_hda] load of snd_hda module fails o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att 10 problems total. Problem reports for tag 'snd_uadio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158979 multimedia [snd_uadio] snd_uaudio fails to initialize built-in mi 1 problem total. Problem reports for tag 'snd_uaudio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156726 multimedia [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant 4 problems total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou p kern/144061 rwatson [socket] race on unix socket close o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm p kern/127360 net [socket] TOE socket options missing from sosetopt() o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec a kern/97921 rwatson [socket] close() socket deadlocks blocked threads f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/21998 net [socket] [patch] ident only for outgoing connections o kern/5877 net [socket] sb_cc counts control data as well as data dat 12 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o kern/148741 multimedia [sound] Headphones are deaf (do not work) on Lenovo Th o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o power/133503 ppc [sound] Sound stutter after switching ttys o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla f usb/80040 usb [sound] [hang] Use of sound mixer causes system freeze o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 54 problems total. Problem reports for tag 'sshd_config': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163843 [sshd_config] Modified VersionAddendum field in sshd_c 1 problem total. Problem reports for tag 'stf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154214 net [stf] [panic] Panic when creating stf interface o conf/148017 hrs [stf] [patch] rc script for stf does not honour create s kern/143673 net [stf] [request] there should be a way to support multi o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/123858 net [stf] [patch] stf not usable behind a NAT 5 problems total. Problem reports for tag 'swap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162382 [swap] Orphaned swap references not garbage collected; 1 problem total. Problem reports for tag 'swi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net 4 problems total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163064 [fix][sym]driver tries to nego synch trans with everyo o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load 4 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o kern/152162 [syscons] On syscons, pressing delete key results in p o kern/148367 [syscons] [patch] Add loader tunable to override SC_HI o kern/148130 [syscons] Inappropriate ioctl for device f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/117242 [syscons] [hang] console hangs when powerd is adaptive o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH s bin/90082 [syscons] [patch] curses ACS line graphics support for o kern/83109 [syscons] syscons does not always display colors corre o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/46973 [syscons] [patch] [request] syscons virtual terminals o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/31890 [syscons] [patch] new syscons font s kern/15436 [syscons] syscons extension: "propellers" 17 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls p kern/148580 gavin [sysctl][patch] Document some sys/kern sysctls o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/54439 [sysctl] [patch] Protecting sysctls variables by given 10 problems total. Problem reports for tag 'tap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165174 net [patch] [tap] allow tap(4) to keep its address on clos o kern/158686 virtualization[vimage] [tap] [patch] Add VIMAGE support to if_tap o kern/123892 net [tap] [patch] No buffer space available o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap 4 problems total. Problem reports for tag 'tcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159795 net [tcp] excessive duplicate ACKs and TCP session freezes o kern/159621 net [tcp] [panic] panic: soabort: so_count f kern/155585 melifaro [tcp] [panic] tcp_output tcp_mtudisc loop until kernel p kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r o kern/154600 net [tcp] [panic] Random kernel panics on tcp_output o kern/154557 net [tcp] Freeze tcp-session of the clients, if in the gat a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t f kern/123617 andre [tcp] breaking connection when client downloading file o kern/123603 andre [tcp] tcp_do_segment and Received duplicate SYN f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a kern/116335 andre [tcp] Excessive TCP window updates o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s 20 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- p conf/147992 gavin [termcap] [patch] xterm-256color is a 8 colors termina o conf/136336 [termcap] [patch] missing entry for "center of keypad" s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili 3 problems total. Problem reports for tag 'terminfo': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/140965 [terminfo] Cannot create terminfo database because ncu 1 problem total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/20529 [ti] gigabit cards fail to link 1 problem total. Problem reports for tag 'tinybsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ 1 problem total. Problem reports for tag 'tmpfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug p kern/122038 gleb [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc 4 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o misc/147463 [tools] [patch] Patch for tools/regression/lib/libc/st o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam 4 problems total. Problem reports for tag 'trm': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 1 problem total. Problem reports for tag 'tun': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162927 net [tun] Modem-PPP error ppp[1538]: tun0: Phase: Clearing o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP p kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o bin/115951 [tun] pppoed(8): tun not closed after client abruptly 6 problems total. Problem reports for tag 'twa': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138948 i386 [twa] [regression] da0: Fi o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid 2 problems total. Problem reports for tag 'twe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72906 [twe] twe0 idefinite wait buffer a kern/66185 [twe] twe driver generates gratuitous warning on shutd 2 problems total. Problem reports for tag 'u3g': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem 1 problem total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155752 [uart] tcdrain(3) does not work with uart(4) driver o kern/155196 [uart] uart cannot identify internal modem or its chip o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x o kern/147082 ed [uart] Serial ports unusable [regression] s kern/146647 [uart] Some PCIe serial/parallel boards with ID 9901 9 o kern/144696 ed [uart] tcdrain(3) does not work right with uart(4) dri o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 8 problems total. Problem reports for tag 'uath': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri 1 problem total. Problem reports for tag 'ubsa': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun 4 problems total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct 11 problems total. Problem reports for tag 'udav': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ 1 problem total. Problem reports for tag 'udbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected 2 problems total. Problem reports for tag 'udf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158376 [udf] [patch] The UDF file system under counts the num o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada 3 problems total. Problem reports for tag 'udp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o kern/133736 net [udp] ip_id not protected ... o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject 4 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164472 fs [ufs] fsck -B panics on particular data inconsistency o kern/164184 fs [ufs] [panic] Kernel panic with ufs_makeinode o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 o kern/160860 fs [ufs] Random UFS root filesystem corruption with SU+J o kern/159930 fs [ufs] [panic] kernel core p kern/156545 fs [ufs] mv could break UFS on SMP systems o kern/156193 fs [ufs] [hang] UFS snapshot hangs && deadlocks processes o kern/152991 [ufs] false disk full with a too slow flash module o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o kern/147420 fs [ufs] [panic] ufs_dirbad, nullfs, jail panic (corrupt o kern/146708 fs [ufs] [panic] Kernel panic in softdep_disk_write_compl o kern/145246 fs [ufs] dirhash in 7.3 gratuitously frees hashes when it o kern/144929 fs [ufs] [lor] vfs_bio.c + ufs_dirhash.c o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132331 fs [ufs] [lor] LOR ufs and syncer o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file a kern/125613 trasz [ufs] [patch] ACL problems with special files o bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o kern/117954 fs [ufs] dirhash on very large directories blocks the mac o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po 35 problems total. Problem reports for tag 'uftdi': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/67301 usb [uftdi] [panic] RTS and system panic 10 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/154710 usb [ugen] Conexant USB Modem is not working in 8.x. In 7. o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n 8 problems total. Problem reports for tag 'uhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 3 problems total. Problem reports for tag 'uhub': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb 3 problems total. Problem reports for tag 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does f usb/102066 gavin [ukbd] usb keyboard and multimedia keys don't work o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar 13 problems total. Problem reports for tag 'ulpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes 11 problems total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/85971 jeff [uma] [patch] minor optimization to uma 2 problems total. Problem reports for tag 'umapfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/74708 [umapfs] [panic] UMAPFS kernel panic 1 problem total. Problem reports for tag 'umass': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o usb/153149 usb [umass] USB stick quirk regression [regression] o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o usb/131583 usb [umass] Failure when detaching umass Device o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/121169 usb [umass] Issues with usb mp3 player o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o usb/114682 usb [umass] generic USB media-card reader unusable f kern/114667 [umass] UMASS device error log problem o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) f usb/74771 usb [umass] [hang] mounting write-protected umass device a s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/40948 usb [umass] [request] USB HP CDW8200 does not work 61 problems total. Problem reports for tag 'umct': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters 1 problem total. Problem reports for tag 'umodem': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number o usb/128485 usb [umodem] [patch] Nokia N80 modem support p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work 5 problems total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s kern/103578 [ums] ums does not recognize mouse buttons s usb/96120 usb [ums] [request] USB mouse not always detected o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 13 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165087 fs [unionfs] lock violation in unionfs o kern/161511 fs [unionfs] Filesystem deadlocks when using multiple uni o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/145750 daichi [unionfs] [hang] unionfs locks the machine o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo o bin/19772 [unionfs] df(1) output wrong for union-mounts 15 problems total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco 1 problem total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode 5 problems total. Problem reports for tag 'urio': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/51958 usb [urio] [patch] update for urio driver 1 problem total. Problem reports for tag 'urtw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b 4 problems total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/163328 usb [usb] Support for Atheros USB abgn devices o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics o usb/129311 usb [usb] [panic] Instant crash with an USB card reader s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f usb/87224 usb [usb] Cannot mount USB Zip750 o usb/79723 usb [usb] [request] prepare for high speed isochronous tra s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 22 problems total. Problem reports for tag 'usb67': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is f usb/137872 usb [usb67] [boot] slow booting on usb flash drive o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/128977 usb [usb67] [patch] uaudio is not full duplex s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con 45 problems total. Problem reports for tag 'usb8': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/157074 usb [boot] [usb8] vfs_mountroot_ask is called when no usb o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf s usb/148702 usb [usb8] [request] IO DATA USB-RSAQ5 support on FreeBSD- p usb/146367 thompsa [usb8] [patch] Revision 205728: broken bluetooth mouse o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date f usb/145513 usb [usb8] New USB stack: no new devices after forced usb p usb/145455 usb [usb8] [patch] USB debug support cannot be disabled o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o usb/137377 usb [usb8] request support for Huawei E180 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/130122 usb [usb8] DVD drive detects as 'da' device o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil 55 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports 10 problems total. Problem reports for tag 'uscanner': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device 1 problem total. Problem reports for tag 'uvisor': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. 1 problem total. Problem reports for tag 'vbox': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o amd64/161418 vbox [panic] [vbox] FreeBSD 9.0beta3 under Virtualbox: lost o ports/151603 vbox [vbox] Self-built emulators/virtualbox-ose-kmod vboxne o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum 4 problems total. Problem reports for tag 'vesa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod 3 problems total. Problem reports for tag 'vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163461 [vfs] vfs.zfs.arc_max/vfs.zfs.arc_meta_limit defaults o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/142878 fs [zfs] [vfs] lock order reversal f kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o kern/139127 [vfs] False negative vfs cache entry p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D 9 problems total. Problem reports for tag 'vga': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o kern/64114 [vga] [patch] bad vertical refresh for console using R 2 problems total. Problem reports for tag 'vimage': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165252 virtualization[vimage] [pf] [panic] kernel panics with VIMAGE and PF o kern/161094 virtualization[vimage] [pf] [panic] kernel panic with pf + VIMAGE wh o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o kern/158686 virtualization[vimage] [tap] [patch] Add VIMAGE support to if_tap a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe o kern/148155 virtualization[vimage] [pf] Kernel panic with PF/IPFilter + VIMAGE k a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash a kern/141696 virtualization[rum] [vimage] [panic] rum(4)+ vimage = kernel panic 9 problems total. Problem reports for tag 'vinum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/79035 geom [vinum] gvinum unable to create a striped set of mirro o conf/47566 [vinum] [patch] add vinum status verification to perio 2 problems total. Problem reports for tag 'virtualpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying 1 problem total. Problem reports for tag 'vlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165296 net [vlan] [patch] Fix EVL_APPLY_VLID, update EVL_APPLY_PR o kern/156408 net [vlan] Routing failure when using VLANs vs. Physical e o kern/155420 net [vlan] adding vlan break existent vlan o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out f kern/146394 net [vlan] IP source address for outgoing connections o kern/146358 net [vlan] wrong destination MAC address p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o kern/117423 net [vlan] Duplicate IP on different interfaces 13 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161887 [vm] [panic] panic at vm_page_wire with FreeBSD 9.0 Be o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero o kern/147459 [vm] [panic] Kernel panic: vm_page / vdrop / vm_page_c o kern/140461 [vm] Fail to read from swap. The swap_pager.c contains o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind s bin/2137 [vm] systat(1) total vm statistics are bad 12 problems total. Problem reports for tag 'vmware': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156749 [vmware] FreeBSD 8.2 does infinite disk access in VMwa f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o kern/147793 emulation [vmware] [panic] cdrom handling, panic, possible race o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind 4 problems total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo f kern/143074 bschmidt [wi]: wi driver triggers panic o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/131776 net [wi] driver fails to init f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/107944 net [wi] [patch] Forget to unlock mutex-locks s kern/79323 [wi] authmod setup with ifconfig on dlink wlan card fa 13 problems total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/146165 net [wlan] [panic] Setting bssid in adhoc mode causes pani o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti 5 problems total. Problem reports for tag 'wlan_xauth': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa 1 problem total. Problem reports for tag 'wpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159203 net [wpi] Intel 3945ABG Wireless LAN not support IBSS o kern/156322 wireless [wpi] no ahdemo support for if_wpi f kern/147862 bschmidt [wpi] Possible bug in the wpi driver. Network Manager o kern/144987 wireless [wpi] [panic] injecting packets with wlaninject using f kern/143595 bschmidt [wpi] [panic] Creating virtual interface over wpi0 in f kern/139079 bschmidt [wpi] Failure to attach wpi(4) f kern/138739 bschmidt [wpi] wpi(4) does not work very well under 8.0-BETA4 o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 f kern/128917 bschmidt [wpi] [panic] if_wpi and wpa+tkip causing kernel panic f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 10 problems total. Problem reports for tag 'xe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne 1 problem total. Problem reports for tag 'xen': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164630 xen [xen] XEN HVM kernel: run_interrupt_driven_hooks: stil o kern/164450 xen [xen] Failed to install FreeeBSD 9.0-RELEASE from CD i o kern/162677 xen [xen] FreeBSD not compatible with "Current Stable Xen" o kern/161318 xen [xen] sysinstall crashes with floating point exception o kern/155468 xen [xen] Xen PV i386 multi-kernel CPU system is not worki o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o kern/154833 xen [xen]: xen 4.0 - DomU freebsd8.2RC3 i386, XEN kernel. o kern/154473 xen [xen] xen 4.0 - DomU freebsd8.1 i386, XEN kernel. Not o kern/154472 xen [xen] xen 4.0 - DomU freebsd8.1 i386 xen kernel reboot o kern/154428 xen [xen] xn0 network interface and PF - Massive performan o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor f kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after f kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. f kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i p kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all f i386/124516 xen [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/118734 xen [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b 25 problems total. Problem reports for tag 'xfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o kern/145411 fs [xfs] [panic] Kernel panics shortly after mounting an p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul 4 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129352 yongari [xl] [patch] xl0 watchdog timeout s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad 2 problems total. Problem reports for tag 'xpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164132 [xpt] "xptioctl: pass device not in the kernel" noise o kern/154432 scsi [xpt] run_interrupt_driven_hooks: still waiting after 2 problems total. Problem reports for tag 'zfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164844 [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SA o kern/164370 fs [zfs] zfs destroy for snapshot fails on i386 and sparc o kern/164256 fs [zfs] device entry for volume is not created after zfs o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/163770 fs [zfs] [hang] LOR between zfs&syncer + vnlru leading to o kern/162860 fs [zfs] Cannot share ZFS filesystem to hosts with a hyph o kern/162751 fs [zfs] [panic] kernel panics during file operations o kern/162519 fs [zfs] "zpool import" relies on buggy realpath() behavi o kern/162083 fs [zfs] [panic] zfs unmount -f pool o kern/161968 fs [zfs] [hang] renaming snapshot with -r including a zvo o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o kern/161533 fs [zfs] [panic] zfs receive panic: system ioctl returnin o kern/161438 fs [zfs] [panic] recursed on non-recursive spa_namespace_ o kern/161280 fs [zfs] Stack overflow in gptzfsboot o kern/161169 fs [zfs] [panic] ZFS causes kernel panic in dbuf_dirty o kern/160893 fs [zfs] [panic] 9.0-BETA2 kernel panic o kern/160801 fs [zfs] zfsboot on 8.2-RELEASE fails to boot from root-o o kern/160777 fs [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/impo o kern/160706 fs [zfs] zfs bootloader fails when a non-root vdev exists o kern/160591 fs [zfs] Fail to boot on zfs root with degraded raidz2 [r o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/159357 fs [zfs] ZFS MAXNAMELEN macro has confusing name (off-by- o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159251 fs [zfs] [request]: add FLETCHER4 as DEDUP hash option o kern/159077 fs [zfs] Can't cd .. with latest zfs version o kern/159045 fs [zfs] [hang] ZFS scrub freezes system o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o kern/157399 fs [zfs] trouble with: mdconfig force delete && zfs strip o kern/157179 fs [zfs] zfs/dbuf.c: panic: solaris assert: arc_buf_remov o kern/156797 fs [zfs] [panic] Double panic with FreeBSD 9-CURRENT and o kern/156781 fs [zfs] zfs is losing the snapshot directory, o kern/155615 fs [zfs] zfs v28 broken on sparc64 -current o kern/155587 fs [zfs] [panic] kernel panic with zfs o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/154930 fs [zfs] cannot delete/unlink file from full volume -> EN o kern/153996 fs [zfs] zfs root mount error while kernel is not located o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o kern/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o kern/153351 fs [zfs] locking directories/files in ZFS o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w o bin/153142 [zfs] ls -l outputs `ls: ./.zfs: Operation not support o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor o kern/151905 fs [zfs] page fault under load in /sbin/zfs o kern/151648 fs [zfs] disk wait bug o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151226 fs [zfs] can't delete zfs snapshot o kern/151111 fs [zfs] vnodes leakage during zfs unmount o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted o kern/149173 fs [patch] [zfs] make OpenSolaris installa o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro o kern/148504 fs [zfs] ZFS' zpool does not allow replacing drives to be o kern/148490 fs [zfs]: zpool attach - resilver bidirectionally, and re o kern/148368 fs [zfs] ZFS hanging forever on 8.1-PRERELEASE o kern/148138 fs [zfs] zfs raidz pool commands freeze o kern/147903 fs [zfs] [panic] Kernel panics on faulty zfs device o kern/147881 fs [zfs] [patch] ZFS "sharenfs" doesn't allow different " o kern/147560 fs [zfs] [boot] Booting 8.1-PRERELEASE raidz system take o kern/146941 fs [zfs] [panic] Kernel Double Fault - Happens constantly o kern/146786 fs [zfs] zpool import hangs with checksum errors o kern/146528 fs [zfs] Severe memory leak in ZFS on i386 o kern/146410 pjd [zfs] [patch] bad file copy performance from UFS to ZF f kern/145802 pjd [zfs] page fault under load s kern/145712 fs [zfs] cannot offline two drives in a raidz2 configurat f kern/145339 pjd [zfs] deadlock after detaching block device from raidz o kern/145272 fs [zfs] [panic] Panic during boot when accessing zfs on o kern/145238 fs [zfs] [panic] kernel panic on zpool clear tank o kern/145229 fs [zfs] Vast differences in ZFS ARC behavior between 8.0 p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o kern/143184 fs [zfs] [lor] zfs/bufwait LOR o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn o kern/142489 fs [zfs] [lor] allproc/zfs LOR o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140640 fs [zfs] snapshot crash o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134491 fs [zfs] Hot spares are rather cold... f kern/128633 pjd [zfs] [lor] lock order reversal in zfs f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/127492 pjd [zfs] System hang on ZFS input-output s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS f sparc/123566 fs [zfs] zpool import issue: EOVERFLOW f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un 110 problems total. Problem reports for tag 'zlib': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl 2 problems total. Problem reports for tag 'zyd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160296 wireless [zyd] [panic] 802.11 usb device reboots system on 'ifc o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o usb/150892 usb [zyd] Whenever network contacted in any shape, way or o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system 5 problems total. From avg at FreeBSD.org Mon Feb 20 11:30:16 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Mon Feb 20 11:30:22 2012 Subject: kern/165284: shutdown failing since upgrade to 9 Message-ID: <201202201130.q1KBUGaq011890@freefall.freebsd.org> The following reply was made to PR kern/165284; it has been noted by GNATS. From: Andriy Gapon To: Tim Matthews Cc: bug-followup@FreeBSD.org Subject: Re: kern/165284: shutdown failing since upgrade to 9 Date: Mon, 20 Feb 2012 13:21:28 +0200 on 20/02/2012 12:48 Tim Matthews said the following: > > Under 'Power Management Setup' , set 'PME Event Wake Up' to 'Disabled' Google shows that people had this problem with other operating systems too, e.g.: http://www.cableforum.co.uk/board/12/13534-pc-powers-itself-on.html https://groups.google.com/group/alt.comp.hardware.pc-homebuilt/browse_thread/thread/1f69d6a467ca4768/a800fc7c30958e98?hl=en -- Andriy Gapon From bugmaster at FreeBSD.org Mon Feb 20 11:06:07 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 20 12:22:59 2012 Subject: Current problem reports Message-ID: <201202201106.q1KB63sA089321@freefall.freebsd.org> (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi .) 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. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165315 States never cleared in PF with DEVICE_POLLING o ports/165314 ruby [update] math/ruby-netcdf: update to 0.6.6 and change o ports/165313 roam [patch] security/apg fails to build with WITH_CRACKLIB o ports/165312 roam [patch] security/apg typo o ports/165311 lev devel/subversion changes upstream's public API f ports/165309 swills [PATCH] net-im/kmess-kde4: switch from libungif to gif o ports/165308 sysutils/bsdadminscripts: pkg_upgrade fails to retriev o ports/165307 gahr [PATCH] print/lilypond: set MAKE_JOBS_UNSAFE o kern/165306 wireless [ath] race conditions between scanning and beacon time o kern/165305 net [ip6] [request] Feature parity between IP_TOS and IPV6 o ports/165304 x11-fm//FSViewer doesn't compile o kern/165303 [est] CPU freq changing not supported on VIA VE-900 (N o ports/165302 jgh security/super: checksum wrong o ports/165301 culot [MAINTAINER] irc/weechat-devel: update to 20120219 (0. o ports/165300 jgh Update port: www/py-selenium Upgrade to 2.19.1 o ports/165299 ashish [PATCH] editors/emacs-devel: switch to graphics/giflib o ports/165298 ashish [PATCH] editors/emacs: switch to graphics/giflib o ports/165297 bf [PATCH] graphics/imlib2: switch to graphics/giflib o kern/165296 net [vlan] [patch] Fix EVL_APPLY_VLID, update EVL_APPLY_PR o ports/165294 accessibility/redshift on freebsd 9 - intel icore I5 i o ports/165292 miwi [PATCH] Allow emulators/mame to be build with clang o ports/165291 glewis [PATCH] archivers/libarchive: update to 3.0.3 f ports/165288 sunpoet [PATCH] databases/p5-DBM-Deep: update to 2.0004 o ports/165285 New port www/py-graphite-web o kern/165284 shutdown failing since upgrade to 9 o ports/165283 New port databases/py-carbon o ports/165282 gnome typo in x11-toolkits/gtk30 pkg-plist [patch] o ports/165281 ruby New port databases/rubygem-mongo o ports/165280 ruby New port databases/rubygem-bson o ports/165279 ruby New Port sysutils/ruby-statsd - Statsd implementation o ports/165277 garga update port mail/qmail o ports/165276 osa [update] www/nginx add auth-digest module o ports/165275 sahil [PATCH] devel/p5-MooseX-Storage: move some DEPENDS to o ports/165274 makc Update sterm to 0.2 o ports/165272 ruby [maintainer-update] math/ruby-narray_miss: update to 1 o kern/165271 [ata] [patch] Correct Marvell SATA controller names o ports/165270 Ports keeps displaying useless 'License check disabled o ports/165269 gabor [update] archivers/rar 4.1.0 o ports/165268 skv [PATCH] devel/p5-MooseX-Declare: update to 0.35 o ports/165267 makc [MAINTAINER] x11-clocks/plasma-applet-adjustableclock: o ports/165266 makc [MAINTAINER] sysutils/duff: Update to 0.5.2, add LICEN f ports/165265 crees [patch] databases/postgresql-docs: build docs for Pg 9 f ports/165263 gecko mail/thunderbird: core dumping most time when users ar o ports/165262 makc [MAINTAINER] finance/kmymoney-kde4: Update to 4.6.2 o ports/165261 makc [MAINTAINER] finance/aqbanking: Update to 5.0.22 o ports/165260 makc [MAINTAINER] finance/libalkimia: Update to 4.3.2 o ports/165258 avl sysutils/flashrom: update to 0.9.5 f ports/165256 haskell [update] devel/hs-git-annex: Update to 3.20120123 o ports/165254 x11 [PATCH] fixes to x11-fonts/xorg-fonts makefile to hand f ports/165253 nox net/clamz: update to 0.5 o kern/165252 virtualization[vimage] [pf] [panic] kernel panics with VIMAGE and PF o ports/165251 [New port] net-mgmt/observium o docs/165250 bcr "5.5.4.3 Upgrading Ports using Portmanager" should be o docs/165249 doc Multibyte characters in manpages still not displaying o ports/165248 portmgr [PATCH] [MAINTAINER] Repocopy (rename) and update to x f ports/165247 [PATCH] audio/alsa-plugins: remove parts of FreeBSD-sp a ports/165245 crees [exp-run] Make databases/postgresql90-client the defau f ports/165244 crees [PATCH] Fix port: net/v6eval on 9+ f ports/165243 swills [PATCH] devel/p5-MooseX-App-Cmd: add missing DEPENDS, o ports/165242 skv [PATCH] devel/p5-Moose-Policy: update to 0.05 o ports/165241 clsung [PATCH] devel/p5-Module-CPANTS-Analyse: add missing DE o i386/165240 i386 BUG o ports/165238 portmgr [bsd.port.mk] [patch] Resize port config dialog box in o ports/165237 clsung [PATCH] devel/p5-Module-Build-Convert: add missing DEP o stand/165236 standards The NONE Wi-Fi regulatory restricts use of channels 12 o ports/165234 perl updated net/p5-perl-ldap 0.43 -> 0.44 o ports/165233 kuriyama [PATCH] devel/p5-Log-Dispatch-Screen-Color: add missin o ports/165227 [UPDATE] libgsf-1.14.22, goffice-0.9.1, gnumeric-1.11. o ports/165226 ruby ports-mgmt/portupgrade - unnecessary source package re a ports/165223 linimon [exp-run] update ruby 1.8.7 to p358 and update ruby 1. o kern/165220 wireless [ath] "ath_rx_tasklet: sc_inreset_cnt > 0; skipping" m o ports/165219 kuriyama [PATCH] devel/p5-Log-Dispatch-Colorful: add missing DE o ports/165215 emulation www/linux-f10-flashplugin11 is vulnerable o kern/165214 wireless [ieee80211] Kernel panic in ieee80211_output.c:2505 o ports/165213 kde devel/cmake: Reinplacement of paths in Modules is bad o kern/165212 No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR a ports/165211 jgh [PATCH] multimedia/zoneminder: update up to 1.25.0 rel o kern/165210 rrs [sctp] SCTP sockets don't bind on interfaces created b o misc/165208 eadler Incorrect unit/description in `vm.vmtotal' output o bin/165207 rctl(8) cannot identify jails via modified name o ports/165206 dinoex wish: print/cups-base dnssd support with net/mDNSRespo f ports/165204 sysutils/ipmitool should have periodic IPMI status che o ports/165198 gnome cannot build net-im/telepathy-glib f ports/165197 [patch] benchmarks/xdd: fix CPU detection slew of stri o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking f ports/165188 eadler [PATCH] update devel/yasm to latest version o ports/165184 clsung [PATCH] devel/p5-Git-PurePerl: add misisng DEPENDS o ports/165183 skv [PATCH] devel/p5-Getopt-Popt: mark deprecated since th o kern/165181 net [igb] igb freezes after about 2 weeks of uptime o ports/165179 gnome mail/evolution does not build f ports/165176 [PATCH] mail/dovecot: update to 2.0.18, mail/dovecot2- o misc/165175 [build] installworld built WITHOUT_LIB32 still install o kern/165174 net [patch] [tap] allow tap(4) to keep its address on clos o threa/165173 threads clang buildworld breaks libthr o kern/165170 [panic] server reboot while pinging o ports/165168 skv [PATCH] www/p5-HTTP-BrowserDetect: update to 1.41 f ports/165165 sunpoet [PATCH] www/p5-Mojolicious: update to 2.49 o bin/165164 [PATCH][bin] xargs(1) incorrect pointer passed to wait o usb/165163 usb [keyboard] The USB RF keyboard and mouse become non-re o ports/165161 lth [PATCH] devel/p5-File-Find-Rule-Perl: add missing DEPE f ports/165160 scheidell math/coinmp needs to use libtool f ports/165159 miwi [PATCH] lang/ocaml: fix build error for systems that u o ports/165156 mm [patch] devel/pcre does not build with LIBEDIT OPTION o stand/165155 standards [PATCH][bin][standards] xargs does not print diagnosti o usb/165154 usb USB patch for new u3g device o kern/165152 net [ip6] Does not work through the issue of ipv6 addresse f ports/165150 swills [PATCH] devel/p5-File-Dir-Dumper: update to 0.0.7 o kern/165149 wireless [ath] [net80211] Ping with data length more than iv_fr o ports/165148 acm [PATCH] devel/p5-File-DesktopEntry: add missing DEPEND o kern/165146 wireless [net80211] Net802.11 Fragment number is assigned 1 (sh a ports/165143 portmgr [exp-run] [patch] devel/apr: CVE / Update / exp-run / f ports/165138 russian/fortuneru: doesn't install files for other pop o ports/165136 decke [REPOCOPY] devel/kBuild -> devel/kBuild-devel f ports/165135 decke [PATCH] audio/decibel-audio-player: update to 1.08 f ports/165131 sunpoet [PATCH] devel/p5-Capture-Tiny: update to 0.16 o ports/165129 xfce - xorg - missing shared object in libxcb after re o ports/165126 jlaffaye [PATCH] irc/libircclient: update to 1.6 o ports/165125 portmgr [patch] ports/Mk/bsd.port.mk misspelling correction f ports/165124 swills [PATCH] devel/p5-Digest-TransformPath: remove broken t f ports/165123 swills [PATCH] devel/p5-Devel-ebug: update to 0.52 o ports/165122 new port: cad/SystemPerl, SystemC perl library f ports/165121 [MAINTAINER UPDATE] cad/p5-Verilog-Perl o bin/165120 eadler ed and sed - tmp file handling - security and location o ports/165117 [NEW PORT] databases/xtrabackup - version 1.6.5 of Per f ports/165115 glewis bsd.java.mk - Unable to build port where USE_ANT=yes i o ports/165112 kuriyama [PATCH] devel/p5-Devel-KYTProf: add missing DEPENDS o ports/165109 miwi [PATCH] devel/p5-Devel-Events-Objects: add missing dep f ports/165105 magik audio/libmpdclient updated to 2.7 f ports/165099 pgollucci New port: databases/xtrabackup percona's xtrabackup ut o ports/165097 gnome [PATCH] Remove dep from irc/xchat o ports/165090 multimedia audio/faad missing head files o ports/165089 clsung The patch of devel/glog is a little wrong o ports/165088 bad interaction between boost and gcc o kern/165087 fs [unionfs] lock violation in unionfs o ports/165086 kwm [PATCH] Remove net/socks5 dep from irc/xchat-gnome a ports/165082 ashish [PATCH] [exp-run] exp-run required for updating bsd.em o ports/165081 az [PATCH] devel/p5-Class-Load: update to 0.17 f ports/165074 miwi [PATCH] www/xpi-bookmarkdd: update to 0.7.5 f ports/165073 miwi [PATCH] www/xpi-yslow: update to 3.0.9 o ports/165072 nork [PATCH] www/xpi-user_agent_switcher: update to 0.7.3 f ports/165071 miwi [PATCH] www/xpi-stumbleupon: update to 3.76 f ports/165070 miwi [PATCH] www/xpi-searchstatus: update to 1.39 f ports/165069 miwi [PATCH] www/xpi-modify_headers: update to 0.7.1.2b o ports/165068 nork [PATCH] www/xpi-it_s_all_text: update to 1.6.0 o ports/165067 skreuzer [PATCH] www/xpi-httpfox: update to 0.8.10 o ports/165065 nork [PATCH] www/xpi-firemobilesimulator: update to 1.2.2 o ports/165064 skreuzer [PATCH] www/xpi-errorzilla: update to 0.42 f ports/165062 miwi [PATCH] mail/xpi-dispmua: update to 1.6.6 o kern/165060 wireless [ath] vap->iv_bss race conditions causing crashes insi o kern/165059 virtio_kmod: networking breaks with a router using vir o ports/165057 nox multimedia/k9copy-kde4: libxine 1.2.x patches o ports/165056 danfe games/quakeforge: update to 0.6.2 o ports/165050 culot [MAINTAINER] editors/scite: update to 3.0.3 a ports/165046 sahil [PATCH] mail/postfix preserve ident in mailer.conf f ports/165042 swills [PATCH] devel/p5-Data-Average: add missing DEPENDS f ports/165037 swills [PATCH] devel/p5-Config-Wrest: add missing DEPENDS f ports/165035 farrokhi [update] net/haproxy to 1.4.19 o kern/165032 net [mii] [patch] brgphy(4) is not used for BCM57780 f ports/165029 sunpoet [PATCH] sysutils/p5-Sys-HostIP: update to 1.91 o sparc/165025 sparc64 [PATCH] zfsboot support for sparc64 o ports/165023 gordon [patch] devel/p4v port is marked broken and also stale o kern/165021 wireless [ath] ath device timeout during scan/attach, if wlan_c f ports/165016 pgollucci [PATCH] mail/rubygem-mail: update to 2.4.1 o docs/165009 eadler indent(1) man page fix f ports/165008 net-im/kmess-kde4 fails to connect f ports/165006 [patch] add missing dependencies to audio/audacity-dev o ports/165003 [patch] audio/icecast 2.3.2 may leak memory and take e o ports/164995 miwi Update port: games/mahjong to 1.12 o ports/164992 miwi Update port: emulators/qmc2 to 0.35 f ports/164988 miwi Update port: deskutils/cdcat to 1.6 f bin/164982 gavin sysinstall(8) core dump f ports/164979 [maintainer update] net-p2p/retroshare: update to o bin/164976 [PATCH] tzsetup(8): Fix VERBOSE reporting on results w o ports/164975 clsung [PATCH] www/p5-Jifty: add missing DEPENDS o ports/164973 kuriyama [PATCH] www/p5-Plack: add TEST_DEPENDS, other changes o ports/164971 kuriyama [PATCH] devel/p5-Test-TCP: update to 1.15 o kern/164970 eadler dup2(2) incorrectly returns EMFILE instead of EBADF o ports/164968 clsung [PATCH] mail/p5-Email-MIME-CreateHTML: add missing DEP o ports/164965 office editors/openoffice.org-3 fails to build in moz, nss, a s ports/164963 crees [PATCH] ports-mgmt/porttools: add submit -P to print P f ports/164960 swills [PATCH] devel/p5-Class-Declare: update to 0.17 o docs/164958 brd mirror: anonymous SSH based access to anoncvs1.freebsd o kern/164957 Linux emulation freezes machine after heavy usage of c o kern/164951 Problem build of if_ath driver with certain mode a bin/164950 nwhitehorn bsdinstall(8): pc-style partitions: no way to set 'boo o ports/164948 bapt shells/zsh fails to build o bin/164947 tee looses data when writing to non-blocking file desc f ports/164944 amdmi3 [PATCH] games/instead: update to 1.6.2 f ports/164943 amdmi3 multimedia/mplayer: produces broken binary if built WI f ports/164941 [UPDATE] [NEW PORTS] jamvm/classpath w/o jdk p docs/164940 eadler [PATCH] xref err.3 in strerror.3 o docs/164939 eadler [PATCH] add a standards section to err.3 o docs/164938 eadler [PATCH] consistently use file system in config and tun o bin/164933 [nfs] [patch] mountd(8) drops mixed security flavors f o ports/164932 gerald lang/gcc46 not build with clang o ports/164923 wen [Repocopy] www/joomla --> www/joomla25 o ports/164922 [NEW PORT] www/joomla25 Joomla CMS version 2.5 o docs/164920 eadler [PATCH] changes to swap section of config chapter o ports/164919 gecko www/seamonkey fails to build on pre-SSE2 processor o ports/164913 kuriyama [PATCH] devel/p5-Module-Metadata: update to 1.000009 o kern/164909 [cam] devfs does not create entries when removable med o ports/164906 crees [PATCH] graphics/libjpeg-turbo: add -fPIC o ports/164905 gecko www/seamonkey fails to build with clang [patch] o kern/164901 net [regression] [patch] [lagg] igb/lagg poor traffic dist f ports/164898 zi net-mgmt/net-snmp: tonns of "error on subcontainer 'sw o ports/164896 portmgr [exp-run] add support for testing perl modules f ports/164893 sysutils/conky build fails with clang f ports/164891 pgollucci [PATCH] sysutils/rubygem-sys-filesystem: update to 1.0 f ports/164888 pgollucci [PATCH] net/rubygem-whois: update to 2.2.0 f ports/164882 pgollucci [PATCH] ftp/rubygem-curb: update to 0.7.17 o ports/164874 joerg [patch] unbreak devel/avr-gcc o ports/164872 New ports: databases/mdcached, databases/php-mdcached o ports/164871 miwi Release www/xpi-gwt-dev-plugin o ports/164870 portmgr [PATCH] bsd.licenses.mk Set IGNORE if BATCH is set and o ports/164862 sunpoet [MAINTAINER] www/node-devel: update to 0.7.2 o kern/164861 Cannot boot from zfs built in degraded mode o ports/164857 miwi [UPDATE] www/py-requests to 0.10.1 f ports/164856 miwi [UPDATE] net/py-urllib3 to 1.2.2 f ports/164855 miwi [PATCH] textproc/py-chardet o ports/164849 [update] lang/php52 security fixes f docs/164848 jkois commercial gallery: 1.9.0 f ports/164464 port sysutils/dvdisaster does not recognize drives on o kern/164462 fs [nfs] NFSv4 mounting fails to mount; asks for stronger o ports/164459 gnome www/webkit-gtk2 1.4.3 failed to link when WITH_VIDEO=t o amd64/164457 amd64 [install] Can't install FreeBSD 9.0 (amd64) on HP Blad o ports/164453 danfe graphics/luxrender: libpng warning: Application built o kern/164450 xen [xen] Failed to install FreeeBSD 9.0-RELEASE from CD i o ports/164449 crees [PATCH] finance/gnucash update to 2.4.9 a ports/164446 danfe Update port x11/nvidia-driver to 290.10 o kern/164445 [libc] lseek(2) always returns ENXIO with SEEK_DATA/SE o ports/164431 timur net/samba36 does not enable AIO by default s kern/164425 [libc] stat(2) doesn't work in 32bit mode on amd64 o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164418 miwi [PATCH] shells/mksh doesn't build with Clang. o ports/164416 kuriyama [PATCH] textproc/iso8879: Fix on 9 and 10 o ports/164403 portmgr [patch] Mk/bsd.licenses.mk: bring back --hline o kern/164402 pf [pf] pf crashes with a particular set of rules when fi o kern/164400 net [ipsec] immediate crash after the start of ipsec proce o bin/164399 sysinstall bsdinstall(8): 9.0 installer failures o misc/164396 bugmeister [GNATs] add 'enhancement' class o misc/164395 bugmeister [GNATs] add support for .patch attachments o misc/164394 bugmeister [GNATS] Change some fields to 'unset' to prevent misca o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o ports/164390 portmgr [bsd.port.mk] make package-recursive fails with noise o ports/164388 sunpoet shells/ksh93 fails to build/install o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 a ports/164380 jgh audio/audacity-devel should not forcefully depend on J o bin/164378 [patch] improvement of pkg_info(1) warning o ports/164372 office editors/libreoffice fails to build o kern/164370 fs [zfs] zfs destroy for snapshot fails on i386 and sparc o kern/164369 adrian [if_bridge] [patch] two STP bridges have the same id o ports/164367 secteam ports-mgmt/portaudit finds problem in a jail but not o o kern/164365 wireless [iwi] iwi0: UP/DOWN in o ports/164364 New port: multimedia/banshee-devel Music management an o ports/164362 mlaier sysutils/pftop fails to compile o ports/164355 misc/gpt will not install using pkg_add o ports/164354 rm [Maintainer Update] graphics/gauche-gl 0.4.4 -> 0.5. p bin/164353 maxim ifmcstat(8) build fail without -DWITH_KVM o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak p ports/164349 x11 [PATCH] x11/libXinerama :1 LeftOf or Above :0 mouse is o bin/164348 ntpd(1): ntp.conf restrict default ignore option doesn o ports/164345 portmgr Mk/bsd.licenses.mk framework not suitable for linuxula o ports/164341 lev [patch] sysutils/graid5: remove post-deinstall target f ports/164338 miwi [UPDATE] www/py-requests to 0.9.3 o ports/164333 kuriyama missing dependency in security/gnupg o ports/164332 linimon growisofs/cdrecord error on 9.0R (unable to CAMGETPASS o kern/164329 acpi [acpi] hw.acpi.thermal.tz0.temperature shows strange v p bin/164317 glebius [patch] write(1): add multibyte character support p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method o ports/164309 New port: graphics/pinta Simple drawing/painting progr o ports/164306 update mail/mailagent to 3.1.77 and utmpx fix o bin/164302 [patch] mail(1) expands aliases beyond # o amd64/164301 amd64 [install] 9.0 - Can't install, no DHCP lease o ports/164298 pgollucci [PATCH] Make print/foomatic-filters not eat PS files o bin/164294 sysinstall bsdinstall(8): FreeBSD 9.0-RELEASE bsdinstall dvd does o ports/164293 rea print/cups-pstoraster failed o bin/164291 sysinstall bsdinstall(8): bsdinstall and filestetyem selection / f ports/164287 gnome x11-toolkits/vte based applications failing to recogni o bin/164284 sysinstall bsdinstall(8): FreeBSD install assign incorrect dev as o bin/164281 sysinstall bsdinstall(8): please allow sysinstall as installer op o ports/164277 new port: mail/roundcube-automatic_addressbook o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o kern/164271 pf [pf] not working pf nat on FreeBSD 9.0 [regression] o ports/164270 gnome textproc/libxml2 CVE-2011-3919 patch o bin/164267 sysinstall bsdinstall(8) bugs when RE-installing to GPT partition o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o kern/164256 fs [zfs] device entry for volume is not created after zfs o kern/164254 geom [geom] gjournal not stopping on GPT partitions f ports/164253 lwhsu [PATCH] databases/cassandra: update to 1.0.7 o kern/164252 geom [geom] gjournal overflow f ports/164243 miwi [PATCH] emulators/dosbox: Fix build with clang s ports/164242 net/openafs port breaks with KERNCONFDIR and include o ports/164239 gecko [PATCH] mail/thunderbird: crash with nss_ldap p kern/164238 eadler [patch] NULL pointer dereference in setusercontext (li f ports/164237 wxs [PATCH] security/suricata: overwrite files from libhtp f ports/164235 pgollucci [patch] graphics/vigra: update to 1.8.0 o sparc/164227 sparc64 [boot] Can't boot 9.0-RELEASE/sparc64 on Blade 1500 o sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from o power/164225 ppc Boot fails on IBM 7028-6E1 (heap memory claim failed) o ports/164222 gnome switching users in gnome3 invokes sanity check o kern/164220 sound preferences does not allow continuous adjustment o docs/164217 eadler [patch] correct synchronize flag in setfacl(1) manpage o kern/164210 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164209 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164208 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164207 portmgr [PATCH] bsd.port.mk includes top-level Makefile.inc fr o misc/164206 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164204 az net/p5-ZeroMQ request sending segfault o kern/164203 [smp] usr/src/sys/sys/smp.h:124: warning: comparison b o ports/164199 Ports fail to acknowlegde newly created users o ports/164197 mm smsd(comms/smstools3) doesn't read some configurations p bin/164192 emaste [patch] wpa_supplicant(8): Fix typo intr-by SVN r21473 o ports/164190 mm [PATCH] devel/liboil: Fix build with clang o kern/164189 [pccard] FreeBSD 9.0-RELEASE on Toshiba Satellite Pro o ports/164187 gnome [PATCH] net/avahi etc should use USERS o kern/164184 fs [ufs] [panic] Kernel panic with ufs_makeinode f ports/164181 [PATCH] www/xxxterm: Fix ssl_ca_file path and style o ports/164177 audio/squeezeboxserver should require mysql 5.0 server o kern/164145 [netisr] when one of netisr threads take 100% system i o kern/164143 geom [geom] Partition table not recognized after upgrade R8 o bin/164137 tunefs(8): issues inappropriate error-message o amd64/164136 amd64 after fresh install 8.1 release or 8.2 release the har o kern/164132 [xpt] "xptioctl: pass device not in the kernel" noise o bin/164131 cperciva freebsd-update(8) does not check for failed install co o kern/164130 rwatson [netisr] broken netisr initialization o ports/164129 obrien editors/vim is unable to use the gnome2 interface f ports/164127 dinoex www/webalizer WITH_GEODB requires WITH_BDB o amd64/164116 amd64 [boot] FreeBSD 9.0-RELEASE installations mediums fails o ports/164115 pgollucci net-mgmt/cacti - cacti.sql does have old fashioned TYP o bin/164102 wireless hostapd not configured for 802.11n o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco f ports/164098 miwi [new port] dns/dnssec-tools: DNSSEC Tools port for eas o bin/164097 sysinstall bsdinstall(8): always installs GPT o www/164096 www PR submission form has no field labelled synopsis f bin/164094 sysinstall bsdinstall(8): installer progress over 100% o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number o amd64/164089 amd64 FreeBSD-9.0-RELEASE-amd64-memstick.img does not boot o kern/164082 recurring problem wirh /dev/console and syslog handlin p bin/164081 jilles sockstat(1) not reporting all open sockets p docs/164078 eadler man setuid(2): a messy sentence o amd64/164073 amd64 /etc/rc warning after booting o ports/164072 pav [NEW PORT] databases/percona-{server,client}: Percona o ports/164060 net/ucarp doesn't work on FreeBSD 9.0-PRERELEASE o usb/164058 usb Lexar 8GB USB flash drive doesn't work by default o ports/164055 sysutils/zfs-periodic: Test if scrubbing is in process f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i o stand/164049 eadler getconf returns bad value for ULLONG_MAX o conf/164048 /etc/rc.d/hostid is not symlink aware f ports/164046 bapt [PATCH] sysutils/kkbswitch: %%DOCSDIR%%/common is syml f ports/164045 bapt [PATCH] java/dbvis: prevent dirrm beginning with a / p bin/164042 emaste [PATCH] tzsetup(8): Fix VERBOSE to work with new UTC m p bin/164041 emaste [PATCH] tzsetup(8): Remove unnecessary code duplicatio p bin/164039 emaste [PATCH] tzsetup(8): Don't write /var/db/zoneinfo eithe p bin/164038 wollman [PATCH] tzsetup(8): Increase buffer size to hold error o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o docs/164034 doc acl(9) documentation lacking f ports/164029 [PATCH] graphics/bmeps fix build with databases/gdbm o ports/164017 bf [NEW PORT] math/plasma: Parallel Linear Algebra Softwa o ports/164015 devel/php5-pinba: pinba crahes PHP when built with pro o ports/164013 gecko www/firefox: Firefox-9 Icons & xpi-addons from ports o ports/164010 timur [patch] net/samba36: Split up samba scripts into more o misc/164005 rebooting while fsck in progress cause start fsck agai p conf/163993 pluknet wrong documentation in /usr/src/Makefile o bin/163992 dumpfs(8): dumpfs -m is broken f www/163988 jkois bsdlatino.blogspot.com o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/163985 [boot0] Incorrect operand size in boot0 o ports/163979 danfe games/quakeforge: update to 0.6.1 o kern/163978 [hwpmc] [patch] Loading hwpmc with an unknown cpuid ca o kern/163974 jkim Via RNG not enabled on amd64 o kern/163973 [ichwd] ichwd(4) no longer appears to function o ports/163963 portmgr Mk/bsd.port.mk, math/spooles-mpich, science/mpqc-mpich f www/163957 jkois Our site on http://www.fi.freebsd.org/commercial/misc. o ports/163955 input packet for interface are counted twice o bin/163951 secteam [security] bundled openssl seems to miss fix for a CVE o bin/163943 sysinstall bsdinstall(8) fails to detect CD device when booting w o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de o kern/163926 eadler [libkvm] libkvm.so.5 exports private symbols f ports/163924 miwi [PATCH] archivers/xarchiver, warning when delete deskt o ports/163917 pgollucci [new port]: graphics/qmetro Map of the transport syste o ports/163909 bf [MAINTAINER-UPDATE][PATCH] please update math/lapacke o ports/163908 fluffy [patch] filesystem based race condition in multimedia/ o kern/163905 [panic] FreeBSD 9x kernel panic without acpi && event o kern/163903 net [igb] "igb0:tx(0)","bpf interface lock" v2.2.5 9-STABL f ports/163897 [NEW PORT] sysutils/dstat: A versatile resource statis f kern/163890 gavin ps2 keyboard not detected by kernel? [regression] o ports/163884 nivit [Patch]databases/py-sqlalchemy:strict depend on py-MyS o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163877 doc apm(4) is not installed o kern/163873 ipfw [ipfw] ipfw fwd does not work with 'via interface' in o ports/163872 shaun devel/ioncube and distfiles o bin/163863 [patch] adduser(8): confusing usr.sbin/adduser output o ports/163861 new port: devel/art A Resource Tracer (A resource trac o ports/163851 miwi devel/pecl-spread needs to record spread4 as a run dep o ports/163850 New port: cad/linux-bricscad o bin/163847 [PATCH] German filename conversion scheme for mount_nw o conf/163843 [sshd_config] Modified VersionAddendum field in sshd_c o bin/163837 cperciva i386 lastest.ssl freebsd-update file is invalid o docs/163830 doc device smbios: missing documentation, no manpage o conf/163828 [patch] /etc/periodic/daily/110.clean-tmps tries to un o ports/163824 nivit math/jsmath: AMSmath in jsMath-3.6.e will crash if ena o www/163823 www Update www 9.0 release Schedule o bin/163822 kgdb(1): kgdb -w opens symbols file, not just core, wr o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/163812 scsi [mpt] problem with mpt driver for lsi controlled conne f ports/163806 scheidell New port: devel/arduino-lib-irremote: A Multi-Protocol f kern/163804 [request] with uname -a return also date of source tre o kern/163803 vlan does not work o kern/163801 fs [md] [request] allow mfsBSD legacy installed in 'swap' f ports/163800 net-mgmt/nagiosql: All files are Windows-converted o ports/163799 delphij net/openldap24-server: slapd not started earlier o conf/163798 [nsswitch.conf] nsswitch.conf with nss_ldap ignore [su p conf/163789 eadler [patch] Make etc/Makefile more conflict resistant o conf/163778 imp [patch] Conditionalize tools in the source tree o bin/163775 [patch] sfxge(4) explitly sets -g -DDEBUG=1; infects k o bin/163773 eadler [patch] pc-sysinstall(8): pc-sysinstall/backend.sh - c o bin/163772 [patch] nvi(1) - don't mask O_DIRECTORY symbol o docs/163771 doc getnameinfo(3) man-page detail o kern/163770 fs [zfs] [hang] LOR between zfs&syncer + vnlru leading to o bin/163769 [patch] fix zpool(8) compile time warnings o misc/163768 [patch] [boot] fix non-ficl compile time warnings f ports/163766 multimedia/openshot fails to find "main" and "gtk" mod o ports/163762 pgollucci [PATCH] multimedia/mythtv still thinks it's 0.24.0 o ports/163761 pgollucci deskutils/vboxgtk: fix install failure o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode o ports/163751 lme [PATCH] games/scummvm: chase audio/fluidsynth shlib ve a ports/163749 joerg devel/avrdude fails to reset RTS/DTR properly for Ardu o docs/163742 doc [patch] document failok mount(8) option o amd64/163736 amd64 Freebsd 8.2 with MPD5 and about 100 PPPoE clients pani o ports/163725 swills [PATCH] emulators/open-vm-tools: Update to latest vers o kern/163724 wireless [mwl] [patch] NULL check before dereference o ports/163722 gnome sysutils/gnome-settings-daemon: crash with abort trap f ports/163721 rm [patch update] multimedia/libbluray 0.2.20110219 -> 0. o ports/163720 eclipse java/eclipse doesn't build o kern/163719 wireless [ath] ath interface do not receive multicast f ports/163718 dinoex [PATCH] graphics/jasper: security updates for CVE-2011 o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c a ports/163711 olgeni lang/erlang update request to R15B o amd64/163710 amd64 setjump in userboot.so causes stack corruption f ports/163704 gnome [PATCH] devel/ptlib26: disable ODBC by default f ports/163703 kde x11/kde4: Error with KDE4 printer configuration o kern/163701 ifconfig: group parameter makes impossible to restart o bin/163700 logger(1): broken logic when -f option && long lines i o conf/163690 FreeBSD 10.0-CURRENT/amd64: Set WITH_BIND_LIBS=YES doe o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin f ports/163684 olgeni [PATCH] lang/clojure-mode.el: update to 1.11.5 o bin/163680 vmstat(8): negative values in vmstat -z o ports/163675 pgollucci [PATCH] devel/buildbot: update to 0.8.5 o ports/163674 pgollucci [PATCH] devel/buildbot-slave: update to 0.8.5 o kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip p conf/163668 jh [patch] fstab[5] 'failok' option has no effect on miss o ports/163666 jgh [PATCH] Add user "gerrit" to UIDs and GIDs o ports/163665 jgh [New Port]: devel/gerrit - Web based code review and p o ports/163663 kuriyama misc/amanda-server is outdated - 3.3.0 is the Latest S f ports/163655 miwi [PATCH] games/odamex update to 0.5.6 o ports/163647 pgollucci [patch] sysutils/xosview: does not build on 10-CURRENT o docs/163646 eadler update man ehci(4) to mention options USB_DEBUG o ports/163643 pgollucci [patch] astro/wmspaceweather: URL changed + two minor f ports/163641 zi net-mgmt/net-snmp: netsnmp_assert were rised o ports/163640 tabthorpe bsd.licenses.mk: Add code to support standard licenses f ports/163636 mi net/opal fails to build o amd64/163625 amd64 Install problems of RC3 amd64 on ASRock N68 GE3 UCC p kern/163623 eadler [kernel] sysctl net.inet.icmp.icmplim_output descripti o kern/163619 OFED failed to build with clang o kern/163618 panic: vm_fault: fault on nofault entry, addr: c278100 f ports/163616 makc [new port] games/quadra: A tetris like multiuser actio o kern/163608 [lor] Two seemingly vfs-related LORs o bin/163602 pmcstat(8) doesn't search symbols under /boot/modules o kern/163587 [sched_ule] The ULE scheduler does not load in the fou o kern/163585 cpuset(1) by twice kill SMP functionality o ports/163583 [patch] x11/kdelibs3 conflicts with openssl-1 o ports/163577 oliver graphics/ogre3d fails to build when textproc/tinyxml i o docs/163576 doc zfs(8) sync property not noted in the manpage o kern/163574 wireless [net80211] overly-frequent HT occupancy changes o kern/163573 wireless [ath] hostap mode TX buffer hang o conf/163572 [periodic] not full output in daily run output is ambi o misc/163571 The system may hang after typing reboot o amd64/163568 amd64 hard drive naming o bin/163567 make(1): add option to disable object directory o kern/163559 wireless [ath] kernel panic AH_DEBUG f ports/163555 danfe [PATCH] irc/bitchx is out of date and BitchX 1.2 does a ports/163550 dinoex [patch] ftp/vsftpd{,-ext}: respect CC/CFLAGS/STRIP uni o bin/163547 vmstat(8): vmstat -i show AVG rate instead of rate p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi f ports/163524 linimon [exp-run] estimate number of ports utilizing old inter o ports/163519 gnome [patch] graphics/gimp-app: unbreak build with clang=20 o ports/163518 gnome [patch] x11/babl: unbreak SSE build with clang o bin/163515 [patch] b64encode(1)/uuencode(1) create files with no o ports/163514 itetcu [PATCH] ports-mgmt/tinderbox-devel: Report the proper o threa/163512 threads libc defaults to single threaded o ports/163511 portmgr [PATCH] bsd.port.mk: Allow existing users on system to o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands o ports/163506 mm multimedia/x264: Does not compile this package x264-0. o ports/163504 mm multimedia/x264 (0.119.2113) doesn't install o kern/163501 fs [nfs] NFS exporting a dir and a subdir in that dir to o kern/163493 FreeBSD 9x amd64 unstable while work with RAM o ports/163490 ohauer www/moinmoin port fix o ports/163489 timur databases/tdb hangs frequently on larger CPU systems o conf/163488 rc Confusing explanation in defaults/rc.conf o bin/163487 syslog.conf filtering syntax broken in 9.0-RC3 (was wo o kern/163481 net freebsd do not add itself to ping route packet o bin/163470 bad cksum in tcpdump(1) output o conf/163469 FreeBSD 10.0-CURRENT/CLANG: WITH_LIBCPLUSPLUS= YE o ports/163467 Ports using python 2.7 and "waf" intermittently hang o o ports/163466 haskell archivers/hs-zip-archive cannot build o kern/163464 Invalid compiler flag in /sys/conf/kern.mk o kern/163461 [vfs] vfs.zfs.arc_max/vfs.zfs.arc_meta_limit defaults a java/163456 java [patch] java/openjdk6: build and distribute open timez o bin/163455 [ath] "bssid" in wlanN create_args does not change wla o ports/163454 gecko [patch] www/firefox-beta: unbreak with libc++ o kern/163450 [puc] [patch] new pci quad serial card supported by pu o ports/163443 gnome [patch] graphics/poppler: unbreak with libc++ f ports/163441 databases/couchdb multiple port installation issues. o ports/163438 miwi New port: multimedia/mplayer2 o kern/163410 panic (page fault) when using mfsroot on i386 with 4 G o kern/163370 csjp [bpf] [request] enable zero-copy BPF by default f ports/163339 garga ftp/pure-ftpd: rc script not supports pure-authd o usb/163328 usb [usb] Support for Atheros USB abgn devices a ports/163323 skv x11/rxvt-unicode fails to build with perl-5.12.4_3 and o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o kern/163318 wireless [ath] ath(4) stops working o ports/163314 miwi [maintainer update] www/ocsigen to version 2.0.2 p kern/163312 wireless [panic] [ath driver] kernel panic: page fault with ath o kern/163310 Panics, sudden reboots and file system corrupts with s f ports/163306 pgollucci [patch] upgrade sysutils/nut to 2.6.2 and fix misc por o misc/163304 complete LLVM toolset in the source tree made availabl o ports/163291 doceng [PATCH] print/ghostscript9: Automatically disable X11 o amd64/163285 amd64 when installing gnome2-lite not all dependent packages o amd64/163284 amd64 print manager failed to install correctly f ports/163279 miwi [update] net/haproxy-devel to 1.5-dev7 f ports/163276 miwi [maintainer update] devel/ocaml-lwt: update to version o kern/163268 acpi [acpi_hp] fix driver detach in absence of CMI o misc/163263 crash on VirtualBox when ACPI is enabled o kern/163245 marcel kernel panic if set /boot/loader.conf vfs.root.mountfr s ports/163242 eadler [NEW PORT] databases/autopostgresqlbackup: Make daily, o kern/163240 marius Power down PHY when "none" media is selected o kern/163237 AR5416 as HostAP. Delays among clients when o ports/163232 bf [patch] math/metis: respect CC o ports/163226 obrien [patch] vietnamese/libviet: respect CC/CFLAGS o bin/163219 gtetlow [patch] man: fix 'zcat: standard input is a terminal - o kern/163208 pf [pf] PF state key linking mismatch f www/163203 jkois Submission into Consulting Services List f ports/163196 eadler [NEW PORT] www/ocportal o ports/163195 office editors/openoffice.org-3 installation error o docs/163177 doc [patch] man page for gnats(7) incorrectly lists gnatsd o conf/163168 JIS X0208 space should be treated as printable in ja_J o kern/163164 FreeBSD 9.0-RC3 amd64 freezes on boot o misc/163155 System halt isnt realy halt o kern/163154 [iwn] fatal firmware error on 9.0-RC3 o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o kern/163145 FreeBSD 9.0 PRERELEASE freezes without any warnings or o ports/163142 vbox emulators/virtualbox-ose: virtualbox doesn't work on n o kern/163135 [netsmb] Wrong check in netsmb f kern/163130 scsi [mpt] cannot dumpon to mpt connected disk o bin/163127 brooks sshd(1): SSHD_config Bad configuration option: NoneEna f ports/163126 security/sshguard changed from syslog.conf to daemon b o ports/163125 pgollucci [update] multimedia/qmmp increment PORTREVISION o bin/163123 sysinstall bsdinstall(8): IPV6 only errors connecting o ports/163121 gnome Build issue with graphics/gegl o docs/163119 doc mktemp(3) is referring to (now) non-existent gcc optio o kern/163117 sporadic boot-time panics on 9.0-RC2 and 9.0-RC3 w/ ce o amd64/163114 amd64 no boot on Via Nanao netbook Samsung NC20 o ports/163112 python Updates bsd.python.mk to support Zope 2.11, 2.13 o ports/163111 kwm Error building x11-fonts/cantarell-fonts o ports/163105 bsam cannot portupgrade devel/eric4 to version 4.4.19 o www/163097 www contributor address was obsolete, + contributor now de o bin/163095 brooks Add WITH_OPENSSH_NONE_CIPHER src.conf(5) knob o amd64/163092 amd64 FreeBSD 9.0-RC2 fails to boot from raid-z2 if AHCI is o kern/163091 usb [panic] Fatal trap 12: page fault while in kernel mode f www/163090 jkois User Groups of lissyara.su p kern/163089 glebius Duplicate free in the error return for mld_v2_encap_re f ports/163084 crees net-mgmt/bsnmptools fails to build o kern/163082 wireless [ath] ar9285 diversity fixes f ports/163072 miwi [NEW PORT] net/dot1ag-utils: Utilities for IEEE 802.1a o ports/163066 eadler [patch] bsd.database.mk: Allow db5 to be selected by U o kern/163065 UDF support for symbolic links with absolute path is b o kern/163064 [fix][sym]driver tries to nego synch trans with everyo o ports/163063 python [PATCH] fix for ports-mgmt/portbuilder o bin/163062 csplit(1) includes extra lines in inner context o ports/163059 portmgr Portbuild: Drop privileges for extract/patch/build pha o ports/163056 miwi [patch] audio/xmms2: update to 0.8 o ports/163055 mm [patch] multimedia/ffmpeg: broken without /usr/bin/per o bin/163053 [patch] camcontrol(8): 'camcontrol nego -D' is ignored o misc/163051 Small disk sizes with 4k sectors have far too few inod o amd64/163048 amd64 normal user cant mount ntfs-3g f ports/163046 cs devel/bazaar is outdated, should be bazaar-ng as the d o docs/163043 doc [patch] gsched.8: remove reference to gsched_as s kern/163033 [request] 'out of swap space' message should be ammend o ports/163029 delphij [MAINTAINER UPDATE] Update net/openldap24-server to 2. o ports/163022 sunpoet New port: databases/p5-bucardo Asynchronous PostgreSQL a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o ports/163017 autotools [bug] in devel/libtool (2.4 only) o ports/163015 bf New port: math/it++ o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162991 java java/openjdk6 fails to build f ports/162990 mi net/minidlna - requires elevated privileges o ports/162988 maho port bug: math/octave fails to link libumfpack o ports/162977 lev devel/subversion: svn 1.7 does not know who I am at al o kern/162976 [libc] cron fails unnecessarily via setlogin(2) with s f ports/162958 gnome graphics/gimp-app (1.258) make fails with missing TIFF o kern/162952 [headers] Problems including netinet/tcp_var.h o ports/162951 kmoore misc/lxde-common: Missing lxde-logout.desktop o ports/162949 gnome [Update] devel/dbus: update to 1.5.8 o ports/162948 portmgr [exp-run] 10.0 exp-run without libreadline in base sys o kern/162944 fs [coda] Coda file system module looks broken in 9.0 o kern/162943 uClibc explicit runtime loader segfaults under FreeBSD o ports/162939 gecko www/firefox crashes with Zotero add-on o amd64/162936 amd64 fails boot and destabilizes other OSes on FreeBSD 9 RC o kern/162927 net [tun] Modem-PPP error ppp[1538]: tun0: Phase: Clearing o kern/162926 net [ipfilter] Infinite loop in ipfilter with fragmented I o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ o ports/162920 miwi [patch] respect STRIP/LDFLAGS consistently across untr o bin/162905 -E flag in newfs(8) has no effect o conf/162884 FreeBSD's termcap ships monochrome rxvt-unicode entry o kern/162867 better zfs_cv_init o misc/162866 [build] [patch] extract revision from hg in newvers.sh o kern/162860 fs [zfs] Cannot share ZFS filesystem to hosts with a hyph o kern/162859 acpi [acpi] ACPI battery/acline monitoring partialy working f ports/162813 miwi clang doesn't compile games/jaggedalliance2 o bin/162798 add p flag to newsyslog.conf o conf/162794 I experience problem with my network ethernet adapter p kern/162789 glebius [PATCH] if_clone may create multiple interfaces with t o conf/162787 termcap is missing kB entry for xterm o ports/162780 office editors/libreoffice without GUI o docs/162775 doc zpool(1): Document some undocumented zpool import opti o ports/162768 pgollucci [PATCH] ftp/proftpd port update which fixes mod_sql_my o docs/162765 doc [patch] lseek(2) may return successful although no see o ports/162755 gnome [PATCH] graphics/evince: segfault on showing propertie o kern/162751 fs [zfs] [panic] kernel panics during file operations o kern/162736 r214955 (nanobsd) broke build with whitespace in KERNC o ports/162726 miwi [PATCH] update graphics/box to 0.3.0 and graphics/boxe o misc/162724 make whereobj doesn't work after make buildenv o ports/162721 portmgr [PATCH] bsd.port.mk: config target should complain if o ports/162716 glewis difference in dependency lists in INDEX and /var/db/pk o bin/162715 pam_krb5(8): pam_krb5 not storing tickets in /tmp p amd64/162708 jhb FreeBSD 9.0-RC2 amd64 fails to boot on Dell Optiplex G o ports/162706 maho math/suitesparse port does not properly detect or link o docs/162699 doc Handbook/Upgrading instructions: should mention delete f ports/162694 pgollucci [patch] [update] multimedia/pitivi to 0.15.0 o bin/162693 sysinstall sysinstall(8): release/Makefile.sysinstall on 9.x refe o kern/162690 gpart label changes only take effect after a reboot o bin/162681 ports pkg_add(1): new installer does not add doc packages o kern/162677 xen [xen] FreeBSD not compatible with "Current Stable Xen" o ports/162676 [NEW PORT] net-mgmt/ssgless: View ScreenOS configurati f ports/162674 graphics/rawtherapee freezes after demosaic when tryin o bin/162670 gabor [patch] libkiconv doesn't work with iconv() in libc o bin/162661 gavin [patch] ftp(8) is giving up on IPv6 o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang o bin/162645 zfs(1): Option parse failure for 'aclmode' when creati o ports/162644 secteam ports-mgmt/portaudit omit fetch output unless verbose o conf/162642 rc .sh scripts in /usr/local/etc/rc.d get executed, not s o ports/162639 timur net/samba36:utils/net_rpc_shell.o(.text+0x480): more u o kern/162620 [ata] SATA device lost when changing brightness on Len o ports/162616 miwi New port: sysutils/cluster-admin tools for managing Fr o kern/162609 [ata] Cannot write to Sony DRU-835A DVD drive o ports/162607 mm little correction for comms/smstools3 o bin/162605 sysinstall sysinstall(8) doesn't identify CD/DVD drives for the u o ports/162602 pgollucci devel/st [patch] event.c missing from work/st-1.9/Make o ports/162596 oliver games/ember: Typo in required lib at runtime o kern/162591 fs [nullfs] cross-filesystem nullfs does not work as expe f bin/162588 dim libz partially broken when compiled with clang [was: n o docs/162587 gjb unclear/incomplete description of per-interface statis f ports/162579 miwi update chinese/pcmanx to 1.0 o ports/162571 gnome textproc/libxml2: provide a way to disable iconv f ports/162560 swills giflib libungif conflict o kern/162558 net [dummynet] [panic] seldom dummynet panics o kern/162524 No full shutdown in FreeBSD 9.0-RC1 o java/162522 java OpenJDK 6 is not setting close on exec o kern/162519 fs [zfs] "zpool import" relies on buggy realpath() behavi o sparc/162513 sparc64 mpt(4), mptutil(8) reports variable, erroneous drive i o ports/162511 [NEW PORT] net-im/imspector-devel devel version of ims o ports/162510 nork [patch] Upgrade graphics/OpenEXR to version 1.7.0 o kern/162509 net [re] [panic] Kernel panic may be related to if_re.c (r o bin/162503 makefs(8) creates a bad image for UFS2 o kern/162502 [md] mount -t mfs on vnode-based md device destroy him o ports/162500 maho math/suitesparse: gmake[2]: *** [run] Segmentation fau o bin/162495 dc(1): dc -e "5 3 %p 1k 5 3 %p" o amd64/162489 amd64 After some time X blanks the screen and does not respo o ports/162480 New port: net-mgmt/cacti-with-plugins Web-driven graph p kern/162475 bschmidt [ath] functions with return type HAL_BOOL (might) retu o ports/162463 skv lang/perl5.12: perldoc shows escape codes o ports/162460 lth update net-mgmt/smokeping o misc/162455 FreeBSD 9x unstable with file-based swap o ports/162447 net/isc-dhcp41-server: starting with rc-script fails o stand/162434 standards getaddrinfo: addrinfo.ai_family is an address family, o docs/162433 doc [handbook] QEMU instructions for FreeBSD guests s www/162430 bugmeister gnats pr-submission mechanism suxx o bin/162429 sysinstall bsdinstall(8): 9.x installer: selecting ZFS for the ro o bin/162428 sysinstall bsdinstall(8): should check available disk space from o ports/162425 gnome graphics/evince doesn't build o ports/162421 python lang/python32 fails to build (undefined reference to ` o docs/162419 doc [request] please document (new) zfs and zpool cmdline o ports/162414 cy [PATCH] sysutils/syslog-ng: misc. fixes o kern/162407 [rctl] [panic] rctl crashes kernel with a page fault ( o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 p threa/162403 davidxu regression in FreeBSD/9 regarding pthread timeouts in o ports/162397 portmgr [patch] Mk/bsd.port.mk: add new target add-plist-build o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen f ports/162386 eadler [PATCH] Bring back games/tome o kern/162382 [swap] Orphaned swap references not garbage collected; o ports/162381 sunpoet [PATCH] audio/icecast2 upgrade to kh development branc o docs/162380 doc Documentation lacking for getfacl/setfacl o kern/162374 posix_openpt wrongly removed O_CLOEXEC o kern/162373 VESA framebuffer memory mapping fails with EINVAL for o kern/162369 kernel problem at shutdown is system has no keydoard o kern/162367 SATA 3.0Gb/s not enabled on Nvidia nForce 430 o bin/162364 sysinstall sysinstall(8): update sysinstall ftp mirror list for c o kern/162362 fs [snapshots] [panic] ufs with snapshot(s) panics when g o docs/162354 gjb Improve wording in rc.conf(5) regarding network-interf o kern/162352 net [patch] Enhancement: add SO_PROTO to socket.h o ports/162350 office ports/editors/openoffice.org-3 spawns a lawine of gmak o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib o kern/162342 FreeBSD hides gpt labels after mounting ZFS partitions o misc/162338 POLA: mkisoimages.sh does not support extra-bits-dir p o ports/162320 mono lang/mono doesn't build o amd64/162314 amd64 not able to install FreeBSD-8.2-RELEASE-amd64-dvd1 as o ports/162313 acm print/foo2zjs: example devd rules o usb/162306 usb usb devices cant get address asignation, no memories, o kern/162294 Reading DMI memory parts using mmap freeze the system o kern/162277 Repeatable system crash when offlining a zpool vdev o kern/162267 qingli [mpd] mpd kernel panic p docs/162265 doc [Patch] ipfw.8: Documentation clarity a ports/162264 cy [patch] unbreak net/tridiavnc for non-i386 o ports/162261 kde sysutils/k3b-kde4 - fails to compile with ffmpeg-devel o ports/162260 gnome [bsd.gnome.mk] don't add useless dependency for INSTAL o bin/162258 sysinstall sysinstall(8): long-time bugs o kern/162256 scsi [mpt] QUEUE FULL EVENT and 'mpt_cam_event: 0x0' o kern/162250 problems with the work with hard drives Hitachi HDS721 o ports/162240 net/nss-pam-ldapd should allow openldap24-sasl-client o kern/162228 Panic in ufsdirhash_build() p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 o ports/162221 9.0-RC1 new problem building lang/spidermonkey o amd64/162219 amd64 [REGRESSION] In KDE 4.7.2 cant enable OpenGL,in 4.6.5 o ports/162212 ruby ports-mgmt/portupgrade: portversion -r doesn't work o bin/162211 Calendar no longer handles first/last day events in 8. o ports/162207 danfe audio/cdparanoia: crash while building the port. o kern/162201 zec [ip] [patch] multicast forwarding cache hash always al o kern/162195 panic with soft updates journaling during umount -f o ports/162191 ashish [PATCH] editor/emacs: VC doesn't work with subversion o bin/162189 kientzle FreeBSD unzip does not restore file permissions proper o kern/162182 Extreme slowness from HighPoint RocketRaid 622 o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s s ports/162178 portmgr [bsd.port.mk] Add bsd.clang.mk with Clang/LLVM support o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o kern/162174 [kernel] [patch] rman_manage_region() error return pat o docs/162172 doc rctl manpage erroneously lists nproc o amd64/162170 amd64 Unable to install due to freeze at "run_interrupt_driv o kern/162160 9-RC1 over IPMI Virtual CD causes unexpected behaviur o arm/162159 arm [panic] USB errors leading to panic on DockStar 9.0-RC o kern/162153 net [em] intel em driver 7.2.4 don't compile o bin/162152 sysinstall bsdinstall(8): No up-to-date IPv6 French mirror o kern/162110 net [igb] [panic] RELENG_9 panics on boot in IGB driver - o power/162091 ppc FreeBSD/ppc CD crashes Mac OS X s ports/162088 inconsistencies in locally generated INDEX file o ports/162085 mm duplicate file name in open-motif-2.3.3 and tcl-8.5.10 o kern/162083 fs [zfs] [panic] zfs unmount -f pool o ports/162075 gecko www/firefox >= 7.0.1_2 bug with respect to pentadactyl o bin/162064 [patch] Loop in fetch(1) when sending SIGINFO after th o usb/162054 usb usbdump just hangs on 9.0-RC1 f ports/162050 sumikawa [patch] misc/lv directory opening problem fix o ports/162045 print/ghostview 1.5_2 coredumps on certain files f amd64/162043 gavin dev.cpu.0.freq is missing [regression] o ports/162042 bapt [patch] multimedia/libass: add HARFBUZZ option o kern/162036 [geom] Fatal trap 12: page fault while in kernel mode o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/162010 geom [geli] panic: Provider's error should be set (error=0) o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o bin/161986 [patch] netstat(1): Interface auto-width in "netstat - o ports/161984 autotools [patch] devel/libtool: don't split INFO doc (install) f ports/161981 [maintainer update] sysutils/samesame to v1.10 o kern/161979 geom [geom] glabel doesn't update after newfs, and glabel s f ports/161976 zi net-mgmt/net-snmp: ifSpeed for lagg interface is not a o amd64/161974 amd64 FreeBSD 9 new installer installs succesful, renders ma o kern/161968 fs [zfs] [hang] renaming snapshot with -r including a zvo f ports/161959 jkim kernel panic in audio/oss p bin/161957 jail jls(8): jls -v doesn't show anything if system compile o kern/161949 [kernel] 64-bit structures are used even with 32-bit c o power/161947 ppc multimedia/libdvdnav builds broken binaries on big end o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu s ports/161932 zi net-mgmt/net-snmp reports bogus data in UCD-SNMP-MIB:: f bin/161931 sysinstall bsdinstall(8): (add sysinstall partition config as opt o bin/161929 sysinstall bsdinstall(8): (change partition editor screen default o bin/161928 sysinstall bsdinstall(8): (add option to enable 2 button mouse co o bin/161924 sysinstall bsdinstall(8): add msg box telling user to remove inst o bin/161923 sysinstall bsdinstall(8) games & ports install options o misc/161917 pjd pjdfstest doesn't detect setup/teardown failures prope o misc/161915 pjd pjdtests don't articulate requirements very well o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to p kern/161899 rc [route] ntpd(8): Repeating RTM_MISS packets causing hi o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o ports/161894 New port databases/datamodeler: Database modeling tool o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o ports/161890 ume security/cyrus-sasl2 update broke IMAPS in mail/mutt-d o kern/161888 [kerberos] nfs -sec=krb5x/ldap/krb5-heimdal fix/upgrad o kern/161887 [vm] [panic] panic at vm_page_wire with FreeBSD 9.0 Be o kern/161886 [kerberos] [patch] der_xx_oid not declared before use f conf/161885 remko FreeBSD 9 BETA 3 apparently ignores ifconfig_alias set o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup p conf/161847 gavin [patch] reaper of the dead: remove ancient devfs examp o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option a docs/161808 doc Missing documentation critical to correct usage of uui o bin/161807 fs [patch] add option for explicitly specifying metadata o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod o docs/161804 doc New documentation: French translation for building-pro o usb/161793 usb poor EHCI usb2 i/o performance o ports/161789 office editors/openoffice.org-3: compilations fails in module o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o kern/161768 [ahci] [panic] Panics after AHCI timeouts o ports/161765 mm net/relayd: relayd fails to initialize on systems with o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico p bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks o kern/161755 Kernel fails to report negative malloc type statistics o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o kern/161752 geom [geom] glabel(8) doesn't get gpt label change o bin/161749 kientzle bsdtar(1) --gname and --uname switches not working o bin/161739 top(1): top -b does not restore ICANON and ECHO termin o bin/161720 sysinstall bsdinstall(8): partition editor does not put partition s kern/161719 [request] Support for Realtek 5209 SD card reader o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 f ports/161701 New port: games/chocolate-doom Doom port o ports/161690 New port: games/prboom-plus Port of ID Software's Doom o bin/161677 geom gpart(8) Probably bug in gptboot o ports/161676 gnome databases/libgda4: [UPDATE] to 4.2.9; improvements o www/161672 gavin [patch] add support for 10.x to query-pr o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o ports/161578 devel/strace is not working o ports/161574 demon Can't compile devel/p5-Locale-gettext on 9.0beta o ports/161571 sunpoet New port: devel/p5-Gtk2-Notify - Perl interface to lib o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at p kern/161553 eadler Timestamp missing from msgbuf o kern/161552 [rctl] [panic] kernel panic with RCTL option: racct_al o ports/161549 timur Bugs with aio_suspend configure test in net/samba35 o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o misc/161540 cperciva gzippped kernel is not updated by FREEBSD-UPDATE o kern/161533 fs [zfs] [panic] zfs receive panic: system ioctl returnin o bin/161528 tftpd(8): tftpd[86572]: Timeout #3 on ACK 2 o bin/161526 script(1) outputs corrupt if input is not from a termi o ports/161521 pgollucci [new port] databases/py-carbon, backend storage applic o bin/161515 systat(8) does not show Disk MB/s for md devices o kern/161511 fs [unionfs] Filesystem deadlocks when using multiple uni o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o ports/161494 gnome devel/anjuta: gmake[3]: Entering directory `/usr/ports o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash f ports/161462 crees net-mgmt/zabbix-agent: Zabbix_agentd opens a lot of fi s ports/161459 eadler New port: x11-fm/doublecmd Total Commander clone for t o kern/161456 [libpam] on a system bound to an LDAP server, top trie o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/161441 New port: databases/4store o bin/161439 umount(8): umount -a -t doesn't work with nested o kern/161438 fs [zfs] [panic] recursed on non-recursive spa_namespace_ o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o ports/161421 gecko [patch] www/firefox: use libevent2 o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o amd64/161418 vbox [panic] [vbox] FreeBSD 9.0beta3 under Virtualbox: lost o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li o ports/161408 xfce x11-fm/thunar doesn't package o kern/161407 bschmidt [iwn] iwn panic on 9.0-BETA3 o bin/161401 [patch] have service(8) run scripts with the same reso o ports/161390 wen [maintainer] chinese/cxterm broken because does not co o kern/161381 net [re] RTL8169SC - re0: PHY write failed o ports/161359 maho math/gotoblas build fails on "Sandy Bridge" CPU o ports/161356 haskell lang/ghc: bootstrap assumes `gcc', ignoring CC o threa/161344 kib Failure to init TLS variables with func ptr inside sha o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o kern/161318 xen [xen] sysinstall crashes with floating point exception o ports/161317 kde x11/xde4: KDE 4.6.5 does not prompt for authentication o ports/161314 portmgr bsd.port.mk comments for BUILD_ and RUN_DEPENDS fail t o kern/161293 wireless [iwn] hang at startup when starting network o kern/161280 fs [zfs] Stack overflow in gptzfsboot o ports/161278 pgollucci net/dante: getoutaddr(): address [...] selected, but n o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161268 sysutils/fusefs-ntfs fails to mount ntfs "invalid argu s kern/161260 [request] need mps on RELENG_7 for dell servers (PERC o bin/161257 procstat(1): procstat should grow a -l flag to display s kern/161251 [request] Port otus driver from OpenBSD. a ports/161249 shaun net-p2p/bitcoin fails to build o kern/161248 [ahci] Time out, extremly slow response while copying o kern/161233 [build] update RELENG_8 make buildworld error gcc. o ports/161231 [NEW PORT] www/sencha-touch: The First HTML5 Mobile We o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o ports/161185 pgollucci [patch] Remove unnecessary graphics/cairo dependency f o ports/161180 gnome [UPDATE] sysutils/gnome-schedule: update to 2.1.5 o www/161174 www Make http://www.freebsd.org/cgi/search.cgi search GNAT o kern/161169 fs [zfs] [panic] ZFS causes kernel panic in dbuf_dirty o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 f ports/161148 New port: databases/infobright -- the infobright colum o ports/161136 sbz editors/gobby: CLANG: f bin/161113 sysinstall bsdinstall(8): 9.0-BETA3: overwrites Win*-bootcodes wi o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 o arm/161110 arm /usr/src/sys/arm/include/signal.h is bad o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o ports/161106 sysutils/openipmi is dropping core o ports/161103 graphics/rawtherapee fails to build o bin/161101 sysinstall bsdinstall(8): 9.0-BETA3: partition editor: UFS-option o bin/161100 sysinstall bsdinstall(8): 9.0-BETA3: Add User but no Add Group o kern/161097 [sched_ule] Unkillable process hanging waiting for "ex o kern/161094 virtualization[vimage] [pf] [panic] kernel panic with pf + VIMAGE wh o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 pgollucci [patch] misc/ttyrec: don't depend on pty(4), use openp f ports/161070 infinite loop for graphics/xfig on 9.0-CURRENT o ports/161069 mm multimedia/ffmpeg: CLANG: /usr/bin/ld: libavcodec/x86/ o bin/161058 enc(1): enc0 not capturing outgoing IPSEC encrypted tr o docs/161057 doc [handbook] Error in section 18.17.4 of the handbook o bin/161056 sysinstall bsdinstall(8): could allow full control over newfs arg o bin/161055 sysinstall bsdinstall(8): partitioner should auto-populate GPT la f bin/161054 sysinstall bsdinstall(8): partitioner should list valid "type"s o bin/161053 sysinstall bsdinstall(8): network setup dialog is hard to navigat o bin/161052 sysinstall bsdinstall(8): should be consistent about saving confi o bin/161050 sysinstall bsdinstall(8): should use new syntax for IPv4 in rc.co o bin/161049 sysinstall bsdinstall(8): could try to tell if SSDs support TRIM o bin/161048 sysinstall [patch] bsdinstall(8): should run a concurrent shell o o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o power/161045 ppc X doesn't detect ADB mouse up event until another even o arm/161044 arm devel/icu does not build on arm a kern/161043 jhb [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o kern/161035 wireless [ieee80211] Incorrect number describing 11ng MCS rate o bin/161028 [PATCH] service(8) -- Minor improvements o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during o kern/160994 buf_ring(9): MD assumption in MI code f ports/160993 New port: security/sqlcipher o kern/160992 buf_ring(9) statistics accounting not MPSAFE p bin/160979 burncd(8): 9.0 burncd error caused by change to cd0 fr o bin/160975 ipfw(8): ipfw's uid matching doesn't function with IPv o ports/160969 [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 x11 [patch] ports/x11/libXi broken manpages o bin/160967 newsyslog(8) is not working o ports/160963 x11 [patch] x11/bigreqsproto: disable specs o ports/160933 gecko Bad port interactions between Mozilla projects o ports/160930 [PATCH] devel/gdb: HW watchpoint support for amd64 o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT o ports/160906 brooks net/openmpi compile error on FreeBSD 8 o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o kern/160893 fs [zfs] [panic] 9.0-BETA2 kernel panic o kern/160873 net [igb] igb(4) from HEAD fails to build on 7-STABLE o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. f ports/160861 New port: security/racoon-tool Manage setkey and racoo o kern/160860 fs [ufs] Random UFS root filesystem corruption with SU+J o ports/160856 mm graphics/opencv-core: CLANG build fails o ports/160843 cperciva portsnap3.FreeBSD.org, Snapshot appears to be more tha o kern/160838 acpi [acpi] ACPI Battery Monitor Non-Functional o bin/160834 [patch] grep(1): fixes for POSIX conformance o kern/160833 amd64 Keyboard USB doesn't work o ports/160829 timur devel/talloc hangs during configure on FreeBSD 9.0-BET o docs/160827 blackend New documentation: French translation for linux-users s ports/160821 audio/libmp3splt: Building WITHOUT_ID3 fails o ports/160816 swills [PATCH] security/stunnel: update to 4.44 o bin/160803 wpa_cli(8): (malloc) /usr/src/lib/libc/stdlib/malloc.c o kern/160802 [install] USB installation image fails to boot if BIOS o kern/160801 fs [zfs] zfsboot on 8.2-RELEASE fails to boot from root-o o ports/160798 pgollucci [PATCH] games/wesnoth-devel: update to latest version o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar o kern/160777 fs [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/impo o www/160774 mirror-adminIrish mirror of freeBSD website is very out of date o kern/160760 (Kernel) Log messages garbled/interleaved o kern/160750 net Intel PRO/1000 connection breaks under load until rebo o bin/160745 sed(1) appends '\n' at the end of binary data (unlike o ports/160717 python port: lang/python27 causing other ports to hang during o threa/160708 threads possible security problem with RLIMIT_VMEM o kern/160706 fs [zfs] zfs bootloader fails when a non-root vdev exists o docs/160698 gjb Remove outdated FreeBSD Jumpstart guide o ports/160695 rafan devel/ncurses libncurses.a doesn't contain libtinfo.a o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t f kern/160692 FreeBSD must consider shipping with SC_PIXEL_MODE on ( o kern/160691 Negative ping times (serious time keeping problem?) on o conf/160689 eadler FreeBSD should have .cshrc updated for modern hardware o ports/160688 hrs print/acroread9 runtime fails with "failed to load mod o ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 o kern/160652 siba_bwn in GENERIC o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 o ports/160631 mm graphics/pecl-imagick: Small change to honor WITHOUT_X o ports/160624 portmgr [exp-run] Process USE_ flags in both parts of bsd.port o kern/160611 lzjb_uncompress possible access violation? o bin/160596 eadler [patch] tzsetup(8): Use libodialog when doing tzsetup o kern/160591 fs [zfs] Fail to boot on zfs root with degraded raidz2 [r o bin/160586 newsyslog(8) can't properly rotate log files when ther o ports/160563 gnome portupgrade of sysutils/tracker-client fails o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o java/160553 java Jaikoz java based audio tagger core dumps o ports/160551 wen graphics/mapserver: CLANG: ./include/agg_renderer_outl o ports/160548 ale databases/mysql55-server - make OpenSSL available to m f ports/160544 rene sysutils/lsof: build fails with clang o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x f ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o misc/160517 X pseudo-terminals are not registered in utmp and wtmp p bin/160516 pluknet pkg_delete(1) error messages miss which package had th o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o ports/160492 bf [patch] lang/ocaml: respect CC o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries p ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn o ports/160475 vbox emulators/virtualbox-ose: virtualbox causes panic in v o ports/160471 gnome www/webkit-gtk2 fails to build/link o ports/160465 acm print/foo2zjs: Install of ppd files to /usr/local/shar o misc/160463 eadler [build] [patch] fix build dependency for dtrace module o www/160461 bugmeister Send-pr uses different terminology than docs / executa o docs/160460 doc [handbook] Network setup guide suggestion o docs/160447 doc [handbook] Developer's Handbook contains some outdated o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/160445 doc [handbook] Handbook does not mention ACL o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o usb/160436 usb ucom wedges machine on parity error ? o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o ports/160422 nox astro/google-earth: crashes on FreeBSD 9.0 o kern/160420 net [msk] phy write timeout on HP 5310m o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa o bin/160412 wrong value in systat(1) o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/160409 geom [geli] failed to attach provider o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o docs/160399 doc Man page for re(4) missing jumbo frames info o ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o kern/160392 [panic] double fault on configuring for php5-filter-5. o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o ports/160387 gecko security/ca_root_nss: Allow user to trust extra local o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i o kern/160370 pf [pf] Incorrect pfctl check of pf.conf s docs/160369 gjb [patch] update sample simple makefile with new convent o ports/160366 New port: misc/xmonad-log-applet An applet that will d p ports/160357 x11 x11/dri2proto port update o ports/160354 x11 x11-drivers/xf86-video-intel29 port update o ports/160351 gecko www/libxul installs incorrect mozilla-nss.pc o bin/160320 netstat(1): netstat -f inet6 does not output properly o kern/160307 [dtrace] dtrace -lv can not identify the args of the o usb/160299 usb MicroSDHC-to-USB adapters do not work in FreeBSD 8.x o bin/160298 sysinstall(8) does not allocate enough space in / for o kern/160296 wireless [zyd] [panic] 802.11 usb device reboots system on 'ifc o bin/160295 [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160293 net [ieee80211] ppanic] kernel panic during network setup s ports/160291 pgollucci devel/rubygem-rake 0.9.2 update breaks redmine o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio p misc/160276 brueffer [conf] Spelling Mistake in comments in configure-files o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o ports/160268 gnome www/webkit-gtk2 build process bails: unable to mmap er o ports/160263 obrien shells/bash bug: testing condition for [ -x file ] is o conf/160240 rc rc.d/mdconfig and mdconfig2 should autoset $_type to v o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o conf/160227 [keyboard] Please include new keyboard mapping: French o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o ports/160224 gnome building x11-toolkits/gtk30 fails o ports/160215 office editors/libreoffice-legacy fails to build with KDE 4.6 o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o usb/160192 usb [install] Installation from USB-Stick doesn't find the o ports/160190 timur [New port]: net/samba36-devel Test version of Samba 3. o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR o ports/160047 timur devel/talloc 2.0.5 fails to configure with MAKE_JOBS_U o ports/160022 eclipse release port: java/eclipse-cdt o misc/160011 [boot] Installer Disk will not boot o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat a ports/160003 olgeni drop lang/erlang-lite and update lang/erlang a ports/159982 swills [MAINTAINER] mail/rubygem-vmail: update to 2.3.2 o ports/159981 roam ftp/curl install depends bug? o kern/159971 mckusick [ffs] [panic] panic with soft updates journaling durin o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159947 pgollucci [patch] databases/gnats4 set default index type to pla o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159943 delphij openldap slapd ignores rc.conf slapd_krt5_ktname o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ f ports/159938 lx graphics/shotwell received an X Window System error. o kern/159930 fs [ufs] [panic] kernel core p ports/159928 gnome Updates graphics/clutter to 1.6.16 o kern/159918 jail [jail] inter-jail communication failure f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c o kern/159912 [new driver] [request] Port urtwn from OpenBSD to Free o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o ports/159888 timur net/samba35: pkg_add -r samba35 doesn't accept openlda o ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip o ports/159839 wen graphics/mapserver: bump Python version o ports/159838 wen graphics/mapserver: PDF output doesn't work o misc/159837 bugmeister Ports PR autoassigner does not understand long lines o bin/159833 camcontrol(8): [patch] add ATA security options to cam o ports/159831 gecko www/firefox is broken o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o kern/159809 [build] RELENG_8_1 /UPDATING wrong re: COMPAT_IA32 ali o ports/159807 johans RC file for net/mrouted causes kernel panic by running o kern/159795 net [tcp] excessive duplicate ACKs and TCP session freezes o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o ports/159787 java java/openjdk6 nio muti-thread bug o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l o bin/159730 make(1) in parallel mode fails report failure of @-pre f ports/159728 sysutils/htop 0.9.0_1 is broken (does not show process o ports/159725 portmgr [bsd.commands.mk] Add new command: JOT o ports/159705 brooks Patch adding an option for disabling IPV6 in the net/o o ports/159687 gnome devel/gvfs fails to compile o ports/159677 wen graphics/qgis: /usr/ports/graphics/qgis/work/qgis-1.7 a bin/159665 rik [patch] ctm(1) does not work with bzip2 or xz compress o www/159664 www Add for June/July 2011: FreeBSD in top 3 reliable serv o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr s ports/159656 mandree bsd.database.mk fails to locate installed bdb51 librar o misc/159654 46 kernel headers use register_t but don't #include bpf_if->bif_dlist o ports/158925 delphij New Port: audio/pithos GNOME Pandora player o ports/158904 [PATCH] finance/openerp-web: update to 6.0.2 a ports/158894 danfe audio/ardour: upgrade to 2.8.11 p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents s ports/158878 [patch] textproc/dadadodo assumes long is 32 bits o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o docs/158813 doc [patch] grammar updates for jme(4) o kern/158802 fs amd(8) ICMP storm and unkillable process. o bin/158794 line has been ignored in /etc/newsyslog.conf o ports/158791 sbz Update security/openvas-* o ports/158781 New port: games/drcreep Platform Puzzle Game p bin/158775 jhb [patch] top(1)'s output when using 'C' and 'H' interac o bin/158756 newfs_msdos(8) creates invalid image o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o conf/158734 netif stop don't destroy cloned_interfaces o kern/158726 net [ip6] [patch] ICMPv6 Router Announcement flooding limi o bin/158725 [patch] column(1): `column -t` always separates column o ports/158722 gnome [patch] devel/gobject-introspection does not build if f ports/158713 kde Unable to build /usr/ports/multimedia/phonon-xine afte o ports/158708 gnome x11/gdm doesn't build o kern/158707 [panic] kernel trap 12 with interrupts disabled o bin/158706 [regression] sed(1) in 8.2 gives incorrect output comp o ports/158704 eadler New port: mail/mailfromd o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) o ports/158693 gnome x11-wm/nautilus 2.32.2.1_1 fails to build o ports/158692 devel/cross-gcc: minor patch to enable arm-none-eabi s o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne o kern/158686 virtualization[vimage] [tap] [patch] Add VIMAGE support to if_tap o ports/158684 gnome graphics/evince can not be build p bin/158682 jhb top(1) man page not mentioning all flags that are togg o ports/158680 gnome devel/gvfs doesn't build o kern/158665 net [ip6] [panic] kernel pagefault in in6_setscope() o i386/158653 i386 installing PC-BSD 9 Current with legacy USB Keyboard d o ports/158647 novel audio/bebocd: request for marking it BROKEN and DEPREC o ports/158639 gnome ports-mgmt/packagekit cannot be build o misc/158637 Cannot reinstall 8.2-RELEASE after HEAD o kern/158635 net [em] TSO breaks BPF packet captures with em driver o ports/158616 vd graphics/vigra prevents installing libreoffice p bin/158580 edwin [patch] Disable ncal(1)s date highlighting if stdout i f kern/158569 gavin [ahci] ROOT MOUNT ERROR (caused by AHCI module) o ports/158565 apache www/apache22: Add rlimits based on login class for mpm o conf/158557 rc [patch] /etc/rc.d/pf broken messages o conf/158551 [patch] Enhance periodic 800.scrub-zfs script to handl o ia64/158547 ia64 [ia64] Epilog counter (ar.ec) needs to be saved and re o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s o ports/158533 miwi [NEW PORT] devel/tiled: 2D game map editor o ports/158529 x11 [patch] x11-servers/xorg-server: conditionalize --with o ports/158513 x11 Broken Xvideo in x11-drivers/xf86-video-intel drivers o ports/158506 In multimedia/emotion leave only one backend enabled b o bin/158500 [patch] Add -p to arp(8) to hide permanent entries o kern/158432 [panic] gssd(8) generate much network traffic and led o bin/158431 [dtrace] crash in dt_proc_lookup when attaching to PID f kern/158424 multimedia [snd_hda] snd_hda driver doesn't expose 'rec' flag for o kern/158418 [includes] /usr/include librarys broken by unnecessary p kern/158398 geom [headers] [patch] includes f kern/158391 gavin [pci] Resource allocation issues with hda/ath o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/158378 kientzle cpio/bsdcpio(1) man page does not document -0 and --nu o kern/158376 [udf] [patch] The UDF file system under counts the num o ports/158374 acm databases/firebird21-client coredumps o bin/158363 [patch] partial restore problem in restore(8) o ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/158351 [cam] [patch] missing #includes in o kern/158340 [rpc] Possible dereference of null pointer by code tha p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null p kern/158307 hrs [ip6] ipv6_pktinfo breaks IPV6_USE_MIN_MTU o bin/158296 portmgr pkg_add(1) does not search entire PKG_PATH for depende o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 f i386/158264 gavin Intel Motherboard S5500BCR shut down and power on afte o kern/158231 fs [nullfs] panic on unmounting nullfs mounted over ufs o o kern/158230 libdisk(3) segfault in Open_Disk() with "ada0" o bin/158206 jilles sh(1) doesn't properly return IO errors to conditional f kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. o i386/158200 i386 wifi doesn't work on Acer AO751h, maybe WMI needs to b o kern/158197 geom [geom] geom_cache with size>1000 leads to panics f ports/158192 sunpoet devel/nant: NAnt 0.90 fails to build from ports o kern/158185 bz [ip6] IPv6 does not manage the NIC's route when doing f ports/158181 gavin databases/unixODBC databases/libodbc software packages o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o kern/158160 [coretemp] coretemp reports incorrect CPU temperature o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158098 pjd [hast] problem with copying data on hast-device o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets f kern/158063 [panic] kmem_malloc(20480): kmem_map too small f ports/158061 kwm New ports: net-im/sofia-sip and net-im/telepathy-sofia f ports/158036 clsung databases/py-redis: [2.2.4] this port don't actually i o misc/158023 Binaries have no SUID bits in FreeBSD-8.2-RELEASE-amd6 o ports/158013 autotools devel/gmake: TARGET_ARCH variable prevents cross-compi o kern/157946 [patch] 'BSM conversion requested for unknown event' g f kern/157932 gavin [cas] loading CAS4 at boot hangs system f kern/157929 fs [nfs] NFS slow read o docs/157908 doc [handbook] Description of post-install should include o ports/157906 gabor print/latex horribly outdated o conf/157903 [devd.conf] [patch] automated kldload for USB class de o ports/157887 osa [UPDATE] sysutils/ccd2iso update and change maintainer o kern/157879 geom [libgeom] [regression] ABI change without version bump f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o kern/157869 easy to create zvols that cannot be forgotten o kern/157863 geom [geli] kbdmux prevents geli passwords from being enter o ports/157855 roam [update] sysutils/timelimit to 1.8 o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o kern/157785 net amd64 + jail + ipfw + natd = very slow outbound traffi o misc/157776 Unable to load kernel modules in fixit shell without c o kern/157770 scsi [iscsi] [panic] iscsi_initiator panic o misc/157764 jfbterm + mplayer = hang o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o bin/157748 calendar(1): Patch for src/usr.bin/calendar/calendars/ o ports/157746 brooks port bug: net/openmpi has incorrect path for sge depen o kern/157739 geom [geom] GPT labels with geom_multipath o kern/157724 geom [geom] gpart(8) 'add' command must preserve gap for sc o kern/157723 geom [geom] GEOM should not process 'c' (raw) partitions fo o kern/157722 fs [geli] unable to newfs a geli encrypted partition p bin/157718 edwin input data trigers a core dump from calendar(1) [regre o bin/157700 tftpd(8) in 8.2-RELEASE expects more data after EOF o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o bin/157635 sysinstall sysinstall(8): "none" Do not install a boot manager - o ports/157600 eclipse java/eclipse: option WITH_TESTS missing distinfo entry o ports/157554 apache www/apache22: Apache RLimitNPROC does not work as inte o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o ports/157544 nork Updates for databases/linux-oracle-instantclient-* o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o misc/157524 [build] make buildkernel fails while updating 8.1-RELE a ports/157504 jgh [new port] net-mgmt/zenpack-NetApp: Provides monitorin o bin/157500 posible chsh(1) bug on systems using nss_ldap/pam_ldap o bin/157499 fetch(1) confused me with its error message o conf/157466 [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157446 [libbsdxml] base expat needs minor fixes from vendor c o kern/157429 net [re] Realtek RTL8169 doesn't work with re(4) o bin/157424 inconsistent output from ldd(1) o kern/157418 net [em] em driver lockup during boot on Supermicro X9SCM- o kern/157410 net [ip6] IPv6 Router Advertisements Cause Excessive CPU U o kern/157399 fs [zfs] trouble with: mdconfig force delete && zfs strip f ports/157398 emulators/open-vm-tools is broken on FreeBSD 8.2 amd64 o kern/157397 [ada] ahci/ada/cam NCQ timeouts on Samsung and non-dis f ports/157392 marius sysutils/cdrtools can't burn DVDs correctly o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I o misc/157382 host cvsup.freebsd.org has been refusing connections f o usb/157376 usb LaCie USB disk not recognized o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157337 eadler [handbook] [patch] Indentation changes to network serv o ports/157320 [NEW PORT] databases/pecl-pdo_user: PECL classes provi o docs/157316 doc [patch] update devstat(9) man page o ports/157313 hrs cad/spice SEGV o bin/157308 getextattr(8) incorrect listing of attibutes with glob o ports/157301 [New port] net-mgmt/zbxlog: Syslog server receives mes o kern/157293 [mfi] mfiutil/mfi does not allow adding a previously c o bin/157289 repquota(8) does not mark overquota users with a "+" s o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f o ports/157282 x11 [MAINTAINER PATCH] net/xrdp: effective login name is n s ports/157261 itetcu net-im/skype: Cannot Visit account page o kern/157259 [build] kernel: install: mps.ko.symbols: No such file o bin/157244 dump(1): dump/restore: unknown tape header type -2307 o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o docs/157234 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o conf/157189 Default /etc/sysctl.conf should be removed. o kern/157182 net [lagg] lagg interface not working together with epair o kern/157179 fs [zfs] zfs/dbuf.c: panic: solaris assert: arc_buf_remov o bin/157177 primes(1) prints non-prime for numbers > 2^32 o ports/157174 eadler fix typos and small mistakes in various ports o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI o kern/157118 [igb] cleanup error in igb driver - igb_setup_receive_ o bin/157117 sysinstall sysinstall(8): Add ftp4.se.freebsd.org to list of IPv6 o ports/157109 conflict between net/netpipes and sysutils/timelimit o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers f ports/157107 conflict between mail/p5-Mail-SPF and mail/libspf2 o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o www/157076 www freebsd-wireless mailing list not shown on web All Lis o usb/157074 usb [boot] [usb8] vfs_mountroot_ask is called when no usb o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o stand/157050 multimedia OSS implementation lacks AFMT_FLOAT o docs/157049 doc FreeBSD Handbook: Chapter 14 (Security) Inaccuracy o bin/157017 vidcontrol(1): "vidcontrol -r" no longer works [regres o bin/157015 bsnmpd(8) does not create 64bit counters for interface o kern/156974 [boot] [panic] Panic during kernel boot on HP Proliant o docs/156955 doc bug in share/man/man2/setsockopt.2 o ports/156949 x11 x11-drivers/xf86-video-ati 6.14.1 produce black blank o conf/156945 [nsswitch.conf] Name service Switch does not work as d o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP a docs/156920 doc isspecial(3) is not helpful o bin/156908 dumpfs(8) incorrectly displays ufsid o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces o ia64/156900 ia64 ia64 -current r221488 panic if kern.maxssiz=536748033 o usb/156898 usb [keyboard] usb keyboard does not work while boot (ps2 o kern/156884 wireless [ath] ath instablity o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o ports/156834 New port: games/fairymax-devel latest version of games o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o arm/156814 arm OpenRD Ultimate does not boot on DB-88F6XXX or SHEEVAP o kern/156799 HEAD panic: Multiple IRQs for PCI interrupt 0.31.INTA: o kern/156797 fs [zfs] [panic] Double panic with FreeBSD 9-CURRENT and o ports/156787 apache www/mod_auth_kerb2 fails on undefined symbol with base o kern/156781 fs [zfs] zfs is losing the snapshot directory, o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o bin/156768 [patch] sockstat(1): missing spaces between long field o misc/156767 joerg Installation Media do not include current list of mirr o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX o kern/156749 [vmware] FreeBSD 8.2 does infinite disk access in VMwa p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o usb/156735 usb Need Quirk for Goflex USB Disk Drives o bin/156729 make(1) does not respect.ORDER in non-parallel mode o kern/156726 multimedia [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/156725 usb USB stack stall cause complete system input loss o kern/156716 [hang] System freeze during reboot o gnu/156704 Improper behaviour of GNU grep(1) o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o docs/156689 doc stf(4) output-only documentation gives bad configurati o kern/156684 [libc] getaddrinfo(3) returns improper error o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d o kern/156667 net [em] em0 fails to init on CURRENT after March 17 o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/156637 [headers] [patch] sys/types.h can't be included when _ o usb/156596 usb [ehci] Extremely high interrupt rate on ehci/uhci IRQ1 o kern/156584 bz [jail] ipv4 packet is not forward to v4-mapped binding p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156556 [hpet] FreeBSD fails to boot on ACER 2920: "bad stray p kern/156545 fs [ufs] mv could break UFS on SMP systems p kern/156540 [hwmpc] hwpmc(4) crash when loaded on unknown AMD cpu o misc/156537 Mismatch of Control Sums for ISO-image Files of Old Di o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o ports/156492 skv Multiple versions of Perl not supported o bin/156484 ntpd(8) regularly flips between PLL and FLL mode (time o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156463 [panic] kernel panic at pcpu.h:224 o ports/156425 python lang/python26: Needs to include -L/usr/local/lib/pth i f ports/156424 x11 8.2R xrandr & xf86-video-intel & xorg-server packages o ports/156415 danfe [NEW PORT] net-im/py-hotot, Twitter and Identi.ca micr o kern/156408 net [vlan] Routing failure when using VLANs vs. Physical e o ports/156405 x11 x11-drivers/xf86-video-ati driver: no hardware renderi o ports/156369 x11 x11-drivers/xf86-video-vmware: DPI value wrong calcula o ports/156368 x11 x11-drivers/xf86-video-vmware: pwcview does not work o ports/156362 New port: games/rftg Race for the Galaxy AI o kern/156358 jkim [patch] make amdtemp.c compatible with Llano/Brazos pl o kern/156353 emulation [ibcs2] ibcs2 binaries that execute on 4.x not working o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o ports/156335 gecko www/firefox: Repeatable firefox-4.0_1,1 crash o kern/156328 net [icmp]: host can ping other subnet but no have IP from o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/156322 wireless [wpi] no ahdemo support for if_wpi o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/156317 net [ip6] Wrong order of IPv6 NS DAD/MLD Report o ports/156287 kuriyama security/gnupg does not work without pinentry o ports/156286 snb sysutils/apt port tries to pull from incorrect URL o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o kern/156279 net [if_bridge][divert][ipfw] unable to correctly re-injec o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 o misc/156242 hrs [build] /usr/src/release/Makefile o kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if o i386/156229 i386 [hang] Server IBM x3400 is hangs with option SMP in Ke o kern/156226 net [lagg]: failover does not announce the failover to swi o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/156193 fs [ufs] [hang] UFS snapshot hangs && deadlocks processes f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, f ports/156143 scheidell New port: devel/arduino-mk: Build Arduino sketches fro o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/156111 jail [jail] procstat -b not supported in jail o amd64/156106 amd64 [boot] boot0 fails to start o gnu/156082 gcc(1) makes incorrect code when swapping array elemen o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o kern/156074 [hang] Removing CD-Rom from Lenovo T61p hangs system f ports/156066 pgollucci [NEW PORT] databases/rubygem-xapian-full (self contain o ports/156042 x11 x11/xorg hang in combination with KWin-Tiling o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/156030 net [ip6] [panic] Crash in nd6_dad_start() due to null ptr o kern/156016 [ncurses] Arrow keys don't work with any ncurses based o ports/156015 pgollucci [PATCH] dns/unbound add MUNIN-plugin o usb/156000 usb rum(4) Fatal trap 18: integer divide fault while in ke o usb/155996 usb NanoBSD not booted as Disk o kern/155994 geom [geom] Long "Suspend time" when reading large files fr f ports/155991 kuriyama textproc/p5-XML-Parser build error o bin/155985 tcpd(8) does not perform a access-control o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o kern/155964 [hang] OS hangs completely when suspend\resume with ac f ports/155949 gecko www/firefox: firefox 4, WITH_PGO, better Text against o ports/155947 xfce x11-wm/xfce4 does not launch or start f ports/155941 systemoperatornet/nepenthes: mwserv library support is not included o ports/155936 python lang/python27 Pthread: previous declaration of ... f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o bin/155902 ifconfig(8): ifconfig wlan0 create wlandev foo0 wlanad f ports/155898 Update port devel/libthai o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o ports/155890 tabthorpe [patch] Mk/bsd.licenses.mk: don't leave temporary file o bin/155886 bc(1) sometimes mangles hexidecimal numbers p bin/155873 edwin calendar(1) recurring date not working o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o usb/155784 usb Problem with Transcend StoreJet 25M3 (2AJ1) on Asus M2 o bin/155778 awk(1) doesn't set error exit status on errors o docs/155773 doc dialog(1): dialog manpages not updated o kern/155772 net ifconfig(8): ioctl (SIOCAIFADDR): File exists on direc o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o bin/155757 problems with setfib(1) behavior o kern/155752 [uart] tcdrain(3) does not work with uart(4) driver o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o ports/155697 ports-mgmt/pkg_replace doesn't want to replace java/op o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o i386/155695 i386 AMD Vision ultimate notebook HP Pavilion DV6 3109ER ov o ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o kern/155680 net [multicast] problems with multicast o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155657 java java/openjdk6: missing symlink for include/freebsd/* o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an s kern/155642 net [request] Add driver for Realtek RTL8191SE/RTL8192SE W o ports/155639 timur net/samba-libsmbclient: unrecorded libtdb dependency o kern/155628 [ahci] ahci disables dvd device o ports/155626 skv lang/perl5.x fails to build on Sheevaplug (ARM) o kern/155615 fs [zfs] zfs v28 broken on sparc64 -current f kern/155604 kmacy [flowtable] Flowtable excessively caches dest MAC addr o ports/155601 fluffy new port audio/festvox-russian o kern/155597 net [panic] Kernel panics with "sbdrop" message f ports/155593 crees audio/musicpd .16.1 ignores embedded cue sheets in FLA o kern/155587 fs [zfs] [panic] kernel panic with zfs f kern/155585 melifaro [tcp] [panic] tcp_output tcp_mtudisc loop until kernel o kern/155577 emulation [boot] BTX halted after install. Reboot during install o bin/155567 [patch] cvs(1): add -r tag:date to CVS o bin/155548 pkg_info(1): pkg_info -g mistakenly adds $PREFIX to gl f ports/155547 crees java/jboss5 port build failure o ports/155546 autotools devel/libtool doesn't work properly if not using built o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o kern/155499 [mfi] mfi(4) command timeout loop on boot on releng/8. o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o conf/155480 [login.conf] maxproc does not work when command runnin o kern/155468 xen [xen] Xen PV i386 multi-kernel CPU system is not worki s ports/155461 gnome [UPDATE] editors/abiword-docs to 2.9.0 s ports/155460 gnome [UPDATE] editors/abiword to 2.9.0 p kern/155442 jhb [bge] bge driver is seen but does not respond to netwo o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o ports/155431 xfce x11-wm/xfce4: The little bugs o kern/155429 [headers] including malloc.h should not abort compile. o kern/155421 [hang] System can't dump corefile [regression] o kern/155420 net [vlan] adding vlan break existent vlan f kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk p kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o ports/155354 bf New port: math/cmlib NIST core maths library o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver f ports/155335 mi multimedia/vic is out of date o kern/155320 [hang] cpufreq/powerd + xorg-7.5.1 + xf86-video-intel- o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot o ports/155275 secteam ports-mgmt/portaudit does not report installed vulnera f ports/155268 danfe games/warsow 0.6 does not work as dedicated server f kern/155249 [build] 8.1 buildworld failure o arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o kern/155199 fs [ext2fs] ext3fs mounted as ext2fs gives I/O errors o kern/155196 [uart] uart cannot identify internal modem or its chip o ports/155182 demon security/qca-tls 1.0_7 does not build in 9-CURREN o kern/155177 net [route] [panic] Panic when inject routes in kernel o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree o amd64/155135 amd64 [boot] Does Not Boot On a Very Standard Hardware o kern/155125 [lor] triple LOR in mkdir(1) o ports/155115 devel/doxygen: dependancy loop o ports/155105 stephen Port science/vis5d+ does not build. o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" o ports/155083 netchild devel/linux_kdump update o ports/155070 NEW PORT: games/CastleVox - new fast strategy board ga o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/155030 net [igb] igb(4) DEVICE_POLLING does not work with carp(4) p bin/155028 init(8): "init q" in single user causes segfault o ports/155011 bland x11/nvidia-settings versions 195 and above fail to all o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel f kern/155004 yongari [bce] [panic] kernel panic in bce0 driver o bin/155000 make(1) doesn't handle .POSIX: correctly o conf/154999 Problems with ARP table o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o ports/154969 jpaetzel Update to net/socks5 (unbreak for -current) o amd64/154957 amd64 [boot] Install boot CD won't boot up - keeps rebooting o kern/154955 acpi [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3 o bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o kern/154943 net [gif] ifconfig gifX create on existing gifX clears IP o kern/154930 fs [zfs] cannot delete/unlink file from full volume -> EN o kern/154915 [libc] [patch] Force stdio output streams to line-buff o ports/154897 emulators/open-vm-tools: Bug in open-vm-tools-313025_2 o ports/154890 mva [UPDATE] devel/py-game to 1.9.1 o ports/154884 java java/openjdk6: Every NetBeans version on FreeBSD 8.1 c o bin/154877 portmgr pkg_info(1) error message should contain information a p stand/154873 pjd ZFS violates POSIX on open/O_CREAT -> ftruncate o kern/154860 ae gmirror(8): [panic] geom_mirror panices system on spec s kern/154851 net [request]: Port brcm80211 driver from Linux to FreeBSD o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o stand/154842 standards invalid request authenticator in the second and subseq o docs/154838 doc update cvs-tags information on releng_* to reflect sup o kern/154833 xen [xen]: xen 4.0 - DomU freebsd8.2RC3 i386, XEN kernel. o kern/154828 fs [msdosfs] Unable to create directories on external USB o kern/154826 bschmidt [iwn] iwn driver fails to power on adapter after resum o kern/154814 [lor] LOR between bufwait/dirhash o bin/154788 sysinstall sysinstall(8) crashes if no network interface found o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o bin/154769 make(1): :L modifier broken in quoted strings o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o ports/154711 security/heimdal: kadmin: hdb_open: hdb_open failed in o usb/154710 usb [ugen] Conexant USB Modem is not working in 8.x. In 7. o kern/154709 [heimdal] Kerberos V5 refuses authentication because R o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o ports/154682 net/iaxmodem: add rc script for running more than 1 ia o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o ports/154674 office Build of editors/openoffice.org-3 3.0 fails o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o amd64/154629 amd64 [panic] Fatal trap 9: general protection fault while i o ports/154628 gabor /usr/ports/textproc/bsddiff/ segfaults with -N o bin/154613 sysinstall sysinstall(8) does not rescan USB automatically o kern/154609 ed [ncurses] END key under screen not sending correct cod o ports/154607 flz Symlinking leads to hashing fail in net-p2p/rtorrent [ o kern/154600 net [tcp] [panic] Random kernel panics on tcp_output p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o i386/154578 i386 [boot] BTX Loader hangs > 1,5 min after listing BIOS d o bin/154570 [patch] gvinum(8) can't be built as part of the kernel o kern/154567 wireless [ath] ath(4) lot of bad series(0) o bin/154562 make(1): corrupted stack access when provided invalid o kern/154557 net [tcp] Freeze tcp-session of the clients, if in the gat f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o ports/154502 x11 x11/xdm authorization failure when used with E17 windo o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o conf/154484 [patch] request for new functionality. jail zfs datase o kern/154473 xen [xen] xen 4.0 - DomU freebsd8.1 i386, XEN kernel. Not o kern/154472 xen [xen] xen 4.0 - DomU freebsd8.1 i386 xen kernel reboot o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy a ports/154455 roam [patch] security/stunnel: add aloha sendproxy support o ports/154449 x11 x11/xorg: missing manpage (7) Xsecurity o kern/154443 net [if_bridge] Kernel module bridgestp.ko missing after u o kern/154432 scsi [xpt] run_interrupt_driven_hooks: still waiting after o kern/154428 xen [xen] xn0 network interface and PF - Massive performan o ports/154423 x11 x11-drivers/xf86-video-radeonhd: radeon xorg driver ca o bin/154419 dig(1) segfault with +trace o bin/154409 indent(1) bug report p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o www/154406 webmaster Mailing List Archives search broken and outdated f ports/154401 jgh New port: www/jetty7 - newer fork by Eclipse/Codehaus o ports/154352 pgollucci [patch] multimedia/xmms: update using desktop and mime o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o arm/154306 imp named crashes with signal 11 o kern/154299 [arcmsr] arcmsr fails to detect all attached drives f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154255 net [nfs] NFS not responding f ports/154254 rene [patch] mail/asmail imap login broken with gmail at al o ports/154249 bf [NEW PORT] math/sprng: Scalable Parallel Pseudo Random o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o ports/154241 pgollucci [patch] games/wesnoth: move USE_* under bsd.port.optio p kern/154228 fs [md] md getting stuck in wdrain state o arm/154227 arm [geli] using GELI leads to panic on ARM o kern/154226 geom [geom] GEOM label does not change when you modify them o gnu/154225 The rcsintro manpage should not be in section 1 o kern/154214 net [stf] [panic] Panic when creating stf interface f ports/154209 python [PATCH] lang/python: Install symlink for ptags o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o arm/154189 arm lang/perl5.12 doesn't build on arm o kern/154185 net race condition in mb_dupcl o ports/154183 mm graphics/pecl-imagick libthr preload issue o kern/154170 davidxu Panic in sched_switch (/usr/src/sys/kern/sched_ule.c:1 o kern/154169 net [multicast] [ip6] Node Information Query multicast add o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/154134 net [ip6] stuck kernel state in LISTEN on ipv6 daemon whic o misc/154133 [build] device.hints not updated on upgrade == serial f ports/154118 mm graphics/ruby-rmagick: rmagick fails to automaticly re o kern/154091 net [netgraph] [panic] netgraph, unaligned mbuf? o ports/154086 office libsicui18n.a in devel/icu constains no symbols p bin/154073 delphij [libz] libz causes perl to exit on signal 11 o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o bin/154060 host(1): Server Unknown Error while resolve ip by the o conf/154054 cperciva etc/portsnap.conf FreeBSD-7.4 remove INDEX-5 and INDEX p bin/154042 delphij [patch] fix several rtprio(1) issues o kern/153996 fs [zfs] zfs root mount error while kernel is not located o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag o kern/153990 emulation [hyper-v]: Will not install into Hyper-V on Server 200 o docs/153958 doc ksu man-page documented, but not installed o ports/153952 python lang/python26 + pth fails to reconfigure cflags to inc o kern/153937 net [ral] ralink panics the system (amd64 freeBSDD 8.X) wh o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o amd64/153935 amd64 [hang] system hangs while trying to do 'shutdown -h no o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o i386/153851 usb [keyboard] keyboard issues on new Intel Mother boards. a kern/153848 bz [carp] [ipv6] backup host can't connect to master host o ports/153846 multimedia graphics/libcaca 0.99.beta17 - Hidden dependency on Xl o amd64/153831 amd64 [boot] CD bootloader won't on Tyan s2912G2nr o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/153771 Unkillable process after a SCSI tape write error o kern/153757 Kernel panic using openchrome Xorg driver on 9-CURRENT o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh a ports/153735 jsa multimedia/vlc: install error: `Permission denied' for o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o usb/153703 usb [keyboard] My USB keyboard can not be used in 8-STABLE o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o misc/153673 [build] tic (the terminfo compiler) not being created o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153659 awk(1) segfaults when trying to extract a combination o ports/153632 hrs textproc/xmlcharent fails to build o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o bin/153600 Path length restrictions in mount/umount tools prevent o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync f kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif o ports/153593 x11 graphics/dri: clutter segfault, something to do with i o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153567 pgollucci [PATCH] x11/fpc-x11: doesn't respect localbase o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o bin/153527 [patch] wake(8) should use sysexits.h o kern/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable o kern/153514 scsi [cam] [panic] CAM related panic o bin/153502 [libc] regex(3) bug with UTF-8 locale o kern/153497 net [netgraph] netgraph panic due to race conditions o amd64/153496 amd64 [hyper-v] [install] Install on Hyper-V leaves corrupt o ports/153495 x11 x11-drivers/xf86-video-ati wavy line problem for lenov o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o kern/153448 wireless [ath] ath networking device loses association after a o ports/153429 [patch] Fix explicite uses of unzip in ports o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o ports/153406 apache www/apache22's SUEXEC_RSRCLIMIT option does not take e o ports/153386 devel/valgrind does not build/include man pages o arm/153380 arm Panic / translation fault with wlan on ARM f misc/153373 [build] Cannot buildworld for 8.1_RELEASE-p2 o amd64/153372 amd64 [panic] kernel panic o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o ports/153358 x11 x11-drivers/xf86-video-intel: Intel driver freeze with o kern/153351 fs [zfs] locking directories/files in ZFS o kern/153308 net [em] em interface use 100% cpu o kern/153307 pf [pf] Bug with PF firewall o kern/153303 [amr] amr device driver dont detect logical drive amrd f kern/153289 gavin Modem Ring Signal not reliably detected o ports/153281 ashish editors/emacs: glib warning when starting emacs o ports/153277 crees databases/postgresql90-server crashes during compilat o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/153243 emulation [ibcs2] Seg fault whne running COFF binary using iBCS2 p bin/153240 des fetch(1): http transfer hangs after ^T (status) on tty o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out o ports/153231 pgollucci [PATCH] net-mgmt/nrpe2 enable ssl by default o bin/153211 cperciva freebsd-update(8) can not fetch updates over a proxy w p bin/153206 maxim [patch] netstat(1): "netstat -sz" doesn't reset any IP o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o conf/153200 rc post-boot /etc/rc.d/network_ipv6 start can miss neighb o ports/153195 nivit New port: www/mathjax cross-browser JavaScript display o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w o ports/153167 python Problem with signals, threads, and subprocesses in lan o kern/153161 ipfw IPFIREWALL does not allow specify rules with ICMP code o misc/153157 [build] [patch] Add support for generating userland de o bin/153156 When watch(1) is invoked incorrectly it trashes the tt o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o usb/153149 usb [umass] USB stick quirk regression [regression] o ports/153147 danfe Repocopy request: graphics/yafray -> graphics/yafaray o bin/153142 [zfs] ls -l outputs `ls: ./.zfs: Operation not support o ports/153128 bf graphics/ocaml-lablgl fails to build o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o bin/153124 grep(1): "grep foo * > somefile" goes into an infinite o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error o misc/153049 [build] PORTS_MODULES= seriously broken if port depend a docs/153012 doc [patch] iostat(8) requires an argument to -c option o ports/153008 brooks lang/clang: clang/binutils incompatibility f i386/153003 gavin [panic] Cant boot PCBSD-CURRENT-20101204x86CD.iso Dec0 o kern/152991 [ufs] false disk full with a too slow flash module o i386/152942 mav [install] "acd0[READ(offset=32768, length=2048)]error= o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o kern/152922 adrian Routerstation Pro different flash model investigation o ports/152915 russian/xmms v. 1.2.11_12 don't see cdinfo and tag's i f bin/152909 gavin scp mistake file to directory o ports/152899 devel/valgrind: unhandled syscall: 506 o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o amd64/152874 amd64 [install] 8.1 install fails where 7.3 works due to lac o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o ports/152847 pgollucci [patch] port/buildbot-slave could use a startup script o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o gnu/152808 gdb(1) crash on exit o conf/152807 [periodic] security 900.tcpwrap does not report any re o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152796 fcntl(2) audit records should not be labeled "file att o kern/152792 [acpica] [patch] move temperature conversion macros to o kern/152791 bz [icmp] ND, ICMPv6 Redirect vs Destination Cache failed o kern/152750 wireless [ath] ath0 lot of bad series hwrate o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w o kern/152662 [rtld] load libraries with address hint (cf. prelink) o bin/152661 parallel make sometimes gets working dir confused o misc/152636 [install] 8.1 Boot Only ISO doesn't support install vi o kern/152622 multimedia [pcm] uaudio recording problem o misc/152613 FreeBSD 8.x can not find logical drives on extended pa p kern/152609 pjd [geli] geli onetime on gzero panics o kern/152604 FreeBSD 7.2/7.3 installation CD panics on HP Proliant f kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o kern/152569 net [net]: Multiple ppp connections and routing table prob o ports/152568 portmgr New option framework proposal p bin/152551 gavin [libc] Remove unused variables. s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p o bin/152546 gdb(1): internal-error: fbsd_thread_new_objfile: Asser o misc/152543 listing color format cause kernel panic in .zfs dir p misc/152531 maxim Incorrect sysctl description o bin/152525 ntpd(8) on 8.1 loops on select() with EBADF o kern/152500 multimedia [hdac] play interrupt timeout, channel dead o kern/152485 arundel [patch] seek offset for /dev/null(4) and /dev/zero(4) o ports/152474 mi Upgrading 'gdb-6.6_1' to 'gdb-6.6_2' (devel/gdb6) fail o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules f bin/152458 hrs rtadvd(8) needs to allow RA without a prefix info opti o bin/152446 cperciva portsnap(8) error o kern/152438 acpi [acpi]: patch to acpi_asus(4) to add extra sysctls for o amd64/152430 amd64 [boot] HP ProLiant Microserver n36l cannot boot into i o stand/152415 kargl [libm] implementation of expl() o kern/152405 wrong user time is reported when CPU frequency throttl o ports/152389 sem sysutils/grub and sysutils/grub2 misinterpret disklabe o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o ports/152355 hrs net/openbgpd stops syslogging after syslogd restart o ports/152341 bapt shells/zsh fails to load zsh/regex with ZSH_STATIC kno o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x o ports/152306 mm devel/binutils create binary incompatible kernel modul o kern/152293 [libstdc++] SEGV in libstdc++.so.6 o bin/152259 ae bsnmpd(1) fails with stack overflow during GETBULK of o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o bin/152229 b64decode(1)/b64_pton(3) should decode common variant o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 o ports/152224 python [patch] fix installed permissions for lang/python27 o kern/152162 [syscons] On syscons, pressing delete key results in p o ports/152159 x11 [hang] xorg/x11: X11 freezes with Intel Mobile 965 and o bin/152154 script(1) -k malfunctions with certain shells (e.g. tc s kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152131 script(1): [patch] Useless code in script.c (part 1) o ports/152118 New port: deskutils/linux-tahometer A worktime trackin o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo o ports/152111 timur databases/tdb: Cannnot install tdb from ports o docs/152103 chinsan man ipnat is out-dated a ports/152099 cs [NEW PORT] www/loggerhead o kern/152098 acpi [acpi] Lenovo T61p does not resume f amd64/152097 gavin Sound button in Lenovo T61p mutes sound in kde o bin/152084 [patch] pw(8) does not allow @ or ! in gecos o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o ports/152066 mnag [new port] databases/py-MySQLdb40 and so forth: New sl a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe o ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp o kern/152036 net [libc] getifaddrs(3) returns truncated sockaddrs for n o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory o bin/151937 [patch] netstat(1) utility lack support of displaying o kern/151924 very slow boot from disk: 15m+ o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor o kern/151905 fs [zfs] page fault under load in /sbin/zfs o ports/151884 office editors/openoffice.org-3-devel port misbehaviour p bin/151866 des [libfetch] [patch] closing the cached FTP connection o kern/151813 FreeBSD 8.1/amd64: garbage in /var/log/messages o ports/151808 oliver security/courier-authlib: courier-authdaemond doesn't f threa/151767 davidxu pthread_mutex_init returns success with bad attributes o ports/151764 timur security/vuxml update for security vulnerability: port o docs/151752 doc pw.conf(5) doesn't define format for file clearly o ports/151747 new port: emulators/wine-fbsd64: request for (a variat s gnu/151716 gcc(1) fail with internal compiler error when using -f o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o kern/151690 net [ep] network connectivity won't work until dhclient is o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o bin/151663 grdc(1): games/grdc: -s does not scroll o ports/151662 ruby ports-mgmt/portupgrade: upgrade of autoconf leaves old o kern/151650 FreeBSD9-CURRENT can't boot when recompile KERNEL. o kern/151648 fs [zfs] disk wait bug o kern/151629 fs [fs] [patch] Skip empty directory entries during name o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o ports/151603 vbox [vbox] Self-built emulators/virtualbox-ose-kmod vboxne o bin/151600 [patch] route(8) does not always flush stdout o ports/151596 x11 x11/xorg: wacom bamboo button 1 no longer works o kern/151593 net [igb] [panic] Kernel panic when bringing up igb networ o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o ports/151534 python lang/python26 + WITH_PTH doesn't install correctly o ports/151472 ume mail/cyrus-imapd23 failed to compile f ports/151467 stephen New port: sysutils/autojump acts as a complement to cd o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad o kern/151444 [kerberos] Kerberos5 is broken in the base system from f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o www/151438 bugmeister query-cgi use monospace font o www/151437 bugmeister query-cgi broken with base64 encoded mime email o ports/151427 wen math/FriCAS: fatal error encountered in SBCL pid 19170 s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o ports/151414 portmgr Add 'work' when WRKDIRPREFIX is used. o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O o docs/151336 scsi Missing documentation of scsi_ and ata_ functions in c o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o ports/151280 emulators/vmware-guestd6 port install error in /usr/po o bin/151264 syrinx bsnmpd(1): pf counters aren't updated on some SNMP que o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o bin/151229 eadler xterm terminal emulation - shift-tab doesn't work as e o kern/151226 fs [zfs] can't delete zfs snapshot o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o bin/151187 pkg_add(1): allow different pkgdep location o bin/151186 [patch] routed(8) turns RIP off if just one network ca o bin/151168 pkg_add(1): pkg_add -K should preserve file metadata o ports/151154 kde audio/amarok-kde4 crashes on network activity if ports o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151124 hrs net/openbgpd: OpenBGPD exists if an interface is remov o i386/151122 i386 [boot] BTX 1.02 crashes on boot o kern/151111 fs [zfs] vnodes leakage during zfs unmount p docs/151104 keramida mksnap_ffs(8) should mention 20 snapshot limit on UFS o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o bin/150995 sysinstall sysinstall(8): corruption of partition table o ports/150994 maho math/suitesparse can not compile with atlas o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o bin/150988 adduser(8) problem of directory mode a ports/150980 dinoex print/cups-base: I can not create package for cups-bas s ports/150968 kuriyama textproc/p5-XML-Parser fails test o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl f ports/150903 databases/dbf: options --sql / --csv does produce crap o usb/150892 usb [zyd] Whenever network contacted in any shape, way or p bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o docs/150877 doc ambiguity in newsyslog(8) man page about zfs with comp o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o ports/150794 glewis tomcat7's rc.d script wont shutdown tomcat with java/o o bin/150771 [patch] csup(1) GNUmakefile missing o i386/150766 i386 Dell Vostro 3700 siffle sous FreeBSD / Dell Vostro 370 o bin/150723 ae bsnmpd(1): add knowledge of "ada" disks (ATA via SCSI o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of o kern/150640 [panic] Fatal Trap 9 - 8.1-release o ports/150633 x11 x11-servers/xorg-server: KVM switching causing X serve o ports/150631 gecko www/firefox 3.6.9 does not build if you have previousl o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label s bin/150620 [request] Please include utility programs for ncurses o misc/150590 Screen goes blank when PC-BSD graphic install is loade o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o kern/150557 net [igb] igb0: Watchdog timeout -- resetting o kern/150555 geom [geom] gjournal unusable on GPT partitions o www/150553 www [patch] update Russian "FreeBSD Community" page f ports/150541 gahr [new port] sysutils/yum - Installer/updater for rpm o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o kern/150516 jfv [em] e1000 receive queue handling problem s kern/150514 kib [drm] [request] Reorganize DRM Directory to Support Dr o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot f ports/150502 multimedia multimedia/gpac-libgpac 0.4.5_4,1 fails to compile on o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o ports/150425 www/squid31: rc.d/squid's squid_fib setting ineffectiv o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x o ports/150295 nivit audio/sonata fails in __init__ at mpd.MPDClient() : o o kern/150284 multimedia [snd_hda] No gain with Audio o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken s bin/150237 sysinstall sysinstall(8): Suggestion: installer should suggest th o bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o bin/150224 net ppp(8) does not reassign static IP after kill -KILL co o docs/150219 doc zfs(8) manual page misses jail/unjail o kern/150206 [patch] nmount(2): can't switch root partition to rw u o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o ports/150155 x11 x11/xorg hangs after xrandr(1) usage p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o stand/150093 standards C++ std::locale support is broken f ports/150086 [NEW PORT] net-im/tkabber-plugins-devel: External Plug f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo o ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a o kern/150036 [rpc] Sun RPC license has less restrictions now. f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' o stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o bin/149972 [patch] pw(8): usermod -u should error f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/149960 [headers] syntax error /usr/include/machine/endian.h o ports/149958 bf x11-toolkits/ocaml-lablgtk2's varcc should (maybe) be o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti s kern/149927 scsi [cam] hard drive not stopped before removing power dur o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 pgollucci [PATCH] mail/dspam: important cleanup p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o kern/149857 [kqueue] kqueue not reporting EOF under certain circum o ports/149846 pgollucci graphics/gimp-gap: outdated (not maintained) port o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149828 kientzle tar(1) poor (empty) error message when extracting trun o ports/149817 ruby [wishlist] ports-mgmt/portupgrade: portinstall -p opti o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149762 geom volume labels with rogue characters o ports/149743 x11 x11/xorg: garbled window since Xorg-7.5 o gnu/149712 [build] -fno-builtin in CFLAGS will cause gcc(1) to se o ports/149678 portmgr Mk/bsd.port.mk: add a sanity check for OPTIONS p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly o i386/149647 i386 [panic] Dell Inspiron 530 (FX09) panic at boot with 8. o kern/149643 net [rum] device not sending proper beacon frames in ap mo o ports/149636 x11 x11/xorg: buffer overflow in pci_device_freebsd_read_r o misc/149633 bugmeister Problem with replying to PR o kern/149609 net [panic] reboot after adding second default route o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o kern/149532 jfv [igb] igb/ixgb controllers panic on FreeBSD 8.1-RELEAS o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o ports/149513 eclipse java/eclipse can not compile with 'WITH_TESTS=true' o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o kern/149479 [panic] 8.1-RELEASE kernel panic o www/149446 www [patch] improve misleading title of "report a bug" o ports/149420 ume security/cyrus-sasl2 fails to build GSSAPI, breaking p o bin/149412 secteam bdes(1) in CFB/OFB modes can't decrypt own output o kern/149373 wireless [realtek/atheros]: None of my network card working o bin/149363 tcsh(1) cause situation when ssh connection closed o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149323 [libc] Applications with large memory footprint failin o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o arm/149288 arm mail/dovecot causes panic during configure on Sheevapl o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o ports/149250 hrs japanese/FreeWnn-server: /etc/rc: WARNING: $wnn_enable o bin/149232 cperciva portsnap(8) does not generate INDEX-9 on FreeBSD 9-CUR o kern/149219 [ciss] DL380 G6 P212 trouble o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via o kern/149208 fs mksnap_ffs(8) hang/deadlock o kern/149201 [ata] DVD/CD Drive Error o ports/149186 timur net/samba34 builds broken binaries on Sheevaplug (ARM) o kern/149173 fs [patch] [zfs] make OpenSolaris installa o ports/149167 python lang/python26 fails to build _ctypes on Sheevaplug (AR o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o kern/149086 net [multicast] Generic multicast join failure in 8.1 o docs/149051 doc [request] No document for clang or clang++ o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 p docs/149033 pjd hastctl.8 manpage wrong o ports/149031 csjp Not work security/termlog o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include 4.1 does not connect to BSD in hostap wit o kern/144874 net [if_bridge] [patch] if_bridge frees mbuf after pfil ho p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic p conf/144842 hrs [ip6] ipv6_default_interface causes route complaints f o kern/144824 [boot] [patch] boot problem on USB (root partition mou s docs/144818 doc all mailinglist archives dated 19970101 contain traili o kern/144809 [panic] Fatal trap 12: page fault while in kernel mode o conf/144804 ntpd(8) cannot resolve hostnames at system start o ports/144794 amdmi3 multimedia/aegisub: fails to build with multiple optio o kern/144777 qingli [arp] proxyarp broken in 8.0 [regression] s kern/144770 [ata] hard drive spindown functionality broken? o ports/144769 ruby [PATCH] ports-mgmt/portupgrade should have a configura o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/144754 gssapi(3): cyradm crashes inside libgssapi.so o kern/144743 [libteken] mouse positioning partialy working o bin/144736 devd(8) should consider spaces in event description wh o conf/144726 hrs network.subr functions accumulate output before r19713 o bin/144723 [patch] port over coverity SA NULL deref warning fix f o www/144704 brd svn-src-release mailing list page has broken link to a o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o kern/144696 ed [uart] tcdrain(3) does not work right with uart(4) dri o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o bin/144652 [PATCH] pwd_mkdb(8) copies comments to /etc/passwd o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg o bin/144641 [ata] burncd(8) freezes whole system while trying to b o docs/144630 doc [patch] domainname(1) manpage contains old information o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors p misc/144553 imp [nanobsd] NanoBSD's updatep* scripts fail with boot0cf o conf/144548 brian [boot] [patch] Enable automatic detection of amd64/i38 o docs/144543 chinsan [handbook] IPFW doc change o ports/144536 skv lang/perl5.10: /libexec/ld-elf.so.1: /usr/local/sbin/e s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta s bin/144531 [patch] cp(1) show percentage complete o docs/144515 doc [handbook] Expand handbook Table of contents o kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o docs/144488 doc share/examples/etc/make.conf: contains dangerous examp p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi o misc/144442 [build] [patch] remove unnecessary group and passwd en o i386/144437 [boot] BTX loader halts on HP DC5850 o kern/144416 fs [panic] Kernel panic on online filesystem optimization s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t o bin/144388 [patch] different behavior of make(1) between command o usb/144387 usb [run] [panic] if_run panic o bin/144343 hrs The rtadvd cannot avoid the prefix that doesn't want t o kern/144325 [libpcap] tcpdump compiles complex expression to incor f kern/144323 bschmidt [ieee80211] A response management frame appears in wir o bin/144322 truss(1) fails on 'assistant-qt4' from the port qt4-as f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw s bin/144313 vwe ld(1) can't find libs in /usr/local/lib but ldconfig(8 o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o bin/144285 [patch] ps(1): ps -axo user,%cpu,%mem - most processes o bin/144278 sysinstall [install] Fixit from USB dont work o conf/144243 [patch] Add NIS related files to OptionalObsoleteFiles o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o kern/144231 net bind/connect/sendto too strict about sockaddr length a ports/144224 mono [PATCH] lang/mono Fix build with new GCC o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o ports/144203 clsung textproc/refdb: network clients loop indefinitely when o bin/144139 x11/xscreensaver-gnome can't build because of bug in G o docs/144127 ed termios(4) man page wrongly claims CCTS_OFLOW/CRTSCTS o ports/144120 glewis java/openjdk6: games/pcgen doesn't fully work with ope o bin/144109 wireless hostapd(8) uses the MAC of the wireless interface, but p kern/144061 rwatson [socket] race on unix socket close o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive f i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled o ports/144044 gecko [PATCH] www/firefox: Makefile.webplugins target order o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors o i386/144005 [hang] System freezes a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo p bin/143962 pluknet fstat(1) doesn't work on UNIX sockets o ports/143949 office editors/openoffice-3: system unzip pickiness unhelpful o docs/143850 doc procfs(5) manpage for status > controlling terminal is o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o bin/143830 [patch] atmconfig(8): Fix conditional inclusion for sb o kern/143825 fs [nfs] [panic] Kernel panic on NFS client s kern/143808 virtualization[pf] pf does not work inside jail o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES o kern/143800 [boot] ping of local ip failed with network boot o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A a usb/143790 usb [boot] [cam] can not boot from usb hdd o misc/143785 [build] [patch] add passive mode to pkg_add cdrtools i o bin/143732 [patch] mtree(8) does a full hierarchy walk when reque o ports/143723 nork graphics/dri fails to build after graphics/libdrm upda o kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 s bin/143699 [patch] extend brandelf's OS knowledge o bin/143698 portmgr pkg_add(1) probably behaving incorrectly s www/143697 linimon [portsmon.freebsd.org] Error: could not connect to the s kern/143673 net [stf] [request] there should be a way to support multi s kern/143666 net [ip6] [request] PMTU black hole detection not implemen o conf/143637 rc [patch] ntpdate(8) support for ntp-servers supplied by o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op f kern/143595 bschmidt [wpi] [panic] Creating virtual interface over wpi0 in o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o i386/143587 i386 [boot] [hang] BTX 1.02 freezes upon assigning Bios C d o kern/143573 jfv [em] em(4) NIC crashes intermittently o bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o bin/143570 ed [patch] stock ftpd(8) does not handle "filesize" limit o bin/143568 secteam ktrace(1) is limited with other user's "filesize" limi o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o bin/143533 [patch] Changes to support Sun jumpstart via bootparam o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o bin/143504 pf [patch] outgoing states are not killed by authpf(8) o docs/143472 standards gethostname(3) references undefined value: HOST_NAME_M o kern/143455 geom gstripe(8) in RELENG_8 (31st Jan 2010) broken o kern/143426 [panic] System crash with Firefox-3..7.5 & FreeBSD-7.2 o kern/143420 acpi [acpi] ACPI issues with Toshiba o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i o bin/143375 [patch] awk(1) trashes memory with regexp and ^ anchor o bin/143373 [patch] awk(1) tolower/toupper functions don't support o bin/143369 [patch] awk(1) doesn't handle RS as a regexp but as a o bin/143368 [patch] awk(1): number of open files is limited to sma o bin/143367 [patch] awk(1) treats -Ft as -F o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o bin/143362 awk(1) incorrect matching o bin/143351 bapt [request] update flex(1) to at least 2.5.33 o kern/143349 [panic] vm_page_free: freeing busy page o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143324 [panic] vm_fault: fault on nofault entry, addr: c10a50 o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 o gnu/143254 [patch] groff(1) build in base system does not honor P o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/143208 net [ipsec] [gif] IPSec over gif interface not working p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o kern/143184 fs [zfs] [lor] zfs/bufwait LOR s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o kern/143126 [ata] Data loss on read timeout o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o kern/143088 [hang] FreeBSD 9.0-CURRENT freezes while starting kern o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances o i386/143082 [install] Unable to install 8.0-RELEASE on Dell 2950 w o conf/143079 wireless hostapd(8) startup missing multi wlan functionality f kern/143074 bschmidt [wi]: wi driver triggers panic o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) f kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks o kern/143034 net [panic] system reboots itself in tcp code [regression] p kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o bin/143017 watch(8): fatal: cannot attach to tty o kern/143006 [build] [request] ACCEPT_FILTER_DATA and ACCEPT_FILTER o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o conf/142961 pf [pf] No way to adjust pidfile in pflogd f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o i386/142946 i386 [boot] Can't boot installation DVD. BTX halted p docs/142938 wkoszek [kld] share/examples: fix warnings o bin/142932 adduser(8) script add bogus symbol at "full name" fiel p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o docs/142917 arundel [patch] top(1) man page does not include information a o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142877 net [hang] network-related repeatable 8.0-STABLE hard hang o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o bin/142867 sysinstall sysinstall(8): in a custom installation re-entering th o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o stand/142803 kargl j0 Bessel function inaccurate near zeros of the functi o kern/142802 [ata] [panic] on removing drive: recursed on non-recur s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m o kern/142781 [lor] New LOR: process lock / system map o kern/142774 net Problem with outgoing connections on interface with mu o kern/142772 net [libc] lla_lookup: new lle malloc failed o ports/142743 [PATCH] devel/cross-binutils: installed by *-rtems-gcc o kern/142728 [panic] Fatal trap 12 in g_io_request o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone f kern/142624 gavin Sending large chunks of data fails o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real p kern/142595 jhb Implementation of "filesystems" file in linprocfs(5) o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o kern/142563 geom [geom] [hang] ioctl freeze in zpool o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142489 fs [zfs] [lor] allproc/zfs LOR o conf/142467 /var/log/auth.log may not be rotated for years o kern/142466 fs Update 7.2 -> 8.0 on Raid 1 ends with screwed raid [re o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) o i386/142421 i386 [ata] optical drives not found o kern/142390 [keyboard] 30th console switch hangs computer complete p docs/142367 roam [patch] wlan(4) does not document requirement for kern o kern/142351 scsi [mpt] LSILogic driver performance problems o misc/142335 sysinstall Download of Release 8.0 LIVE is NOT a "live" from CD p o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two o conf/142304 rc rc.conf(5): mdconfig and mdconfig2 rc.d scripts lack e f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o ports/142259 itetcu sysutils/apcupsd segfaults during shutdown o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/142198 simon SSLv3 failure with irc/xchat on FreeBSD 8.0 o i386/142190 i386 [boot] BTX Loader issue on Gigabyte Motherboard o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep o docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 o conf/142114 periodic(8): security report from 'periodic daily' doe o i386/142108 i386 [panic] vm_fault: fault on nofault entry, addr: c32a40 f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te f kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o ports/142069 x11 x11/xorg: After adding on a laptop Toshiba Sattelite L o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o bin/141920 sort(1): sort -k 3,1g is very slow o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o kern/141915 [hang] Unspecified lockup/deadlock with 7.2 on AMD64 o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141826 multimedia [snd_hda] load of snd_hda module fails f kern/141756 gavin [mmc] MMC card attached to blocks keybo f kern/141741 net Etherlink III NIC won't work after upgrade to FBSD 8, o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o threa/141721 threads rtprio(1): (id|rt)prio priority resets when new thread f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o s stand/141705 standards [libc] [request] libc lacks cexp (and friends) a kern/141696 virtualization[rum] [vimage] [panic] rum(4)+ vimage = kernel panic o kern/141682 [libc] [patch] Faster version of strncpy(3) f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o i386/141675 i386 [boot] memory and BTX halted on Sunfire X4170 o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o ports/141660 x11 x11/xorg: X can't determine amount of video memory on o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/141653 [ata] [panic] Panic in ata? f misc/141652 gavin [install] 8.0 install fails from USB memstick because o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR o i386/141470 i386 [boot] BTX halted immediatly on selecting any of the b o i386/141468 i386 [boot] FreeBSD 8.0 boot manager can cause disk not pro o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro p amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze s bin/141340 netstat(1): wrong netstat -w 1 output o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail o kern/141314 andre Network Performance has decreased by 30% [regression] f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US p misc/141311 [build] "make delete-old" leaves some unnecessary file o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o conf/141275 rc [request] dhclient(8) rc script should print something o bin/141264 ntpd(8) crashes when tries to use an oncore reference a docs/141227 blackend Handbook/sysinstall documentation about distributions o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se o bin/141016 [libpam] PAM checks in sshd too few? o kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o bin/140972 sysintall(8): 8.0-RELEASE-i386-memstick Fixit broken - o ports/140968 python x11-toolkits/py-tkinter(devel/pth): py26-tkinter-2.6.4 o conf/140965 [terminfo] Cannot create terminfo database because ncu o ports/140939 rea [patch] security/vuxml: fix and extend files/newentry. o kern/140932 fork+exec from threaded FreeBSD 7.2 application o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de o ports/140895 hrs net/openbgpd exit, when kernel table change o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o ports/140882 lev devel/py-subversion: subversion-1.6.6_1 build error wi o amd64/140873 gavin [install] Cannot install 8.0-RELEASE on Thinkpad SL300 o bin/140863 cperciva freebsd-update(8) fails to check that writes will succ o kern/140858 [hang] System freeze during boot when PC-Card NIC inst o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- s docs/140847 doc [request] add documentation on ECMP and new route args o bin/140843 sysinstall sysinstall(8): cannot software install from usb o bin/140842 sysinstall sysinstall(8): destroyed ncurses interface with FBSD8. f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o kern/140835 des [libfetch] fetchParseURL(3) returns success with inval a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o kern/140778 jfv [em] randomly panic in vlan/em o kern/140742 net rum(4) Two asus-WL167G adapters cannot talk to each ot o kern/140728 jfv [em] [patch] Fast irq registration in em driver o docs/140725 darrenr wrong directory in ipnat(8) man page o kern/140697 pf [pf] pf behaviour changes - must be documented a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf o i386/140655 i386 [panic] Lenovo X300: fatal trap 12 after /sbin/halt -p o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C p conf/140650 cperciva [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/140640 fs [zfs] snapshot crash o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o ports/140621 edwin Add support for /etc/cron.d and /usr/local/etc/cron.d o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o bin/140595 sysinstall [request] sysinstall(8): Replace "Country Selection" w o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o docs/140583 hrs ports/print/acroread9 - handbook and port fail to ment s www/140580 www svnweb file logs are useless p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o ports/140542 edwin sysutils/isc-cron should be compatible with cron from o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o bin/140462 devd(8): [regression] devd.pid locked by /etc/rc.d and o kern/140461 [vm] Fail to read from swap. The swap_pager.c contains p docs/140457 doc [patch] Grammar fix for isspace(3) o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum o i386/140448 i386 [boot] BTX loader hangs after displaying BIOS drives o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum p misc/140436 imp [nanobsd] pkg-add process fails when there is no /usr/ o docs/140435 arundel ls(1), section STANDARD: the -A is exception from POSI o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o misc/140376 [build] installworld fails trying to use 'chflags schg o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o ports/140364 ruby [patch] ports-mgmt/portupgrade-devel: #! line substitu f kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid o kern/140352 geom [geom] gjournal + glabel not working o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m a bin/140309 bapt [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o ports/140273 ruby ports-mgmt/portupgrade-devel chokes on bsdpan pkgs o i386/140268 i386 [install] 8.0-RC* does not install on MSI MS-7255 [reg o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o kern/140185 [patch] expand_number(3) does not detect overflow in n o ports/140170 nork net/liveMedia: install shared libraries and thus fix r o ports/140162 hrs print/teTeX listings module bug o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/140156 emulation [linux] cdparanoia fails to read drive data o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140142 net [ip6] [panic] FreeBSD 7.2-amd64 panic w/IPv6 o docs/140082 bland [handbook] handbook/jails: russian translation is miss o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/140067 [boot] 8.0-RC2 from ISO, after install, hangs on boot o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) o kern/140018 [boot] locks up during boot on cpu error on Dell Power o conf/140009 configuration issue NIS in nsswitch.conf(5) o ports/140008 ruby ports-mgmt/portupgrade: many papercut omissions on por o i386/139999 i386 [panic] random freeze and crash s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o gnu/139982 ld(1): BFD internal error o ports/139872 crees [PATCH] ports-mgmt/porttools: improve port's directory f kern/139811 gavin FreeBSD did not recognize Intel Gigabit ET Dual Port S o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139718 trasz [reboot] all mounted fs don't get synced during reboot o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a o kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n p amd64/139614 avg [minidump] minidumps fail when many interrupts fire p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo p kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks p bin/139492 portmgr pkg_install(1) - overlapping data buffer in call to sn o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/139403 [headers] absense of AUE_NULL o bin/139389 pluknet [patch] Change top(1) to display thread IDs o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous o bin/139346 net [patch] arp(8) add option to remove static entries lis o docs/139336 doc [request] ZFS documentation suggestion a bin/139314 [patch] install(1): install -d reports success on fail p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o conf/139255 8.0-RC1 network.subr calls route(8) with obsolete para o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o kern/139232 [panic] Kernel panic (spin lock held too long) p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f ports/139203 crees sysutils/freebsd-snapshot more careful patch not depen o bin/139181 randi WITHOUT_LEGACY_CONSOLE=1 breaks sysinstall(8) o docs/139165 doc gssapi.3 man page out of sync with between crypto and o kern/139162 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o bin/139135 cperciva freebsd-update(8) misbehaves on upgrade and shows erro s sparc/139134 sparc64 kernel output corruption o kern/139127 [vfs] False negative vfs cache entry o kern/139117 net [lagg] + wlan boot timing (EBUSY) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o kern/139080 [libc] [patch] closelog() can close negative file desc f kern/139079 bschmidt [wpi] Failure to attach wpi(4) o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 p bin/139052 kan gcc(1): Stack protection breaks -fprofile-generate on s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o docs/139018 doc translation of submitting.sgml from docproj/submitting a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o kern/139014 [null] /dev/null must be immunable to delete/unlink o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o bin/138961 ldap groups don't work with su(1) o i386/138948 i386 [twa] [regression] da0: Fi f kern/138944 emulation [parallels] [regression] Parallels no longer works in o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in o bin/138858 patch(1) assumes that a file appears only once in the o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o docs/138845 doc Exceeding kern.ipc.maxpipekva refers to tuning(7) whic o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o kern/138782 net [panic] sbflush_internal: cc 0 || mb 0xffffff004127b00 o ports/138772 nox emulators/qemu should build on SPARC f kern/138739 bschmidt [wpi] wpi(4) does not work very well under 8.0-BETA4 o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA o java/138729 java java/jdk16: setting 'export AWT_TOOLKIT=MToolkit' caus o java/138728 java java/jdk16: SIGSEGV in java runtime p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o docs/138663 doc system(3) man page confuses users about "return value o kern/138662 fs [panic] ffs_blkfree: freeing free block o kern/138660 jfv [igb] igb driver troubles in 8.0-BETA4 o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138631 [panic] FreeBSD 7.2 panics when I try to start X f kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o bin/138560 ifconfig(8): wpa_supplicant(8): Incorrect usage of str s bin/138547 vwe [request] improve dhcp behaviour with multiple network o kern/138537 [ata] [panic] Memory modified after free p kern/138526 gnn [null] /dev/null does not support nonblocking operatio o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o bin/138423 sysinstall sysinstall(8): Installer (and sade) get wrong number o o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o bin/138331 sam FreeBSD 8.0-beta3 wpa_supplicant(8) lost auth o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] o kern/138266 net [panic] kernel panic when udp benchmark test used as r o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por f i386/138211 gavin [loader] Boot fails on Intel X5550 o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o kern/138202 fs mount_msdosfs(1) see only 2Gb o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o i386/138126 i386 [panic] Kernel panic trap 12 on bigger load o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o kern/138117 [kernel] [panic] spin lock held too long o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin f kern/138029 net [bpf] [panic] periodically kernel panic and reboot o bin/138025 sysinstall sysinstall(8) fails to create big partition o kern/138002 [lor] Three lock order reversals: ufs/devfs, bufwait/d o kern/137982 pf [pf] when pf can hit state limits, random IP failures o ports/137958 ruby [patch] ports-mgmt/portupgrade fails with recursive de o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o ports/137940 glewis java/jdk15, java/jdk16: bsd java does not start from n o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 f usb/137872 usb [usb67] [boot] slow booting on usb flash drive o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow p bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o ports/137729 apache www/mod_auth_kerb2 port broken on 8.0-BETA2 due to sec o bin/137713 sysinstall sysinstall(8): installer partition editor generates in o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa o conf/137671 [patch][request] enhance beastie.4th: possibility to d s gnu/137665 [patch] dialog(1) goes into tight loop on encountering o bin/137641 net ifconfig(8): various problems with "vlan_device.vlan_i o conf/137629 rc [rc.d] background_dhclient rc.conf option causing doub o ports/137620 portmgr [NEW PORT] devel/p6-perl6-toys o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o misc/137514 cperciva freebsd-update doesn't update the system under some ci p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o kern/137443 [headers] Including /usr/include/rpc/xdr.h fails with o ports/137393 portmgr Remote Package Add of lang/gcc42 does not terminate o kern/137392 net [ip] [panic] crash in ip_nat.c line 2577 o usb/137377 usb [usb8] request support for Huawei E180 o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o bin/137365 [patch] let last(1) read from stdin via "-f -" f kern/137361 [panic] FreeBSD panics with random intervals o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o ports/137332 hrs add caution messages to some adobe products o kern/137327 dfr [nfs] nfs nlm memery leak s bin/137318 [request] import options from NetBSD's lastlogin(1) o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o ports/137250 portmgr OPTIONS that change PREFIX cause an error after 'make o kern/137246 [kqueue] kevents not generated for file writes through o kern/137232 ipfw [ipfw] parser troubles o kern/137228 [psm] synaptics support delays 'mouse up' events when f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de f kern/137053 acpi [hang] FreeBSD 8.0 BETA2Compaq Mini 700 locks on boot o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o kern/137041 [hang] powerd(8) hangs my systems within aprox 15 min o bin/136994 net [patch] ifconfig(8) print carp mac address o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 o ports/136917 python [patch] lang/python26: gettext detection o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re o kern/136888 [boot] boot0sio timeout much longer when DSR/CTS low o kern/136876 yongari [bge] bge will not resume properly after suspend o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136762 [ichsmb] ichsmb can't map resources of compatible IXP o bin/136733 disklabel(8) handle incorrently o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa p gnu/136705 emaste [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136669 [libc] [patch] setmode(3) should always set errno on e o docs/136666 doc [handbook] Configure serial port for remote kernel deb o bin/136661 melifaro [patch] ndp(8) ignores -f option o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o kern/136618 net [pf][stf] panic on cloning interface without unit numb p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS p bin/136419 portmgr [regression] pkg_add(1) segfault on adding package whe o kern/136356 [ata] SATA / ICH7 problems o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136327 firewire [sbp] [boot] Asus M3N78-EM motherboard cannot boot wit o bin/136325 cperciva portsnap(8): "portsnap fetch" not useable by other pro o kern/136216 [headers] Missing prototype declaration for setfib() o o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend o bin/136073 des recent nscd(8) changes cause client processes to die w o ports/136072 portmgr Propose new ports category, internationalization o docs/136035 doc ftpchroot(5) omits an important option o kern/136013 [resolver] Resolver wrong diagnostics o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us f kern/135986 [panic] FreeBSD crashes after VLC close f i386/135961 gavin [boot] booting WRAP and Soekris fails from PXE, boot0 o kern/135948 pf [pf] [gre] pf not natting gre protocol o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive o kern/135898 geom [geom] Severe filesystem corruption - large files or l o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o threa/135673 threads databases/mysql50-server - MySQL query lock-ups on 7.2 f kern/135667 xen ufs filesystem corruption on XEN DomU system o bin/135647 cperciva freebsd-update(8): forces manual merge of every file i o kern/135608 [patch] sysctl(8) should be able to handle byte values o power/135576 ppc gdb cannot debug threaded programs on ppc o ports/135569 portmgr `check-sanity` not documented in bsd.port.mk s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o docs/135516 doc [patch] pax(1) manual not mentioning chflags unawarene a ports/135503 wxs lang/python26 upgrade should get mailman too o kern/135502 net [periodic] Warning message raised by rtfree function i o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/135458 dchagin Missing errno translation in Linux getsockopt(,,SO_ERR o bin/135444 cperciva freebsd-update(8) failing should be more verbose f kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. o misc/135420 bugmeister gnats generates broken In-Reply-To headers o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o conf/135338 rc [rc.d] pf startup order seems broken [regression] o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135317 randi install.cfg feature request o kern/135307 Boot Loader problem on Acer Aspire 5735 o ports/135276 x11 x11/xorg: GUI running first time only while using Free o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/135222 jfv [igb] low speed routing between two igb interfaces o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe o usb/135206 usb machine reboots when inserted USB device f usb/135200 usb SAMSUNG i740 usb mass: Synchronize cache failed, statu f kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o kern/135164 [keyboard] UK currency key inactive o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines s ports/135089 portmgr bsd.port.mk: Honor LOCALBASE for CFLAGS p kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o usb/134950 usb Lowering DTR for USB-modem via ubsa is not possible o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons f bin/134907 vwe boot0cfg(8): choose / adjust the booting slice doesn't o kern/134887 [ataraid] source consistency problem o ports/134880 ale lang/php5 - PHP CLI interactive mode misbehaviour with o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic s ports/134714 ruby ports-mgmt/portupgrade deletes user data without quest o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 f kern/134584 [panic] spin lock held too long o kern/134583 net [hang] Machine with jail freezes after random amount o o bin/134569 [heimdal] krb5-config(1) does not return all libs nece o kern/134531 net [route] [panic] kernel crash related to routes/zebra o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R o kern/134519 [panic] Kernel panics (2 page faults in kernel) o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod o kern/134491 fs [zfs] Hot spares are rather cold... o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o bin/134425 sysinstall sysinstall(8) custom distributions select all and dese f kern/134407 gavin [hang] freebsd 7.x freezes with the livefs or install f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 o kern/134391 [libc] dladdr(3) does effectively not work on main pro o bin/134389 cperciva portsnap(1): phttpget opens a new connections for ever o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o conf/134333 rc PPP configuration problem in the rc.d scripts in combi o usb/134299 usb Kernel Panic plugging in MF626 USB UMTS Stick u3g o bin/134250 [rc.d] mountlate: bogus error message when using neste o kern/134249 [libiconv] [patch] ignore case for character set names s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/134200 [panic] Fatal trap 12: page fault while in kernel mode o usb/134193 usb System freeze on usb MP3 player insertion f kern/134168 gavin [ral] ral driver problem on RT2525 2.4GHz transceiver o bin/134167 cperciva [request] freebsd-update(8) should be able to be run i o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o docs/134123 doc The RUNQUEUE(9) man page is out of date o kern/134113 geom [geli] Problem setting secondary GELI key f kern/134105 gavin rl(4) Realtek 8110SC with device ID 0x814910ec not det f java/134098 glewis java/diablo-jdk15: random core drops p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix o bin/134022 host(1), dig(1) and nslookup(1) hang in _umtx_op sysca o kern/134011 [hang] swap_pager_getswapspace(4): failed o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic o kern/133931 geom [geli] [request] intentionally wrong password to destr s kern/133926 [request] MAXLOGNAME, the username length limit, is to o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/133892 sam /usr/src/sys/dev/ath/if_ath.c:3414: error: 'const stru o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o ports/133771 doceng print/ghostscript8: Ghostscript8-8.64 port not install f kern/133768 gavin [panic] MONITOR PANIC: vcpu-0:VMM64 DoubleFault src=MO o kern/133736 net [udp] ip_id not protected ... o kern/133732 pf [pf] max-src-conn issue o i386/133727 i386 chars [[[[[[[[[[[[[ occur during install process (sett o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133710 [headers] net/bpf.h and netgraph/ng_message.h should i o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/133595 net [panic] Kernel Panic at pcpu.h:195 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o misc/133540 gavin Cannot connect to ftp mirrors for 7.2 beta boot-only o power/133503 ppc [sound] Sound stutter after switching ttys o kern/133495 [de] interface not properly initialized on boot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o usb/133390 usb umass crashes system in 7.1 when Olympus D-540 attache o power/133382 ppc [install] Installer gets signal 11 o usb/133296 usb [rum] driver not working properly in hostap mode o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/133286 dd can fill system memory o kern/133265 jail [jail] is there a solution how to run nfs client in ja o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo f kern/133213 net arp and sshd errors on 7.1-PRERELEASE s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article o bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p o ports/132783 portmgr ports/Mk/bsd.port.mk: ${ARCH} misuse for "--build" opt o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent o bin/132735 Berkeley db: corrupted file has record with absurd siz o kern/132734 net [ifmib] [panic] panic in net/if_mib.c o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o docs/132718 doc [handbook] Information about adding a new mirror is ou o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/132664 [lor] vfs_mount.c / msdosfs_vfsops.c o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not o conf/132596 examples/cvsup/ports-supfile still oriented on cvsup p o usb/132594 usb USB subsystem causes page fault and crashes o ports/132577 fjoe databases/oracle8-client: Appearence of connection (ph o ports/132576 delphij net/openldap24-server: multipying LDAP trees on the si o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve o conf/132515 stas ntpd_sync_on_start option in /etc/rc.conf misbehaves o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o kern/132397 fs reboot causes filesystem corruption (failure to sync b p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/132331 fs [ufs] [lor] LOR ufs and syncer o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo p kern/132285 glebius [carp] alias gives incorrect hash in dmesg o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o docs/132260 doc dhcpd(8) pid not stored in documented location o kern/132252 [ata] No CD/DVD devices found! o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/132238 [ral] ral driver does not support RT2860 o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o i386/132230 i386 [boot] [reboot] 7.1-RELEASE /boot/loader non-functiona o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( f kern/132176 pf [pf] pf stalls connection when using route-to [regress o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/132145 fs [panic] File System Hard Crashes o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o kern/132107 glebius [carp] carp(4) advskew setting ignored when carp IP us o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 o usb/132036 usb [panic] page fault when connecting Olympus C740 camera o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o docs/131968 danger ipnat man page points to wrong directory o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131853 cron(8): please add support for CRON_TZ and CRON_WITHI o bin/131800 rpcbind(8) fails to start in jail f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte o kern/131784 [lor] triple LOR after hard reboot o kern/131781 net [ndis] ndis keeps dropping the link o kern/131776 net [wi] driver fails to init o bin/131774 cvs(1) commits files then aborts o ports/131758 itetcu net/tightvnc in a jail stopped working after multiple o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh p kern/131718 [lor] kern_sysctl.c / acpi_video.c o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o kern/131601 net [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp o bin/131598 cperciva freebsd-update(8) doesn't interact well with custom ke o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o usb/131583 usb [umass] Failure when detaching umass Device o ports/131579 kuriyama security/gnupg reads security/gnupg1 data incorrectly o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data f kern/131573 [mutex] lock_init() assumes zero-filled struct f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o bin/131549 wireless ifconfig(8) can't clear 'monitor' mode on the wireless o power/131548 ppc ofw_syscons no longer supports 32-bit framebuffer o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o usb/131521 usb Registering Belkin UPS to usb_quirks.c f kern/131448 Bad display while booting o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o bin/131427 [patch] Add to fetch(1) an ability to limit a number o o i386/131426 i386 hald makes cdrom fail o bin/131415 geom [geli] keystrokes are unregulary sent to Geli when typ o docs/131370 keramida glabel(8): geom_label needs clarification in docs a bin/131369 delphij truss(1): truss -f fails to attach to child processes o bin/131365 net route(8): route add changes interpretation of network o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o bin/131359 cperciva freebsd-update(8): freebsd-update tag file not updated o bin/131358 cperciva freebsd-update(8): Update servers for freebsd-update a s bin/131354 des ssh: SSH session hangs o kern/131353 geom [geom] gjournal(8) kernel lock o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o bin/131341 fs makefs: error "Bad file descriptor" on the mount poin p bin/131250 brian [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o ports/131111 ruby ports-mgmt/portupgrade-devel: completely removes packa o bin/131094 dhclient(8) sets wrong IP address f kern/131087 bschmidt [ipw] [panic] ipw / iwi - no sent/received packets; iw o usb/131074 usb no run-time detection of usb devices plugged into exte o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ p kern/131038 bz [ip6] [panic] kernel panic in ip6_forward o bin/131013 pw(8) does not update NIS group file o kern/130998 [dtrace] DTrace stops tracing because of struct thread o bin/130993 pkg_add(1): pkg_add -n falsely reports present local p f kern/130982 gavin [install] The installation hangs o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ f bin/130954 vwe ps(1): can not obtain which process take all CPU time f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o bin/130831 csh(1) core dumps after building libiconv-1.1x from s f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o usb/130736 usb Page fault unplugging USB stick f misc/130728 joel There are 4-clause BSDL files in src/ o kern/130726 [ata] DMA errors accessing multiple SATA channels f kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o ports/130677 portmgr bsd.port.mk: Centralize handling of CPPFLAGS o kern/130657 bz [ip6] [patch] ipv6 class option o bin/130655 randi sysinstall(8): no IPV4 if answer "no" when "Do you wan o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau a bin/130504 [libc] Serious bug in regular expression library (rege o ports/130479 apache www/apache22 configure_args busted s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD f ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o docs/130364 arundel Man page for top(1) needs explanation of CPU states o bin/130343 top(1): kvm_open: cannot open /proc/42997/mem corrupts o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa o kern/130286 [patch] hifn(4) changes o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o bin/130251 nm(1): 'nm -C' doesn't demangle any 't' symbol names o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o kern/130210 fs [nullfs] Error by check nullfs o usb/130208 usb Boot process severely hampered by umass0 error o kern/130171 [ata] UDMA CF cards do not work with FreeBSD p bin/130159 brian [patch] ppp(8) fails to correctly set routes o usb/130122 usb [usb8] DVD drive detects as 'da' device o i386/130110 i386 [boot] BTX-Halted - booting with SAS/SATA Controller o kern/130109 net [ipfw] Can not set fib for packets originated from loc p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use f usb/130076 vwe Panic when connecting USB camera o stand/130067 standards Wrong numeric limits in system headers? f kern/130059 net [panic] Leaking 50k mbufs/hour o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129989 cperciva portsnap(8) quietly forgets to fetch some ports o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# f i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o ports/129930 ruby ports-mgmt/portupgrade - portinstall tries to install s www/129923 www Need stylesheet for FreeBSD Subversion DAV tree s ports/129891 ruby ports-mgmt/portupgrade fails to recognize variations o o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o ports/129824 hrs print/acroread8 - help viewer does not work o bin/129814 [patch] support of per script nice(1) value in periodi f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics o bin/129762 sysinstall sysinstall(8) doesn't seem to support GPT for EFI boar o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di a docs/129684 trhodes gcache.8 man page missing o kern/129674 geom [geom] gjournal root did not mount on boot o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o kern/129645 geom gjournal(8): GEOM_JOURNAL causes system to fail to boo o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/129517 net [ipsec] [panic] double fault / stack overflow f kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o docs/129464 doc using packages system o bin/129431 cperciva freebsd-update(8) fetch fails because phttpget fails p o bin/129405 [patch] tcsh(1) vfork bugs o www/129401 edwin FreeBSD Multimedia page should automatically pick up Y p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o bin/129378 csh(1) / tcsh(1) loses foreground process group [regre o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/129352 yongari [xl] [patch] xl0 watchdog timeout o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o bin/129287 [request] powerd(8) should grow signals to switch betw o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire s bin/129248 [request] FreeBSD's syslog(8) can't support log encodi o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o kern/129197 net [panic] 7.0 IP stack related panic o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/129164 [kernel] Wrong priority value for normal processes o kern/129152 fs [panic] non-userfriendly panic when trying to mount(8) o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/129125 [psm] psm0: failed to reset the aux device. o docs/129095 doc ipfw(8): Can not check that packet originating/destine o kern/129053 [lor] lock order reversal with printf(9) syscons video o bin/129052 ps(1) %cpu column reports misleading data for threaded f kern/129040 gavin [install] Lockup during boot - Cannot install the OS f kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o docs/129024 keramida [patch] ipfw(8) improvements p bin/129014 gavin [regression] ftp(1) cannot bind to specific source IP o conf/128994 UPDATING falsly states DTrace bindings are built by de s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/128977 usb [usb67] [patch] uaudio is not full duplex f ports/128972 cy Port security/krb5 has a linking problem when compiled o bin/128954 net ifconfig(8) deletes valid routes o java/128948 java java/jdk16 built from source can't bind a socket, but o kern/128933 kib [libc] realpath(3) does not follow SUS specification f o threa/128922 threads threads hang with xorg running f kern/128917 bschmidt [wpi] [panic] if_wpi and wpa+tkip causing kernel panic o bin/128886 ntpd(8): ntpd -L flag doesn't work s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128840 jfv [igb] page fault under load with igb/LRO o java/128809 java JVM aborted when GNU RXTX write to serial port. p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o ports/128754 portmgr bsd.port.mk: implement master sites randomization f usb/128745 weongyo zyd teoretically supported usb device makes kernel pan o bin/128727 host(1) does not work properly with the -6 option o bin/128668 [request] Kerberos in the base system is too old o bin/128654 atacontrol(8) does not preserve rebuild status through o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct p kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop f kern/128633 pjd [zfs] [lor] lock order reversal in zfs o conf/128632 security periodic 700.kernelmsg repeats messages p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad o bin/128501 cperciva freebsd-update(8) does not work on netbooted machines o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o bin/128465 [request] mount_smbfs(8) does not support IPv6 o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res o conf/128433 [patch] Add option to allow a full login when doing 's o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like s docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages f kern/128308 gavin [psm] psm0 cause page fault o kern/128304 vn_pollrecord(3) derefs NULL if v_addpollinfo() fails o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128284 gdb(1) segfaults f kern/128282 gavin [mpt] system failure on removing two drives f kern/128276 geom [gmirror] machine lock up when gmirror module is used o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p kern/128247 bz [ip6] [panic] Fatal Trap 12 in ip6_forward = o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re f threa/128180 attilio pthread_cond_broadcast(3) lost wakeup o kern/128177 jeff [sched_ule] wrong CPU usage reported by top(1)/ps(1) w o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage f bin/128088 vwe who(1) not listing all logged in users. o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/128076 [panic] Fatal trap 12: page fault while in kernel mode o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to o kern/128035 [ata] unexpexted detach of external SATA drive s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o ports/128028 portmgr bsd.port.mk - Ports-Script do not recognize dialog-ret o bin/128001 net wpa_supplicant(8), wlan(4), and wi(4) issues p bin/127986 [patch] ee(1): fix compiler warnings caused by use of a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/127930 ed auto-logout does not work p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up o usb/127926 usb [boot] USB Timeout during bootup o docs/127923 loader Please mention qemu in the FreeBSD Handbook o kern/127920 pf [pf] ipv6 and synproxy don't play well together s bin/127918 [ata] [request] [patch] ATA Security support for ataco o bin/127912 In theory, uncompress(1) may crash and SEGV f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki p docs/127890 trhodes socket(2) man page should explain that protocol can be o ports/127889 ruby ports-mgmt/portupgrade detects spurious failures and s o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/127842 murray list of hardware devices missing from the relnotes p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o bin/127633 edwin [patch] Update top(1) to 3.8b1 o kern/127623 [headers] header definition for cftime is missing. o kern/127553 [build] (errata) in kernel generic et al, device ural o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s f kern/127528 net [icmp]: icmp socket receives icmp replies not owned by a ports/127496 office devel/icu 3.8.1_1 does not build when Danish locale is f kern/127492 pjd [zfs] System hang on ZFS input-output o ports/127467 portmgr bsd.port.mk: fix checking DISTDIR for writeability s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127439 pf [pf] deadlock in pf o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o i386/127374 i386 Suspend/Resume with Keystroke only once on Thinkpad T4 p kern/127360 net [socket] TOE socket options missing from sosetopt() o docs/127359 keramida Undocumented firewall_xxx options for rc.conf in stabl o i386/127343 i386 [hang] System locks -- simular to PR 123729 o usb/127342 usb [boot] [panic] enabling usb keyboard and mouse support o i386/127337 i386 [boot] FreeBSD 7.1/i386 BTX boot problem on Pavilion d o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127276 [patch] ldd(1) invokes linux yes o bin/127270 fs fsck_msdosfs(8) may crash if BytesPerSec is zero o bin/127265 [patch] ddb(4): Adding the ddb command set from module o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o bin/127192 net routed(8) removes the secondary alias IP of interface f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode s bin/127056 lp(1) doesn't use -o options p kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi o kern/127048 systat(1) information leak when security.bsd.see_other o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o kern/127029 fs [panic] mount(8): trying to mount a write protected zi o ports/127019 ruby ports-mgmt/portupgrade does not recognize fail conditi o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126971 [boot] loader/kernel does not obey comconsole_speed p kern/126945 glebius [carp] CARP interface destruction with ifconfig destro o bin/126936 locate.updatedb(8): updatedb fails silently when attem s ports/126932 itetcu gapcmon option in sysutils/apcupsd conflicts with sysu o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o ports/126853 secteam ports-mgmt/portaudit: speed up audit of installed pack o usb/126848 usb [usb]: USB Keyboard hangs during Installation o kern/126821 [panic] Fatal trap 12 (kdeinit) o bin/126819 randi sysinstall(8) During install if initial name look-up f o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o bin/126721 gcc(1) g++(1) Compiling, assembling and linking code w p kern/126714 glebius [carp] CARP interface renaming makes system no longer o kern/126695 net rtfree messages and network disruption upon use of if_ o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and o i386/126666 i386 [boot] [hang] boot failure for nForce 630i / GeForce 7 p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/126546 des pam_nologin(8) in auth causes log spam o usb/126519 usb [usb] [panic] panic when plugging in an iphone o docs/126484 doc libc function res-zonscut2 is not documented o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o bin/126433 [patch] some missing checks in rm(1) o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126384 [request] find(1) doesn't support whiteout entries yet o kern/126339 net [ipw] ipw driver drops the connection p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o misc/126312 [build] debug message going to stderr while doing "mak o conf/126305 nsmb.conf(5): Hostnames in nsmb.conf seem to be ignore o bin/126301 portmgr pkg_version(1) can induce unexpected parsing of INDEX o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o kern/126230 [libc] select(2) causing weird process cpu usage and l p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o bin/126162 acpi [acpi] ACPI autoload failed : loading required module o kern/126142 [ata] M5281: READ DMA faults, device detaching f ports/126140 ruby ports-mgmt/portupgrade runtime error o misc/126131 cperciva portsnap(8) fetch error with HTTP_PROXY or HTTP_PROXY_ o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom o ports/126083 office textproc/aspell core dumps o kern/126075 net [inet] [patch] internet control accesses beyond end of o bin/125932 portmgr pkg_add(1) doesn't prompt for root credentials and the o bin/125922 net [patch] Deadlock in arp(8) o docs/125921 doc lpd(8) talks about blocks in minfree while it is KB in o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg o kern/125806 np [cxgb] cxgb packet counters do not work o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o stand/125751 brucec man 3 pthread_getschedparam section ERRORS incomplete s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o docs/125717 keramida minor wpa_supplicant.conf(5) buglet o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125704 [ng_nat] kernel libalias: repeatable panic o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/125647 [ciss] [panic] System randomly crashes - ciss driver o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o kern/125617 wireless [ath] [panic] ath(4) related panic a kern/125613 trasz [ufs] [patch] ACL problems with special files o i386/125592 i386 [hang] FreeBSD 7 server in hang o i386/125516 gavin [install] 7.0-RELEASE install dies o usb/125510 usb [panic] repeated plug and unplug of USB mass storage d o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125467 pf [pf] pf keep state bug while handling sessions between o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo f usb/125450 usb [panic] Removing USB flash card while being accessed c o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde o docs/125329 keramida PACKAGEROOT should be documented in the Handbook o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/125239 net [gre] kernel crash when using gre o bin/125184 des sshd(8) does not always log IP address for login failu o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o conf/125041 [patch] periodic(8) new file: /etc/periodic/security/8 o ports/125012 bf problems in math/ldouble for 128bit long double on i38 o kern/124989 [mfi] mfi driver error - unexpected sense o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o gnu/124970 gdb(1): gdb crashes after setting hardware watchpoint o kern/124969 geom gvinum(8): gvinum raid5 plex does not detect missing s o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC o kern/124881 [devfs] [patch] [request] Add possibility to check whi o stand/124860 standards flockfile(3) doesn't work when the memory has been exh o bin/124825 mlaier tcpdump(8) does not support pfsync(4) data o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o ports/124765 ume sysutils/gkrellm2 shows wrong number of users in proc o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/124753 wireless [ieee80211] net80211 discards power-save queue packets o conf/124747 rc [patch] savecore can't create dump from encrypted swap a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o usb/124708 usb [panic] Kernel panic on USB KVM reattach o kern/124670 [ata] large file operation on RAID cause many GEOM err o i386/124633 i386 [boot] [panic] 7.0 does not boot from CD s misc/124541 cperciva portsnap: portsnap3.FreeBSD.org mirror on error for ov f i386/124516 xen [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o docs/124470 remko incomplete (and out of sync) glabel(8) manpage p docs/124468 remko sticky(8) should be sticky(7) o misc/124431 bde [build] [patch] minor revision of BDECFLAGS o bin/124409 fsck(8) requires exact entry for mountpoints when exec p bin/124392 [patch] bootparamd(8) does not work on arm o kern/124389 [build] make installkernel fails with KMODDIR iff $(KM p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile o ports/124375 apache security/heimdal: www/mod_auth_kerb doesn't compile ag o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o bin/124320 pam_radius(8): Login with ssh using pam_radius and a t o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o docs/124253 sam Broken command in the handbook for configuring a wirel o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net s kern/124174 [panic] Panic after installing audio/oss on an Asus A8 o kern/124160 net [libc] connect(2) function loops indefinitely o conf/124151 winbind is ignored in compat mode in nsswitch.conf(5) o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o i386/124124 i386 [boot] [panic] Page fault while booting livefs iso of o bin/124119 edwin locate(1) doesn't check /etc/locate.rc for the default o bin/124084 find(1): find -execdir does not prepend ./ to filename p bin/124052 [patch] adduser(8) throws errors when -f input file in o bin/124049 ntpd(8): ntpd is crashing at startup o kern/124021 net [ip6] [panic] page fault in nd6_output() o i386/123990 i386 [boot] BTX halted on Thinkpad x60s o i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i p bin/123977 Segmentation fault in dialog(1) with ghostscript-gpl-n o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/123939 fs [msdosfs] corrupts new files o bin/123932 amd(8) core dumps while load high a kern/123904 [ipmi] ipmi(4) reports negative temperature values on o kern/123892 net [tap] [patch] No buffer space available o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/123858 net [stf] [patch] stf not usable behind a NAT o kern/123855 philip moused(8): spontaneous mouse events o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 o kern/123758 net [panic] panic while restarting net/freenet6 o kern/123755 dfr [nfs] fstat() fails to return ESTALE with rename()d fi o kern/123735 [panic] 7.0-STABLE kernel panic "AP #1 (PHY# 1) failed o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o kern/123674 scsi [ahc] ahc driver dumping o bin/123633 net ifconfig(8) doesn't set inet and ether address in one f kern/123617 andre [tcp] breaking connection when client downloading file o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o kern/123603 andre [tcp] tcp_do_segment and Received duplicate SYN o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o ports/123570 itetcu audio/cpige version 1.5 coredumps if new .conf entries f sparc/123566 fs [zfs] zpool import issue: EOVERFLOW o kern/123559 net [iwi] iwi periodically disassociates/associates [regre o java/123555 java linux-sun-jdk15, linux-sun-jdk16 produce a coredump o misc/123554 [build] buildworld with TARGET_ARCH=i386 fails on amd6 o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o kern/123520 scsi [ahd] unable to boot from net while using ahd f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 a ports/123468 itetcu mail/postgrey: information leak, privacy issue o bin/123465 net [ip6] route(8): route add -inet6 -interfac o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o misc/123452 brd trustedbsd-audit email list not archiving f bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c s bin/123304 sysinstall sysinstall(8): missing sensible and user friendly prog o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o kern/123160 net [ip] Panic and reboot at sysctl kern.polling.enable=0 o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/123122 geom [geom] GEOM / gjournal kernel lock o conf/123119 rc [patch] rc script for ipfw does not handle IPv6 o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o threa/122923 threads 'nice' does not prevent background process from steali o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t a i386/122887 acpi [panic] [atkbdc] 7.0-RELEASE on IBM HS20 panics immed o conf/122883 [patch] login class for ukrainian users accounts f kern/122880 vwe [hang] Kernel lock-up during 7.0 installation disc boo o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/122813 usb [udbp] [request] udbp driver should be removed in favo f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122685 net It is not visible passing packets in tcpdump(1) a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/122588 [lor] 4 Lock Order Reversal o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o ports/122524 demon www/links1 uses 7-bit us-ascii codepage only when usin o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o java/122513 java native JDKs unbuildable with Linux ones f kern/122493 gavin [boot] BTX Halted - Cause is Promise Fastrack SATA PCI o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o conf/122445 Unable to override EDITOR in /etc/profile due to defau o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, o conf/122170 rc [patch] [request] New feature: notify admin via page o s kern/122145 sam [build] error while compiling with device ath_rate_amr p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint o usb/122119 usb [umass] umass device causes creation of daX but not da o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab o kern/122067 geom [geom] [panic] Geom crashed during boot f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/122058 jfv [em] [panic] Panic on em1: taskq f docs/122052 doc minor update on handbook section 20.7.1 o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o bin/122043 [patch] du(1) does not support byte-count-based report p kern/122038 gleb [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc o conf/122037 [patch] add rsync example for inetd.conf o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o docs/121952 doc Handbook chapter on Network Address Translation wrong o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg p kern/121907 [request] output to console can obscure other messages o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl s kern/121807 ipfw [request] TCP and UDP port_table in ipfw s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o ports/121745 vd misc/ossp-uuid - PostgreSQL contrib ossp-uuid crashes o usb/121734 usb [ugen] ugen HP1022 printer device not working since up p docs/121721 trhodes telnetd(8) not describing -X authentication types o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k f java/121692 java java/jdk16: Java 1.5 1.5.0.14p8 crashes in RMI TCP Con o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o docs/121585 doc [handbook] Wrong multicast specification o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug a docs/121565 brooks dhcp-options(5) manpage incorrectly formatted omitting o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport o kern/121555 net [panic] Fatal trap 12: current process = 12 (swi1: net s docs/121541 doc [request] no man pages for wlan_scan_ap o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o bin/121503 sysinstall sysinstall(8): 7.0 upgrade doesn't let me mount all of s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup o docs/121440 keramida rc(8) and rcorder(8) unclear about PROVIDE keyword bei o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o ports/121420 glewis java/jdk16: Java applet fails to find class under fire o ports/121416 glewis java/jdk15 can't build if BIN environment variable is o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already f ports/121347 eadler print/teTeX-base and print/texinfo install files in th f kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati o threa/121336 threads lang/neko threading ok on UP, broken on SMP (FreeBSD 7 o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 o kern/121298 jfv [em] [panic] Fatal trap 12: page fault while in kernel o usb/121275 usb [boot] [panic] FreeBSD fails to boot with usb legacy s o kern/121274 darrenr [panic] Panic in ether_input() with different NIC's. o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o kern/121181 net [panic] Fatal trap 3: breakpoint instruction fault whi o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a o usb/121169 usb [umass] Issues with usb mp3 player o bin/121165 pkg_add(1) prints a weird message: PKG_TMPDIR environm p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o i386/121148 gavin [panic] Repeatable sysctl crash (Fatal Trap 12) with A a bin/121124 sysinstall sysinstall(8): FreeBSD 6.3 installation deletes MBR pa o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o conf/121064 [patch] Use ASCII characters for box/line characters i o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o bin/121059 ntpd(8) doesn't sync with servers after dhclient chang o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o ports/120947 x11 x11/xsm ignores system.xsm and .xsmstartup s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/120749 [request] Suggest upping the default kern.ps_arg_cache o kern/120733 cperciva libbsm.so.1 missing after upgrading to 6.3-RELEASE o usb/120729 usb [panic] fault while in kernel mode with connecting USB f kern/120717 [ata] boot problem when recognizing ata1 a misc/120608 gmirror(8) command set on livecd is minimal [regressio o kern/120566 net [request]: ifconfig(8) make order of arguments more fr o bin/120552 cperciva freebsd-update(8): freebsd-update - -r should check ex o docs/120539 doc Inconsistent ipfw's man page o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120487 scsi [sg] scsi_sg incompatible with scanners o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o docs/120456 wireless ath(4) needs to specify requirement on wlan_scan_sta o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. f ports/120372 eadler java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' o kern/120344 rwatson [panic] FreeBSD 6.3-STABLE panics on high loaded web s p kern/120343 ups [panic] Reproducible Crash - network interface related o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o conf/120263 [patch] 800.loginfail misses relevant security informa p bin/120256 gavin [patch] ftp(1): ftp -u URL/ returns a -1 o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/120177 [ata] ATA DMA modes don't work on CF cards o java/120146 java java/jdk15: netbeans 6.0 causes java core dump on amd6 p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va p kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o ports/120101 cy security/krb5 utilities link against wrong libcom_err o bin/120095 gdb(1) fails to catch signals when threading is involv o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/120066 [geli] geli boot password input fail when using serial o bin/120064 routed(8) marks 802.11 interfaces broken o bin/120060 net routed(8) deletes link-level routes in the presence of o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119891 slow halt, reboot when remote network shares which doe o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying o bin/119801 dhclient(8): dhclient changes alias to address o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w o kern/119696 [irq] [ral] ral device causes massive interrupt storm o bin/119695 pw(8) does not interact with nscd(8) o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch s bin/119645 [request] mount_ntfs(8) -- files permissions mask is i o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o kern/119618 [fdc] Double Density Disks do not work correctly o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o i386/119574 bde [i386] 7.0-RC1 times out in calibrate_clocks() [regres o kern/119572 firewire [sbp] PowerBook not accessable when in target mode o conf/119550 [ppp] ppp not starting during bootup. o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o bin/119524 cron(8) suddenly stops working, not crash f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119432 net [arp] route add -host -iface causes arp e o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose f bin/119354 csup(1) in free(): error: chunk is already free p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 s bin/119196 des fetch(1): [request] parallel download from multiple se o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/119068 dd(1) yields a bogus error when input file is to small o java/119063 java An unexpected error has been detected by Java Runtime o java/118956 java eclipse and netbeans break on diablo-jdk15 o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118912 fs [2tb] disk sizing/geometry problem with large array o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o bin/118759 cvs(1): cvs -R doesn't handle non-existent tags o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118734 xen [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o docs/118693 jfv Update for "em" man page for RELENG_7 o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118571 [boot] [request] fix BTX issues when booting FreeBSD 7 o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o bin/118501 Sending SIGINT to cvs(1) gives segmentation fault o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o bin/118449 randi sysinstall(8): Installer failing dns lookups o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( o gnu/118415 nm -D fails if a file has no symbols p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se o docs/118332 arundel man page for top(1) does not describe STATE column wai o bin/118325 rc [patch] [request] new periodic script to test statuses o bin/118318 mohans [nfs] NFS server hangs under special circumstances p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib p kern/118304 kib freebsd 7 delivers unanticipated signal for page fault o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o i386/118285 [i386] Segmentation fault in reloc_non_plt. p bin/118260 bin: more informative error message for install(1) o conf/118255 rc savecore never finding kernel core dumps (rcorder prob o bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o bin/118248 gavin newsyslog(8) does not obey -s (nosignal) flag s kern/118230 acm [linux] games/linux-quake4 fails to start o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o docs/118214 doc close(2) error returns incomplete o bin/118207 burncd(8) gives I/O error writing CD on Pioneer DVDR-1 o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft f kern/118161 [atapicam] failure message from ATAPI CDROM in the boo s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/118126 fs [nfs] [patch] Poor NFS server write performance s kern/118124 [request] HZ value on slow computers should by dynamic o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t a bin/118071 darrenr ipnat(8): ipnat -s expired counter does not update [re o bin/118069 [patch] camcontrol(8) should be able to leave device s o conf/118047 Move /etc/printcap to /usr/share/examples/ o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o docs/118020 doc ipfilter(4): man pages query for man 4 ipfilter return p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a kern/117987 rwatson read(2) on directories might leak filenames of deleted o kern/117972 [ata] SATA DLT V4 not recognized properly o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o kern/117954 fs [ufs] dirhash on very large directories blocks the mac o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o bin/117922 ftpd(8): remote ftp user possible leave chrooted envir o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o usb/117893 usb [umass] Lacie USB DVD writing failing o kern/117867 [heimdal] kinit generates bad tickets on multihomed IP s bin/117830 [patch] who(1) no longer displays entries for folk log o bin/117812 passwd(1): incapable of changing LDAP passowrds using f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o usb/117712 [reboot] unexpected reboot after mount USB flash drive f kern/117711 [rpc] rpcbind binds to all interfaces on random ports o kern/117688 [mpt] mpt disk timeout and hang o bin/117687 [patch] fstab(5) format cannot handle spaces f kern/117655 sam [ral] ral%d: device timeout when running as an access o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o bin/117520 [patch] csup(1) not-really-equivalent to cvsup s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o gnu/117481 sort(1) incorrect numeric sort in very specific cases p kern/117448 glebius [carp] 6.2 kernel crash [regression] o kern/117443 [ata] [hang] system hang with ataidle o kern/117423 net [vlan] Duplicate IP on different interfaces o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/117420 jeff [sched_ule] round off in sched_balance_pair() o kern/117374 vidcontrol(1) videomode: Operation not supported by de o kern/117348 [libedit] Loading history file sometimes fails in libe o bin/117339 net [patch] route(8): loading routing management commands o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o usb/117313 usb [umass] [panic] panic on usb camera insertion p bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap o kern/117242 [syscons] [hang] console hangs when powerd is adaptive p bin/117214 bz ipfw(8) fwd with IPv6 treats input as IPv4 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov o kern/117188 [geli] System crashes/reboots on access to file on GEL p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o kern/117043 jfv [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM a conf/117027 yar rc.subr doesnt deal with perl daemons p docs/117013 trhodes mount_smbfs(8) doesn't document -U (username) argument p kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o misc/116946 holographic shell breaks live CD shell o kern/116935 [ata] Intermittent error with Promise PDC40718 o conf/116931 fs lack of fsck_cd9660 prevents mounting iso images with p stand/116826 jilles [patch] sh(1) support for POSIX character classes o bin/116784 mount_msdosfs(8): mount_msdosfs -L ru_RU.KOI8-R -W koi o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o threa/116668 threads can no longer use jdk15 with libthr on -stable SMP o java/116667 java linux-sun-javac1.4 hangs on SMP o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o docs/116588 remko No IPFW tables or dummynet in Handbook o kern/116583 fs [ffs] [hang] System freezes for short time when using o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o kern/116515 rwatson [ntfs] NTFS mount does not check that user has permiss o stand/116477 standards rm(1): rm behaves unexpectedly when using -r and relat s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o bin/116413 standards incorrect getconf(1) handling of unsigned constants gi a kern/116335 andre [tcp] Excessive TCP window updates s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 s ports/116222 portmgr files installed with the wrong UID/GID via make instal o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116185 net [iwi] if_iwi driver leads system to reboot p threa/116181 attilio /dev/io-related io access permissions are not propagat o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o kern/116133 Recursive lock panic when w_mtx falls into DELAY o docs/116116 doc mktemp (3) re/move note o ports/116082 java java/linux-sun-jdk16 jconsole is unable to connect to o stand/116081 standards make does not work with the directive sinclude o docs/116080 doc PREFIX is documented, but not the more important LOCAL o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/116005 des [libfetch] libfetch accepts invalid URLs o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o ports/115957 itetcu Questionable ownership and security on dspam port o bin/115951 [tun] pppoed(8): tun not closed after client abruptly f kern/115947 acpi [hang] Dell poweredge 860 hangs when stressed and ACPI o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115930 jfv [em] Dell nic enumeration problem s conf/115923 [request] rc.subr - logger should be using priorities o kern/115856 geom [geli] ZFS thought it was degraded when it should have s docs/115716 jhb remove cue from supported hardware list p kern/115695 [crypto] When "device padlock" defined first ssh to ma o kern/115651 vanhu Racoon(ipsec-tools) enters sbwait state or 100% CPU ut o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/115526 [libalias] libalias doesn't free memory o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o kern/115479 [ata] [request] ASUS P5K SE need more support p bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o kern/115253 [keyboard] Wireless keyboard not working at boot o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o threa/115211 threads pthread_atfork misbehaves in initial thread s kern/115202 [request] memory error diagnostic o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 p docs/115065 doc [patch] sync ps.1 with p_flag and keywords o bin/115054 ntpd(8): NTP errors out on startup but restart of NTP o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/114970 Wrong system time (last) when machine is crashed due t o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/114928 green_saver does not switch DVI monitor power off o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/114808 [panic] Kernel panic when use USB SpeedTouch ADSL mode o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s ports/114725 portmgr bsd.port.mk - No dependencies in the package if there o usb/114682 usb [umass] generic USB media-card reader unusable o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo f kern/114667 [umass] UMASS device error log problem f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs s kern/114578 [libc] wide character printing using swprintf(dst, n, o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c f i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114550 [cbb] Cardbus WiFi card activation problem o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s bin/114392 [request] add default ssl definitions for openssl(1) o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references o kern/114213 [ata] optical drive not detected in the 6.x series of o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha p kern/114057 jh [devfs] devfs symlink over device doesn't work o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o usb/113977 gavin [request] Need a way to set mode of USB disk's write c f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat o bin/113912 tunefs(8): silent failure setting glabel on boot parti o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o bin/113850 sshd(8): unable to debug sshd with strace/truss/gdb o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o kern/113837 geom [geom] unable to access 1024 sector size storage o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o kern/113785 firewire [firewire] dropouts when playing DV on firewire o ports/113751 java java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 o bin/113669 ftpchroot(5) / ftpusers(5) doesn't do globbing o conf/113552 [request] ntpd(8) driftfile default location inconsist o bin/113518 [patch] make(1): Prevent execution when command is a c o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o kern/113419 geom [geom] geom fox multipathing not failing back o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o gnu/113338 gcc(1): GNU gcc __thread as class member o kern/113256 [headers] _limits.h for some CPU has wrong definitions o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o kern/113098 [amr] Cannot read from amrd while under heavy load o bin/113074 [patch] ppp(8): include for strcasecmp(3) s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o ports/112818 ruby ports-mgmt/portupgrade -a fails with database error o docs/112804 doc groff(1) command should be called to explicitly use "p o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file o bin/112757 sysinstall sysinstall(8): sysinstall(8): in the FDISK tool we can o ports/112745 portmgr bsd.port.mk: Add a package-smart target o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 o docs/112682 doc Handbook GEOM_GPT explanation does not provide accurat o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b a bin/112613 vwe ls(1): 'ls -l' is very slow or doesn't work at all o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o o docs/112579 mlaier [request] No ipv6 related pf examples in /usr/share/ex o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/112477 marius [ofw] [patch] Add support to set the node and type on o conf/112441 deprecated lines in /etc/hosts.allow o bin/112408 mp [regression] tcsh(1): tcsh causes gdb to hang (regress o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112370 getfacl(1): incorrect display group name by ``getfacl' o bin/112336 [patch] install(1): install -S (safe copy) with -C or p bin/112288 gavin ftp(1): /usr/src/usr.bin/ftp/config.h is redundant and s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o kern/112256 [hang] SC_PIXEL_MODE hangs system s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/112053 [hang] deadlock with almost full filesystem and rtorre o bin/111978 [patch] [request] make syspath list for mount(8) confi f kern/111967 [geli] glabel - label is seemingly not written to disk o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111843 fs [msdosfs] Long Names of files are incorrectly created s www/111791 www FreeBSD website messes up while using "links" browser o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/111766 [panic] "panic: ffs_blkfree: freeing free block" durin o conf/111557 [gre] link1 flag doesn't work as intended when specifi o kern/111537 net [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via o kern/111457 net [ral] ral(4) freeze o docs/111425 doc Missing chunks of text in historical manpages o ports/111399 doceng print/ghostscript8 (was ghostscript-gpl): WITH_FT_BRID a ports/111356 csjp net/bpfstat: man bpfstat has no descption for the flag o docs/111265 doc [request] Clarify how to set common shell variables p kern/111260 csjp [hang] FreeBSD kernel dead lock and a solution o www/111228 bugmeister [request] Usability improvements for bug search query o kern/111185 console color depth set to 0 at boot causes flat scree o kern/111162 [nfs] nfs_getpages does not restart interrupted system o docs/111147 doc hostapd.conf is not documented s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/111077 date(1): /bin/date -j -f "%b %Y" "Feb 2007" +%m return o ports/111066 secteam ports-mgmt/portaudit does not skip ports fixed listed s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta s kern/111001 [hang] can't install 6.2-RELEASE-amd64 (SuperMicro PDS o docs/110999 doc carp(4) should document unsupported interface types o kern/110995 [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o gnu/110971 gdb(1) crashes f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. s ports/110826 dinoex port graphics/tiff: tiff2pdf tints images with wrong c o docs/110692 doc wi(4) man page doesn't say WPA is not supported a kern/110662 sam [safe] safenet driver causes kernel panic o threa/110636 threads [request] gdb(1): using gdb with multi thread applicat o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o threa/110306 threads apache 2.0 segmentation violation when calling gethost o kern/110284 net [if_ethersubr] Invalid Assumption in SIOCSIFADDR in et o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110151 sysinstall sysinstall(8): sysinstall(8) don't respects install ro o bin/110146 joerg [patch] [request] Allow arbitrary gdb(1) options to by o bin/110068 [patch] rewrite of mdmfs(8) in shell o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit p docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled o docs/109981 doc No manual entry for post-grohtml o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o docs/109977 doc No manual entry for ksu p docs/109975 trhodes No manual entry for elf2aout o docs/109973 doc No manual entry for c++filt o docs/109972 doc No manual entry for zless/bzless o bin/109911 mountd(8) does not accept identical host sets on diffe o bin/109827 mount_smbfs(8) didn't handle password authentication c o kern/109762 [hang] deadlock in g_down -> ahd_action -> contigmallo o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109569 mail(1) command not parsing sendmail parameters o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac o conf/109354 [request] /etc/periodic/daily/110.clean-tmps does not o bin/109334 portmgr pkg_add(1) using chroot exits with error if wrong dire o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd o kern/109161 philip [psm] synaptic touchpad doesn't work o docs/109105 trhodes security.mac.bsdextended.firstmatch_enabled is not ena o docs/109104 trhodes man mac_bsdextended is not consistent with systl outpu o bin/109102 csjp sysctl security.mac.bsdextended is not consistent with o kern/109024 fs [msdosfs] [iconv] mount_msdosfs: msdosfs_iconv: Operat o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) a docs/108980 doc list of missing man pages o bin/108895 net pppd(8): PPPoE dead connections on 6.2 [regression] o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o conf/108589 rc rtsol(8) fails due to default ipfw rules o bin/108462 [request] pkg_info(1) shouldn't have a hard width limi s kern/108442 [request] UTF-8 support for console o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o bin/108191 sysinstall sysinstall(8): Disklabel editor help text (by F1 key) s ports/108153 portmgr ports extraction with package uid/gid and quota proble o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o bin/108118 [libc] files should not cache their EOF status o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o bin/108020 comsat(8) does not verify return values of getpwnam an o kern/107944 net [wi] [patch] Forget to unlock mutex-locks f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o bin/107830 sysinstall sysinstall(8): Change Units (Z) in fdisk doesn't work o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found s kern/107759 Unable to load a kernel after clean install o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 f kern/107446 gavin problems with usb and fw disks o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device o ports/107354 edwin net/icmpinfo: icmpinfo -vvv does not recocnize any ICM s www/107291 murray Keyboard accessibility sabotaged by www/share/sgml/hea p kern/107285 [panic] freeze and reboot by mounting CDROM volume twi f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent s sparc/107087 sparc64 [hang] system is hung during boot from CD o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n f kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o kern/106786 No reboot with FreeBSD and Mylex Acceleraid 352 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening s ports/106616 portmgr bsd.port.mk: Default file modes set incorrect for non- f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/106432 [ata] Record of disks (DVD-R) through the k3b program o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o bin/106355 [headers] macros in stdio.h non-portable (e.g., C++ :: o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/106275 [hifn] Hifn 7955 on Soekris Engineering vpn1401 return o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o docs/106135 doc [request] articles/vinum needs to be updated o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p p docs/105997 trhodes sys/kern/sys_pipe.c refer to tuning(7), but there is n o kern/105945 net Address can disappear from network interface s kern/105943 net Network stack may modify read-only mbuf chain copies o bin/105925 net problems with ifconfig(8) and vlan(4) [regression] o bin/105860 top(1) user ID misalignment in mixer username/uid mode o conf/105689 rc [ppp] [request] syslogd starts too late at boot o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105608 doc fdc(4) debugging description staled o kern/105579 [libalias] dcc resume over natd in 6.x o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o docs/105456 keramida [patch] overhaul of the security chapter (14) o kern/105368 [geli] geli passphrase prompt malfunctioning when moun f kern/105348 wireless [ath] ath device stopps TX o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o kern/105241 [nfs] problem with Linux NFS server up/down combined w o gnu/105221 grep(1): `grep -w -F ""` issue o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last s kern/104950 [ata] [request] no support for SATA controller Initio o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o ports/104910 nobutaka portsdb -Uu fails on building lsdb when EMACS_NAME is o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104809 cron(8): incorrect cron behavior with mday field = "*/ o kern/104751 net [netgraph] kernel panic, when getting info about my tr o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w o java/104744 glewis java/berkeley-db installation error p stand/104743 jilles [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/104675 [bktr] METEORSINPUT seemingly not setting input f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and o kern/104486 TI1131 Cardbus Bridge cannot detect card insertion on o bin/104432 jilles sh(1): remove undocumented "exp" and "let" builtins o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems a bin/104092 keramida [patch] iostat(8): missing blanks in iostat output o threa/103975 threads Implicit loading/unloading of libpthread.so may crash o www/103938 brd cvs-src archive does not rebuild since 12 Mar 2006 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o bin/103890 w(1) doesn't see sessreg'd entries in utmp o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra a bin/103873 csjp login(1) SEGFAULT on unsuccessful login o bin/103845 sha256(1): sha256 /dev/acd0 returns immediately o conf/103794 adding other login class to login.conf in case one is o bin/103762 ppp(8): some tun interfaces with a mtu of 1500 while i o ports/103751 nork databases/linux-oracle-instantclient-sqlplus: ldconfig o bin/103712 amd(8): Automounter is apparently not passing flags to o bin/103682 [patch] [request] nfsstat(1) should use %u instead of s kern/103578 [ums] ums does not recognize mouse buttons s www/103522 www Search interface oddity o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/103283 pf pfsync fails to sucessfully transfer some sessions o kern/103281 pf pfsync reports bulk update failures o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/103253 thompsa inconsistent behaviour in arp reply of a bridge o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/103191 net Unpredictable reboot o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/103022 cperciva [headers] /usr/include/crypto/rijndael.h is wrong o ports/102946 secteam [patch] ports-mgmt/portaudit o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o bin/102515 [libc] fsck_ufs crashes if no console at all o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o bin/102498 sysinstall sysinstall(8): Cursor doesn't track sysinstall hilight o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? f kern/102252 acpi acpi thermal does not work on Abit AW8D (intel 975) o bin/102232 gad Defects in -O option to ps(1) o bin/102205 kdc(8): login failure: ssh + gssapi + dual stacks + pa o bin/102162 [patch] tftpd(8): Limit port range for tftpd f usb/102066 gavin [ukbd] usb keyboard and multimedia keys don't work o kern/102035 net [plip] plip networking disables parallel port printing o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o bin/101921 [request] security.bsd.see_other_uids for further prog o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker a bin/101762 sysinstall sysinstall(8) does not obey /usr/ports symlink while i o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o docs/101271 remko serial console documentation implies kernel rebuild re o kern/101226 jfv [em] Access to IPMI module is lost when the em driver f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o kern/100974 rwatson [panic] sorele. FreeBSD 6.1 RELEASE i386 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup s bin/100805 yar WITHOUT_INET6 is ignored by many src/ components o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/100709 net [libc] getaddrinfo(3) should return TTL info o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o conf/100616 [patch] syslog.conf: lines after exclamation point ign o kern/100519 net [netisr] suggestion to fix suboptimal network polling a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100442 obrien ftpd(8): lukemftpd core dumps on anonymous login o bin/100436 kensmith sysinstall(8): live CD fixit mount does not find mount o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam p docs/100242 trhodes sysctl(3) description of KERN_PROC is not correct anym o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o docs/100196 doc man login.conf does explain not "unlimited" s kern/100170 [request] Support login class in ldap directory o misc/100133 [boot] keyhit function in boot2.c that falls into an i o bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ s bin/99973 yar systat(1): systat -ifstat traffic counter overflow o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o bin/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o bin/99662 rpc.rquotad(8): quota information leak while rpc.rquot o misc/99643 request to remove src/tools/tools/portsinfo because it o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid f kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o docs/99506 doc FreeBSD Handbook addition: IPv6 Server Settings o kern/99485 Disk IO Causes multimedia/mplayer To Drop Frames o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar s kern/99421 [request] Option Globetrotter Fusion card not recogniz a docs/99356 ru man page of sendmsg(2) does not include EINVAL o conf/99328 [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o www/99305 bugmeister [request] send-pr.html is frustrating/broken o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l a www/99184 wosch Viewing HP-UX manpages with http://www.freebsd.org/cgi o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o docs/98974 doc Missing tunables in loader(8) manpage o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the s www/98798 gjb Our statistics page is out of date o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98597 net [inet6] Bug in FreeBSD 6.1 IPv6 link-local DAD procedu o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o bin/98468 newsyslog(8): Value over 99 in newsyslog.conf count fi o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled p misc/98383 yar [request] include the mt command in the rescue CD o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 s bin/98220 wpa_supplicant(8) operation does not match documentati o bin/98218 net wpa_supplicant(8) blacklist not working s kern/98162 adrian [request] AcerHK driver port needed for enabling WiFi o docs/98115 doc Missing parts after rendering handbook to RTF format o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to a kern/97921 rwatson [socket] close() socket deadlocks blocked threads o kern/97665 [sio] hang in sio driver o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/97505 [procfs] file entry of procfs points to "unknown" s bin/97498 fs [request] newfs(8) has no option to clear the first 12 o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97306 net [netgraph] NG_L2TP locks after connection with failed s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o usb/97175 usb [umass] [hang] USB cardreader hangs system o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97108 sysinstall sysinstall(8): write failure on transfer (wrote -1 byt o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o conf/97014 net [gif] gifconfig_gif? in rc.conf does not recognize IPv o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96538 multimedia [sound] emu10k1-driver inverts channels o usb/96457 usb [umass] [panic] fatback on umass = reboot o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync o docs/96207 doc Comments of a sockaddr_un structure could confuse one o kern/96171 [ata] burncd(8): (ATA driver) fails to write in vcd mo s usb/96120 usb [ums] [request] USB mouse not always detected o conf/96094 [gif] startup scripts do not configure gif interfaces p conf/96015 jilles uncommenting the msgs invocation in /etc/profile can f o gnu/95936 egrep(1) misparses multiline parenthetical grouping o bin/95698 philip [patch] moused(8): Software control of sysmouse o gnu/95691 GDB segfaults on my programme in both FreeBSD 6 and 5 s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o kern/95559 RELENG_6: write(2) fails with EPERM on TCP socket unde o kern/95532 [gif] if_gif has artificial limitations o kern/95519 net [ral] ral0 could not map mbuf o kern/95459 Rebooting the system while rebuilding RAID (Intel Matr o docs/95408 remko install over serial console does not work as documente o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95267 net packet drops periodically appear o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o usb/95037 usb [umass] USB disk not recognized on hot-plug. o bin/95002 [libc] hash db source code has a bug which prevents us o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o ports/94935 cy security/aide: propose an AIDE_CONF knob for make.conf o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o bin/94810 fs fsck(8) incorrectly reports 'file system marked clean' o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o kern/94733 fs [smbfs] smbfs may cause double unlock p stand/94729 gnn [libc] fcntl() throws undocumented ENOTTY o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o gnu/94695 bugmeister send-pr.el is missing from send-pr distribution o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/94632 geom [geom] Kernel output resets input while GELI asks for o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind s www/94423 danger [patch] XML'ified release todo list o kern/94393 [ar] PseudoRAID loses track of the master disk o usb/94384 usb [panic] kernel panic with usb2 hardware o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests s kern/94182 [altq] [request] altq support for vlan driver p bin/94181 ume portsnap(8) should remove the trailing dot from the se p bin/94180 ume portsnap(8) does not handle HTTP_PROXY_AUTH correctly o kern/94166 [boot] btx halted with a flashcard plugged s bin/94159 [request] ipsecctl ported from openbsd o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94051 login(1): IP network in login.access ignored unless DN o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o conf/93899 mount_smbfs can't load libiconv.so during boot up o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o www/93854 postmaster Cannot proceed to page after the first in mailing list o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o kern/93825 pf [pf] pf reply-to doesn't work o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d a kern/93790 cperciva cpufreq missing frequencies o i386/93787 gavin [hang] freebsd 6.0 hangs on atkbd0 on Proliant 1850r s o docs/93785 obrien The man page for ftpchroot(5)/ftpusers(5) contradicts o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/93771 [ar] [panic] atacontrol status ar1 causes panic o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may p kern/93685 jilles [pipe] select on pipe write fails from '0' end o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93629 GNU sort(1) tool dumps core within non-regular locale o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o kern/93381 reboot(8) works but 'reboot -n' hangs f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo p kern/93331 [kernel] [patch] broken asm in kernel o bin/93317 ld-elf.so doesn't translate unresolved weak symbol int o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o ports/93279 skv devel/cvsmonitor: not useable (/dev/mem: Permission de o bin/93275 sysinstall sysinstall(8): Failure to install after restarting ins o kern/93197 [libc] strptime(3) succeeds on formats it should fail o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o bin/92866 portmgr pkg_add(1) should return a different result code if pa o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92716 [hifn] [hang] hifn driver hangs after a short while wh o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o docs/92626 doc jail manpage should mention disabling some periodic sc f kern/92552 yongari A serious bug in most network drivers from 5.X to 6.X o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o kern/92518 [hptmv] Intense disk activity (large FS newfs and/or m o kern/92512 multimedia [sound] distorted mono output with emu10k1 s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o kern/92104 des [panic] kernel panic near readlink syscall o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o bin/91993 sam dhclient(8) option missing, script incompability o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg f usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o conf/91732 [patch] 800.loginfail: fix log message grep expression o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin o bin/91606 sha1(1): sha1 /dev is suspended o kern/91594 acpi [acpi] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/ o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work p www/91539 gjb FreeBSD web site renders very badly o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o bin/91536 burncd(8): burncd -t feature strangeness o docs/91506 doc ndis(4) man page should be more specific about support f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o ports/91393 trhodes misc/window changes console cursor shape to blink o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/91311 net [aue] aue interface hanging o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o kern/91134 fs [smbfs] [patch] Preserve access and modification time a conf/91106 versus [locale] date definitions in pl_PL locale are wrong f bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90656 sysinstall sysinstall(8): 6.0-RELEASE (i386) cannot be installed o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o bin/90524 reset(1) doesn't fully restore terminal state o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd s bin/90367 [request] libmap.conf needs exclusivity support o bin/90311 [patch] add "eject" to mt(1) o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o bin/90266 philip bsnmpd(1) returns bad data during a snmpwalk of the en o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 o bin/90093 geom fdisk(8) incapable of altering in-core geometry s kern/90086 net [hang] 5.4p8 on supermicro P8SCT hangs during boot if s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o bin/89959 brooks dhclient(8): dhcp: ip length 314 disagrees with bytes o usb/89954 usb [umass] [panic] USB Disk driver race condition? o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks a conf/89589 secteam virecover follows hardlinks, possibly exposing sensiti o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o docs/89492 attilio vfs doc: some VOP_*(9) manual pages are outdated with o ports/89441 hrs TeX support in FreeBSD is problematic. o bin/89403 fetch(1) doesn't honour authentication credentials whe o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr o kern/89166 [mouse] jumpy mouse movement s usb/89003 usb [request] LaCie Firewire drive not properly supported o conf/88913 rc [patch] wrapper support for rc.subr o bin/88826 randi sysinstall(8): sysinstall infinity wait for da0 o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( o kern/88555 fs [panic] ffs_blkfree: freeing free frag on AMD 64 a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o kern/88518 rodrigc cannot mount root rw at boot o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88450 andre SYN+ACK reports strange size of window o usb/88408 usb [axe] axe0 read PHY failed o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 fs [patch] newfs(8): introduce -A flag for newfs to enabl o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o kern/87859 fs [smbfs] System reboot while umount smbfs. o docs/87857 doc ifconfig(8) wireless options order matters o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup p bin/87726 dfr gssapi.h is not c++ aware s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo s bin/87529 [request] pw(8): "pw lock", "pw unlock" should support o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/87515 Splash screen fails to load on boot o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so f kern/87368 bde [msdosfs] fat32 is very slow f usb/87224 usb [usb] Cannot mount USB Zip750 o www/87119 hrs [patch] encode copyright and such symbolically o kern/87074 mlaier pf does not log dropped packets when max-* stateful tr o bin/87022 telnet(1) hang in ptcout o kern/87010 pjd Reading kernel memory & pagefault under non-root o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s s bin/86859 sysinstall sysinstall(8): Installer should ask about Linux earlie o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the a kern/86752 mlaier [pf] pf does not use default timeouts when reloading c o bin/86665 randi sysinstall(8): sysinstall binary upgrade clobbers name o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o kern/86619 emulation [linux] linux emulator interacts oddly with cp o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o bin/86485 eadler [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o bin/86454 sysinstall sysinstall(8): sysinstall terminates with signal 10 if o kern/86427 net [lor] Deadlock with FASTIPSEC and nat o bin/86405 more(1) segmentation fault o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur o usb/86298 usb [mouse] Known good USB mouse won't work with correct s o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o bin/86012 kpasswd(1) fails if one of the KDC are unreachable. o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci o gnu/85824 obrien gas crashes when assembling this file o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/85809 darrenr panic: mutex "ipf state entry" already initialized o kern/85780 net 'panic: bogus refcnt 0' in routing/ipv6 o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o bin/85712 uncompress(1) program emits bogus "overwrite?" prompt s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou f i386/85656 jhb [i386] [patch] expose more i386 specific CPU informati f i386/85655 jhb [i386] [patch] expose cpu info for i386 systems o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o bin/85494 fs fsck_ffs: unchecked use of cg_inosused macro etc. o bin/85445 net ifconfig(8): deprecated keyword to ifconfig inoperativ p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85123 [iir] Improper serialization in iir_ioctl() allows iir o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device o bin/85011 restore(8) on 5.4 will not read Solaris-sparc dumps, w o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o bin/78131 geom gbde(8) "destroy" not working. o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/78021 sem_open(3) doesn't mention fnctl.h include requiremen o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo a bin/77651 [patch] init(8) can lose shutdown related signals o kern/77341 net [ip6] problems with IPV6 implementation f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o bin/77261 login(1) doesn't chdir into a group-protected home dir s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/77156 FreeBSD does not redirect packets on proper interface. o bin/77089 natd(8) ignores -u with passive FTP o bin/77001 randi sysinstall(8): sysinstall binary upgrade clobbers /etc o kern/76972 64-bit integer overflow computing user cpu time in cal o bin/76756 des function pw_equal in pw_util.c does not test pw_passwd o bin/76736 dwmalone syslogd(8) pipelines losing messages o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi p bin/76697 simon newsyslog(8) keeps one more archive files than documen s threa/76694 threads fork cause hang in dup()/close() function in child (-l o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o bin/76590 adding -mapall in nfs exports requires reboot o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) o kern/76504 silby Keep-alives doesn't work on half-closed sockets. s conf/76491 Addition into /etc/security few new functions o kern/76398 [libc] stdio can lose data in the presence of signals f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 o bin/76362 [patch] sys directory link points to wrong location o conf/76226 Default local.9600 gettytab initially uses parity o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system o gnu/76169 [patch] Add PAM support to cvs pserver f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed o bin/76134 fetch(1) doesn't like 401 errors with -A o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o kern/75873 net Usability problem with non-RFC-compliant IP spoof prot o kern/75855 [libc] getpwent(3) functions on 5.3 with large passwor o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn s bin/75767 [libc] [request] "fdclose" function in libc o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o kern/75710 [cue] cue0 device configuration causes kernel panic f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) s kern/75407 net [an] an(4): no carrier after short time o bin/75378 login(1): login/wtmp/utmp not updating properly o bin/75362 mount_smbfs(8) No buffer space available o bin/75258 [patch] dd(1) has not async signal safe interrupt hand s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o bin/75177 philip Bug selecting psm operation level in moused(8) o kern/75157 Cannot print to /dev/lpt0 with HP Laserjet 1005 : Devi o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula o kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 gifs? s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74827 [fdc] Problem writing data to floppies a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o bin/74779 fs Background-fsck checks one filesystem twice and omits f usb/74771 usb [umass] [hang] mounting write-protected umass device a s kern/74708 [umapfs] [panic] UMAPFS kernel panic o gnu/74654 libsupc++.a lacks necessary functions o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 o conf/74610 Hostname resolution failure causes firewall rules to s s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma s kern/74352 NFSCLIENT and booting to an mfsroot via TFTP are mutua o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection s kern/74242 rwatson Write to fifo with no reader fails in 6.0 current o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect o conf/74004 [patch] add fam support to inetd.conf o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/73823 acpi [request] acpi / power-on by timer support o conf/73786 [patch] added WARNING in spanish to stable-supfile o conf/73677 rc [patch] add support for powernow states to power_profi s bin/73617 sysinstall sysinstall(8): fdisk editor unmarks active partition s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/73549 brd [request] fix mail list archive navigation difficulty o gnu/73512 gdb -> Abort trap (core dumped) s kern/73496 [request] A more flexible version of mkstemp() s kern/73492 [request] Reliable Temporary Files o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o bin/73422 portmap forks ad infinitum when the NIS domain name is s bin/73411 [request] ftpd(8) could set attributes to 0600 while u o bin/73410 sysinstall sysinstall(8): Sysinstall could not allocate disklabel o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o bin/73261 Suspending su(1) sometimes hangs o kern/73171 imp fwohci driver stating cardbus firewire card has incorr o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/72906 [twe] twe0 idefinite wait buffer o conf/72901 [patch]: dot.profile: prevent printing when doing an s o bin/72895 sysinstall sysinstall(8): Sysinstall generates invalid partition o bin/72875 des Some utilities used in debugging do not function prope o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o bin/72398 whatis(8): emulators/mtools man pages are too funky fo o bin/72355 Can't run strings(1) on a (disk) device, even if you w o conf/72277 [patch] update for /usr/share/skel o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/72210 darrenr ipnat problem with IP Fastforward enabled s ports/72202 simon portaudit warns about the CVS server vulnerability whi o bin/72173 csplit(1) ver 1.9 wrong behaviour with negative offset s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o conf/71994 [patch] dot.login: login shell may unnecessarily print s kern/71965 andre TCP MSS issue in combination with ipfw fwd o conf/71952 missing past participles in /usr/share/dict/words o bin/71928 Disk quota doesn't work with numeric login o kern/71833 multiple process disc access / injustice o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem o bin/71749 [patch] truss -f causes circular wait when traced proc o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71602 [patch] uninitialized "len" used instead of "slen" wit o kern/71532 Multiple SCSI-Busses are seen differently by BIOS, loa a kern/71474 net [route] route lookup does not skip interfaces marked d o kern/71469 net default route to internet magically disappears with mu o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: s bin/71290 des [patch] passwd(1) cannot change passwords other than N o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) o kern/71219 /proc/*/map dont tell file offset o gnu/71210 Update to GNU sdiff: add user-preference for merge key o kern/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o bin/70756 indent(1) mishandles code that is protected for c++ co f kern/70753 gavin [boot] Device for firewire hard disk not created in ti o conf/70715 [periodic] Lack of year in dates in auth.log can cause o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea o bin/70600 fs fsck(8) throws files away when it can't grow lost+foun o bin/70536 reboot(8) -dp tries to dump when powering off o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters o kern/70511 [libc] When fread(3)ing with buffering turned off, man o bin/70476 [patch] reboot(8) change, -p behavior default for halt o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k o bin/70336 telnetd(8) always exits with value 1 o bin/70335 inetd(8) inconsistent syslog behavior when max childre o i386/70330 Re-Open 33262? - gdb does not handle pending signals p o bin/70297 amd(8) request to make amd timeouts per-mount local o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o bin/70002 sysinstall sysinstall(8): fails to locate FTP dirs if the OS has o kern/69989 killing process that uses snp + unloading module + lis o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69942 sysinstall sysinstall(8): sysinstall changes /etc/rc.conf after i o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o bin/69723 sysinstall sysinstall(8): [request] allow to continue from packag o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi f bin/69362 mbr amd(8) does not properly detect the local network sett o ports/69309 ale mysql database backup script for periodic/daily o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge s i386/69218 simokawa [boot] failure: 4.10-BETA and later do not boot on Asu o bin/69164 gdb(1) amd64: coredump while debugging a core file. o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po a kern/68905 secteam [patch] core dumps are assigned wrong ownership o kern/68889 net [panic] m_copym, length > size of mbuf chain o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68727 gdb(1) coredumps after recent CURRENT upgrade o kern/68690 [libc] write(2) returns wrong value when EFAULT o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o conf/68108 [patch] Adding mac-address /conf selector to diskless o bin/68062 standalone repeat(1) command o bin/67943 find(1) fails when current directory is not readable b o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67723 restore(8) FreeBSD 5.x restore cannot handle other pla s kern/67580 [request] add hints for boot failures s kern/67545 [nfs] NFS Diskless Mount Option Suggestion o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o usb/67301 usb [uftdi] [panic] RTS and system panic o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/66677 mv(1) incorrectly copies somedir/.. to ./.. when it cr s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o docs/66505 trhodes escaping '~' and '$' characters in login.conf setenv o o stand/66357 standards make POSIX conformance problem ('sh -e' & '+' command- s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a s kern/66270 [hang] dump(8) causes machine freeze o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message a kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/66162 [gbde] gbde destroy error o bin/66103 ppp(8) macro HISADDR is not sticky in filters o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o bin/65774 randi sysinstall(8): cannot run repair disk when booted from o kern/65616 net IPSEC can't detunnel GRE packets after real ESP encryp o kern/65448 jhb _mtx_unlock_sleep() race condition if ADAPTIVE_MUTEXES f kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65299 vi(1) temp path contains double / o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on s kern/64588 [joy] [request] Extend joystick driver architecture to o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes o bin/63608 Add a -c option to time(1) to display csh output o www/63552 gabor Validation errors due to CAPs in attribute values o bin/63489 top(1) finger(1) segfault when using NIS groups to res o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o a bin/63197 [patch] tftp(1) Bus error, core dumped o docs/63084 des Several Man-pages reference non-existant pam.conf(5) a s bin/62965 portmgr pkg_add(1) -r fails if fetching multiple packages at a o kern/62890 ups proc pointer set by fork1 can be stale in fork,rfork,v f bin/62885 des pam_radius(8) doesn't maintain multiple state fields o bin/62766 systat(1) -vm does not work on diskless machines o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o bin/62711 kensmith sysinstall(8): installation: "Insert Next CD" Prompt i o bin/62702 sysinstall sysinstall(8): backup of /etc and /root during sysinst o conf/62417 luigi diskless op script failed o docs/62412 trhodes one of the diskless boot methods described in the Hand o bin/62367 sysinstall sysinstall(8): 5.2.1-RC installation problems a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o kern/62102 alc obreak update o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME o bin/61971 kinit(1) --renewable fails o bin/61890 sysinstall sysinstall(8): fdisk(8) uses incorrect calculations fo a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s kern/61677 Unable to open CDROM tray if boot_cdrom is in loader.c s kern/61622 Intel Pro/100 Intelligent Server Adapter unsupported N o docs/61605 doc [request] Improve documentation for i386 disk geometry o bin/61603 sysinstall sysinstall(8): wrong geometry guessed o kern/61503 fs [smbfs] mount_smbfs does not work as non-root s i386/61481 [patch] a mechanism to wire io-channel-check to userla p kern/61404 bz RFC1323 timestamps with HZ > 1000 o bin/61355 login(1) does not restore terminal ownership on exit o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o conf/61289 /etc/pccard_ether: please use ifn value on pccard scri s kern/61165 scsi [panic] kernel page fault after calling cam_send_ccb o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load o bin/60632 sysinstall sysinstall(8): UI bug in partition label screen in sys s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/60598 scsi wire down of scsi devices conflicts with config s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o docs/60529 ume resolver(5) man page is badly out of date o kern/60313 data destruction: lseek(2) misalignment silently ignor p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o kern/60174 debugging a kernel module in load/attach routines s kern/59912 mremap() implementation lacking o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans s bin/59638 des passwd(1) does not use PAM to change the password o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o docs/59477 doc Outdated Info Documents at http://docs.freebsd.org/inf o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o kern/58967 Kernel kills processes in spite of cputime parameter i o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o bin/58483 [patch] mount(8): allow type special or node relative o bin/58293 vi(1) replace with CR (ASCII 13) doesn't work o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement a stand/57911 fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) returns FNM_ o bin/57715 [patch] tcopy(1) enhancement a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets p bin/57630 lptcontrol(8) gives "device busy" if device turned off o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back f ports/57498 HEIMDAL_HOME should be defined in src or ports Makefil s bin/57407 [patch] Better NTP support for dhclient(8) and friends s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o kern/57350 [panic] using old monocrome printer port (IO_LPT3 / 0x o docs/57298 doc [patch] add using compact flash cards info to handbook o stand/57295 harti make's handling of MAKEFLAGS is not POSIX conform s bin/57255 usb [patch] usbd(8) and multi-function devices o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c o bin/57045 trpt(8) option -t was disabled on -current s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface s kern/56720 [libc] [request] UNICODE support in Resolver o kern/56664 bad file# in MTIO status buffer after MTEOD until MTRE o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56339 select(2) call (poll(2) too) hangs, yet call works per o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o bin/56249 obrien ftpd(8) has two bugs (motd, munged utmp) o kern/56245 [bktr] Distorted and choppy video with bktr-driver on a kern/56233 net IPsec tunnel (ESP) over IPv6: MTU computation is wrong o kern/56031 luigi [ipfw] ipfw hangs on every invocation o kern/56024 acpi ACPI suspend drains battery while in S3 s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s bin/55965 sshd(8) problems with HostBasedAuthentication and NSS o gnu/55936 bugmeister send-pr(1) does not set mail envelope from o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR s kern/55802 [request] Make kernel.GENERIC suitable for diskless us o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 f i386/55661 acpi ACPI suspend/resume problem on ARMADA M700 o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o i386/55603 [mly] unable to reboot when system runs from Mylex A35 o bin/55546 [patch] cdcontrol(1) play tr m:s.f interface is partia o bin/55539 [patch] Parse fstab(5) with spaces in path names o kern/55448 dbm(3): dbm_nextkey() misbehaves after dbm_store() in f misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi f bin/55349 mbr amd(8) mixes up symlinks in its virtual filesystem. o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o stand/54410 standards one-true-awk not POSIX compliant (no extended REs) o kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o conf/54170 [patch] error from weekly periodic script 330.catman o bin/54141 wrong behavour of cu(1) o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW s stand/53682 [feature request] [patch] add fuser(1) utility o docs/53596 doc Updates to mt(1) manual page o bin/53560 logging domain names in wtmp is retarded o bin/53520 su(1) to another user does not update utmp o kern/53506 [partial patch] support gzipped modules o bin/53475 cp(1) copies files in reverse order to destination o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is o bin/53288 edwin tail(1) will sometimes display more lines than it is t o docs/53271 doc bus_dma(9) fails to document alignment restrictions o bin/53131 randi sysinstall(8): "ALL" could not turn check BOXes ON at s bin/52826 portmgr [request] Adding Timestamps to pkg info upon pkg_add(1 s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o bin/52743 ppp(8) /etc/ppp/ppp.linkup instability issues o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52638 scsi [panic] SCSI U320 on SMP server won't run faster than o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 [request] [patch] New functionality for mail(1) o bin/52469 ppp(8) Multiple devices using UDP don't work. o misc/52256 embedded [picobsd] picobsd build script does not read in user/s s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o kern/51982 remko [sio] sio1: interrupt-level buffer overflows s usb/51958 usb [urio] [patch] update for urio driver o kern/51685 fs [hang] Unbounded inode allocation causes kernel to loc o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/51583 fs [nullfs] [patch] allow to work with devices and socket o docs/51480 doc Multiple undefined references in the FreeBSD manual pa s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee o bin/51137 [patch] config(8) should check if a scheduler is selec s www/51135 www Problems with the mailing-lists search interface p docs/51133 murray RSH environmental variable not described in rcmd(3) o kern/51009 [aue] [patch] buggy aue driver fixed. o bin/50949 mtree(8) doesn't honor the -P when checking/changing o s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge a kern/50687 jmg ioctl(.., CDIOCCAPABILITY, ...) always reports "Inappr p bin/50656 cp(1) - wrong error on copying of multiple files p bin/50569 jilles sh(1) doesn't handles ${HOME}/.profile correctly o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation f bin/50118 edwin calendar(1) dumps core if there is ./calendar/ o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename o bin/48989 sysinstall sysinstall(8): Sysinstall's partition editor gets con f kern/48976 gavin [modules] nwfs.ko oddity s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu s threa/48856 threads Setting SIGCHLD to SIG_IGN still leaves zombies under o kern/48741 darrenr ipnat corrupts packets on gre interface with rul o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files s bin/48341 sysinstall sysinstall(8): changes the active slice flag when it p o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48309 ppp(8) pppoe connections fail to establish if throughp s kern/48279 [bktr] Brooktre878 may cause freeze o conf/48195 /var/db/mounttab error on diskless boot o bin/48183 [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] Add documentation on the fixit disk o bin/47815 [patch] stty(1) -all should work. s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with o conf/47596 [periodic] daily security run complains if timezone ch o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit a kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals s conf/46913 darrenr ipf denied packets of security run output contains non o bin/46905 sysinstall sysinstall(8): FreeBSD 5.x cannot be installed from mu o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o bin/46758 [patch] moused(8) enhancements s conf/46746 No way to set link addresses through rc.conf o stand/46441 stefanf /bin/sh does not do parameter expansion in PS1, PS2, P o conf/46409 Certain periodic scripts check broken NFS mounts. o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o bin/46235 sysinstall sysinstall(8): NTP servers for Finland require updatin o bin/46163 gad lpc(8) problem. Only root can modify despite man page o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o stand/46119 standards Priority problems for SCHED_OTHER using pthreads o conf/46062 remko Remove skel from BSD.root.dist. s kern/46036 [RFE] select is unsuitable for implementing a periodic o bin/45990 dwmalone top(1) dumps core if specific errors in password file o kern/45896 dwmalone setnetgrent(3) should return error code o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45608 randi sysinstall(8): install should config all ether devices s kern/45568 gibbs [ahc] ahc(A19160) pci parity error o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o docs/45303 remko Bug in PDF DocBook rendering o conf/45222 [patch] daily rejected mail hosts report too long o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o bin/44915 randi sysinstall(8): 'choose installation media' choose CD-R o bin/44894 markm telnet(1): as a local non-root user and remote it's po o kern/44587 scsi dev/dpt/dpt.h is missing defines required for DPT_HAND o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o docs/44519 obrien ftpd.conf(5) contains references to ftpd(8) when it is s bin/44518 yar ftpd(8) does not show OPIE OTP challenge o kern/44372 roberto some kernel options prevent NTP clock synchronization o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar o conf/44286 roberto /etc/defaults/rc.conf uses the obsolete ntpdate o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o bin/44212 [request] Unify 'recursive' options -r and -R o kern/44202 [rp] [patch] -stable rp driver does not work with mult o www/44181 re www "Release Information" organization o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start s bin/44122 ppp(8) tun0 gets a second ip adress after a disconnect o docs/44034 trhodes Multiple sysctl variables are not documented o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43592 mktime(3) rejects dates at the start of daylight savin o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements s bin/43497 mount(8): mount -t nfs -> crunchgen incompatible o docs/43470 blackend solid-state article out of date (x109). o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43368 portmgr pkg_create(1) fails if target directory does not exist o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42658 markm recompile telnetd(8) and log NULL ip in /var/wtmp o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o bin/42162 sysinstall sysinstall(8): after restart, installation crashes, md o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o kern/42089 ntp_gettime returns time in wrong scale o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o bin/42022 randi sysinstall(8): non-interactive mode prompts when only o bin/42018 portmgr pkg_info(1) with PKG_PATH searches through tarred pkgs s bin/42004 [quotas] quota is still IPv4 only, and not INET indepe o bin/41949 sysinstall sysinstall(8): sysinstall sorts /etc/rc.conf during ne a bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o bin/41850 sysinstall sysinstall(8): sysinstall fails to create root filesys o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login s bin/41647 net ifconfig(8) doesn't accept lladdr along with inet addr o kern/41632 luigi bridging when one interface has no carrier a bin/41583 [patch] mtree(8) assorted mtree bugs a stand/41576 standards ln(1): replacing old dir-symlinks o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o bin/41526 mount(8) symlinked mount points get mounted more than o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41297 mp tcsh(1)/csh(1) backquote/braces expansion bug o bin/41271 [patch] non-suid crontab(1) o bin/41213 top(1) blocks if NIS-related entries in passwd(5) are o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o docs/41089 doc pax(1) -B option does not mention interaction with -z o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o conf/40777 [patch] disktab does not support 2.88MB floppies o bin/40597 [patch] add fdisk(8) ability of showing extended parti o bin/40572 vipw(8) prints silly message if $EDITOR fails o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o bin/40260 sysinstall sysinstall(8): hang when detecting devices (No CD/DVD o bin/40215 [nis] NIS host search not terminate o gnu/40057 bugmeister send-pr -a flag does not work with -f s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di s kern/39937 net ipstealth issue o bin/39849 restore(8) fails to overwrite files with schg flag set o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR s conf/39580 sysinstall sysinstall(8): [request] more secure mount options o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o bin/39439 tcopy(1) will not duplicate tapes with block size larg o kern/39388 scsi ncr/sym drivers fail with 53c810 and more than 256MB m o stand/39256 standards snprintf/vsnprintf aren't POSIX-conformant for strings o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix o bin/38940 [request] an option to *stat to allow supressing of he o misc/38937 delay between tracks in digital audio dumps from CD wi o bin/38854 sysinstall sysinstall(8): resetting during setup causes the targe o kern/38749 kientzle Diskless booting fails with some DHCP servers (no root s kern/38730 philip Memorex scrollpro mouse is not fully functional a bin/38727 [patch] mptable(1) should complain about garbage argum o kern/38626 luigi dummynet/traffic shaper: RED: max_th and min_th are li o bin/38610 randi sysinstall(8): should be able to mount ISO images on D s bin/38609 sysinstall sysinstall(8): [request] sysinstall should know the si s ports/38593 portmgr [request] Third level ports o docs/38556 doc EPS file of beastie, as addition to existing examples a kern/38554 net [patch] changing interface ipaddress doesn't seem to w o bin/38478 sysinstall sysinstall(8): In Choose Distributions screen, it's di s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o bin/38057 sysinstall sysinstall(8): "install" document doesn't display corr o bin/38056 sysinstall sysinstall(8): User (creation)'s "Member groups" item o bin/38055 sysinstall sysinstall(8): Groups (creation) item should be before o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o docs/37719 kensmith [request] Detail VOP_ naming in a relevant man-page o bin/37710 sysinstall sysinstall(8): LAN interface in wrong state after atte o bin/37672 pw(8) prints warnings after successful NIS map updates o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" o bin/37083 [patch] [request] small improvement to talk(1): add cl o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36911 [ata] ATA cannot be disabled with hints or through BIO o kern/36902 [libc] [patch] proposed new format code %N for strftim s bin/36786 make ps(1) use 24-hour time by default s bin/36740 make ps(1) obey locale (particularly for times) o docs/36724 darrenr ipnat(5) manpage grammar is incomplete and inconsisten o kern/36626 login_cap(3) incorrectly claims that all resources fre o kern/36566 fs [smbfs] System reboot with dead smb mount and umount o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect f docs/36432 gabor Proposal for doc/share/mk: make folded books using psu o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36385 luigi crunchgen(1) does not handle Makefiles with includes p o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce a bin/36110 dmesg(8) output corrupt if /dev/console is busy o bin/35886 [patch] pax(1) enhancement: custom time format for lis s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f o bin/35769 w(1) does not correctly interpret X sessions s docs/35678 doc docproj Makefiles for web are broken for paths with sp o kern/35669 [nfs] NFSROOT breaks without a gateway o docs/35652 trhodes bsd.README seriously obsolete o bin/35568 make(1) declares target out of date, but $? is empty o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35429 select(2)/poll(2)/kevent(2) can't/don't notice lost co o bin/35400 randi sysinstall(8): sysinstall could improve manipulation o o kern/35399 poll(2) botches revents on dropped socket connections o kern/35396 poll(2) doesn't set POLLERR for failed connect(2) atte o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/35234 scsi World access to /dev/pass? (for scanner) requires acce o bin/35214 obrien dump(8) program hangs while exiting o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34811 jilles sh(1) "jobs" is not pipeable o bin/34788 dwmalone dmesg(8) issues with console output o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md s threa/34536 threads accept() blocks other threads o kern/34470 bde Modem gets sio1 interrupt-level buffer overflows' o bin/34412 [patch] tftp(1) will still try and receive traffic eve o bin/34309 gad lpd(8) does not garantie that controlfiles begin with p bin/34270 man(1) -k could be used to execute any command. o docs/34239 trhodes tunefs(8) man page doesn't describe arguments. s bin/34171 yar ftpd(8) indiscrete about unprivileged user accounts o gnu/34128 sdiff(1) "e" doesn't work with some editors o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o kern/33834 strptime(3) is misleading o bin/33809 [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) a bin/33661 PAP AuthAck/AuthNak parsing problem in pppd(8) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/33182 gdb(1) seg faults when given handle SIGALRM nopass for o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/32667 systat(1) waste too much time reading input o bin/32501 maxim quot(8) is stupid regarding the filesystem option a bin/32411 shutdown(8) absolute-time handling could be more usefu a bin/32375 sysinstall sysinstall(8): sysinstall doesn't respect User generat s conf/32108 Proposed Firewall (IPv4) configuration script o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o bin/31985 New /etc/remote flag for tip(1) to append LF to CR o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31940 net ip queue length too short for >500kpps o bin/31933 pw(8) can interpret numeric name as userid during user o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31890 [syscons] [patch] new syscons font o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind s kern/31686 andre Problem with the timestamp option when flag equals zer o kern/31647 net [libc] socket calls can return undocumented EINVAL o bin/31588 change request to allow mount(8) to set the MNT_IGNORE o bin/31387 mailwrapper(8): When getuid(2)=0, mailwrapper should d o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o bin/31363 sysinstall sysinstall(8): "partition editor" silently corrects pa o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o bin/31034 dwmalone regularly add original address logging for tcpwrappers o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30863 bootpd(8) dovend.c Win95 compatibility improvement and o bin/30854 bootpd(8) bootpgw change - skip ARP modifications by o a bin/30737 sysinstall sysinstall(8): sysinstall leaks file descriptors on re o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o conf/30590 /etc/hosts.equiv and ~/.rhosts interaction violates PO o bin/30542 [patch] add -q option to shut up killall(1) o bin/30517 randi sysinstall(8): using sysinstall with install.cfg has n s threa/30464 threads [patch] pthread mutex attributes -- pshared o bin/30424 Generalization of vipw(8) to lock pwdb while being edi a bin/30360 vmstat(8) returns impossible data o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt p bin/29893 kensmith sysinstall(8): suggestions for 4.4 sysinstall o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/29516 markm telnet(1) from an non FreeBSD host still uses /etc/tty s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/29375 sysinstall sysinstall(8): disk editor gets confused by slices tha p bin/29363 simon [patch] newsyslog(8) can support time as extension f kern/29355 [kernel] [patch] add lchflags support a bin/29253 natd(8) forgets about udp connections o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol s i386/28975 [rp] RocketPort problems o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28424 remko mtree(8) fails to report directory hierarchy mismatch o bin/28364 bapt [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u a bin/28223 remko su(1) doesn't look at login.conf all the time o bin/27972 losing information with talk(1) a conf/27896 Error in /etc/exports invalidates entire line, not jus o bin/27829 pax(1) uid/gid cache is read-only o bin/27687 fs fsck(8) wrapper is not properly passing options to fsc o docs/27605 doc [patch] Cross-document references () o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c o kern/27403 [lpt] lpt driver doesn't handle flags anymore o bin/27319 obrien df(1) displays amd(4) pid processes o bin/27306 [patch] hw watchpoints work unreliable under gdb(1) o bin/27281 vidcontrol(1) does not have error codes o bin/27258 getty(8) didn't check if if= isn't empty o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o bin/27216 randi sysinstall(8): can not get to shell prompt from serial o kern/27008 kernel function sysbeep(xxx, 0) does produce sound o bin/26803 fetch(1) Fix fetch to allow FTP puts in '-o' & allow ' o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain s gnu/26362 "cvs server" doesn't honour the global --allow-root o docs/26286 doc *printf(3) etc should gain format string warnings o kern/26261 [sio] silo overflow problem in sio driver o bin/26005 vis(1)/unvis(1) MIME quoted-printable encoding added t a docs/26003 standards getgroups(2) lists NGROUPS_MAX but not syslimits.h f kern/25986 silby Socket would hang at LAST_ACK forever. o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o bin/25736 ac(8) -d option probrem with overdays logon o kern/25733 [intpm] mismatch between error reporting in smbus fram s bin/25598 yar patch to let ftpd(8) output message when changing dire s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password o kern/25445 kernel statistics are displayed in wrong types and wra o bin/25218 mailwrapper(8) invokes sendmail when resources are tig o bin/25015 cp(1) options -i and -f do not work as documented f kern/24959 net [patch] proper TCP_NOPUSH/TCP_CORK compatibility o docs/24786 doc missing FILES descriptions in sa(4) o bin/24757 yar ftpd(8) not RFC compliant f kern/24629 harti ng_socket failes to declare connected data sockets as s stand/24590 standards timezone function not compatible witn Single Unix Spec o kern/24528 Bad tracking of Modem status o bin/24485 [patch] to make cron(8) handle clock jumps o bin/24461 [nis] Being able to increase the YP timeout without re f bin/24066 gdb(1) can't detach from programs linked with libc_r a bin/23912 vi(1) underflow of cnt in vs_paint() by O_NUMBER_LENGT o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23402 sysinstall sysinstall(8): upgrade ought to check partition sizes a bin/23254 bapt [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network o misc/22914 [bootinst] bootinst messages are not updated o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted o bin/22182 vi(1) options noprint/print/octal broken s bin/22034 [request] nfsstat(1) lacks useful features found in So o kern/21998 net [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o i386/21672 [i386] AMD Duron Rev. A0 reports incorrect L2 cache si o stand/21519 standards sys/dir.h should be deprecated some more s kern/21463 eadler [linux] Linux compatability mode should not allow setu o bin/21008 gad lpr(1) Fix for lpr's handling of lots of jobs in a que o bin/20944 natd(8) enhancements, default config file and manpage o kern/20529 [ti] gigabit cards fail to link s bin/20521 rmt(8) /etc/rmt several problems o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o bin/20391 jhb sysinstall(8): sysinstall should check debug.boothowto s kern/20333 des [libpam] ftp login fails on unix password when s/key a o bin/20282 randi sysinstall(8): sysinstall does not recover some /etc f o bin/20054 yar ftpd(8) rotating _PATH_FTPDSTATFILE losts xferlog s docs/20028 doc ASCII docs should reflect tags in the sourc o gnu/19882 obrien ld does not detect all undefined symbols! a kern/19782 mkisofs 1.12.1 (i386-unknown-freebsd4.0) doesn't prese o bin/19772 [unionfs] df(1) output wrong for union-mounts o kern/19756 [patch] Inability to use linux extended partition (typ o bin/19683 mount(8) displays incorrect mount point on failed moun s conf/19573 des Dot Files for Optional Shells s kern/19535 [procfs] [patch] procfs_rlimit tidyup s kern/19402 Signals 127 and 128 cannot be detected in wait4() inte o kern/18909 dwmalone select(2) timeout limited to 100000000 seconds o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t s kern/18704 GLOB_ERR not handled correctly by glob() s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad o bin/18498 jhb allowing ELF_VERBOSE in /etc/make.conf o bin/18326 dwmalone no /usr/libdata/lint/llib-lc.ln o bin/18319 dump(8) fails with "cannot reopen disk: interrupted sy o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o conf/17993 obrien improving on the default /etc/amd.map s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer s kern/17109 darrenr fastroute crashes for lo0 udp s kern/17108 [nfs] SecureRPC not supported in mount_nfs command o bin/16948 sysinstall sysinstall(8): sysinstall/disklabel: bad partition tab o kern/16765 bde Add support for mark/space parity o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16422 [patch] [request] newfs(8) always make root's / direct o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c s kern/15478 incorrect utmp/wtmp records update upon connection bei s kern/15436 [syscons] syscons extension: "propellers" o bin/15168 [patch] Adding tracklist support to fdformat(1) a kern/15095 silby TCP's advertised window is not scaled immediately upon o bin/15038 sysinstall sysinstall(8): easy to not notice that selection lists p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k s bin/14925 standards getsubopt isn't poisonous enough a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/14562 ioctl() codes should be provided for ejecting all remo o bin/14318 randi sysinstall(8): sysinstall upon install has some counte s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai o bin/13882 mount(8) mount -p is missing the quota options p bin/13869 man(1) program saves multiple cached copies of the sam s conf/13775 multi-user boot may hang in NIS environment o bin/13397 vi(1) nvi mishandles tags files under certain conditio s kern/13326 [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c o bin/13108 authunix_create_default includes egid twice o bin/13042 make(1) doesn't handle wildcards in subdirectory paths o bin/12801 nvi infinite recursion with options "leftright" and "c o bin/12545 peter kldload(8) should be more sensitive to errors in *_mod s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 s bin/11114 harti make(1) does not work as documented with .POSIX: targe a kern/11024 mtm [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9619 rodrigc Restarting mountd kills existing mounts o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o kern/8498 silby Race condition between unp_gc() and accept(). o bin/7973 gad lpd(8) Bad control file owner in case of remote printi s kern/7556 sl_compress_init() will fail if called anything else t o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/7232 sysinstall sysinstall(8): suggestion for FreeBSD installation dia s bin/6785 place for all the default dump flags o kern/5877 net [socket] sb_cc counts control data as well as data dat s bin/5712 /bin/chio code cleaup and option added o bin/5609 gad lpd(8) cannot send long files to HP's JetDirect interf s bin/5296 slattach fails creating pidfile with ioctl(TIOCSCTTY): o bin/5031 gad lpr(1) does not remove original file if -s is used o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry o bin/4116 [patch] [kerberos] Kerberized login as .root fai s bin/3170 vi(1): vi freaks and dump core if user doesn't exist s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2137 [vm] systat(1) total vm statistics are bad s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 6215 problems total. From adrian at FreeBSD.org Mon Feb 20 13:19:59 2012 From: adrian at FreeBSD.org (adrian@FreeBSD.org) Date: Mon Feb 20 13:20:10 2012 Subject: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) Message-ID: <201202201319.q1KDJwLq019537@freefall.freebsd.org> Old Synopsis: No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) New Synopsis: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Mon Feb 20 13:19:43 UTC 2012 Responsible-Changed-Why: Reassign http://www.freebsd.org/cgi/query-pr.cgi?pr=165212 From jhs at berklix.com Mon Feb 20 13:40:08 2012 From: jhs at berklix.com (Julian H. Stacey) Date: Mon Feb 20 13:40:15 2012 Subject: bin/165321: add see also swapinfo to man df Message-ID: <201202201311.q1KDBfUt007100@fire.js.berklix.net> >Number: 165321 >Category: bin >Synopsis: add see also swapinfo to man df >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 Feb 20 13:40:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Julian H. Stacey >Release: FreeBSD 8.2-RELEASE amd64 >Organization: http://berklix.com BSD Linux Unix Consultancy, Munich/Muenchen. >Environment: System: FreeBSD fire.js.berklix.net 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Jun 2 23:10:13 CEST 2011 jhs@blak.js.berklix.net:/ad6s4/release/8.2-RELEASE/src/sys/amd64/compile/FIRE64.small amd64 >Description: In response to: > From: Jim Pazarena > Date: Fri, 17 Feb 2012 15:54:18 -0800 (Sat 00:54 CET) > To: FreeBSD Mailing List > is there a command which can show the size of the hard drive swap? > A "df" seems to avoid the swap area. >How-To-Repeat: >Fix: *** 8.2-RELEASE/src/bin/df/df.1 Mon Feb 20 13:57:00 2012 --- new-generic/src/bin/df/df.1 Mon Feb 20 13:57:52 2012 *************** *** 158,163 **** --- 158,165 ---- .Sh SEE ALSO .Xr lsvfs 1 , .Xr quota 1 , + .Xr swapinfo 1 , + .Xr pstat 1 , .Xr fstatfs 2 , .Xr getfsstat 2 , .Xr statfs 2 , >Release-Note: >Audit-Trail: >Unformatted: From eadler at FreeBSD.org Mon Feb 20 13:45:59 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Mon Feb 20 13:46:04 2012 Subject: bin/165321: add see also swapinfo to man df Message-ID: <201202201345.q1KDjwp9047822@freefall.freebsd.org> Synopsis: add see also swapinfo to man df Responsible-Changed-From-To: freebsd-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Mon Feb 20 13:45:58 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165321 From 000.fbsd at quip.cz Mon Feb 20 17:40:07 2012 From: 000.fbsd at quip.cz (Miroslav Lachman) Date: Mon Feb 20 17:40:14 2012 Subject: conf/165331: periodic security run output gives false positives after 1 year Message-ID: <201202201733.q1KHX9t1041794@red.freebsd.org> >Number: 165331 >Category: conf >Synopsis: periodic security run output gives false positives after 1 year >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 Feb 20 17:40:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Miroslav Lachman >Release: 7.4-RELEASE, 8.2-RELEASE >Organization: codeLab.cz >Environment: 7.4-RELEASE FreeBSD 7.4-RELEASE #0: Thu Feb 17 03:51:56 UTC 2011 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: As discussed on links at the bottom, there is a problem with parsing log files for security issues. Log files does not have year in timestamp and if there are little activity, the log files are not rotated enough. This can cause false positive alerts in periodic e-mails with entries exactly 1 year old (or 2, or 3, or N... years old). For example in my case /var/log/auth.log is 62KB (838 lines) and contains entries for almost 2 years. I get following alert in security run: Feb 15 22:36:03 XXX sshd[89758]: Invalid user t1na from xxx.xxx.xxx.xxx Feb 15 22:50:56 XXX sshd[89850]: Invalid user medina from xxx.xxx.xxx.xxx Feb 15 22:50:57 XXX sshd[89852]: Invalid user student from xxx.xxx.xxx.xxx Feb 15 22:50:58 XXX sshd[89854]: Invalid user student from xxx.xxx.xxx.xxx But looking in to auth.log I found zero entries from yesterday - Feb 15 entries were logged 1 year ago. http://lists.freebsd.org/pipermail/freebsd-security/2012-February/006175.html http://lists.freebsd.org/pipermail/freebsd-security/2012-February/006198.html >How-To-Repeat: Install any currently available FreeBSD RELEASE on some test machine with low user activity - logins / logouts - (only few entries in auth.log per year). Make some bogus login atempts with nonexistent user names. They will appear in periodic security output next day and then *wait 1 year* - They will appear in periodic security output again. It is false positive. >Fix: 1) add support for year field in syslog dates (RFC 5424 / timestamp format in ISO 8601 form) Changes made to NetBSD syslog is available for porting to FreeBSD http://lists.freebsd.org/pipermail/freebsd-security/2012-February/006182.html https://github.com/mschuett/nbsd-syslog 2) change the default newsyslog.conf settings to make sure there are not any entry for more than 364 days (including compressed archives, because periodic scripts read them all) For examplem, the current default newsyslog.conf entry for auth.log /var/log/auth.log 600 7 500 * JC must be changed to make more than 7 roll overs per year (ignoring size) Maybe change it to "rotate if size is greater than 500 or once per month" >Release-Note: >Audit-Trail: >Unformatted: From jilles at FreeBSD.org Mon Feb 20 20:51:45 2012 From: jilles at FreeBSD.org (jilles@FreeBSD.org) Date: Mon Feb 20 20:51:51 2012 Subject: bin/165164: [PATCH][bin] xargs(1) incorrect pointer passed to waitchildren function Message-ID: <201202202051.q1KKpih8051714@freefall.freebsd.org> Synopsis: [PATCH][bin] xargs(1) incorrect pointer passed to waitchildren function Responsible-Changed-From-To: freebsd-bugs->jilles Responsible-Changed-By: jilles Responsible-Changed-When: Mon Feb 20 20:47:47 UTC 2012 Responsible-Changed-Why: Take. This looks useful for standards/165155. I think the "race" between vfork/_exit/waitpid(WNOHANG) will always work as expected, however, because of the semantics of vfork and how the FreeBSD kernel signals _exit->vfork and _exit->waitpid at the same time during exit1. http://www.freebsd.org/cgi/query-pr.cgi?pr=165164 From matthewstory at gmail.com Mon Feb 20 23:41:48 2012 From: matthewstory at gmail.com (Matthew Story) Date: Mon Feb 20 23:41:55 2012 Subject: bin/165164: [PATCH][bin] xargs(1) incorrect pointer passed to waitchildren function In-Reply-To: <201202202051.q1KKpih8051714@freefall.freebsd.org> References: <201202202051.q1KKpih8051714@freefall.freebsd.org> Message-ID: On Mon, Feb 20, 2012 at 3:51 PM, wrote: > Synopsis: [PATCH][bin] xargs(1) incorrect pointer passed to waitchildren > function > > Responsible-Changed-From-To: freebsd-bugs->jilles > Responsible-Changed-By: jilles > Responsible-Changed-When: Mon Feb 20 20:47:47 UTC 2012 > Responsible-Changed-Why: > Take. > > This looks useful for standards/165155. I think the "race" between > vfork/_exit/waitpid(WNOHANG) will always work as expected, however, > because of the semantics of vfork and how the FreeBSD kernel signals > _exit->vfork and _exit->waitpid at the same time during exit1. > Will read the more kernel source here, but anecdotally I was never able to reproduce the "race" without forcing the issue (via standards/165155, or alteration of the source). This kernel behavior would go a long way towards explaining that. Thanks Jilles. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=165164 > _______________________________________________ > freebsd-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-bugs > To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" > -- regards, matt From alexey at kouznetsov.com Tue Feb 21 14:50:23 2012 From: alexey at kouznetsov.com (Alexey) Date: Tue Feb 21 14:50:42 2012 Subject: misc/165363: 9-stable buildworld broken with NO_DYNAMICROOT defined Message-ID: <201202211440.q1LEetER015701@red.freebsd.org> >Number: 165363 >Category: misc >Synopsis: 9-stable buildworld broken with NO_DYNAMICROOT defined >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 21 14:50:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Alexey >Release: 9.0-STABLE >Organization: >Environment: 9.0-STABLE #0: Mon Feb 20 19:28:52 MSK 2012 >Description: We have NO_DYNAMICROOT=true defined in make.conf (Usaly we do not use src.conf, but I tried to create file and add there WITHOUT_DYNAMICROOT=yes. Result was the same) make buildworld stops after while, with error : --- ..... ===> sbin/atm (all) ===> sbin/atm/atmconfig (all) cc -O2 -pipe -I/usr/obj/usr/src/sbin/atm/atmconfig -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/sbin/atm/atmconfig/main.c cc -O2 -pipe -I/usr/obj/usr/src/sbin/atm/atmconfig -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/sbin/atm/atmconfig/diag.c cc -O2 -pipe -I/usr/obj/usr/src/sbin/atm/atmconfig -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/sbin/atm/atmconfig/natm.c cc -O2 -pipe -I/usr/obj/usr/src/sbin/atm/atmconfig -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/sbin/atm/atmconfig/atmconfig_device.c cc -O2 -pipe -I/usr/obj/usr/src/sbin/atm/atmconfig -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -static -o atmconfig main.o diag.o natm.o atmconfig_device.o -lbsnmp /usr/obj/usr/src/tmp/usr/lib/libbsnmp.a(snmpclient.o): In function `snmp_open': snmpclient.c:(.text+0x2138): warning: warning: mktemp() possibly used unsafely; consider using mkstemp() /usr/obj/usr/src/tmp/usr/lib/libbsnmp.a(snmpcrypto.o): In function `snmp_digest_init': snmpcrypto.c:(.text+0x31): undefined reference to `EVP_md5' snmpcrypto.c:(.text+0x4a): undefined reference to `EVP_DigestInit' snmpcrypto.c:(.text+0x66): undefined reference to `EVP_sha1' /usr/obj/usr/src/tmp/usr/lib/libbsnmp.a(snmpcrypto.o): In function `snmp_calc_keychange': snmpcrypto.c:(.text+0x130): undefined reference to `EVP_DigestUpdate' snmpcrypto.c:(.text+0x13d): undefined reference to `EVP_MD_CTX_cleanup' snmpcrypto.c:(.text+0x16e): undefined reference to `EVP_DigestFinal' snmpcrypto.c:(.text+0x17b): undefined reference to `EVP_MD_CTX_cleanup' /usr/obj/usr/src/tmp/usr/lib/libbsnmp.a(snmpcrypto.o): In function `snmp_get_local_keys': snmpcrypto.c:(.text+0x2ae): undefined reference to `EVP_DigestUpdate' snmpcrypto.c:(.text+0x2be): undefined reference to `EVP_MD_CTX_cleanup' snmpcrypto.c:(.text+0x2fa): undefined reference to `EVP_DigestFinal' snmpcrypto.c:(.text+0x30a): undefined reference to `EVP_MD_CTX_cleanup' /usr/obj/usr/src/tmp/usr/lib/libbsnmp.a(snmpcrypto.o): In function `snmp_pdu_calc_digest': snmpcrypto.c:(.text+0x487): undefined reference to `EVP_DigestUpdate' snmpcrypto.c:(.text+0x49a): undefined reference to `EVP_MD_CTX_cleanup' snmpcrypto.c:(.text+0x4d1): undefined reference to `EVP_DigestUpdate' snmpcrypto.c:(.text+0x4f5): undefined reference to `EVP_DigestFinal' snmpcrypto.c:(.text+0x512): undefined reference to `EVP_DigestInit' snmpcrypto.c:(.text+0x535): undefined reference to `EVP_DigestUpdate' snmpcrypto.c:(.text+0x55a): undefined reference to `EVP_DigestUpdate' snmpcrypto.c:(.text+0x579): undefined reference to `EVP_DigestFinal' snmpcrypto.c:(.text+0x5ac): undefined reference to `EVP_MD_CTX_cleanup' snmpcrypto.c:(.text+0x5db): undefined reference to `EVP_MD_CTX_cleanup' /usr/obj/usr/src/tmp/usr/lib/libbsnmp.a(snmpcrypto.o): In function `snmp_passwd_to_keys': snmpcrypto.c:(.text+0x6b0): undefined reference to `EVP_DigestUpdate' snmpcrypto.c:(.text+0x6d9): undefined reference to `EVP_DigestFinal' snmpcrypto.c:(.text+0x6e9): undefined reference to `EVP_MD_CTX_cleanup' snmpcrypto.c:(.text+0x708): undefined reference to `EVP_MD_CTX_cleanup' /usr/obj/usr/src/tmp/usr/lib/libbsnmp.a(snmpcrypto.o): In function `snmp_pdu_cipher_init': snmpcrypto.c:(.text+0x755): undefined reference to `EVP_aes_128_cfb128' snmpcrypto.c:(.text+0x7a5): undefined reference to `EVP_des_cbc' /usr/obj/usr/src/tmp/usr/lib/libbsnmp.a(snmpcrypto.o): In function `snmp_pdu_decrypt': snmpcrypto.c:(.text+0x865): undefined reference to `EVP_DecryptInit' snmpcrypto.c:(.text+0x87a): undefined reference to `EVP_CIPHER_CTX_set_padding' snmpcrypto.c:(.text+0x8c6): undefined reference to `EVP_DecryptUpdate' snmpcrypto.c:(.text+0x8d3): undefined reference to `EVP_CIPHER_CTX_cleanup' snmpcrypto.c:(.text+0x8f6): undefined reference to `EVP_DecryptFinal' snmpcrypto.c:(.text+0x903): undefined reference to `EVP_CIPHER_CTX_cleanup' /usr/obj/usr/src/tmp/usr/lib/libbsnmp.a(snmpcrypto.o): In function `snmp_pdu_encrypt': snmpcrypto.c:(.text+0x9a6): undefined reference to `EVP_EncryptInit' snmpcrypto.c:(.text+0x9da): undefined reference to `EVP_EncryptUpdate' snmpcrypto.c:(.text+0x9e7): undefined reference to `EVP_CIPHER_CTX_cleanup' snmpcrypto.c:(.text+0xa0d): undefined reference to `EVP_EncryptFinal' snmpcrypto.c:(.text+0xa1a): undefined reference to `EVP_CIPHER_CTX_cleanup' *** Error code 1 Stop in /usr/src/sbin/atm/atmconfig. *** Error code 1 Stop in /usr/src/sbin/atm. *** Error code 1 Stop in /usr/src/sbin. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. --- I tried to build world under 8.3-pre first, then I built system w/o NO_DYNAMICROOT (system build success after I comment out this option), make installworld/kernel and tried to build it again under 9.0-STAB (I returned option to make.conf, then tried to move it to src.conf) and got same error again. I got such error at i386 and at amd64 (we use 2 build boxes). I deleted /usr/obj between tries. I tried to delete /usr/src and resync it from csup. I tried to resync from different cvsup mirror. >How-To-Repeat: add option NO_DYNAMICROOT or WITHOUT_DYNAMICROOT and make buildworld in /usr/src >Fix: Just for now, do not use the option NO(WITHOUT)_DYNAMICROOT >Release-Note: >Audit-Trail: >Unformatted: From gad at FreeBSD.org Tue Feb 21 18:50:08 2012 From: gad at FreeBSD.org (Garance A Drosehn) Date: Tue Feb 21 18:50:15 2012 Subject: conf/165331: periodic security run output gives false positives after 1 year Message-ID: <201202211850.q1LIo8LL078315@freefall.freebsd.org> The following reply was made to PR conf/165331; it has been noted by GNATS. From: Garance A Drosehn To: bug-followup@FreeBSD.org Cc: Subject: Re: conf/165331: periodic security run output gives false positives after 1 year Date: Tue, 21 Feb 2012 12:32:40 -0500 Note that catmsgs() function in periodic/security/800.loginfail starts off with: find ${LOG} -name 'auth.log.*' -mtime -2 | [...etc...] Note the '-mtime -2' on that 'find' command. It is *not* reading all archived logs on the disk. It is reading all files which have a last-modified time within 2 days of the time the command is executed. It would still be a good idea to do something to fix the problem as described, but that problem would be fixed by having the log files rotated just once-per-year. (Or it could be fixed by including the year in timestamps written to the log files). -- Garance Alistair Drosehn = gad@gilead.netel.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu From lacombar at gmail.com Tue Feb 21 20:30:15 2012 From: lacombar at gmail.com (Arnaud Lacombe) Date: Tue Feb 21 20:30:26 2012 Subject: misc/165373: Obvious use-after-free in ipfw_nat() Message-ID: <201202212025.q1LKPSno052389@red.freebsd.org> >Number: 165373 >Category: misc >Synopsis: Obvious use-after-free in ipfw_nat() >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 21 20:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Arnaud Lacombe >Release: 10-current >Organization: n/a >Environment: >Description: ipfw_nat() reads the following: mcl = m_megapullup(m, m->m_pkthdr.len); if (mcl == NULL) { args->m = NULL; return (IP_FW_DENY); } ip = mtod(mcl, struct ip *); [...] if (retval == PKT_ALIAS_RESPOND) m->m_flags |= M_SKIP_FIREWALL It is quite obvious that `m' is no longer valid in the second conditional. I reported this months ago on freebsd-net@ and did provide a patch to fix it, but no developers seems to actually care about such a bug. >How-To-Repeat: read the code. >Fix: s/m/mcl/ >Release-Note: >Audit-Trail: >Unformatted: From jamie at FreeBSD.org Tue Feb 21 23:10:11 2012 From: jamie at FreeBSD.org (Jamie Gritton) Date: Tue Feb 21 23:10:18 2012 Subject: kern/165381: powerd(8) eats CPUs for breakfast Message-ID: <201202212305.q1LN5aq0037954@red.freebsd.org> >Number: 165381 >Category: kern >Synopsis: powerd(8) eats CPUs for breakfast >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 Feb 21 23:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jamie Gritton >Release: 9.0 >Organization: >Environment: FreeBSD glorfindel.gritton.org 9.0-RELEASE FreeBSD 9.0-RELEASE #1: Sat Jan 28 23:11:49 MST 2012 gritton@glorfindel.gritton.org:/usr/obj/usr/src/sys/GLORFINDEL amd64 >Description: I have a desktop amd64 system with an Athlon 7750 CPU (don't know the chipset offhand) that I decided to try powerd on, as I'm fond of quiet fans. I set powerd_enable="YES" in rc.conf and ran "sh /etc/rc.d/powerd start". After one or two minutes, my display froze. After resetting the box, I got nothing. After a hard power-cycle, nothing. After waiting ten minutes for everything to get nice and cool and another power cycle, nothing. Not even the first BIOS screen. It was pretty clear something was fried, most likely the CPU. That's OK, I had another currently unused system (don't we all?) and I swapped CPUs... >How-To-Repeat: Swap CPUs and turn the computer on again, without remembering to removed the powerd_enable="YES" like from rc.conf. Sure enough, two minutes later I fried my second CPU. After a quick eBay purchase of a third 7750, this times I remembered to fix my rc.conf and everything works again. I apologize for not having more information, but with no CPU it's hard to get a good crash dump. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From adrian at FreeBSD.org Wed Feb 22 02:00:24 2012 From: adrian at FreeBSD.org (Adrian Chadd) Date: Wed Feb 22 02:00:31 2012 Subject: misc/165382: [kern] taskqueue_unblock doesn't unblock currently queued tasks Message-ID: <201202220159.q1M1xkNa070272@red.freebsd.org> >Number: 165382 >Category: misc >Synopsis: [kern] taskqueue_unblock doesn't unblock currently queued tasks >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 22 02:00:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Adrian Chadd >Release: 9.0-RELEASE >Organization: >Environment: >Description: This is more a note than a bug. taskqueue_block() only marks newly queued items as PENDING. If a task is queued to the taskqueue to be run, taskqueue_block() doesn't stop that from occuring. For example, take a single-thread taskqueue: * task A is queued - wakeup_one() is called * task B is queued - wakeup_one() is called * task A starts to run * taskqueue_block() is called from another thread * task C is queued - but instead is marked as PENDING * task A completes * task B completes * task C waits for taskqueue_unblock() to occur. This means that code which calls taskqueue_block() can't assume that once currently running tasks are completed, nothing further will be done. It can only assume that once currently QUEUED tasks are completed, nothing further will be queued. These two are subtly different. >How-To-Repeat: N/A >Fix: N/A >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Wed Feb 22 03:44:13 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Feb 22 03:44:24 2012 Subject: kern/165373: [ipfw] Obvious use-after-free in ipfw_nat() Message-ID: <201202220344.q1M3iDbX082712@freefall.freebsd.org> Old Synopsis: Obvious use-after-free in ipfw_nat() New Synopsis: [ipfw] Obvious use-after-free in ipfw_nat() Responsible-Changed-From-To: freebsd-bugs->freebsd-ipfw Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 22 03:43:51 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165373 From linimon at FreeBSD.org Wed Feb 22 03:48:41 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Feb 22 03:48:52 2012 Subject: kern/165315: [pf] States never cleared in PF with DEVICE_POLLING Message-ID: <201202220348.q1M3mfI8083829@freefall.freebsd.org> Old Synopsis: States never cleared in PF with DEVICE_POLLING New Synopsis: [pf] States never cleared in PF with DEVICE_POLLING Responsible-Changed-From-To: freebsd-bugs->freebsd-pf Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 22 03:47:57 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165315 From leres at ee.lbl.gov Wed Feb 22 04:20:14 2012 From: leres at ee.lbl.gov (Craig Leres) Date: Wed Feb 22 04:20:22 2012 Subject: bin/165384: [PATCH] Add option to suppress RA prefix info Message-ID: <201202220411.q1M4BSsE071128@hot.ee.lbl.gov> >Number: 165384 >Category: bin >Synopsis: [PATCH] Add option to suppress RA prefix info >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 22 04:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Craig Leres >Release: FreeBSD 8.2-RELEASE amd64 >Organization: Lawrence Berkeley National Laboratory >Environment: FreeBSD hot.ee.lbl.gov 8.2-RELEASE FreeBSD 8.2-RELEASE #11 r43: Tue Oct 4 13:18:06 PDT 2011 leres@hot.ee.lbl.gov:/usr/src/8.2-RELEASE/sys/amd64/compile/LBLIPV6 amd64 >Description: To create a stateful IPv6 DHCP environment, routing advertisement messages must set the "managed" flag, may optionally set the "other stateful" flag and must not include any prefix information; including prefix information in router advertisemessages explicitly allows clients to use stateless address autoconfiguration. rtadvd does not provide a configuration option to suppress prefix info. If you do not explicitly specify one or more "addr" options, rtadvd automatically discovers prefixes by iterating over the interfaces. >How-To-Repeat: >Fix: The attached patches add a "noprefix" option to rtadvd.conf. --- patch-config.c begins here --- Index: config.c =================================================================== --- config.c (revision 43) +++ config.c (working copy) @@ -283,6 +283,13 @@ if (addr == NULL) continue; + if (agetflag("noprefix")) { + syslog(LOG_ERR, + "noprefix is set but addr is set (%s); ignoring", + addr); + continue; + } + /* allocate memory to store prefix information */ if ((pfx = malloc(sizeof(struct prefix))) == NULL) { syslog(LOG_ERR, @@ -381,7 +388,7 @@ now.tv_sec + pfx->preflifetime; } } - if (tmp->pfxs == 0) + if (tmp->pfxs == 0 && !agetflag("noprefix")) get_prefix(tmp); MAYHAVE(val, "mtu", 0); --- patch-config.c ends here --- --- patch-rtadvd.conf.5 begins here --- Index: rtadvd.conf.5 =================================================================== --- rtadvd.conf.5 (revision 43) +++ rtadvd.conf.5 (working copy) @@ -172,7 +172,10 @@ .El .Pp The following items are for ICMPv6 prefix information option, -which will be attached to router advertisement header. +which will be attached to router advertisement header +unless the +.Cm noprefix +option is specified. These items can be omitted, then .Nm rtadvd will automatically get appropriate prefixes from the kernel's routing table, @@ -183,6 +186,8 @@ .Dq Li prefix2 , to specify multiple prefixes. .Bl -tag -width indent +.It Cm \&noprefix +(bool) Suppress prefix headers. .It Cm \&clockskew (num) Time skew to adjust link propagation delays and clock skews between routers on the link --- patch-rtadvd.conf.5 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From daniel at morante.net Wed Feb 22 07:20:20 2012 From: daniel at morante.net (Daniel Morante) Date: Wed Feb 22 07:20:27 2012 Subject: misc/165387: bsdinstall not starting with Apple G5 on powerpc64 Message-ID: <201202220714.q1M7EZLX027960@red.freebsd.org> >Number: 165387 >Category: misc >Synopsis: bsdinstall not starting with Apple G5 on powerpc64 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 22 07:20:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Daniel Morante >Release: 9.0-RELEASE powerpc64 >Organization: >Environment: N/A >Description: Attempting to install FreeBSD on a Mac Pro G5 tower using the network install CD-ROM hangs with the following messages displayed on the console: iichb0: I2C error iichb0: I2C error iichb0: I2C error iichb0: I2C error iichb0: I2C error iichb0: I2C error fcu0: iicbus write failed .. The bsdinstall program does not start. >How-To-Repeat: Boot a Power Mac Pro G5 from FreeBSD 9.0-RELEASE powerpc64 media (network install media used in this case). >Fix: No Fix found. >Release-Note: >Audit-Trail: >Unformatted: From vvv at colocall.net Wed Feb 22 11:00:30 2012 From: vvv at colocall.net (Vsevolod Volkov) Date: Wed Feb 22 11:00:37 2012 Subject: kern/165392: Multiple mkdir/rmdir fails with errno 31 Message-ID: <201202221055.q1MAtVW4032424@red.freebsd.org> >Number: 165392 >Category: kern >Synopsis: Multiple mkdir/rmdir fails with errno 31 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 22 11:00:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Vsevolod Volkov >Release: 9.0-RELEASE amd64/i386 >Organization: >Environment: FreeBSD 9.0-RELEASE #0: Mon Feb 13 12:12:58 EET 2012 amd64 FreeBSD 9.0-RELEASE #1: Thu Feb 9 16:29:18 EET 2012 i386 >Description: Multiple sequence of mkdir and rmdir causes mkdir failure with errno 31. Usualy it happens on 32765 iteration. >How-To-Repeat: Compile and execute the following program: #include #include #include #include int main (void) { int i; char dir[100]; for (i = 0; i < 50000; i++) { snprintf (dir, sizeof(dir), "empty_dir/%d", i); printf ("%s\n", dir); if (mkdir (dir, 0700) == -1) { printf ("mkdir %s: (errno %d)\n", dir, errno); break; } if (rmdir (dir) == -1) { printf ("rmdir %s: (errno %d)\n", dir, errno); break; } } return 0; } gcc -o test1 test1.c mkdir empty_dir ./test1 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From kes-kes at yandex.ru Wed Feb 22 19:40:08 2012 From: kes-kes at yandex.ru (Eugen Konkov) Date: Wed Feb 22 19:40:15 2012 Subject: kern/165399: turn off port on SWITCH do not change status of igb Message-ID: <201202221930.q1MJUD4V091752@red.freebsd.org> >Number: 165399 >Category: kern >Synopsis: turn off port on SWITCH do not change status of igb >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 22 19:40:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugen Konkov >Release: 8.3-PRERELEASE >Organization: ISP FreeLine >Environment: FreeBSD 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #1 r231881: Fri Feb 17 17:20:09 UTC 2012 @:/usr/obj/usr/src/sys/KES_KERN_v8 amd64 >Description: changing status of port to OFF do not change status of igb device: igb3: flags=8c02 metric 0 mtu 1500 options=401bb ether a0:36:9f:00:66:a7 media: Ethernet autoselect (1000baseT ) status: active EXPECTED: status: no carrier only reboot helps. On other hand. when port is OFF and it is turned on status is changed as expected from 'no carrier' to 'active. Turning off port on switch do not change status of link on igb. it stay to be 'active' despite on that port is OFF now i350 chipset igb0@pci0:1:0:0: class=0x020000 card=0x00018086 chip=0x15218086 rev=0x01 hdr=0x00 vendor = 'Intel Corporation' class = network subclass = ethernet igb1@pci0:1:0:1: class=0x020000 card=0x00018086 chip=0x15218086 rev=0x01 hdr=0x00 vendor = 'Intel Corporation' class = network subclass = ethernet igb2@pci0:1:0:2: class=0x020000 card=0x00018086 chip=0x15218086 rev=0x01 hdr=0x00 vendor = 'Intel Corporation' class = network subclass = ethernet igb3@pci0:1:0:3: class=0x020000 card=0x00018086 chip=0x15218086 rev=0x01 hdr=0x00 vendor = 'Intel Corporation' class = network subclass = ethernet >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From jack.vogel at intel.com Wed Feb 22 20:40:08 2012 From: jack.vogel at intel.com (Vogel, Jack) Date: Wed Feb 22 20:40:15 2012 Subject: kern/165399: turn off port on SWITCH do not change status of igb Message-ID: <201202222040.q1MKe7ft065290@freefall.freebsd.org> The following reply was made to PR kern/165399; it has been noted by GNATS. From: "Vogel, Jack" To: "bug-followup@FreeBSD.org" , "kes-kes@yandex.ru" Cc: Subject: Re: kern/165399: turn off port on SWITCH do not change status of igb Date: Wed, 22 Feb 2012 20:07:34 +0000 --_000_BC1B13FD0226B0479C795193AC1B257204574EORSMSX104amrcorpi_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable This is not a bug, it's a side-effect of design. Until you bring the interf= ace up interrupts are not enabled, hence there is no way to see and respond= to the link change event. If you bring the port up just by doing an `ifcon= fig igbX up` and try it again you'll see the status will change. Jack --_000_BC1B13FD0226B0479C795193AC1B257204574EORSMSX104amrcorpi_ Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

This is not a bug, it’s a side-effect of desig= n. Until you bring the interface up interrupts are not enabled, hence there= is no way to see and respond to the link change event. If you bring the po= rt up just by doing an `ifconfig igbX up` and try it again you’ll see the status will change.

 

Jack

 

--_000_BC1B13FD0226B0479C795193AC1B257204574EORSMSX104amrcorpi_-- From avg at FreeBSD.org Wed Feb 22 21:30:14 2012 From: avg at FreeBSD.org (Andriy Gapon) Date: Wed Feb 22 21:30:20 2012 Subject: kern/165392: Multiple mkdir/rmdir fails with errno 31 Message-ID: <201202222130.q1MLUD7v010101@freefall.freebsd.org> The following reply was made to PR kern/165392; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, vvv@colocall.net Cc: Subject: Re: kern/165392: Multiple mkdir/rmdir fails with errno 31 Date: Wed, 22 Feb 2012 23:23:15 +0200 Could you please provide full details of the tested filesystem? -- Andriy Gapon From eadler at FreeBSD.org Thu Feb 23 05:05:20 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Thu Feb 23 05:05:26 2012 Subject: kern/165392: Multiple mkdir/rmdir fails with errno 31 Message-ID: <201202230505.q1N55J4o038999@freefall.freebsd.org> Synopsis: Multiple mkdir/rmdir fails with errno 31 Responsible-Changed-From-To: freebsd-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Thu Feb 23 05:05:19 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165392 From jaccovanbuuren at gmail.com Thu Feb 23 08:50:12 2012 From: jaccovanbuuren at gmail.com (Jacco van Buuren) Date: Thu Feb 23 08:50:23 2012 Subject: bin/165413: ng_netflow does not work as advertised Message-ID: <201202230846.q1N8kegA048799@red.freebsd.org> >Number: 165413 >Category: bin >Synopsis: ng_netflow does not work as advertised >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 23 08:50:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jacco van Buuren >Release: 9.0 >Organization: - >Environment: FreeBSD gamma01.andromeda.nebula 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: # /usr/sbin/ngctl -f- <<-SEQ > mkpeer em0: netflow lower iface0 > name em0:lower netflow > connect em0: netflow: upper out0 > mkpeer netflow: ksocket export inet/dgram/udp > msg netflow:export connect inet/10.0.2.15:4444 > SEQ ngctl: send msg: No such file or directory ngctl: line 1: error in file # kldstat Id Refs Address Size Name 1 11 0xc0400000 e9ece4 kernel 2 2 0xc2b91000 33000 pf.ko 3 1 0xc2b89000 3000 pflog.ko 4 1 0xc2d0c000 4000 ng_socket.ko 5 2 0xc2d10000 b000 netgraph.ko 6 1 0xc2da2000 8000 ng_netflow.ko >How-To-Repeat: # /usr/sbin/ngctl -f- <<-SEQ > mkpeer em0: netflow lower iface0 > name em0:lower netflow > connect em0: netflow: upper out0 > mkpeer netflow: ksocket export inet/dgram/udp > msg netflow:export connect inet/10.0.2.15:4444 > SEQ ngctl: send msg: No such file or directory ngctl: line 1: error in file >Fix: >Release-Note: >Audit-Trail: >Unformatted: From pershin87 at yandex.ru Thu Feb 23 11:00:30 2012 From: pershin87 at yandex.ru (Pershin Vladimir) Date: Thu Feb 23 11:00:37 2012 Subject: bin/161986: [patch] netstat(1): Interface auto-width in Message-ID: <201202231100.q1NB0Twf097373@freefall.freebsd.org> The following reply was made to PR bin/161986; it has been noted by GNATS. From: Pershin Vladimir To: bug-followup@freebsd.org,dyr@smartspb.net Cc: Subject: Re: bin/161986: [patch] netstat(1): Interface auto-width in Date: Thu, 23 Feb 2012 14:53:06 +0400 I wrote small patch. By default the width equal 10, if you use -W then width equal 16. --- if_old.c 2010-12-21 23:09:25.000000000 +0600 +++ if.c 2012-02-23 16:47:58.000000000 +0600 @@ -223,9 +223,9 @@ if (!pfunc) { if (Wflag) - printf("%-7.7s", "Name"); + printf("%-16.16s", "Name"); else - printf("%-5.5s", "Name"); + printf("%-10.10s", "Name"); printf(" %5.5s %-13.13s %-17.17s %8.8s %5.5s %5.5s", "Mtu", "Network", "Address", "Ipkts", "Ierrs", "Idrop"); if (bflag) @@ -293,9 +293,9 @@ if (ifaddraddr == 0) { if (Wflag) - printf("%-7.7s", name); + printf("%-16.16s", name); else - printf("%-5.5s", name); + printf("%-10.10s", name); printf(" %5lu ", ifnet.if_mtu); printf("%-13.13s ", "none"); printf("%-17.17s ", "none"); @@ -315,9 +315,9 @@ continue; } if (Wflag) - printf("%-7.7s", name); + printf("%-16.16s", name); else - printf("%-5.5s", name); + printf("%-10.10s", name); printf(" %5lu ", ifnet.if_mtu); switch (sa->sa_family) { case AF_UNSPEC: From stefan.witzel at zvw.uni-goettingen.de Thu Feb 23 12:20:11 2012 From: stefan.witzel at zvw.uni-goettingen.de (Stefan Witzel) Date: Thu Feb 23 12:20:20 2012 Subject: misc/165418: Problems mounting root filesystem from XENHVM Message-ID: <201202231218.q1NCIvfh026559@red.freebsd.org> >Number: 165418 >Category: misc >Synopsis: Problems mounting root filesystem from XENHVM >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 23 12:20:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Stefan Witzel >Release: FreeBSD 9.0 STABLE >Organization: Universitaet Goettingen >Environment: not available (see below) >Description: I installed FreeBSD 9.0 from the installation CD on a Xenserver 6.0. This virtual machine runs without any problems. When I try to boot a XENHVM kernel built from the standard configuration file I get the messages Trying to mount root from ufs:/dev/ada0o2 [rw] ... mountroot: waiting for device /dev/ada0p2 ... Mounting from ufs:/dev/ada0p2 failed with error 19. The only managed disk device shown by the ? command of mount root is cd0. I also tried to boot the XENHVM kernel after I replaced "ada0" by "ado" in /etc/fstab as suggested by Dave Scott (http://dave.recoil.org) but also in this case the root device could not be mounted. >How-To-Repeat: Boot XENHVM kernel >Fix: >Release-Note: >Audit-Trail: >Unformatted: From hiroto.kagotani at gmail.com Thu Feb 23 12:40:08 2012 From: hiroto.kagotani at gmail.com (Hiroto Kagotani) Date: Thu Feb 23 12:40:15 2012 Subject: misc/165419: Mk/bsd.port.mk: "make showconfig" to tell whether option values are same as the default Message-ID: <201202231232.q1NCWWqR044804@red.freebsd.org> >Number: 165419 >Category: misc >Synopsis: Mk/bsd.port.mk: "make showconfig" to tell whether option values are same as the default >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 23 12:40:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Hiroto Kagotani >Release: FreeBSD 8.1-RELEASE >Organization: >Environment: FreeBSD myhost.mydomain 8.1-RELEASE-p5 FreeBSD 8.1-RELEASE-p5 #0: Tue Sep 27 16:18:26 UTC 2011 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: I sometimes want to identify installed packages whose option values are different from the default. Though "make showconfig" and "make config" show the current option values, they don't tell which are same as or different from the default. Instead, I need to compare values with the value of OPTION variable in Makefile. My idea is to make "make showconfig" tell whether option values are same as the default. The patch attached implements the idea. Using this, I can easily find packages with non-default option values like this: % make showconfig-recursive | grep -v 'same as default' >How-To-Repeat: >Fix: Patch attached with submission follows: --- /usr/ports/Mk/bsd.port.mk.orig 2012-02-02 17:36:41.000000000 +0900 +++ /usr/ports/Mk/bsd.port.mk 2012-02-23 21:21:43.000000000 +0900 @@ -6093,8 +6093,10 @@ withoutval=$$(eval ${ECHO_CMD} $$\{$${withoutvar}\}); \ if [ ! -z "$${withval}" ]; then \ val=on; \ + case "$${defaultval}" in on|ON|On) val="$${val} (same as default)";; esac; \ elif [ ! -z "$${withoutval}" ]; then \ val=off; \ + case "$${defaultval}" in off|OFF|Off) val="$${val} (same as default)";; esac; \ else \ val="$${defaultval} (default)"; \ fi; \ >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Thu Feb 23 16:03:57 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Thu Feb 23 16:04:04 2012 Subject: ports/165419: [patch] Mk/bsd.port.mk: "make showconfig" to tell whether option values are same as the default Message-ID: <201202231603.q1NG3v3n086237@freefall.freebsd.org> Old Synopsis: Mk/bsd.port.mk: "make showconfig" to tell whether option values are same as the default New Synopsis: [patch] Mk/bsd.port.mk: "make showconfig" to tell whether option values are same as the default Responsible-Changed-From-To: freebsd-bugs->portmgr Responsible-Changed-By: linimon Responsible-Changed-When: Thu Feb 23 16:03:38 UTC 2012 Responsible-Changed-Why: make this a ports PR and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=165419 From linimon at FreeBSD.org Thu Feb 23 16:12:44 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Thu Feb 23 16:12:56 2012 Subject: kern/165418: [xen] Problems mounting root filesystem from XENHVM Message-ID: <201202231612.q1NGCibc094816@freefall.freebsd.org> Old Synopsis: Problems mounting root filesystem from XENHVM New Synopsis: [xen] Problems mounting root filesystem from XENHVM Responsible-Changed-From-To: freebsd-bugs->freebsd-xen Responsible-Changed-By: linimon Responsible-Changed-When: Thu Feb 23 16:12:13 UTC 2012 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=165418 From remko at FreeBSD.org Thu Feb 23 16:28:51 2012 From: remko at FreeBSD.org (remko@FreeBSD.org) Date: Thu Feb 23 16:28:57 2012 Subject: bin/165413: [netgraph]: ngctl(8) does not work as advertised Message-ID: <201202231628.q1NGSoRu005177@freefall.freebsd.org> Old Synopsis: ngctl(8) does not work as advertised New Synopsis: [netgraph]: ngctl(8) does not work as advertised Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: remko Responsible-Changed-When: Thu Feb 23 16:28:37 UTC 2012 Responsible-Changed-Why: Reassign to -net team. http://www.freebsd.org/cgi/query-pr.cgi?pr=165413 From kes-kes at yandex.ru Thu Feb 23 17:47:04 2012 From: kes-kes at yandex.ru (=?windows-1251?B?yu7t/Oru4iDF4uPl7ejp?=) Date: Thu Feb 23 17:47:12 2012 Subject: kern/165399: turn off port on SWITCH do not change status of igb In-Reply-To: <201202222040.q1MKe7ft065290@freefall.freebsd.org> References: <201202222040.q1MKe7ft065290@freefall.freebsd.org> Message-ID: <666251870.20120223194701@yandex.ru> ????????????, Jack. ?? ?????? 22 ??????? 2012 ?., 22:40:07: VJ> The following reply was made to PR kern/165399; it has been noted by GNATS. VJ> From: "Vogel, Jack" VJ> To: "bug-followup@FreeBSD.org" , "kes-kes@yandex.ru" VJ> VJ> Cc: VJ> Subject: Re: kern/165399: turn off port on SWITCH do not change status of igb VJ> Date: Wed, 22 Feb 2012 20:07:34 +0000 VJ> --_000_BC1B13FD0226B0479C795193AC1B257204574EORSMSX104amrcorpi_ VJ> Content-Type: text/plain; charset="us-ascii" VJ> Content-Transfer-Encoding: quoted-printable VJ> VJ> This is not a bug, it's a side-effect of design. Until you bring the interf= VJ> ace up interrupts are not enabled, hence there is no way to see and respond= VJ> to the link change event. If you bring the port up just by doing an `ifcon= VJ> fig igbX up` and try it again you'll see the status will change. Ok, I agree with that that port do no reacion until it is 'UP' but why it do reaction when port on switch is turned ON? SW PORT is OFF ----------- status link is no carrier SW PORT is ON ----------- status link is active (why react despite on interrupts is off???) SW PORT is OFF ----------- status link is active (do not react because of interrupts is off) -- ? ?????????, ??????? mailto:kes-kes@yandex.ru From cowens at greatbaysoftware.com Thu Feb 23 20:10:12 2012 From: cowens at greatbaysoftware.com (Charles Owens) Date: Thu Feb 23 20:10:31 2012 Subject: misc/162338: POLA: mkisoimages.sh does not support extra-bits-dir parameter Message-ID: <201202232010.q1NKACgd007313@freefall.freebsd.org> The following reply was made to PR misc/162338; it has been noted by GNATS. From: Charles Owens To: bug-followup@FreeBSD.org, alex@niksun.com Cc: Subject: Re: misc/162338: POLA: mkisoimages.sh does not support extra-bits-dir parameter Date: Thu, 23 Feb 2012 11:52:48 -0500 This problem is currently true for 8-STABLE as well. Manual intervention needed to cut a release ISO. -- Charles Owens Great Bay Software, Inc. From meyer.arne83 at gmail.com Thu Feb 23 20:10:13 2012 From: meyer.arne83 at gmail.com (Arne Meyer) Date: Thu Feb 23 20:10:32 2012 Subject: kern/165428: [glabel][patch] Add xfs support to glabel Message-ID: <201202232009.q1NK9axY006159@red.freebsd.org> >Number: 165428 >Category: kern >Synopsis: [glabel][patch] Add xfs support to glabel >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 23 20:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Arne Meyer >Release: 9-STABLE >Organization: Hochschule Emden/Leer >Environment: FreeBSD partyvan 9.0-STABLE FreeBSD 9.0-STABLE #0 r231864M: Fri Feb 17 13:49:42 CET 2012 pk@partyvan: /usr/obj/usr/src/sys/PARTYVAN i386 >Description: glabel does not detect xfs volumes. Back in 2010 I added simple support for xfs labels. I tested it on an old usb drive with an xfs volume on it and it worked for me(TM). This probably needs further testing as I'm no expert on xfs... >How-To-Repeat: >Fix: 1. Apply patch 2. ???? 3. Profit! Patch attached with submission follows: diff --git a/sbin/geom/class/label/glabel.8 b/sbin/geom/class/label/glabel.8 index fff9205..bfa45ca 100644 --- a/sbin/geom/class/label/glabel.8 +++ b/sbin/geom/class/label/glabel.8 @@ -117,6 +117,9 @@ REISERFS (directory .It NTFS (directory .Pa /dev/ntfs/ ) . +.It +XFS (directory +.Pa /dev/xfs ) . .El .Pp Support for partition metadata is implemented for: diff --git a/sys/conf/files b/sys/conf/files index 1abb924..49c12ed 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -2222,6 +2222,7 @@ geom/label/g_label_ntfs.c optional geom_label geom/label/g_label_reiserfs.c optional geom_label geom/label/g_label_ufs.c optional geom_label geom/label/g_label_gpt.c optional geom_label +geom/label/g_label_xfs.c optional geom_label geom/linux_lvm/g_linux_lvm.c optional geom_linux_lvm geom/mirror/g_mirror.c optional geom_mirror geom/mirror/g_mirror_ctl.c optional geom_mirror diff --git a/sys/geom/label/g_label.c b/sys/geom/label/g_label.c index 0d8a3b4..179509a 100644 --- a/sys/geom/label/g_label.c +++ b/sys/geom/label/g_label.c @@ -87,6 +87,7 @@ const struct g_label_desc *g_labels[] = { &g_label_ntfs, &g_label_gpt, &g_label_gpt_uuid, + &g_label_xfs, NULL }; diff --git a/sys/geom/label/g_label.h b/sys/geom/label/g_label.h index 06ba2f5..e0d78e8 100644 --- a/sys/geom/label/g_label.h +++ b/sys/geom/label/g_label.h @@ -87,6 +87,7 @@ extern struct g_label_desc g_label_reiserfs; extern struct g_label_desc g_label_ntfs; extern struct g_label_desc g_label_gpt; extern struct g_label_desc g_label_gpt_uuid; +extern struct g_label_desc g_label_xfs; #endif /* _KERNEL */ struct g_label_metadata { diff --git a/sys/geom/label/g_label_xfs.c b/sys/geom/label/g_label_xfs.c new file mode 100644 index 0000000..69db15f --- /dev/null +++ b/sys/geom/label/g_label_xfs.c @@ -0,0 +1,85 @@ +/*- + * Copyright (c) 2010 Arne Meyer + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#include + +#include +#include +#include +#include + +#include +#include + +#define XFS_MAGIC 0x58465342 + +typedef struct xfs_sb { + uint32_t sb_magicnum; + char fake[104]; + char sb_fname[12]; +} xfs_sb_t; + +static void +g_label_xfs_taste(struct g_consumer *cp, char *label, size_t size) +{ + struct g_provider *pp; + xfs_sb_t *fs; + + g_topology_assert_not(); + pp = cp->provider; + label[0] = '\0'; + + fs = (xfs_sb_t *)g_read_data(cp, 0, pp->sectorsize, NULL); + if(fs == NULL) + return; + + /* Check for xfs magic */ + if (be32toh(fs->sb_magicnum) == XFS_MAGIC) { + G_LABEL_DEBUG(1, "xfs file system detected on %s.", + pp->name); + } else { + goto exit_free; + } + + /* Check for volume label */ + if (fs->sb_fname[0] == '\0') + goto exit_free; + + /* Terminate label */ + fs->sb_fname[sizeof(fs->sb_fname) - 1] = '\0'; + strlcpy(label, fs->sb_fname, size); + +exit_free: + g_free(fs); +} + +struct g_label_desc g_label_xfs = { + .ld_taste = g_label_xfs_taste, + .ld_dir = "xfs", + .ld_enabled = 1 +}; + +G_LABEL_INIT(xfs, g_label_xfs, "Create device nodes for XFS volumes"); diff --git a/sys/modules/geom/geom_label/Makefile b/sys/modules/geom/geom_label/Makefile index 300606a..87d8ec0 100644 --- a/sys/modules/geom/geom_label/Makefile +++ b/sys/modules/geom/geom_label/Makefile @@ -11,5 +11,6 @@ SRCS+= g_label_msdosfs.c SRCS+= g_label_ntfs.c SRCS+= g_label_reiserfs.c SRCS+= g_label_ufs.c +SRCS+= g_label_xfs.c .include >Release-Note: >Audit-Trail: >Unformatted: From amdmi3 at FreeBSD.org Thu Feb 23 21:20:12 2012 From: amdmi3 at FreeBSD.org (Dmitry Marakasov) Date: Thu Feb 23 21:20:19 2012 Subject: bin/165429: [patch] wall(1): add multibyte character support Message-ID: <20120223211638.7693EEE6@hades.panopticon> >Number: 165429 >Category: bin >Synopsis: [patch] wall(1): add multibyte character support >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: Thu Feb 23 21:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 10 01:33:18 MSK 2012 root@hades.panopticon:/usr/obj/usr/src/sys/HADES amd64 >Description: wall(1) doesn't support multibyte characters. Fix it in a similar way to write(1) (see bin/164317 or SVN rev 231586). >How-To-Repeat: >Fix: --- wall.patch begins here --- diff --git usr.bin/wall/wall.1 usr.bin/wall/wall.1 index 1c2d067..4fa82dd 100644 --- usr.bin/wall/wall.1 +++ usr.bin/wall/wall.1 @@ -28,7 +28,7 @@ .\" @(#)wall.1 8.1 (Berkeley) 6/6/93 .\" $FreeBSD$ .\" -.Dd July 17, 2004 +.Dd February 24, 2012 .Dt WALL 1 .Os .Sh NAME @@ -73,7 +73,3 @@ setting is used to determine which characters are safe to write to a terminal, not the receiver's (which .Nm has no way of knowing). -.Pp -The -.Nm -utility does not recognize multibyte characters. diff --git usr.bin/wall/wall.c usr.bin/wall/wall.c index c3aa323..dafd448 100644 --- usr.bin/wall/wall.c +++ usr.bin/wall/wall.c @@ -62,6 +62,8 @@ static const char sccsid[] = "@(#)wall.c 8.2 (Berkeley) 11/16/93"; #include #include #include +#include +#include #include "ttymsg.h" @@ -185,14 +187,15 @@ void makemsg(char *fname) { int cnt; - unsigned char ch; + wchar_t ch; struct tm *lt; struct passwd *pw; struct stat sbuf; time_t now; FILE *fp; int fd; - char *p, hostname[MAXHOSTNAMELEN], lbuf[256], tmpname[64]; + char hostname[MAXHOSTNAMELEN], tmpname[64]; + wchar_t *p, *tmp, lbuf[256], codebuf[13]; const char *tty; const char *whom; gid_t egid; @@ -220,78 +223,61 @@ makemsg(char *fname) * Which means that we may leave a non-blank character * in column 80, but that can't be helped. */ - (void)fprintf(fp, "\r%79s\r\n", " "); - (void)snprintf(lbuf, sizeof(lbuf), - "Broadcast Message from %s@%s", + (void)fwprintf(fp, L"\r%79s\r\n", " "); + (void)swprintf(lbuf, sizeof(lbuf)/sizeof(wchar_t), + L"Broadcast Message from %s@%s", whom, hostname); - (void)fprintf(fp, "%-79.79s\007\007\r\n", lbuf); - (void)snprintf(lbuf, sizeof(lbuf), - " (%s) at %d:%02d %s...", tty, + (void)fwprintf(fp, L"%-79.79S\007\007\r\n", lbuf); + (void)swprintf(lbuf, sizeof(lbuf)/sizeof(wchar_t), + L" (%s) at %d:%02d %s...", tty, lt->tm_hour, lt->tm_min, lt->tm_zone); - (void)fprintf(fp, "%-79.79s\r\n", lbuf); + (void)fwprintf(fp, L"%-79.79S\r\n", lbuf); } - (void)fprintf(fp, "%79s\r\n", " "); + (void)fwprintf(fp, L"%79s\r\n", " "); if (fname) { egid = getegid(); setegid(getgid()); - if (freopen(fname, "r", stdin) == NULL) + if (freopen(fname, "r", stdin) == NULL) err(1, "can't read %s", fname); setegid(egid); } cnt = 0; - while (fgets(lbuf, sizeof(lbuf), stdin)) { - for (p = lbuf; (ch = *p) != '\0'; ++p, ++cnt) { - if (ch == '\r') { - putc('\r', fp); + while (fgetws(lbuf, sizeof(lbuf)/sizeof(wchar_t), stdin)) { + for (p = lbuf; (ch = *p) != L'\0'; ++p, ++cnt) { + if (ch == L'\r') { + putwc(L'\r', fp); cnt = 0; continue; - } else if (ch == '\n') { + } else if (ch == L'\n') { for (; cnt < 79; ++cnt) - putc(' ', fp); - putc('\r', fp); - putc('\n', fp); + putwc(L' ', fp); + putwc(L'\r', fp); + putwc(L'\n', fp); break; } if (cnt == 79) { - putc('\r', fp); - putc('\n', fp); + putwc(L'\r', fp); + putwc(L'\n', fp); cnt = 0; } - if (((ch & 0x80) && ch < 0xA0) || - /* disable upper controls */ - (!isprint(ch) && !isspace(ch) && - ch != '\a' && ch != '\b') - ) { - if (ch & 0x80) { - ch &= 0x7F; - putc('M', fp); + if (iswprint(ch) || iswspace(ch) || ch == L'\a' || ch == L'\b') { + putwc(ch, fp); + } else { + (void)swprintf(codebuf, sizeof(codebuf)/sizeof(wchar_t), L"<0x%X>", ch); + for (tmp = codebuf; *tmp != L'\0'; ++tmp) { + putwc(*tmp, fp); if (++cnt == 79) { - putc('\r', fp); - putc('\n', fp); - cnt = 0; - } - putc('-', fp); - if (++cnt == 79) { - putc('\r', fp); - putc('\n', fp); - cnt = 0; - } - } - if (iscntrl(ch)) { - ch ^= 040; - putc('^', fp); - if (++cnt == 79) { - putc('\r', fp); - putc('\n', fp); + putwc(L'\r', fp); + putwc(L'\n', fp); cnt = 0; } } + --cnt; } - putc(ch, fp); } } - (void)fprintf(fp, "%79s\r\n", " "); + (void)fwprintf(fp, L"%79s\r\n", " "); rewind(fp); if (fstat(fd, &sbuf)) --- wall.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From lori at midlandmetal.com Thu Feb 23 22:00:24 2012 From: lori at midlandmetal.com (QczSjZTQROqRzMPplLb) Date: Thu Feb 23 22:00:31 2012 Subject: misc/165432: oWVSHkQqSKZTu Message-ID: <201202232154.q1NLsgQf001500@red.freebsd.org> >Number: 165432 >Category: misc >Synopsis: oWVSHkQqSKZTu >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Feb 23 22:00:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: QczSjZTQROqRzMPplLb >Release: SIRLvOndlkFsDKSFi >Organization: VaMtXZvjrlL >Environment: web-site miekrtang and advertising is basically all about the quanity of other pages linking to your site. when not having those backlinks to your site you're dead in the water. this became apparent to me not long after enrolling in what is actually in my opinion the most powerful semi-automatic website link building application on the internet >Description: web-site miekrtang and advertising is basically all about the quanity of other pages linking to your site. when not having those backlinks to your site you're dead in the water. this became apparent to me not long after enrolling in what is actually in my opinion the most powerful semi-automatic website link building application on the internet >How-To-Repeat: web-site miekrtang and advertising is basically all about the quanity of other pages linking to your site. when not having those backlinks to your site you're dead in the water. this became apparent to me not long after enrolling in what is actually in my opinion the most powerful semi-automatic website link building application on the internet >Fix: web-site miekrtang and advertising is basically all about the quanity of other pages linking to your site. when not having those backlinks to your site you're dead in the water. this became apparent to me not long after enrolling in what is actually in my opinion the most powerful semi-automatic website link building application on the internet >Release-Note: >Audit-Trail: >Unformatted: From gjb at FreeBSD.org Thu Feb 23 22:06:26 2012 From: gjb at FreeBSD.org (gjb@FreeBSD.org) Date: Thu Feb 23 22:06:36 2012 Subject: junk/165432: oWVSHkQqSKZTu Message-ID: <201202232206.q1NM6PUo018387@freefall.freebsd.org> Synopsis: oWVSHkQqSKZTu State-Changed-From-To: open->closed State-Changed-By: gjb State-Changed-When: Thu Feb 23 22:06:01 UTC 2012 State-Changed-Why: Spam. Responsible-Changed-From-To: freebsd-bugs->gnats-adm Responsible-Changed-By: gjb Responsible-Changed-When: Thu Feb 23 22:06:01 UTC 2012 Responsible-Changed-Why: Spam. http://www.freebsd.org/cgi/query-pr.cgi?pr=165432 From eadler at FreeBSD.org Thu Feb 23 22:58:19 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Thu Feb 23 22:58:25 2012 Subject: bin/165429: [patch] wall(1): add multibyte character support Message-ID: <201202232258.q1NMwJ8C068619@freefall.freebsd.org> Synopsis: [patch] wall(1): add multibyte character support Responsible-Changed-From-To: freebsd-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Thu Feb 23 22:58:18 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165429 From jfvogel at gmail.com Thu Feb 23 23:34:59 2012 From: jfvogel at gmail.com (Jack Vogel) Date: Thu Feb 23 23:35:06 2012 Subject: kern/165399: turn off port on SWITCH do not change status of igb In-Reply-To: <666251870.20120223194701@yandex.ru> References: <201202222040.q1MKe7ft065290@freefall.freebsd.org> <666251870.20120223194701@yandex.ru> Message-ID: When the driver is loaded it looks at the link state just once, I did this as sort of a compromise, it will set the state based on what it sees at that time, but no changes to hardware state will be noticed from that point on until interrupts are enabled. Regards, Jack 2012/2/23 ??????? ??????? > ????????????, Jack. > > ?? ?????? 22 ??????? 2012 ?., 22:40:07: > > VJ> The following reply was made to PR kern/165399; it has been noted by > GNATS. > > VJ> From: "Vogel, Jack" > VJ> To: "bug-followup@FreeBSD.org" , " > kes-kes@yandex.ru" > VJ> > VJ> Cc: > VJ> Subject: Re: kern/165399: turn off port on SWITCH do not change status > of igb > VJ> Date: Wed, 22 Feb 2012 20:07:34 +0000 > > VJ> --_000_BC1B13FD0226B0479C795193AC1B257204574EORSMSX104amrcorpi_ > VJ> Content-Type: text/plain; charset="us-ascii" > VJ> Content-Transfer-Encoding: quoted-printable > VJ> > VJ> This is not a bug, it's a side-effect of design. Until you bring the > interf= > VJ> ace up interrupts are not enabled, hence there is no way to see and > respond= > VJ> to the link change event. If you bring the port up just by doing an > `ifcon= > VJ> fig igbX up` and try it again you'll see the status will change. > > Ok, I agree with that that port do no reacion until it is 'UP' > but why it do reaction when port on switch is turned ON? > SW PORT is OFF ----------- status link is no carrier > > SW PORT is ON ----------- status link is active > (why react despite on interrupts is off???) > SW PORT is OFF ----------- status link is active > (do not react because of interrupts is off) > > > -- > ? ?????????, > ??????? mailto:kes-kes@yandex.ru > > _______________________________________________ > freebsd-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-bugs > To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" > From webmaster at xinmin.cn Fri Feb 24 00:20:10 2012 From: webmaster at xinmin.cn (KivJTpoLIxLBWaFoHZ) Date: Fri Feb 24 00:20:19 2012 Subject: misc/165433: odJfczGorJhTlGUBP Message-ID: <201202240017.q1O0HkIB059647@red.freebsd.org> >Number: 165433 >Category: misc >Synopsis: odJfczGorJhTlGUBP >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 24 00:20:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KivJTpoLIxLBWaFoHZ >Release: DuvVezuECwRiLkE >Organization: kHoQTVEgwkkJzfai >Environment: dit :Article tres interessant.Qui n?a pas de bseelurss d?enfance? Quand j?aurai un moment calme, je testerai cette methode.Merci pour l?article >Description: dit :Article tres interessant.Qui n?a pas de bseelurss d?enfance? Quand j?aurai un moment calme, je testerai cette methode.Merci pour l?article >How-To-Repeat: dit :Article tres interessant.Qui n?a pas de bseelurss d?enfance? Quand j?aurai un moment calme, je testerai cette methode.Merci pour l?article >Fix: dit :Article tres interessant.Qui n?a pas de bseelurss d?enfance? Quand j?aurai un moment calme, je testerai cette methode.Merci pour l?article >Release-Note: >Audit-Trail: >Unformatted: From gjb at FreeBSD.org Fri Feb 24 00:28:55 2012 From: gjb at FreeBSD.org (gjb@FreeBSD.org) Date: Fri Feb 24 00:29:01 2012 Subject: junk/165433: odJfczGorJhTlGUBP Message-ID: <201202240028.q1O0SsXE055110@freefall.freebsd.org> Synopsis: odJfczGorJhTlGUBP State-Changed-From-To: open->closed State-Changed-By: gjb State-Changed-When: Fri Feb 24 00:28:14 UTC 2012 State-Changed-Why: Spam. Responsible-Changed-From-To: freebsd-bugs->gnats-adm Responsible-Changed-By: gjb Responsible-Changed-When: Fri Feb 24 00:28:14 UTC 2012 Responsible-Changed-Why: Spam. http://www.freebsd.org/cgi/query-pr.cgi?pr=165433 From kevlo at FreeBSD.org Fri Feb 24 01:39:00 2012 From: kevlo at FreeBSD.org (kevlo@FreeBSD.org) Date: Fri Feb 24 01:39:07 2012 Subject: bin/159293: mount_smbfs(8) 'has' problems with Umlauten (and similar) Message-ID: <201202240138.q1O1cxqM021894@freefall.freebsd.org> Synopsis: mount_smbfs(8) 'has' problems with Umlauten (and similar) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Feb 24 01:38:05 UTC 2012 State-Changed-Why: Fixed in releng/8 and releng/9. http://www.freebsd.org/cgi/query-pr.cgi?pr=159293 From jh at FreeBSD.org Fri Feb 24 07:21:01 2012 From: jh at FreeBSD.org (jh@FreeBSD.org) Date: Fri Feb 24 07:21:07 2012 Subject: bin/153527: [patch] wake(8) should use sysexits.h Message-ID: <201202240721.q1O7L0ds041343@freefall.freebsd.org> Synopsis: [patch] wake(8) should use sysexits.h Responsible-Changed-From-To: freebsd-bugs->jh Responsible-Changed-By: jh Responsible-Changed-When: Fri Feb 24 07:20:59 UTC 2012 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=153527 From jh at FreeBSD.org Fri Feb 24 07:26:03 2012 From: jh at FreeBSD.org (jh@FreeBSD.org) Date: Fri Feb 24 07:26:09 2012 Subject: kern/81770: [nfs] Always "NFS append race" at every NFS mount with user specified read/write size Message-ID: <201202240726.q1O7Q27P047446@freefall.freebsd.org> Synopsis: [nfs] Always "NFS append race" at every NFS mount with user specified read/write size State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Feb 24 07:26:02 UTC 2012 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=81770 From jh at FreeBSD.org Fri Feb 24 07:26:28 2012 From: jh at FreeBSD.org (jh@FreeBSD.org) Date: Fri Feb 24 07:26:38 2012 Subject: kern/111967: [geli] glabel - label is seemingly not written to disk immediately Message-ID: <201202240726.q1O7QRla047584@freefall.freebsd.org> Synopsis: [geli] glabel - label is seemingly not written to disk immediately State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Feb 24 07:26:27 UTC 2012 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=111967 From jh at FreeBSD.org Fri Feb 24 07:26:54 2012 From: jh at FreeBSD.org (jh@FreeBSD.org) Date: Fri Feb 24 07:27:00 2012 Subject: kern/155249: [build] 8.1 buildworld failure Message-ID: <201202240726.q1O7QsPD047717@freefall.freebsd.org> Synopsis: [build] 8.1 buildworld failure State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Feb 24 07:26:53 UTC 2012 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=155249 From jh at FreeBSD.org Fri Feb 24 07:27:54 2012 From: jh at FreeBSD.org (jh@FreeBSD.org) Date: Fri Feb 24 07:28:01 2012 Subject: kern/158063: [panic] kmem_malloc(20480): kmem_map too small Message-ID: <201202240727.q1O7Rshc047856@freefall.freebsd.org> Synopsis: [panic] kmem_malloc(20480): kmem_map too small State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Feb 24 07:27:54 UTC 2012 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=158063 From osa at FreeBSD.org Fri Feb 24 11:02:48 2012 From: osa at FreeBSD.org (osa@FreeBSD.org) Date: Fri Feb 24 11:02:54 2012 Subject: conf/157466: [patch] add src to create /usr/share/calendar/calendar.british Message-ID: <201202241102.q1OB2mfk078124@freefall.freebsd.org> Synopsis: [patch] add src to create /usr/share/calendar/calendar.british Responsible-Changed-From-To: freebsd-bugs->osa Responsible-Changed-By: osa Responsible-Changed-When: Fri Feb 24 11:02:27 UTC 2012 Responsible-Changed-Why: I'lll take this PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=157466 From eugen at eg.sd.rdtc.ru Fri Feb 24 11:10:05 2012 From: eugen at eg.sd.rdtc.ru (Eugene Grosbein) Date: Fri Feb 24 11:10:11 2012 Subject: kern/165444: [netisr] [patch] incorrect processing of net.isr.bindthreads=0 Message-ID: <201202241107.q1OB77Bp081798@eg.sd.rdtc.ru> >Number: 165444 >Category: kern >Synopsis: [netisr] [patch] incorrect processing of net.isr.bindthreads=0 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 24 11:10:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 8.2-STABLE i386 >Organization: RDTC JSC >Environment: System: FreeBSD eg.sd.rdtc.ru 8.2-STABLE FreeBSD 8.2-STABLE #37: Wed Feb 15 14:22:03 NOVT 2012 root@eg.sd.rdtc.ru:/usr/local/obj/usr/local/src/sys/EG i386 >Description: I've tried to use loader tunnable 'net.isr.bindthreads=0' for 4-core router. Sometimes each of 4 NETISR kernel threads get full cpu mask 0,1,2,3 but sometimes some NETISR threads get bound to CPU3 only. See also: http://lists.freebsd.org/pipermail/freebsd-hackers/2012-January/037597.html >How-To-Repeat: See above. The effect is random. >Fix: To ensure correct processing of tunnable, small correction is needed, something like this: --- sys/net/netisr.c.orig 2012-02-24 17:45:37.000000000 +0700 +++ sys/net/netisr.c 2012-02-24 17:47:52.000000000 +0700 @@ -980,12 +980,10 @@ if (error) panic("%s: swi_add %d", __func__, error); pc->pc_netisr = nwsp->nws_intr_event; - if (netisr_bindthreads) { - error = intr_event_bind(nwsp->nws_intr_event, cpuid); + error = intr_event_bind(nwsp->nws_intr_event, netisr_bindthreads ? cpuid : NOCPU); if (error != 0) printf("%s: cpu %u: intr_event_bind: %d", __func__, cpuid, error); - } NETISR_WLOCK(); nws_array[nws_count] = nwsp->nws_cpu; nws_count++; >Release-Note: >Audit-Trail: >Unformatted: From joedeso.heaton at gmail.com Fri Feb 24 17:10:09 2012 From: joedeso.heaton at gmail.com (Joe Heaton) Date: Fri Feb 24 17:10:15 2012 Subject: misc/165452: FreeBSD's system installer stops when setting up network Message-ID: <201202241703.q1OH3Ah4063565@red.freebsd.org> >Number: 165452 >Category: misc >Synopsis: FreeBSD's system installer stops when setting up network >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 24 17:10:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Joe Heaton >Release: 9.0 >Organization: >Environment: >Description: Just using the FreeBSD memstick image on a Sandisk Cruzer memory stick to install FreeBSD on my PC and it just doesn't get past either Acquiring a DHCP lease or the screen where you manually input network settings eventually it seems to time-out, the screen goes black for a few seconds and the machine restarts I have an ASUS Striker II motherboard, Intel 2.67GHz Core 2 Quad, Nvidia ethernet ports (or it's the chipset behind them I'm not certain on that) I hope that helps! >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Fri Feb 24 17:15:42 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 24 17:15:48 2012 Subject: i386/165452: [boot] FreeBSD's system installer stops when setting up network Message-ID: <201202241715.q1OHFgGt024990@freefall.freebsd.org> Old Synopsis: FreeBSD's system installer stops when setting up network New Synopsis: [boot] FreeBSD's system installer stops when setting up network Responsible-Changed-From-To: freebsd-bugs->freebsd-i386 Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 24 17:14:31 UTC 2012 Responsible-Changed-Why: possibly machine-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=165452 From linimon at FreeBSD.org Fri Feb 24 17:23:32 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Feb 24 17:23:39 2012 Subject: kern/165428: [glabel][patch] Add xfs support to glabel Message-ID: <201202241723.q1OHNWc9033747@freefall.freebsd.org> Synopsis: [glabel][patch] Add xfs support to glabel Responsible-Changed-From-To: freebsd-bugs->freebsd-geom Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 24 17:23:18 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165428 From zi at FreeBSD.org Sat Feb 25 00:05:35 2012 From: zi at FreeBSD.org (Ryan Steinmetz) Date: Sat Feb 25 00:05:41 2012 Subject: bin/161936: [openbsm][patch] praudit can produce invalid XML output In-Reply-To: <201110231650.p9NGo3rQ017125@freefall.freebsd.org> References: <201110231647.p9NGlcm9029317@red.freebsd.org> <201110231650.p9NGo3rQ017125@freefall.freebsd.org> Message-ID: <20120225000532.GA13755@fast.rit.edu> This updated patch addresses all known conditions that result in invalid XML being produced by praudit(1). -r -------------- next part -------------- --- contrib/openbsm/libbsm/bsm_io.c.orig 2012-02-24 18:18:03.000000000 -0500 +++ contrib/openbsm/libbsm/bsm_io.c 2012-02-24 18:45:11.000000000 -0500 @@ -73,6 +73,7 @@ #include #include #include +#include #include @@ -214,6 +215,45 @@ } /* + * Prints the given data bytes as an XML-sanitized string. + */ +static void +print_xml_string(FILE *fp, const char *str, size_t len) +{ + u_int32_t i; + char visbuf[5]; + + if (len == 0) + return; + + for (i = 0; i < len; i++) { + switch (str[i]) { + case '\0': + return; + case '&': + (void) fprintf(fp, "&"); + break; + case '<': + (void) fprintf(fp, "<"); + break; + case '>': + (void) fprintf(fp, ">"); + break; + case '\"': + (void) fprintf(fp, """); + break; + case '\'': + (void) fprintf(fp, "'"); + break; + default: + (void) vis(visbuf, str[i], VIS_CSTYLE, 0); + (void) fprintf(fp, visbuf); + break; + } + } +} + +/* * Prints the beggining of attribute. */ static void @@ -1855,7 +1895,7 @@ for (i = 0; i < tok->tt.execarg.count; i++) { if (xml) { fprintf(fp, ""); - print_string(fp, tok->tt.execarg.text[i], + print_xml_string(fp, tok->tt.execarg.text[i], strlen(tok->tt.execarg.text[i])); fprintf(fp, ""); } else { @@ -1914,7 +1954,7 @@ for (i = 0; i< tok->tt.execenv.count; i++) { if (xml) { fprintf(fp, ""); - print_string(fp, tok->tt.execenv.text[i], + print_xml_string(fp, tok->tt.execenv.text[i], strlen(tok->tt.execenv.text[i])); fprintf(fp, ""); } else { From deischen at FreeBSD.org Sat Feb 25 08:00:52 2012 From: deischen at FreeBSD.org (deischen@FreeBSD.org) Date: Sat Feb 25 08:00:58 2012 Subject: bin/163863: [patch] adduser(8): confusing usr.sbin/adduser output if /etc/adduser.conf contains uidstart directive Message-ID: <201202250800.q1P80pox068355@freefall.freebsd.org> Synopsis: [patch] adduser(8): confusing usr.sbin/adduser output if /etc/adduser.conf contains uidstart directive State-Changed-From-To: open->patched State-Changed-By: deischen State-Changed-When: Sat Feb 25 07:59:46 UTC 2012 State-Changed-Why: Committed to HEAD. Will MFC to 9.0 in 2 weeks, or when I get a chance. Ping me if I seem to have forgotten. Thanks for your contribution! http://www.freebsd.org/cgi/query-pr.cgi?pr=163863 From dfilter at FreeBSD.ORG Sat Feb 25 08:10:15 2012 From: dfilter at FreeBSD.ORG (dfilter service) Date: Sat Feb 25 08:10:20 2012 Subject: bin/163863: commit references a PR Message-ID: <201202250810.q1P8AEJU078181@freefall.freebsd.org> The following reply was made to PR bin/163863; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/163863: commit references a PR Date: Sat, 25 Feb 2012 07:59:18 +0000 (UTC) Author: deischen Date: Sat Feb 25 07:58:59 2012 New Revision: 232146 URL: http://svn.freebsd.org/changeset/base/232146 Log: When using uidstart in /etc/adduser.conf, get the next available user id and show it in the "Uid [xxx]" prompt. PR: 163863 Submitted by: Moritz Wilhelmy (mw at wzff dot de) MFC after: 2 weeks Modified: head/usr.sbin/adduser/adduser.sh Modified: head/usr.sbin/adduser/adduser.sh ============================================================================== --- head/usr.sbin/adduser/adduser.sh Sat Feb 25 04:54:51 2012 (r232145) +++ head/usr.sbin/adduser/adduser.sh Sat Feb 25 07:58:59 2012 (r232146) @@ -488,6 +488,7 @@ get_uid() { _prompt= if [ -n "$uuid" ]; then + uuid=`get_nextuid $uuid` _prompt="Uid [$uuid]: " else _prompt="Uid (Leave empty for default): " _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From skin.alternative at gmail.com Sat Feb 25 14:30:13 2012 From: skin.alternative at gmail.com (Eungene) Date: Sat Feb 25 14:30:39 2012 Subject: kern/165470: NVIDIA video driver crash compile at 10_CURRENT Message-ID: <201202251423.q1PENDSf032537@red.freebsd.org> >Number: 165470 >Category: kern >Synopsis: NVIDIA video driver crash compile at 10_CURRENT >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Feb 25 14:30:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eungene >Release: 10_CURRENT >Organization: >Environment: FreeBSD stug.hatzer 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Feb 25 01:10:06 UTC 2012 user@stug.hatzer:/usr/obj/usr/src/sys/GENERIC i386 >Description: After updating to CURRENT kldlad old nvidia.ko is failed: "KLD nvidia.ko: depends on kernel or version mismatch" When tried to recompile it from ports , get : ===> Building for nvidia-driver-256.53 ===> src (all) cc -O2 -pipe -fno-strict-aliasing -DNV_VERSION_STRING=\"256.53\" -D__KERNEL__ -DNVRM -O -UDEBUG -U_DEBUG -DNDEBUG -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-sse -mno-mmx -msoft-float -ffreestanding -fstack-protector -std=iso9899:1999 -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -c nvidia_ctl.c cc1: internal compiler error: Segmentation fault: 11 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. *** [nvidia_ctl.o] Error code 1 Stop in /usr/ports/x11/nvidia-driver/work/NVIDIA-FreeBSD-x86-256.53/src. *** [all] Error code 1 Stop in /usr/ports/x11/nvidia-driver/work/NVIDIA-FreeBSD-x86-256.53. *** [do-build] Error code 1 Stop in /usr/ports/x11/nvidia-driver. *** [build] Error code 1 Stop in /usr/ports/x11/nvidia-driver. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From gjb at FreeBSD.org Sat Feb 25 14:34:10 2012 From: gjb at FreeBSD.org (gjb@FreeBSD.org) Date: Sat Feb 25 14:34:17 2012 Subject: ports/165470: x11/nvidia-driver: NVIDIA video driver crash compile at 10_CURRENT Message-ID: <201202251434.q1PEYA89045274@freefall.freebsd.org> Old Synopsis: NVIDIA video driver crash compile at 10_CURRENT New Synopsis: x11/nvidia-driver: NVIDIA video driver crash compile at 10_CURRENT Responsible-Changed-From-To: freebsd-bugs->danfe Responsible-Changed-By: gjb Responsible-Changed-When: Sat Feb 25 14:33:08 UTC 2012 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=165470 From patrick_dkt at yahoo.com.hk Sat Feb 25 14:40:15 2012 From: patrick_dkt at yahoo.com.hk (Patrick Dung) Date: Sat Feb 25 14:40:21 2012 Subject: bin/165471: /usr/bin/bsdgrep hang/very slow with mmap Message-ID: <201202251433.q1PEXHw4050327@red.freebsd.org> >Number: 165471 >Category: bin >Synopsis: /usr/bin/bsdgrep hang/very slow with mmap >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 25 14:40:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Patrick Dung >Release: Freebsd 9.0 >Organization: none >Environment: root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: bsdgrep with --mmap would sometimes cause hang/slow response. Also it is eating memory when it is very slow/hang. cd /usr/local/share and compare grep and bsdgrep: [root@fbsd9-test /usr/local/share]# time grep --mmap -r -e '^Feb' * deplate/locale/de.latin1:February deplate/locale/de.latin1:Februar real 0m1.875s user 0m0.085s sys 0m1.327s [root@fbsd9-test /usr/local/share]# time bsdgrep --mmap -r -e '^Feb' * ^C^C^C^C^C^C^C^C^C^C^C^C^C^C^C^C^C real 1m40.931s user 0m0.427s sys 1m22.064s >How-To-Repeat: only encounter problem with some files >Fix: use GNU grep >Release-Note: >Audit-Trail: >Unformatted: From adrian at FreeBSD.org Sat Feb 25 19:03:14 2012 From: adrian at FreeBSD.org (adrian@FreeBSD.org) Date: Sat Feb 25 19:03:25 2012 Subject: kern/165382: [kernel] taskqueue_unblock doesn't unblock currently queued tasks Message-ID: <201202251903.q1PJ3EwU091958@freefall.freebsd.org> Synopsis: [kernel] taskqueue_unblock doesn't unblock currently queued tasks Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Sat Feb 25 19:02:48 UTC 2012 Responsible-Changed-Why: Flipping to -wireless for now.. http://www.freebsd.org/cgi/query-pr.cgi?pr=165382 From adrian at FreeBSD.org Sat Feb 25 19:50:12 2012 From: adrian at FreeBSD.org (Adrian Chadd) Date: Sat Feb 25 19:50:19 2012 Subject: misc/165475: [ath] operational mode change doesn't poke the underlying rate control module hard enough Message-ID: <201202251949.q1PJnp2p039877@red.freebsd.org> >Number: 165475 >Category: misc >Synopsis: [ath] operational mode change doesn't poke the underlying rate control module hard enough >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 25 19:50:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Adrian Chadd >Release: 9.0-RELEASE, w/ -HEAD net80211/ath >Organization: >Environment: >Description: This reared its ugly head when testing with an AR5211 (11b/11a, no 11g.) Specifically: * the operational mode change has occured (sc->sc_currates is pointing to the 11b table); * ath_sample_node->ratemask is 0xff for some reason - likely indicating it was assembled from the 11a rate able (which in ath_hal/ar5211/ar5211_phy.c has 8 11a rates in it); * so ath_rate_findrate() thinks best_rix is fine and the current rate table mapping is fine. This is likely very similar to other issues with rate control in ath being slightly weird after an operational mode change, if the NIC hasn't transitioned back into the original operating mode. The rate control code isn't informed of this (it only gets told of association/reassociation, and ath_rate_sample is only updating the rate table on _new_ associations) so it doesn't realise it has to rethink its current rate table setup. >How-To-Repeat: Setup: * net80211/ath and kernel built with full debugging, assert, witness, etc * associated to an 11a AP (so it has the 11a OFDM table) * running iperf * the session hangs for some reason, I'm not quite sure yet * .. then the bgscan code kicks in and starts scanning * .. and for some reason, the NIC is in 11b mode now, and tries TX'ing * But the "best rix" in ath_rate_findrate (in ath_rate_sample) is referencing an 11a rate, not an 11b rate - ie, rix > the current greatest rix in the config. * .. so things panic. >Fix: I'm not yet sure. Because of background scanning, it's entirely possible the NIC will spend a non-zero amount of time off channel, TX'ing things which SHOULD have fixed rates. The ath_rate module code isn't currently informed about channel changes, as the channel change doesn't inform all associated nodes of this fact. Any rate control lookups during off-channel times will cause things to be confused. I should first check whether this crash occured with the NIC being in off-channel mode. If so, it shouldn't have tried TXing a data frame at this point. No, i just checked - ni->ni_vap->iv_flags is 0x430c4010 - and 0x80 is IEEE80211_F_SCAN; 0x100 is IEEE80211_F_ASCAN. So first let's see if _why_ the NIC is in 11b mode can be made obvious. Then, once that's done, figure out why the transition didn't trigger a rate control update. >Release-Note: >Audit-Trail: >Unformatted: From adrian at FreeBSD.org Sat Feb 25 19:53:58 2012 From: adrian at FreeBSD.org (adrian@FreeBSD.org) Date: Sat Feb 25 19:54:09 2012 Subject: kern/165475: [ath] operational mode change doesn't poke the underlying rate control module hard enough Message-ID: <201202251953.q1PJrvrN038513@freefall.freebsd.org> Synopsis: [ath] operational mode change doesn't poke the underlying rate control module hard enough Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Sat Feb 25 19:53:43 UTC 2012 Responsible-Changed-Why: Reassign http://www.freebsd.org/cgi/query-pr.cgi?pr=165475 From wblock at FreeBSD.org Sat Feb 25 20:10:08 2012 From: wblock at FreeBSD.org (Warren Block) Date: Sat Feb 25 20:10:15 2012 Subject: bin/165477: [rc] dhclient is run twice Message-ID: <201202252007.q1PK7ruY074762@red.freebsd.org> >Number: 165477 >Category: bin >Synopsis: [rc] dhclient is run twice >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 25 20:10:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Warren Block >Release: 8.3-PRERELEASE >Organization: >Environment: FreeBSD lightning 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Sat Feb 25 12:20:37 MST 2012 root@lightning:/usr/obj/usr/src/sys/LIGHTNING i386 >Description: Since r231278 (MFC of r226345, r226464, r226879), dhclient is executed from devd.conf even when already running. With ifconfig_em0="SYNCDHCP", this output is produced: Setting hostname: lightning >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From rstone at FreeBSD.org Sat Feb 25 21:40:07 2012 From: rstone at FreeBSD.org (Ryan Stone) Date: Sat Feb 25 21:40:14 2012 Subject: misc/165479: LOR in Userland Dtrace(fasttrap_provs.fth_table[i].ftb_mtx/dtrace_provider_lock) Message-ID: <201202252137.q1PLbwGp033525@red.freebsd.org> >Number: 165479 >Category: misc >Synopsis: LOR in Userland Dtrace(fasttrap_provs.fth_table[i].ftb_mtx/dtrace_provider_lock) >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: Sat Feb 25 21:40:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Ryan Stone >Release: HEAD >Organization: >Environment: FreeBSD vm-head 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r232049M: Thu Feb 23 15:25:50 EST 2012 rstone@rstone-laptop:/home/rstone/freebsd/obj/usr/home/rstone/freebsd/head/sys/DTRACE amd64 >Description: I got the following LOR when enabling a Userland DTrace probe: lock order reversal: 1st 0xffffff80022f9680 fasttrap_provs.fth_table[i].ftb_mtx (fasttrap_provs.fth_table[i].ftb_mtx) @ /usr/home/rstone/freebsd/head/sys/modules/dtrace/fasttrap/../../../cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c:1474 2nd 0xffffffff81a56c40 dtrace_provider_lock (dtrace_provider_lock) @ /usr/home/rstone/freebsd/head/sys/modules/dtrace/dtrace/../../../cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c:7397 KDB: stack backtrace: db_trace_self_wrapper() at db_trace_self_wrapper+0x2a kdb_backtrace() at kdb_backtrace+0x37 _witness_debugger() at _witness_debugger+0x2c witness_checkorder() at witness_checkorder+0x853 _sx_xlock() at _sx_xlock+0x61 dtrace_register() at dtrace_register+0x36b fasttrap_provider_lookup() at fasttrap_provider_lookup+0x5f2 fasttrap_meta_provide() at fasttrap_meta_provide+0x84 dtrace_helper_provide() at dtrace_helper_provide+0x172 dtrace_helper_provider_register() at dtrace_helper_provider_register+0xb8 dtrace_ioctl_helper() at dtrace_ioctl_helper+0xa1d devfs_ioctl_f() at devfs_ioctl_f+0x7a kern_ioctl() at kern_ioctl+0xcd sys_ioctl() at sys_ioctl+0xfd amd64_syscall() at amd64_syscall+0x3bc Xfast_syscall() at Xfast_syscall+0xf7 --- syscall (54, FreeBSD ELF64, sys_ioctl), rip = 0x800b6aebc, rsp = 0x7fffffffda68, rbp = 0x8010070c0 --- >How-To-Repeat: Follow instructions here: Then run the following: # dtrace -c ./db -n 'database$target:::' >Fix: >Release-Note: >Audit-Trail: >Unformatted: From rstone at FreeBSD.org Sat Feb 25 21:43:11 2012 From: rstone at FreeBSD.org (rstone@FreeBSD.org) Date: Sat Feb 25 21:43:17 2012 Subject: misc/165479: LOR in Userland Dtrace(fasttrap_provs.fth_table[i].ftb_mtx/dtrace_provider_lock) Message-ID: <201202252143.q1PLhBwd042338@freefall.freebsd.org> Synopsis: LOR in Userland Dtrace(fasttrap_provs.fth_table[i].ftb_mtx/dtrace_provider_lock) Responsible-Changed-From-To: freebsd-bugs->rstone Responsible-Changed-By: rstone Responsible-Changed-When: Sat Feb 25 21:40:58 UTC 2012 Responsible-Changed-Why: I'll take DTrace-related PRs. http://www.freebsd.org/cgi/query-pr.cgi?pr=165479 From wblock at wonkity.com Sat Feb 25 22:10:12 2012 From: wblock at wonkity.com (Warren Block) Date: Sat Feb 25 22:10:18 2012 Subject: bin/165477: [rc] dhclient is run twice Message-ID: <201202252210.q1PMACu4060578@freefall.freebsd.org> The following reply was made to PR bin/165477; it has been noted by GNATS. From: Warren Block To: bug-followup@FreeBSD.org, wblock@FreeBSD.org Cc: Subject: Re: bin/165477: [rc] dhclient is run twice Date: Sat, 25 Feb 2012 15:09:32 -0700 (MST) Startup output was truncated, trying again: Setting hostname: lightning . Starting dhclient. em0: no link ... . . got link DHCPREQUEST on em0 to 255.255.255.255 port 67 DHCPDISCOVER on em0 to 255.255.255.255 port 67 interval 8 DHCPOFFER from 10.0.0.1 DHCPREQUEST on em0 to 255.255.255.255 port 67 DHCPACK from 10.0.0.1 bound to 10.0.0.8 -- renewal in 300 seconds. Starting Network: lo0 em0. lo0: flags=8049 metric 0 mtu 16384 options=3 inet 127.0.0.1 netmask 0xff000000 em0: flags=8843 metric 0 mtu 9216 options=9b ether 00:02:b3:a9:93:d7 inet 10.0.0.8 netmask 0xffffff00 broadcast 10.0.0.255 media: Ethernet autoselect (1000baseT ) status: active Starting devd. Starting ums0 moused . dhclient already running? (pid=290). Creating and/or trimming log files From dan at eparklabs.com Sat Feb 25 22:14:08 2012 From: dan at eparklabs.com (Dan Fitzpatrick) Date: Sat Feb 25 22:14:15 2012 Subject: Port conflict with x11/libSM and misc/ossp-uuid Message-ID: <11728C24-11C7-4F03-845D-4CD5597E08E1@eparklabs.com> Not sure if this is the best place to send a port conflict bug. Please redirect me if it should go somewhere else. On: kern.ostype: FreeBSD kern.osrelease: 9.0-RELEASE kern.osrevision: 199506 kern.version: FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 (VirtualBox installation) After installing misc/ossp-uuid (part of PostgreSQL 9.1 Server with UUID option on) Then the following port fails: cd /usr/ports/x11/libSM make install clean ... ===> Building for libSM-1.2.0,1 make all-recursive Making all in src CC sm_auth.lo CC sm_client.lo CC sm_error.lo CC sm_genid.lo sm_genid.c: In function 'SmsGenerateClientID': sm_genid.c:115: error: storage size of 'uuid' isn't known sm_genid.c:118: error: too many arguments to function 'uuid_create' sm_genid.c:119: error: 'uuid_s_ok' undeclared (first use in this function) sm_genid.c:119: error: (Each undeclared identifier is reported only once sm_genid.c:119: error: for each function it appears in.) sm_genid.c:122: warning: implicit declaration of function 'uuid_to_string' sm_genid.c:122: warning: nested extern declaration of 'uuid_to_string' sm_genid.c:115: warning: unused variable 'uuid' *** Error code 1 Stop in /usr/ports/x11/libSM/work/libSM-1.2.0/src. *** Error code 1 Stop in /usr/ports/x11/libSM/work/libSM-1.2.0. *** Error code 1 Stop in /usr/ports/x11/libSM/work/libSM-1.2.0. *** Error code 1 Stop in /usr/ports/x11/libSM. *** Error code 1 FIX: cd /usr/ports/misc/ossp-uuid make deinstall cd /usr/ports/x11/libSM make install clean From eadler at FreeBSD.org Sun Feb 26 04:16:19 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Sun Feb 26 04:16:25 2012 Subject: kern/165463: FreeBSD doesn't work with NIC based on RLT8111E Message-ID: <201202260416.q1Q4GJPY013547@freefall.freebsd.org> Synopsis: FreeBSD doesn't work with NIC based on RLT8111E Responsible-Changed-From-To: freebsd-wireless->freebsd-bugs Responsible-Changed-By: eadler Responsible-Changed-When: Sun Feb 26 04:16:02 UTC 2012 Responsible-Changed-Why: aah - this isn't wireless http://www.freebsd.org/cgi/query-pr.cgi?pr=165463 From exzzec at gmail.com Sun Feb 26 16:10:01 2012 From: exzzec at gmail.com (Nikolay) Date: Sun Feb 26 16:10:07 2012 Subject: kern/165488: Fatal trap 12 jails and ppp , kernel with vimage, altq, pf Message-ID: <201202261609.q1QG9GmB072718@red.freebsd.org> >Number: 165488 >Category: kern >Synopsis: Fatal trap 12 jails and ppp , kernel with vimage, altq, pf >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 26 16:10:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Nikolay >Release: 9.0-RELEASE >Organization: mycorp >Environment: FreeBSD hell 9.0-RELEASE FreeBSD 9.0-RELEASE #6: Sun Feb 26 16:11:48 YEKT 2012 root@hell:/usr/obj/usr/src/sys/VNETGEN i386 >Description: FreeBSD going to Fatal trap 12 when ppp start and one or more jails is work. I test this on other computer - problems is repeated. If all jails is stop and ppp start system not go to Fatal trap 12. (kernel compile with vimage, altq, pf). If start any jail and start ppp system go fatal trap. If kernel compile without pf and altq then ppp and jails work. hell dumped core - see /var/crash/vmcore.27 Sun Feb 26 19:09:18 YEKT 2012 FreeBSD hell 9.0-RELEASE FreeBSD 9.0-RELEASE #5: Mon Feb 20 09:40:42 YEKT 2012 root@hell:/usr/obj/usr/src/sys/VNETGEN i386 panic: page fault GNU gdb 6.1.1 [FreeBSD] Copyright 2004 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-marcel-freebsd"... Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 fault virtual address = 0x18 fault code = supervisor read, page not present instruction pointer = 0x20:0xc0b08b36 stack pointer = 0x28:0xd670097c frame pointer = 0x28:0xd6700994 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 = 51915 (ppp) trap number = 12 panic: page fault cpuid = 0 KDB: stack backtrace: #0 0xc0a8c2b7 at kdb_backtrace+0x47 #1 0xc0a595e7 at panic+0x117 #2 0xc0da5733 at trap_fatal+0x323 #3 0xc0da57ed at trap_pfault+0xad #4 0xc0da6575 at trap+0x465 #5 0xc0d8f4cc at calltrap+0x6 #6 0xc0b0df88 at if_alloc+0xb8 #7 0xc0b1e8ec at tuncreate+0x11c #8 0xc0b2071a at tunopen+0x2a #9 0xc0970ae8 at devfs_open+0x128 #10 0xc0dc5b22 at VOP_OPEN_APV+0x42 #11 0xc0af9fc1 at vn_open_cred+0x541 #12 0xc0afa12b at vn_open+0x3b #13 0xc0af159c at kern_openat+0x1ec #14 0xc0af19c5 at kern_open+0x35 #15 0xc0af1a00 at sys_open+0x30 #16 0xc0da5d55 at syscall+0x355 #17 0xc0d8f531 at Xint0x80_syscall+0x21 Uptime: 1h30m38s Physical memory: 491 MB Dumping 173 MB: 158 142 126 110 94 78 62 46 30 14 >How-To-Repeat: 1) compile kernel with altq,vimage,pf ############################# options VIMAGE device epair device if_bridge device pf device pflog device pfsync options ALTQ options ALTQ_CBQ options ALTQ_RED options ALTQ_RIO options ALTQ_HFSC options ALTQ_PRIQ options ALTQ_NOPCC ############################# 2)Create and start jail with use vimage 3)Start ppp >Fix: >Release-Note: >Audit-Trail: >Unformatted: From brucec at FreeBSD.org Sun Feb 26 16:48:30 2012 From: brucec at FreeBSD.org (brucec@FreeBSD.org) Date: Sun Feb 26 16:48:37 2012 Subject: misc/163155: System halt isnt realy halt Message-ID: <201202261648.q1QGmS3c038918@freefall.freebsd.org> Synopsis: System halt isnt realy halt State-Changed-From-To: open->closed State-Changed-By: brucec State-Changed-When: Sun Feb 26 16:44:23 UTC 2012 State-Changed-Why: This isn't a bug: what the message means is that the system is in a state where all the filesystems are unmounted and the system is ready to be powered off. At this point it's not possible to do anything other than power off or reboot the machine, though the keyboard and peripherals are still powered on and running. http://www.freebsd.org/cgi/query-pr.cgi?pr=163155 From fernando.apesteguia at gmail.com Sun Feb 26 20:20:01 2012 From: fernando.apesteguia at gmail.com (Fernnado) Date: Sun Feb 26 20:20:07 2012 Subject: misc/165492: bsdinstall segmentation fault Message-ID: <201202262013.q1QKDtWC009656@red.freebsd.org> >Number: 165492 >Category: misc >Synopsis: bsdinstall segmentation fault >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 26 20:20:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Fernnado >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD hammer 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Fri Feb 17 18:27:35 CET 2012 root@hammer:/usr/obj/usr/src/sys/APEKERNEL9 amd64 >Description: bsdinstall distextract|distfetch causes a segmentation fault when invoked from an installed system. It does not check for the presence of the DISTRIBUTIONS variable in the environment. >How-To-Repeat: Invoke either bsdinstall distfetch or bsdinstall distextract >Fix: Apply the attached patch to properly check for the presence of the DISTRIBUTIONS variable before trying to make a copy Patch attached with submission follows: Files /usr/src/usr.sbin/bsdinstall/distextract/distextract and ./distextract/distextract differ diff -ruN /usr/src/usr.sbin/bsdinstall/distextract/distextract.c ./distextract/distextract.c --- /usr/src/usr.sbin/bsdinstall/distextract/distextract.c 2012-01-03 04:25:48.000000000 +0100 +++ ./distextract/distextract.c 2012-02-26 20:49:34.000000000 +0100 @@ -38,9 +38,16 @@ int main(void) { - char *diststring = strdup(getenv("DISTRIBUTIONS")); + char *diststring; const char **dists; int i, retval, ndists = 0; + + if (getenv("DISTRIBUTIONS") == NULL) { + fprintf(stderr, "DISTRIBUTIONS variable is not set\n"); + return (1); + } + + diststring = strdup(getenv("DISTRIBUTIONS")); for (i = 0; diststring[i] != 0; i++) if (isspace(diststring[i]) && !isspace(diststring[i+1])) ndists++; Files /usr/src/usr.sbin/bsdinstall/distextract/distextract.o and ./distextract/distextract.o differ Files /usr/src/usr.sbin/bsdinstall/distfetch/distfetch and ./distfetch/distfetch differ diff -ruN /usr/src/usr.sbin/bsdinstall/distfetch/distfetch.c ./distfetch/distfetch.c --- /usr/src/usr.sbin/bsdinstall/distfetch/distfetch.c 2012-01-03 04:25:48.000000000 +0100 +++ ./distfetch/distfetch.c 2012-02-26 20:49:39.000000000 +0100 @@ -37,9 +37,16 @@ int main(void) { - char *diststring = strdup(getenv("DISTRIBUTIONS")); + char *diststring; char **urls; int i, nfetched, ndists = 0; + + if (getenv("DISTRIBUTIONS") == NULL) { + fprintf(stderr, "DISTRIBUTIONS variable is not set\n"); + return (1); + } + + diststring = strdup(getenv("DISTRIBUTIONS")); for (i = 0; diststring[i] != 0; i++) if (isspace(diststring[i]) && !isspace(diststring[i+1])) ndists++; Files /usr/src/usr.sbin/bsdinstall/distfetch/distfetch.o and ./distfetch/distfetch.o differ >Release-Note: >Audit-Trail: >Unformatted: From eadler at FreeBSD.org Sun Feb 26 20:46:51 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Sun Feb 26 20:47:07 2012 Subject: bin/165492: bsdinstall(8): segmentation fault Message-ID: <201202262046.q1QKkoFe059507@freefall.freebsd.org> Old Synopsis: bsdinstall segmentation fault New Synopsis: bsdinstall(8): segmentation fault Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: eadler Responsible-Changed-When: Sun Feb 26 20:46:08 UTC 2012 Responsible-Changed-Why: Fix synopsys and assign http://www.freebsd.org/cgi/query-pr.cgi?pr=165492 From kes-kes at yandex.ru Sun Feb 26 21:00:04 2012 From: kes-kes at yandex.ru (Eugen Konkov) Date: Sun Feb 26 21:00:12 2012 Subject: misc/165493: onestop/stop problem with rc scripts Message-ID: <201202262052.q1QKq6Fu070652@red.freebsd.org> >Number: 165493 >Category: misc >Synopsis: onestop/stop problem with rc scripts >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 Feb 26 21:00:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugen Konkov >Release: 8.3-PRERELEASE >Organization: ISP FreeLine >Environment: FreeBSD 8.3-PRERELEASE #3 r231881 >Description: start service as ' onestart' now you can stop service using ' stop' but when you use second time, when no server is started you get warn message (see below) >How-To-Repeat: # cd /usr/local/etc/rc.d/ # ./openvpn onestart Starting openvpn. # ./openvpn stop Stopping openvpn. Waiting for PIDS: 66602. # ./openvpn stop Cannot 'stop' openvpn. Set openvpn_enable to YES in /etc/rc.conf or use 'onestop' instead of 'stop'. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From eadler at FreeBSD.org Sun Feb 26 21:14:20 2012 From: eadler at FreeBSD.org (eadler@FreeBSD.org) Date: Sun Feb 26 21:14:27 2012 Subject: misc/165493: onestop/stop problem with rc scripts Message-ID: <201202262114.q1QLEKun086467@freefall.freebsd.org> Synopsis: onestop/stop problem with rc scripts Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: eadler Responsible-Changed-When: Sun Feb 26 21:14:08 UTC 2012 Responsible-Changed-Why: over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=165493 From linimon at FreeBSD.org Mon Feb 27 01:14:30 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Feb 27 01:14:43 2012 Subject: powerpc/165387: bsdinstall(8) not starting with Apple G5 on powerpc64 Message-ID: <201202270114.q1R1ETg1013071@freefall.freebsd.org> Old Synopsis: bsdinstall not starting with Apple G5 on powerpc64 New Synopsis: bsdinstall(8) not starting with Apple G5 on powerpc64 Responsible-Changed-From-To: freebsd-bugs->freebsd-ppc Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 27 01:13:54 UTC 2012 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=165387 From linimon at FreeBSD.org Mon Feb 27 01:16:45 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Feb 27 01:16:54 2012 Subject: kern/165240: [lor] lock order reversal in vfs layer Message-ID: <201202270116.q1R1GiKM013434@freefall.freebsd.org> Old Synopsis: BUG New Synopsis: [lor] lock order reversal in vfs layer Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 27 01:15:59 UTC 2012 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=165240 From linimon at FreeBSD.org Mon Feb 27 01:22:03 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Feb 27 01:22:15 2012 Subject: kern/165488: [ppp] [panic] Fatal trap 12 jails and ppp , kernel with vimage, altq, pf Message-ID: <201202270122.q1R1M3Tg022013@freefall.freebsd.org> Old Synopsis: Fatal trap 12 jails and ppp , kernel with vimage, altq, pf New Synopsis: [ppp] [panic] Fatal trap 12 jails and ppp , kernel with vimage, altq, pf Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 27 01:21:42 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165488 From bugmaster at FreeBSD.org Mon Feb 27 11:12:20 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 27 11:12:38 2012 Subject: Current problem reports containing patches Message-ID: <201202271112.q1RBCGM5097358@freefall.freebsd.org> (Note: an HTML version of this report is available at http://people.freebsd.org/~linimon/studies/prs/prs_for_tag_patch.html .) S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/165486 miwi [PATCH] irc/weechat: update to 0.3.7 o ports/165483 [patch] graphics/sane-backends creates a circular rcor o ports/165481 itetcu [PATCH] audio/cpige broken on amd64 , patch attached f ports/165464 x11-drivers/input-wacom is broken [patch] f ports/165455 swills [PATCH] devel/p5-constant-def: add missing DEPENDS o ports/165454 osa [patch] www/nginx: re-order extra_commands f ports/165453 swills [PATCH] textproc/p5-Unicode-LineBreak: add missing DEP o ports/165451 python lang/python27 has incorrect CFLAGS when building with o ports/165450 portmgr [patch] Mk/bsd.port.mk: COPYTREE_* macro enhancements o ports/165447 mva [patch] editors/hte: update to 2.0.19 o kern/165444 [netisr] [patch] incorrect processing of net.isr.bindt f ports/165442 sunpoet [PATCH] devel/p5-Perl-PrereqScanner: update to 1.010 f ports/165440 sunpoet [PATCH] textproc/p5-Parse-CSV: update to 2.00 p docs/165431 gjb [patch] spelling corrections in 23 manpages o bin/165429 eadler [patch] wall(1): add multibyte character support o kern/165428 geom [glabel][patch] Add xfs support to glabel o ports/165427 skv [PATCH] devel/p5-POE-Exceptions: mark deprecated o ports/165426 skv [PATCH] devel/p5-POE-Component-DebugShell: add missing o ports/165419 portmgr [patch] Mk/bsd.port.mk: "make showconfig" to tell whet o ports/165416 johans [PATCH]lang/ocaml-doc: update to 3.12.1 o ports/165408 delphij [patch] net/openldap24-server: fix BDB detection. o ports/165406 mm [PATCH] devel/binutils: enable gold and sysroot suppor o ports/165404 tota [PATCH] mail/mailman: separate japanese/mailman from t f ports/165403 tota [PATCH] japanese/mailman: Switch to Japanized mailman f ports/165398 [PATCH] sysutils/bacula-server: upgrade to 5.2.6 f ports/165393 swills [PATCH] devel/p5-Oogly: add missing DEPENDS o ports/165390 lev [PATCH] devel/subversion: fix build/package when WITH_ o ports/165385 danfe [PATCH] irc/bitchx remove dep on net/socks5 o bin/165384 [PATCH] Add option to suppress RA prefix info o ports/165380 [patch] Unbreak net/msend on 9.0 + add rc script o ports/165376 nivit [PATCH] textproc/gladtex: migrate from libungif to gif f ports/165356 rm x11-fonts/paratype was update upstream. once again [pa o ports/165341 sunpoet [patch] audio/p5-Ogg-Vorbis-Header fails to build o ports/165338 doceng [patch] print/ghostscript9 has undocumented dependency o ports/165328 ashish [PATCH] editors/emacs22: switch from libungif to gifli o ports/165327 ashish [PATCH] editors/emacs21: migrate from libungif to gifl f ports/165322 bapt [PATCH] sysutils/fusefs-s3fs: doesn't build depend on o bin/165321 eadler [patch] add see also swapinfo to df(1) o ports/165313 roam [patch] security/apg fails to build with WITH_CRACKLIB o ports/165312 roam [patch] security/apg typo f ports/165309 swills [PATCH] net-im/kmess-kde4: switch from libungif to gif o kern/165296 net [vlan] [patch] Fix EVL_APPLY_VLID, update EVL_APPLY_PR o ports/165292 miwi [PATCH] Allow emulators/mame to be build with clang f ports/165288 sunpoet [PATCH] databases/p5-DBM-Deep: update to 2.0004 o ports/165275 sahil [PATCH] devel/p5-MooseX-Storage: move some DEPENDS to o kern/165271 [ata] [patch] Correct Marvell SATA controller names o ports/165268 skv [PATCH] devel/p5-MooseX-Declare: update to 0.35 f ports/165265 crees [patch] databases/postgresql-docs: build docs for Pg 9 o ports/165254 x11 [PATCH] fixes to x11-fonts/xorg-fonts makefile to hand o ports/165248 portmgr [PATCH] [MAINTAINER] Repocopy (rename) and update to x f ports/165247 [PATCH] audio/alsa-plugins: remove parts of FreeBSD-sp f ports/165244 crees [PATCH] Fix port: net/v6eval on 9+ f ports/165243 swills [PATCH] devel/p5-MooseX-App-Cmd: add missing DEPENDS, o ports/165242 skv [PATCH] devel/p5-Moose-Policy: update to 0.05 o ports/165241 clsung [PATCH] devel/p5-Module-CPANTS-Analyse: add missing DE o ports/165238 portmgr [bsd.port.mk] [patch] Resize port config dialog box in o ports/165237 clsung [PATCH] devel/p5-Module-Build-Convert: add missing DEP f ports/165233 kuriyama [PATCH] devel/p5-Log-Dispatch-Screen-Color: add missin o ports/165219 kuriyama [PATCH] devel/p5-Log-Dispatch-Colorful: add missing DE a ports/165211 jgh [PATCH] multimedia/zoneminder: update up to 1.25.0 rel f ports/165197 [patch] benchmarks/xdd: fix CPU detection slew of stri o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking o ports/165184 clsung [PATCH] devel/p5-Git-PurePerl: add misisng DEPENDS o ports/165183 skv [PATCH] devel/p5-Getopt-Popt: mark deprecated since th o ports/165176 [PATCH] mail/dovecot: update to 2.0.18, mail/dovecot2- o kern/165174 net [patch] [tap] allow tap(4) to keep its address on clos o ports/165168 skv [PATCH] www/p5-HTTP-BrowserDetect: update to 1.41 o ports/165161 lth [PATCH] devel/p5-File-Find-Rule-Perl: add missing DEPE f ports/165159 miwi [PATCH] lang/ocaml: fix build error for systems that u o ports/165156 mm [patch] devel/pcre does not build with LIBEDIT OPTION p stand/165155 jilles [PATCH][bin][standards] xargs does not print diagnosti f ports/165150 swills [PATCH] devel/p5-File-Dir-Dumper: update to 0.0.7 o ports/165148 acm [PATCH] devel/p5-File-DesktopEntry: add missing DEPEND o ports/165143 portmgr [exp-run] [patch] devel/apr: CVE / Update / exp-run / o ports/165139 [PATCH] astro/gpstk: update to 1.7 f ports/165131 sunpoet [PATCH] devel/p5-Capture-Tiny: update to 0.16 o ports/165125 portmgr [patch] ports/Mk/bsd.port.mk misspelling correction f ports/165124 swills [PATCH] devel/p5-Digest-TransformPath: remove broken t f ports/165123 swills [PATCH] devel/p5-Devel-ebug: update to 0.52 o ports/165112 kuriyama [PATCH] devel/p5-Devel-KYTProf: add missing DEPENDS o ports/165109 miwi [PATCH] devel/p5-Devel-Events-Objects: add missing dep f ports/165074 miwi [PATCH] www/xpi-bookmarkdd: update to 0.7.5 f ports/165073 miwi [PATCH] www/xpi-yslow: update to 3.0.9 o ports/165072 nork [PATCH] www/xpi-user_agent_switcher: update to 0.7.3 f ports/165071 miwi [PATCH] www/xpi-stumbleupon: update to 3.76 f ports/165070 miwi [PATCH] www/xpi-searchstatus: update to 1.39 f ports/165069 miwi [PATCH] www/xpi-modify_headers: update to 0.7.1.2b o ports/165068 nork [PATCH] www/xpi-it_s_all_text: update to 1.6.0 o ports/165067 skreuzer [PATCH] www/xpi-httpfox: update to 0.8.10 o ports/165065 nork [PATCH] www/xpi-firemobilesimulator: update to 1.2.2 o ports/165064 skreuzer [PATCH] www/xpi-errorzilla: update to 0.42 f ports/165062 miwi [PATCH] mail/xpi-dispmua: update to 1.6.6 a ports/165046 sahil [PATCH] mail/postfix preserve ident in mailer.conf f ports/165042 swills [PATCH] devel/p5-Data-Average: add missing DEPENDS f ports/165037 swills [PATCH] devel/p5-Config-Wrest: add missing DEPENDS o sparc/165025 sparc64 [PATCH] zfsboot support for sparc64 o ports/165023 gordon [patch] devel/p4v port is marked broken and also stale f ports/165016 pgollucci [PATCH] mail/rubygem-mail: update to 2.4.1 o ports/165003 [patch] audio/icecast 2.3.2 may leak memory and take e o bin/164976 [PATCH] tzsetup(8): Fix VERBOSE reporting on results w o ports/164975 clsung [PATCH] www/p5-Jifty: add missing DEPENDS o ports/164973 kuriyama [PATCH] www/p5-Plack: add TEST_DEPENDS, other changes s ports/164963 crees [PATCH] ports-mgmt/porttools: add submit -P to print P p docs/164940 eadler [PATCH] xref err.3 in strerror.3 o docs/164939 eadler [PATCH] add a standards section to err.3 o docs/164938 eadler [PATCH] consistently use file system in config and tun o bin/164933 [nfs] [patch] mountd(8) drops mixed security flavors f o docs/164920 eadler [PATCH] changes to swap section of config chapter f ports/164913 kuriyama [PATCH] devel/p5-Module-Metadata: update to 1.000009 o ports/164906 crees [PATCH] graphics/libjpeg-turbo: add -fPIC o ports/164905 gecko www/seamonkey fails to build with clang [patch] p kern/164901 thompsa [regression] [patch] [lagg] igb/lagg poor traffic dist o ports/164874 joerg [patch] unbreak devel/avr-gcc o ports/164870 portmgr [PATCH] bsd.licenses.mk Set IGNORE if BATCH is set and f ports/164855 miwi [PATCH] textproc/py-chardet o ports/164847 portmgr [bsd.port.mk] [patch] java/diablo-jdk16 does not build o ports/164785 sylvio [patch] devel/bglibs: linking with libbg causes time(3 o kern/164724 [dtrace] [patch] Signal bug in Dtrace o conf/164709 eadler [patch] [pc-sysinstall] add raidz3 support; permit 'ra o ports/164692 pgollucci [PATCH] devel/otrs: update to version 3.0.11 o kern/164674 [patch] [libc] vfprintf/vfwprintf return error (EOF) o o bin/164672 [patch] mptutil(8): fix build error with DEBUG o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o ports/164625 lme [PATCH] port net-mgmt/icinga to support IDOUtils o ports/164618 lx [patch] textproc/scim: building with clang failed o bin/164604 [patch] tftp(1): TFTP pxeboot: should use root-path pr p bin/164570 maxim [patch] pom(6) wrong usage message o ports/164566 skv [patch] databases/pgbouncer: update to latest version o bin/164561 portmgr [patch] pkg_version(1): update references to INDEX-8 f o ports/164544 miwi [patch] x11-servers/xorg-server: prune unused deps f ports/164540 miwi [PATCH] x11-themes/icons-tango: Fix fetching f ports/164539 miwi [patch] Update for audio/libmtp (from 1.0.6 to 1.1.1) o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP o bin/164535 [patch] ps(1) truncates command to screen size even wh o ports/164504 gnome [patch] net/opal3: patch configure to recognize amd64 o ports/164502 [patch] news/sabnzbdplus not starting on boot o ports/164500 gnome [patch] Build x11-toolkits/libwnck without startup_not o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu o ports/164488 timur [patch] devel/talloc,devel/tdb: fix compile with MAKE_ o ports/164449 crees [PATCH] finance/gnucash update to 2.4.9 o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164418 miwi [PATCH] shells/mksh doesn't build with Clang. o ports/164403 portmgr [patch] Mk/bsd.licenses.mk: bring back --hline o bin/164378 [patch] improvement of pkg_info(1) warning o kern/164369 adrian [if_bridge] [patch] two STP bridges have the same id o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak p ports/164349 x11 [PATCH] x11/libXinerama :1 LeftOf or Above :0 mouse is o ports/164341 lev [patch] sysutils/graid5: remove post-deinstall target p bin/164317 glebius [patch] write(1): add multibyte character support p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method o bin/164302 [patch] mail(1) expands aliases beyond # o ports/164298 pgollucci [PATCH] Make print/foomatic-filters not eat PS files o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS f ports/164253 lwhsu [PATCH] databases/cassandra: update to 1.0.7 f ports/164243 miwi [PATCH] emulators/dosbox: Fix build with clang o ports/164239 gecko [PATCH] mail/thunderbird: crash with nss_ldap p kern/164238 eadler [patch] NULL pointer dereference in setusercontext (li f ports/164237 zi [PATCH] security/suricata: overwrite files from libhtp o ports/164235 pgollucci [patch] graphics/vigra: update to 1.8.0 o docs/164217 eadler [patch] correct synchronize flag in setfacl(1) manpage o kern/164210 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164209 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164208 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164207 portmgr [PATCH] bsd.port.mk includes top-level Makefile.inc fr o misc/164206 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164190 mm [PATCH] devel/liboil: Fix build with clang o ports/164187 gnome [PATCH] net/avahi etc should use USERS f ports/164181 [PATCH] www/xxxterm: Fix ssl_ca_file path and style o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i p bin/164042 emaste [PATCH] tzsetup(8): Fix VERBOSE to work with new UTC m p bin/164041 emaste [PATCH] tzsetup(8): Remove unnecessary code duplicatio p bin/164039 emaste [PATCH] tzsetup(8): Don't write /var/db/zoneinfo eithe p bin/164038 wollman [PATCH] tzsetup(8): Increase buffer size to hold error f ports/164029 [PATCH] graphics/bmeps fix build with databases/gdbm o ports/164010 timur [patch] net/samba36: Split up samba scripts into more o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/163978 [hwpmc] [patch] Loading hwpmc with an unknown cpuid ca o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de f ports/163924 miwi [PATCH] archivers/xarchiver, warning when delete deskt o ports/163909 bf [MAINTAINER-UPDATE][PATCH] please update math/lapacke o ports/163908 fluffy [patch] filesystem based race condition in multimedia/ o ports/163884 nivit [Patch]databases/py-sqlalchemy:strict depend on py-MyS p bin/163863 [patch] adduser(8): confusing usr.sbin/adduser output o bin/163847 [PATCH] German filename conversion scheme for mount_nw o conf/163828 [patch] /etc/periodic/daily/110.clean-tmps tries to un p conf/163789 eadler [patch] Make etc/Makefile more conflict resistant o conf/163778 imp [patch] Conditionalize tools in the source tree o bin/163775 [patch] sfxge(4) explitly sets -g -DDEBUG=1; infects k o bin/163773 eadler [patch] pc-sysinstall(8): pc-sysinstall/backend.sh - c o bin/163772 [patch] nvi(1) - don't mask O_DIRECTORY symbol o bin/163769 [patch] fix zpool(8) compile time warnings o misc/163768 [patch] [boot] fix non-ficl compile time warnings o ports/163762 pgollucci [PATCH] multimedia/mythtv still thinks it's 0.24.0 o ports/163751 lme [PATCH] games/scummvm: chase audio/fluidsynth shlib ve o docs/163742 doc [patch] document failok mount(8) option o kern/163724 wireless [mwl] [patch] NULL check before dereference f ports/163718 dinoex [PATCH] graphics/jasper: security updates for CVE-2011 o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c f ports/163704 gnome [PATCH] devel/ptlib26: disable ODBC by default f ports/163684 olgeni [PATCH] lang/clojure-mode.el: update to 1.11.5 o ports/163675 pgollucci [PATCH] devel/buildbot: update to 0.8.5 o ports/163674 pgollucci [PATCH] devel/buildbot-slave: update to 0.8.5 p conf/163668 jh [patch] fstab[5] 'failok' option has no effect on miss f ports/163655 miwi [PATCH] games/odamex update to 0.5.6 o ports/163647 pgollucci [patch] sysutils/xosview: does not build on 10-CURRENT o ports/163643 pgollucci [patch] astro/wmspaceweather: URL changed + two minor o ports/163583 [patch] x11/kdelibs3 conflicts with openssl-1 f ports/163555 danfe [PATCH] irc/bitchx is out of date and BitchX 1.2 does a ports/163550 dinoex [patch] ftp/vsftpd{,-ext}: respect CC/CFLAGS/STRIP uni p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi o ports/163519 gnome [patch] graphics/gimp-app: unbreak build with clang=20 o ports/163518 gnome [patch] x11/babl: unbreak SSE build with clang o bin/163515 [patch] b64encode(1)/uuencode(1) create files with no o ports/163514 itetcu [PATCH] ports-mgmt/tinderbox-devel: Report the proper o ports/163511 portmgr [PATCH] bsd.port.mk: Allow existing users on system to o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands a java/163456 java [patch] java/openjdk6: build and distribute open timez o ports/163454 gecko [patch] www/firefox-beta: unbreak with libc++ o kern/163450 [puc] [patch] new pci quad serial card supported by pu o ports/163443 gnome [patch] graphics/poppler: unbreak with libc++ o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf f ports/163306 pgollucci [patch] upgrade sysutils/nut to 2.6.2 and fix misc por o ports/163291 doceng [PATCH] print/ghostscript9: Automatically disable X11 o ports/163232 bf [patch] math/metis: respect CC o ports/163226 obrien [patch] vietnamese/libviet: respect CC/CFLAGS o bin/163219 gtetlow [patch] man: fix 'zcat: standard input is a terminal - o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o ports/163066 eadler [patch] bsd.database.mk: Allow db5 to be selected by U o ports/163063 python [PATCH] fix for ports-mgmt/portbuilder o ports/163056 miwi [patch] audio/xmms2: update to 0.8 o ports/163055 mm [patch] multimedia/ffmpeg: broken without /usr/bin/per o bin/163053 [patch] camcontrol(8): 'camcontrol nego -D' is ignored p docs/163043 eadler [patch] gsched.8: remove reference to gsched_as a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ o ports/162920 miwi [patch] respect STRIP/LDFLAGS consistently across untr o misc/162866 [build] [patch] extract revision from hg in newvers.sh p kern/162789 glebius [PATCH] if_clone may create multiple interfaces with t o ports/162768 pgollucci [PATCH] ftp/proftpd port update which fixes mod_sql_my o docs/162765 doc [patch] lseek(2) may return successful although no see o ports/162755 gnome [PATCH] graphics/evince: segfault on showing propertie o ports/162726 miwi [PATCH] update graphics/box to 0.3.0 and graphics/boxe o ports/162721 portmgr [PATCH] bsd.port.mk: config target should complain if f ports/162694 pgollucci [patch] [update] multimedia/pitivi to 0.15.0 o bin/162670 gabor [patch] libkiconv doesn't work with iconv() in libc o bin/162661 gavin [patch] ftp(8) is giving up on IPv6 o ports/162602 pgollucci devel/st [patch] event.c missing from work/st-1.9/Make o ports/162510 nork [patch] Upgrade graphics/OpenEXR to version 1.7.0 o ports/162414 cy [PATCH] sysutils/syslog-ng: misc. fixes o ports/162397 portmgr [patch] Mk/bsd.port.mk: add new target add-plist-build o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen o ports/162381 sunpoet [PATCH] audio/icecast2 upgrade to kh development branc o kern/162352 kib [patch] Enhancement: add SO_PROTO to socket.h o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib p docs/162265 doc [Patch] ipfw.8: Documentation clarity a ports/162264 cy [patch] unbreak net/tridiavnc for non-i386 p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 o kern/162201 zec [ip] [patch] multicast forwarding cache hash always al o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o kern/162174 [kernel] [patch] rman_manage_region() error return pat o bin/162064 [patch] Loop in fetch(1) when sending SIGINFO after th o ports/162042 bapt [patch] multimedia/libass: add HARFBUZZ option o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o bin/161986 [patch] netstat(1): Interface auto-width in "netstat - o ports/161984 autotools [patch] devel/libtool: don't split INFO doc (install) o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup p conf/161847 gavin [patch] reaper of the dead: remove ancient devfs examp o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o bin/161807 fs [patch] add option for explicitly specifying metadata o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico p bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks o www/161672 gavin [patch] add support for 10.x to query-pr o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/161421 gecko [patch] www/firefox: use libevent2 o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li o bin/161401 [patch] have service(8) run scripts with the same reso o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161185 pgollucci [patch] Remove unnecessary graphics/cairo dependency f o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 pgollucci [patch] misc/ttyrec: don't depend on pty(4), use openp o bin/161048 sysinstall [patch] bsdinstall(8): should run a concurrent shell o o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o bin/161028 [PATCH] service(8) -- Minor improvements o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO o ports/160969 pgollucci [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 x11 [patch] ports/x11/libXi broken manpages o ports/160963 x11 [patch] x11/bigreqsproto: disable specs o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o bin/160834 [patch] grep(1): fixes for POSIX conformance o ports/160798 pgollucci [PATCH] games/wesnoth-devel: update to latest version o ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 o bin/160596 eadler [patch] tzsetup(8): Use libodialog when doing tzsetup o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries p ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn o misc/160463 eadler [build] [patch] fix build dependency for dtrace module o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i s docs/160369 gjb [patch] update sample simple makefile with new convent o bin/160295 [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159947 pgollucci [patch] databases/gnats4 set default index type to pla o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 o bin/159833 camcontrol(8): [patch] add ATA security options to cam o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l a bin/159665 rik [patch] ctm(1) does not work with bzip2 or xz compress o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator o ports/159636 [patch] net/freevrrpd: RC script for freevrrpd that co o conf/159625 [PATCH] replace hardcoded /usr/local with a variable i o ports/159613 gnome [PATCH] misc/gnomehier: use dirrmtry for PREFIX/share/ o usb/159611 miwi [PATCH] USB stick extrememory Snippy needs quirks o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() o docs/159307 doc [patch] lpd smm chapter unconditionally installed o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/159279 [headers] [patch] __FreeBSD_cc_version in includes o kern/158376 [udf] [patch] The UDF file system under counts the num o bin/158363 [patch] partial restore problem in restore(8) o ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/158351 [cam] [patch] missing #includes in p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/157946 [patch] 'BSM conversion requested for unknown event' g o conf/157903 [devd.conf] [patch] automated kldload for USB class de f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o conf/157466 osa [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157337 eadler [handbook] [patch] Indentation changes to network serv o docs/157316 doc [patch] update devstat(9) man page o docs/157234 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o bin/156768 [patch] sockstat(1): missing spaces between long field o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156637 [headers] [patch] sys/types.h can't be included when _ p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o ports/156015 pgollucci [PATCH] dns/unbound add MUNIN-plugin o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o ports/155890 tabthorpe [patch] Mk/bsd.licenses.mk: don't leave temporary file o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an o bin/155567 [patch] cvs(1): add -r tag:date to CVS o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o kern/154915 [libc] [patch] Force stdio output streams to line-buff o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o bin/154570 [patch] gvinum(8) can't be built as part of the kernel f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o conf/154484 [patch] request for new functionality. jail zfs datase o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o ports/154352 pgollucci [patch] multimedia/xmms: update using desktop and mime f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l f ports/154254 rene [patch] mail/asmail imap login broken with gmail at al o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o ports/154241 pgollucci [patch] games/wesnoth: move USE_* under bsd.port.optio f ports/154209 python [PATCH] lang/python: Install symlink for ptags o conf/154062 net [vlan] [patch] change to way of auto-generatation of v p bin/154042 delphij [patch] fix several rtprio(1) issues o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153567 pgollucci [PATCH] x11/fpc-x11: doesn't respect localbase o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping p bin/153527 jh [patch] wake(8) should use sysexits.h o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o ports/153429 [patch] Fix explicite uses of unzip in ports o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out o ports/153231 pgollucci [PATCH] net-mgmt/nrpe2 enable ssl by default p bin/153206 maxim [patch] netstat(1): "netstat -sz" doesn't reset any IP o misc/153157 [build] [patch] Add support for generating userland de o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error a docs/153012 doc [patch] iostat(8) requires an argument to -c option o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o ports/152847 pgollucci [patch] port/buildbot-slave could use a startup script o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152792 [acpica] [patch] move temperature conversion macros to o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p o kern/152485 arundel [patch] seek offset for /dev/null(4) and /dev/zero(4) o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o ports/152224 python [patch] fix installed permissions for lang/python27 o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152131 script(1): [patch] Useless code in script.c (part 1) o bin/152084 [patch] pw(8) does not allow @ or ! in gecos o ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o bin/151937 [patch] netstat(1) utility lack support of displaying o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr p bin/151866 des [libfetch] [patch] closing the cached FTP connection o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/151600 [patch] route(8) does not always flush stdout o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o bin/151186 [patch] routed(8) turns RIP off if just one network ca o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl p bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o bin/150771 [patch] csup(1) GNUmakefile missing o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of o www/150553 www [patch] update Russian "FreeBSD Community" page o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the o kern/150251 net [patch] [ixgbe] Late cable insertion broken o bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o kern/150206 [patch] nmount(2): can't switch root partition to rw u o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o ports/150040 [patch] security/fwtk: plug-gw does not run on 64bit a o stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o bin/149972 [patch] pw(8): usermod -u should error o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 pgollucci [PATCH] mail/dspam: important cleanup p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o www/149446 www [patch] improve misleading title of "report a bug" o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o kern/149173 fs [patch] [zfs] make OpenSolaris installa o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o gnu/143254 [patch] groff(1) build in base system does not honor P p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip p kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o docs/142917 arundel [patch] top(1) man page does not include information a o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o ports/142743 [PATCH] devel/cross-binutils: installed by *-rtems-gcc a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) p docs/142367 roam [patch] wlan(4) does not document requirement for kern o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o kern/141682 [libc] [patch] Faster version of strncpy(3) o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o kern/141655 [sio] [patch] Serial Console failure on Dell servers o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o ports/140939 rea [patch] security/vuxml: fix and extend files/newentry. o kern/140728 jfv [em] [patch] Fast irq registration in em driver a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- p conf/140650 cperciva [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p docs/140457 doc [patch] Grammar fix for isspace(3) o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum s ports/140364 [patch] ports-mgmt/portupgrade-devel: #! line substitu o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n a bin/140309 bapt [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o ports/140273 [patch] ports-mgmt/portupgrade-devel chokes on bsdpan o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/140185 [patch] expand_number(3) does not detect overflow in n o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o ports/139872 crees [PATCH] ports-mgmt/porttools: improve port's directory o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o bin/139389 pluknet [patch] Change top(1) to display thread IDs o bin/139346 net [patch] arp(8) add option to remove static entries lis a bin/139314 [patch] install(1): install -d reports success on fail p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o kern/139080 [libc] [patch] closelog() can close negative file desc a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o bin/138150 [build] [patch] fix for src/etc/Makefile mtree s ports/137958 [patch] ports-mgmt/portupgrade fails with recursive de o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow p bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o conf/137671 [patch][request] enhance beastie.4th: possibility to d s gnu/137665 [patch] dialog(1) goes into tight loop on encountering p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct o bin/136994 net [patch] ifconfig(8) print carp mac address o ports/136917 python [patch] lang/python26: gettext detection o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa p gnu/136705 emaste [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136669 [libc] [patch] setmode(3) should always set errno on e o bin/136661 melifaro [patch] ndp(8) ignores -f option o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE o kern/135608 [patch] sysctl(8) should be able to handle byte values o docs/135516 eadler [patch] pax(1) manual not mentioning chflags unawarene o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o docs/135475 eadler [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o kern/134249 [libiconv] [patch] ignore case for character set names o kern/134225 [libexec] [patch] Reduce disk write load from save-ent p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article o bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o bin/131427 [patch] Add to fetch(1) an ability to limit a number o p bin/131250 brian [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o kern/130657 bz [ip6] [patch] ipv6 class option o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a f ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o kern/130286 [patch] hifn(4) changes o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El p bin/130159 brian [patch] ppp(8) fails to correctly set routes p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o bin/129814 [patch] support of per script nice(1) value in periodi o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di o bin/129405 [patch] tcsh(1) vfork bugs p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o kern/129352 yongari [xl] [patch] xl0 watchdog timeout o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o docs/129024 keramida [patch] ipfw(8) improvements o usb/128977 usb [usb67] [patch] uaudio is not full duplex p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct p kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o conf/128433 [patch] Add option to allow a full login when doing 's o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to p bin/127986 [patch] ee(1): fix compiler warnings caused by use of p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t s bin/127918 [ata] [request] [patch] ATA Security support for ataco o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o bin/127633 edwin [patch] Update top(1) to 3.8b1 o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127276 [patch] ldd(1) invokes linux yes o bin/127265 [patch] ddb(4): Adding the ddb command set from module o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o bin/126433 [patch] some missing checks in rm(1) o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o kern/126075 net [inet] [patch] internet control accesses beyond end of o bin/125922 net [patch] Deadlock in arp(8) o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc a kern/125613 trasz [ufs] [patch] ACL problems with special files o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o conf/125041 [patch] periodic(8) new file: /etc/periodic/security/8 o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/124963 alc [vm] [patch] old pagezero fixes for alc o kern/124881 [devfs] [patch] [request] Add possibility to check whi o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o conf/124747 rc [patch] savecore can't create dump from encrypted swap a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o misc/124431 bde [build] [patch] minor revision of BDECFLAGS p bin/124392 [patch] bootparamd(8) does not work on arm p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net p bin/124052 [patch] adduser(8) throws errors when -f input file in o kern/123892 net [tap] [patch] No buffer space available o kern/123858 net [stf] [patch] stf not usable behind a NAT o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 f bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o conf/123119 rc [patch] rc script for ipfw does not handle IPv6 f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o conf/122883 [patch] login class for ukrainian users accounts o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o conf/122170 rc [patch] [request] New feature: notify admin via page o p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab o bin/122043 [patch] du(1) does not support byte-count-based report o conf/122037 [patch] add rsync example for inetd.conf o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user o conf/121064 [patch] Use ASCII characters for box/line characters i o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o conf/120263 [patch] 800.loginfail misses relevant security informa p bin/120256 gavin [patch] ftp(1): ftp -u URL/ returns a -1 p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o bin/118325 rc [patch] [request] new periodic script to test statuses p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib s ports/118301 python [patch] devel/py-setuptools easy-install.pth contents o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/118126 fs [nfs] [patch] Poor NFS server write performance o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o bin/118069 [patch] camcontrol(8) should be able to leave device s o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing s bin/117830 [patch] who(1) no longer displays entries for folk log f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o bin/117687 [patch] fstab(5) format cannot handle spaces o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o bin/117520 [patch] csup(1) not-really-equivalent to cvsup o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117339 net [patch] route(8): loading routing management commands p bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th p stand/116826 jilles [patch] sh(1) support for POSIX character classes o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c p bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's p docs/115065 doc [patch] sync ps.1 with p_flag and keywords o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which o bin/113518 [patch] make(1): Prevent execution when command is a c o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o bin/113074 [patch] ppp(8): include for strcasecmp(3) s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112477 marius [ofw] [patch] Add support to set the node and type on o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112336 [patch] install(1): install -S (safe copy) with -C or s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111537 net [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110995 [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110146 joerg [patch] [request] Allow arbitrary gdb(1) options to by o bin/110068 [patch] rewrite of mdmfs(8) in shell o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit p docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105456 keramida [patch] overhaul of the security chapter (14) o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w p stand/104743 jilles [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive a bin/104092 keramida [patch] iostat(8): missing blanks in iostat output o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o ports/102946 secteam [patch] ports-mgmt/portaudit a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o bin/102162 [patch] tftpd(8): Limit port range for tftpd o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o conf/100616 [patch] syslog.conf: lines after exclamation point ign a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o bin/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/99328 [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/96999 [procfs] [patch] procfs reports incorrect information a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o bin/95698 philip [patch] moused(8): Software control of sysmouse o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind s www/94423 danger [patch] XML'ified release todo list o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work p kern/93331 [kernel] [patch] broken asm in kernel o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o conf/92523 rc [patch] allow rc scripts to kill process after a timeo s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o conf/91732 [patch] 800.loginfail: fix log message grep expression o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command o kern/91134 fs [smbfs] [patch] Preserve access and modification time f bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o bin/90311 [patch] add "eject" to mt(1) o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco o conf/88913 rc [patch] wrapper support for rc.subr o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 fs [patch] newfs(8): introduce -A flag for newfs to enabl o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so o www/87119 hrs [patch] encode copyright and such symbolically o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o bin/86485 eadler [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou f i386/85656 jhb [i386] [patch] expose more i386 specific CPU informati f i386/85655 jhb [i386] [patch] expose cpu info for i386 systems o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( a bin/77651 [patch] init(8) can lose shutdown related signals s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o bin/76362 [patch] sys directory link points to wrong location o gnu/76169 [patch] Add PAM support to cvs pserver o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o conf/74004 [patch] add fam support to inetd.conf o conf/73786 [patch] added WARNING in spanish to stable-supfile o conf/73677 rc [patch] add support for powernow states to power_profi o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o conf/72901 [patch]: dot.profile: prevent printing when doing an s o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o conf/72277 [patch] update for /usr/share/skel o conf/71994 [patch] dot.login: login shell may unnecessarily print o bin/71749 [patch] truss -f causes circular wait when traced proc o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71602 [patch] uninitialized "len" used instead of "slen" wit s bin/71290 des [patch] passwd(1) cannot change passwords other than N o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters o bin/70476 [patch] reboot(8) change, -p behavior default for halt o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports a kern/68905 secteam [patch] core dumps are assigned wrong ownership o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) f kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE a bin/63197 [patch] tftp(1) Bus error, core dumped a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s i386/61481 [patch] a mechanism to wire io-channel-check to userla o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o bin/58483 [patch] mount(8): allow type special or node relative o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement o bin/57715 [patch] tcopy(1) enhancement o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s bin/57407 [patch] Better NTP support for dhclient(8) and friends o docs/57298 doc [patch] add using compact flash cards info to handbook s bin/57255 usb [patch] usbd(8) and multi-function devices o bin/57088 jh [cam] [patch] for a possible fd leak in libcam.c s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR o bin/55546 [patch] cdcontrol(1) play tr m:s.f interface is partia o bin/55539 [patch] Parse fstab(5) with spaces in path names f misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o conf/54170 [patch] error from weekly periodic script 330.catman s stand/53682 [feature request] [patch] add fuser(1) utility o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 [request] [patch] New functionality for mail(1) s usb/51958 usb [urio] [patch] update for urio driver o kern/51583 fs [nullfs] [patch] allow to work with devices and socket s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee o bin/51137 [patch] config(8) should check if a scheduler is selec o kern/51009 [aue] [patch] buggy aue driver fixed. s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48183 [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] Add documentation on the fixit disk o bin/47815 [patch] stty(1) -all should work. o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit a kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals o bin/46758 [patch] moused(8) enhancements o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o conf/45222 [patch] daily rejected mail hosts report too long o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44202 [rp] [patch] -stable rp driver does not work with mult o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl a bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login a bin/41583 [patch] mtree(8) assorted mtree bugs o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41271 [patch] non-suid crontab(1) o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o conf/40777 [patch] disktab does not support 2.88MB floppies o bin/40597 [patch] add fdisk(8) ability of showing extended parti o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix a bin/38727 [patch] mptable(1) should complain about garbage argum a kern/38554 net [patch] changing interface ipaddress doesn't seem to w s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o bin/37083 [patch] [request] small improvement to talk(1): add cl o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36902 [libc] [patch] proposed new format code %N for strftim o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce o bin/35886 [patch] pax(1) enhancement: custom time format for lis o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md o bin/34412 [patch] tftp(1) will still try and receive traffic eve o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o bin/33809 [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31890 [syscons] [patch] new syscons font o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o bin/30542 [patch] add -q option to shut up killall(1) s threa/30464 threads [patch] pthread mutex attributes -- pshared o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt s kern/29423 [request] [patch] new feature: kernel security hooks i p bin/29363 simon [patch] newsyslog(8) can support time as extension f kern/29355 [kernel] [patch] add lchflags support o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28364 bapt [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u o docs/27605 doc [patch] Cross-document references () o bin/27306 [patch] hw watchpoints work unreliable under gdb(1) o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password f kern/24959 net [patch] proper TCP_NOPUSH/TCP_CORK compatibility o bin/24485 [patch] to make cron(8) handle clock jumps o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23254 bapt [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network o kern/21998 net [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o kern/19756 [patch] Inability to use linux extended partition (typ s kern/19535 [procfs] [patch] procfs_rlimit tidyup o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16422 [patch] [request] newfs(8) always make root's / direct o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15168 [patch] Adding tracklist support to fdformat(1) p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai s kern/13326 [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts a kern/11024 mtm [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry o bin/4116 [patch] [kerberos] Kerberized login as .root fai s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 1903 problems total. From bugmaster at FreeBSD.org Mon Feb 27 11:24:11 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 27 11:24:28 2012 Subject: Current problem reports sorted by tag Message-ID: <201202271112.q1RBCKI7097515@freefall.freebsd.org> (Note: a better version of this report is available at http://people.freebsd.org/~linimon/studies/prs/pr_tag_index.html .) Problem reports for tag '2tb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/118912 fs [2tb] disk sizing/geometry problem with large array s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t 7 problems total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148083 scsi [aac] Strange device reporting o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg 2 problems total. Problem reports for tag 'acd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/150628 [acd] [ata] burncd(1) can't write to optical drive 1 problem total. Problem reports for tag 'acl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p 2 problems total. Problem reports for tag 'acpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164329 acpi [acpi] hw.acpi.thermal.tz0.temperature shows strange v o kern/162859 acpi [acpi] ACPI battery/acline monitoring partialy working o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o kern/160838 acpi [acpi] ACPI Battery Monitor Non-Functional o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne o kern/154955 acpi [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3 o kern/152438 acpi [acpi]: patch to acpi_asus(4) to add extra sysctls for o kern/152098 acpi [acpi] Lenovo T61p does not resume o i386/146715 acpi [acpi] Suspend works, resume not on a HP Probook 4510s o kern/145306 acpi [acpi]: Can't change brightness on HP ProBook 4510s f i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A o kern/143420 acpi [acpi] ACPI issues with Toshiba o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve f kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? f i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o bin/126162 acpi [acpi] ACPI autoload failed : loading required module o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H f i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f f kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o kern/91594 acpi [acpi] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/ 33 problems total. Problem reports for tag 'acpi_hp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163268 acpi [acpi_hp] fix driver detach in absence of CMI 1 problem total. Problem reports for tag 'acpi_ibm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP 1 problem total. Problem reports for tag 'acpi_thermal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa 1 problem total. Problem reports for tag 'acpica': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152792 [acpica] [patch] move temperature conversion macros to 1 problem total. Problem reports for tag 'ada': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157397 [ada] ahci/ada/cam NCQ timeouts on Samsung and non-dis 1 problem total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets 2 problems total. Problem reports for tag 'aha': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/83765 [aha] Adaptec 1542-CP requires plug-and-play switch se 1 problem total. Problem reports for tag 'ahc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123674 scsi [ahc] ahc driver dumping o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 s kern/45568 gibbs [ahc] ahc(A19160) pci parity error s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S 6 problems total. Problem reports for tag 'ahci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/161768 [ahci] [panic] Panics after AHCI timeouts o kern/161248 [ahci] Time out, extremly slow response while copying o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar f kern/158569 gavin [ahci] ROOT MOUNT ERROR (caused by AHCI module) o kern/155628 [ahci] ahci disables dvd device o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume 8 problems total. Problem reports for tag 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o kern/123520 scsi [ahd] unable to boot from net while using ahd o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system 6 problems total. Problem reports for tag 'aic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with 1 problem total. Problem reports for tag 'aic7xxx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c o kern/156513 scottl [aic7xxx] [patch] missing check of scb. 2 problems total. Problem reports for tag 'altq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue s kern/94182 [altq] [request] altq support for vlan driver 4 problems total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag 3 problems total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o kern/153303 [amr] amr device driver dont detect logical drive amrd o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/113098 [amr] Cannot read from amrd while under heavy load o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a 6 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci s kern/75407 net [an] an(4): no carrier after short time o kern/36170 [an] [patch] an(4) does an_init() even if interface is 4 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup 1 problem total. Problem reports for tag 'apm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in 1 problem total. Problem reports for tag 'ar': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o kern/94393 [ar] PseudoRAID loses track of the master disk o kern/93771 [ar] [panic] atacontrol status ar1 causes panic 8 problems total. Problem reports for tag 'arcmsr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154299 [arcmsr] arcmsr fails to detect all attached drives o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 2 problems total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/145300 qingli [arp] ARP table mapping is not refreshed on a MAC addr o kern/144777 qingli [arp] proxyarp broken in 8.0 [regression] o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/119432 net [arp] route add -host -iface causes arp e o conf/23063 net [arp] [patch] for static ARP tables in rc.network 10 problems total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 2 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165271 [ata] [patch] Correct Marvell SATA controller names o kern/164694 [ata] Regression in 3726 port multiplier support in 9. o kern/162620 [ata] SATA device lost when changing brightness on Len o kern/162609 [ata] Cannot write to Sony DRU-835A DVD drive o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar o kern/159511 [ata] ad0 disappear after upgrading to 8.2-STABLE, roo o kern/159326 [ata] [panic] kernel panics when accessing spindowned o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o kern/149201 [ata] DVD/CD Drive Error o kern/148675 [ata] [panic] kernel panics - reboots o kern/148361 [ata] [panic] Kernel Panic, With Faulty Drives o kern/147227 [ata] SSD preformance issues o kern/146661 [ata] damage files on ufs on ata pseudo raid when runn o kern/146270 [ata] Divide by zero in ata driver o kern/144930 [ata] SATA DVD Drive is not detected s kern/144770 [ata] hard drive spindown functionality broken? o bin/144641 [ata] burncd(8) freezes whole system while trying to b o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o kern/143126 [ata] Data loss on read timeout o kern/142802 [ata] [panic] on removing drive: recursed on non-recur o i386/142421 i386 [ata] optical drives not found o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141653 [ata] [panic] Panic in ata? o kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o kern/138537 [ata] [panic] Memory modified after free o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/136356 [ata] SATA / ICH7 problems o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/132252 [ata] No CD/DVD devices found! o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130726 [ata] DMA errors accessing multiple SATA channels f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o kern/130171 [ata] UDMA CF cards do not work with FreeBSD o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/128035 [ata] unexpexted detach of external SATA drive s bin/127918 [ata] [request] [patch] ATA Security support for ataco o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o kern/126142 [ata] M5281: READ DMA faults, device detaching o kern/125859 [ata] [patch] sata access failure [regression] a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already f kern/120717 [ata] boot problem when recognizing ata1 o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o kern/120177 [ata] ATA DMA modes don't work on CF cards o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o kern/117972 [ata] SATA DLT V4 not recognized properly o kern/117443 [ata] [hang] system hang with ataidle o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/116935 [ata] Intermittent error with Promise PDC40718 o kern/115479 [ata] [request] ASUS P5K SE need more support o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 o kern/114213 [ata] optical drive not detected in the 6.x series of s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/106432 [ata] Record of disks (DVD-R) through the k3b program s kern/104950 [ata] [request] no support for SATA controller Initio o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96171 [ata] burncd(8): (ATA driver) fails to write in vcd mo o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m s bin/81692 [patch] [ata] atacontrol(8) support for disk APM and a o kern/79783 [ata] hw.ata.atapi_dma=1 reduces HDD writing transfer o kern/78758 [ata] [patch] Add support for re-sizing ATA disks o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 102 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/118161 [atapicam] failure message from ATAPI CDROM in the boo o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi a kern/78929 [atapicam] atapicam prevents boot, system hangs o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong 6 problems total. Problem reports for tag 'ataraid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159271 [ataraid] [patch] "pseudo-raid" controllers does not w o kern/148748 [ataraid] Metadata Read Write Inconsistency o kern/134887 [ataraid] source consistency problem o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr 6 problems total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165475 wireless [ath] operational mode change doesn't poke the underly o kern/165306 wireless [ath] race conditions between scanning and beacon time o kern/165220 wireless [ath] "ath_rx_tasklet: sc_inreset_cnt > 0; skipping" m o kern/165212 wireless [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB6 o kern/165149 wireless [ath] [net80211] Ping with data length more than iv_fr o kern/165060 wireless [ath] vap->iv_bss race conditions causing crashes insi o kern/165021 wireless [ath] ath device timeout during scan/attach, if wlan_c o kern/164721 wireless [ath] ath device timeouts o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode o kern/163719 wireless [ath] ath interface do not receive multicast o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin o kern/163573 wireless [ath] hostap mode TX buffer hang o kern/163559 wireless [ath] kernel panic AH_DEBUG o bin/163455 [ath] "bssid" in wlanN create_args does not change wla o kern/163318 wireless [ath] ath(4) stops working o kern/163082 wireless [ath] ar9285 diversity fixes o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang p kern/162475 bschmidt [ath] functions with return type HAL_BOOL (might) retu o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o kern/156884 wireless [ath] ath instablity o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154567 wireless [ath] ath(4) lot of bad series(0) o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/153448 wireless [ath] ath networking device loses association after a o kern/152750 wireless [ath] ath0 lot of bad series hwrate o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o kern/148322 wireless [ath] Triggering atheros wifi beacon misses in hostap o kern/148317 wireless [ath] FreeBSD 7.x hostap memory leak in net80211 or At o kern/148078 wireless [ath] wireless networking stops functioning o kern/145826 wireless [panic] [ath] Unable to configure adhoc mode on ath0/w p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 wireless [ath] [panic] ath(4) related panic o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach f kern/105348 wireless [ath] ath device stopps TX 56 problems total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data o kern/91311 net [aue] aue interface hanging o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o kern/51009 [aue] [patch] buggy aue driver fixed. 6 problems total. Problem reports for tag 'axe': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack o usb/88408 usb [axe] axe0 read PHY failed 2 problems total. Problem reports for tag 'bce': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155004 yongari [bce] [panic] kernel panic in bce0 driver o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 3 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/155442 jhb [bge] bge driver is seen but does not respond to netwo o kern/136876 yongari [bge] bge will not resume properly after suspend 2 problems total. Problem reports for tag 'binutils': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD 2 problems total. Problem reports for tag 'bktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/104675 [bktr] METEORSINPUT seemingly not setting input o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/56245 [bktr] Distorted and choppy video with bktr-driver on s kern/48279 [bktr] Brooktre878 may cause freeze o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. 18 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163985 [boot0] Incorrect operand size in boot0 o kern/159222 [boot0] unusual behavior writing boot0 from single use p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive 3 problems total. Problem reports for tag 'bootinst': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/22914 [bootinst] bootinst messages are not updated 1 problem total. Problem reports for tag 'bpf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164534 csjp [bpf] net.bpf.zerocopy_enable=1 makes pflogd eat cpu a o kern/163370 csjp [bpf] [request] enable zero-copy BPF by default o kern/158930 net [bpf] BPF element leak in ifp->bpf_if->bif_dlist p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents f kern/138029 net [bpf] [panic] periodically kernel panic and reboot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. 8 problems total. Problem reports for tag 'bsd.commands.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/159725 portmgr [bsd.commands.mk] Add new command: JOT 1 problem total. Problem reports for tag 'bsd.gnome.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/162260 gnome [bsd.gnome.mk] don't add useless dependency for INSTAL 1 problem total. Problem reports for tag 'bsd.java.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo 1 problem total. Problem reports for tag 'bsd.port.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/165238 portmgr [bsd.port.mk] [patch] Resize port config dialog box in o ports/164847 portmgr [bsd.port.mk] [patch] java/diablo-jdk16 does not build o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164390 portmgr [bsd.port.mk] make package-recursive fails with noise o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ s ports/162178 portmgr [bsd.port.mk] Add bsd.clang.mk with Clang/LLVM support o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/158962 portmgr [bsd.port.mk] Make EXTRACT_CMD more flexible-- support o ports/158936 portmgr [bsd.port.mk] Add a filename field to DESKTOP_ENTRIES o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to s ports/148695 portmgr [bsd.port.mk] [patch] Easier / automatic regression-te s ports/148637 portmgr [bsd.port.mk] Options are ignored for any port that de o ports/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend f ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe 26 problems total. Problem reports for tag 'bsd.python.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken 1 problem total. Problem reports for tag 'busdma': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach 1 problem total. Problem reports for tag 'bwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) 1 problem total. Problem reports for tag 'bwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall 2 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164909 [cam] devfs does not create entries when removable med o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o kern/158351 [cam] [patch] missing #includes in o kern/153514 scsi [cam] [panic] CAM related panic s kern/149927 scsi [cam] hard drive not stopped before removing power dur o kern/148070 [cam] [panic] panic: _mtx_lock_sleep: recursed on non- a usb/143790 usb [boot] [cam] can not boot from usb hdd f kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o bin/57088 jh [cam] [patch] for a possible fd leak in libcam.c s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo 22 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad 6 problems total. Problem reports for tag 'carp': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/153848 bz [carp] [ipv6] backup host can't connect to master host a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash p kern/132285 glebius [carp] alias gives incorrect hash in dmesg o kern/132107 glebius [carp] carp(4) advskew setting ignored when carp IP us f kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat p kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi p kern/126945 glebius [carp] CARP interface destruction with ifconfig destro p kern/126714 glebius [carp] CARP interface renaming makes system no longer o kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg p kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste p kern/117448 glebius [carp] 6.2 kernel crash [regression] p kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) 12 problems total. Problem reports for tag 'cas': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/157932 gavin [cas] loading CAS4 at boot hangs system 1 problem total. Problem reports for tag 'cbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114550 [cbb] Cardbus WiFi card activation problem 1 problem total. Problem reports for tag 'cd': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from 1 problem total. Problem reports for tag 'cd9660': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored 3 problems total. Problem reports for tag 'cdce': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op 1 problem total. Problem reports for tag 'ciss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159412 scsi [ciss] 7.3 RELEASE: ciss0 ADAPTER HEARTBEAT FAILED err o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o kern/149219 [ciss] DL380 G6 P212 trouble o kern/146287 scsi [ciss] ciss(4) cannot see more than one SmartArray con o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125647 [ciss] [panic] System randomly crashes - ciss driver 10 problems total. Problem reports for tag 'coda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162944 fs [coda] Coda file system module looks broken in 9.0 1 problem total. Problem reports for tag 'conf': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/160276 brueffer [conf] Spelling Mistake in comments in configure-files 1 problem total. Problem reports for tag 'coretemp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158160 [coretemp] coretemp reports incorrect CPU temperature 1 problem total. Problem reports for tag 'cpufreq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165381 [cpufreq] powerd(8) eats CPUs for breakfast o kern/146436 [cpufreq] [panic] Panic when changing profile to econo o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf f kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de 8 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac p kern/115695 [crypto] When "device padlock" defined first ssh to ma o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p 6 problems total. Problem reports for tag 'cue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75710 [cue] cue0 device configuration causes kernel panic 1 problem total. Problem reports for tag 'cxgb': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi p kern/146759 np [cxgb] [patch] cxgb panic calling cxgb_set_lro() witho o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/125806 np [cxgb] cxgb packet counters do not work 4 problems total. Problem reports for tag 'cy': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom 1 problem total. Problem reports for tag 'dc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/82070 [dc] Not all dc(4) devices can be used: MII without an o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite 7 problems total. Problem reports for tag 'de': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133495 [de] interface not properly initialized on boot o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern 2 problems total. Problem reports for tag 'devctl': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use 1 problem total. Problem reports for tag 'devd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. 1 problem total. Problem reports for tag 'devd.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/157903 [devd.conf] [patch] automated kldload for USB class de 1 problem total. Problem reports for tag 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124881 [devfs] [patch] [request] Add possibility to check whi o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ p kern/114057 jh [devfs] devfs symlink over device doesn't work 3 problems total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo o kern/83254 [digi] driver can't init Digiboard PC/4e o kern/82227 [digi] Xem: chained concentrators not recognised o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection 6 problems total. Problem reports for tag 'diskless': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i 1 problem total. Problem reports for tag 'dri': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 1 problem total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 s kern/150514 kib [drm] [request] Reorganize DRM Directory to Support Dr p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel 5 problems total. Problem reports for tag 'dtrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165479 rstone [dtrace] [lor] LOR in Userland Dtrace(fasttrap_provs.f o kern/164724 [dtrace] [patch] Signal bug in Dtrace o kern/160307 [dtrace] dtrace -lv can not identify the args of the o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr o kern/159612 [dtrace] walltimestamp and timestamp functions incompl p kern/159046 rwatson [dtrace] [patch] dtrace library is linked with a wrong o kern/159013 rwatson [dtrace] kldunload dtraceall crashing if userland dtra o bin/158431 [dtrace] crash in dt_proc_lookup when attaching to PID o kern/130998 [dtrace] DTrace stops tracing because of struct thread 9 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162558 net [dummynet] [panic] seldom dummynet panics f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same 12 problems total. Problem reports for tag 'e1000': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c 1 problem total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement 1 problem total. Problem reports for tag 'editline': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi 1 problem total. Problem reports for tag 'ef': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le 1 problem total. Problem reports for tag 'ehci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/156596 usb [ehci] Extremely high interrupt rate on ehci/uhci IRQ1 o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci 9 problems total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162153 net [em] intel em driver 7.2.4 don't compile o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/159294 net [em] em watchdog timeouts o kern/158635 net [em] TSO breaks BPF packet captures with em driver o kern/157418 net [em] em driver lockup during boot on Supermicro X9SCM- o kern/156667 net [em] em0 fails to init on CURRENT after March 17 o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o kern/153308 net [em] em interface use 100% cpu o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o kern/150516 jfv [em] e1000 receive queue handling problem o kern/148004 jfv [em] Inconsistent networking with em driver on FreeBSD o kern/147989 jfv [em] em Receive errors / CRC Errors / Alignment Errors o kern/146263 jfv [em] [panic] Panic in em(4) SIOCADDMULTI/em_set_multi/ p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/143573 jfv [em] em(4) NIC crashes intermittently o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140778 jfv [em] randomly panic in vlan/em o kern/140728 jfv [em] [patch] Fast irq registration in em driver o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122058 jfv [em] [panic] Panic on em1: taskq o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o kern/121298 jfv [em] [panic] Fatal trap 12: page fault while in kernel o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o kern/117043 jfv [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM o kern/115930 jfv [em] Dell nic enumeration problem o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/101226 jfv [em] Access to IPMI module is lost when the em driver 50 problems total. Problem reports for tag 'endian': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA 1 problem total. Problem reports for tag 'ep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151690 net [ep] network connectivity won't work until dhclient is 1 problem total. Problem reports for tag 'est': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165303 [est] CPU freq changing not supported on VIA VE-900 (N o i386/145718 i386 [est] [patch] fix freq calculation from MSR for CPUs w 2 problems total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx 1 problem total. Problem reports for tag 'exp-run': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/165457 skv [exp-run]: remove lang/perl5.8 and lang/perl5.10, move a ports/165245 crees [exp-run] Make databases/postgresql90-client the defau o ports/165143 portmgr [exp-run] [patch] devel/apr: CVE / Update / exp-run / o ports/164896 portmgr [exp-run] add support for testing perl modules f ports/163524 linimon [exp-run] estimate number of ports utilizing old inter o ports/162948 portmgr [exp-run] 10.0 exp-run without libreadline in base sys o ports/160624 portmgr [exp-run] Process USE_ flags in both parts of bsd.port a ports/159117 linimon [exp-run] Clang exp-run request. o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por 13 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155199 fs [ext2fs] ext3fs mounted as ext2fs gives I/O errors o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems 3 problems total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119618 [fdc] Double Density Disks do not work correctly o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o kern/79944 [fdc] virtual floppy controller of Virtual PC does not s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o kern/74827 [fdc] Problem writing data to floppies o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/66960 [fdc] [patch] filesystems not unmounted during reboot 10 problems total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159971 mckusick [ffs] [panic] panic with soft updates journaling durin o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/116583 fs [ffs] [hang] System freezes for short time when using o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna 7 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 2 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/113785 firewire [firewire] dropouts when playing DV on firewire o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w 14 problems total. Problem reports for tag 'flowtable': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148018 net [flowtable] flowtable crashes on ia64 f kern/146792 net [flowtable] flowcleaner 100% cpu's core load f kern/144917 net [flowtable] [panic] flowtable crashes system [regressi 3 problems total. Problem reports for tag 'fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, 2 problems total. Problem reports for tag 'fusefs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE 1 problem total. Problem reports for tag 'fusefs-ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/159191 usb [fusefs-ntfs] write on fusefs-ntfs mounted partition r 1 problem total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139162 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir 1 problem total. Problem reports for tag 'fwohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re 1 problem total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC 2 problems total. Problem reports for tag 'gbde': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo o kern/66162 [gbde] gbde destroy error 3 problems total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o kern/162010 geom [geli] panic: Provider's error should be set (error=0) f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during o kern/160409 geom [geli] failed to attach provider o kern/157863 geom [geli] kbdmux prevents geli passwords from being enter o kern/157722 fs [geli] unable to newfs a geli encrypted partition o arm/154227 arm [geli] using GELI leads to panic on ARM p kern/152609 pjd [geli] geli onetime on gzero panics o kern/146429 pjd [geli][panic][patch] kernel panic if geli autodetach i o kern/134113 geom [geli] Problem setting secondary GELI key o kern/133931 geom [geli] [request] intentionally wrong password to destr o bin/131415 geom [geli] keystrokes are unregulary sent to Geli when typ o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120066 [geli] geli boot password input fail when using serial o kern/117188 [geli] System crashes/reboots on access to file on GEL o kern/115856 geom [geli] ZFS thought it was degraded when it should have o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE 18 problems total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164254 geom [geom] gjournal not stopping on GPT partitions o kern/164252 geom [geom] gjournal overflow o kern/164143 geom [geom] Partition table not recognized after upgrade R8 o kern/162036 [geom] Fatal trap 12: page fault while in kernel mode o kern/161979 geom [geom] glabel doesn't update after newfs, and glabel s o kern/161752 geom [geom] glabel(8) doesn't get gpt label change o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra f kern/159595 geom [geom] [panic] panic on gmirror unload in vbox [regres o kern/158197 geom [geom] geom_cache with size>1000 leads to panics o kern/157739 geom [geom] GPT labels with geom_multipath o kern/157724 geom [geom] gpart(8) 'add' command must preserve gap for sc o kern/157723 geom [geom] GEOM should not process 'c' (raw) partitions fo o kern/155994 geom [geom] Long "Suspend time" when reading large files fr o kern/154226 geom [geom] GEOM label does not change when you modify them o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/150555 geom [geom] gjournal unusable on GPT partitions o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/145818 geom [geom] geom_stat_open showing cached information for n o kern/145042 geom [geom] System stops booting after printing message "GE o kern/142563 geom [geom] [hang] ioctl freeze in zpool o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o kern/140352 geom [geom] gjournal + glabel not working f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/135898 geom [geom] Severe filesystem corruption - large files or l o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o kern/131353 geom [geom] gjournal(8) kernel lock f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/129674 geom [geom] gjournal root did not mount on boot o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/123122 geom [geom] GEOM / gjournal kernel lock o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122067 geom [geom] [panic] Geom crashed during boot o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/113837 geom [geom] unable to access 1024 sector size storage o kern/113419 geom [geom] geom fox multipathing not failing back o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o kern/94632 geom [geom] Kernel output resets input while GELI asks for o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa o kern/84556 geom [geom] [panic] GBDE-encrypted swap causes panic at shu o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( 45 problems total. Problem reports for tag 'geom_part': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa 5 problems total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o kern/154943 net [gif] ifconfig gifX create on existing gifX clears IP o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o conf/97014 net [gif] gifconfig_gif? in rc.conf does not recognize IPv o conf/96094 [gif] startup scripts do not configure gif interfaces o kern/95532 [gif] if_gif has artificial limitations 12 problems total. Problem reports for tag 'gjournal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass 6 problems total. Problem reports for tag 'glabel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165428 geom [glabel][patch] Add xfs support to glabel 1 problem total. Problem reports for tag 'glxsb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec 1 problem total. Problem reports for tag 'gmirror': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147667 geom [gmirror] Booting with one component of a gmirror, the o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk f kern/128276 geom [gmirror] machine lock up when gmirror module is used o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad 5 problems total. Problem reports for tag 'gnats': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/164396 bugmeister [GNATs] add 'enhancement' class o misc/164395 bugmeister [GNATs] add support for .patch attachments o misc/164394 bugmeister [GNATS] Change some fields to 'unset' to prevent misca 3 problems total. Problem reports for tag 'gpio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m 1 problem total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164475 net [gre] gre misses RUNNING flag after a reboot o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/125239 net [gre] kernel crash when using gre f kern/122065 bz [ipsec] [gre] gre over ipsec not working o conf/111557 [gre] link1 flag doesn't work as intended when specifi p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with 8 problems total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/165410 doc [handbook] Documentation is not up to date o docs/163879 doc [handbook] handbook does not say about how to force to o docs/162433 doc [handbook] QEMU instructions for FreeBSD guests o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 o docs/161057 doc [handbook] Error in section 18.17.4 of the handbook o docs/160460 doc [handbook] Network setup guide suggestion o docs/160447 doc [handbook] Developer's Handbook contains some outdated o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/160445 doc [handbook] Handbook does not mention ACL o docs/159374 brd [handbook] Difficulty following guide on configuring l o docs/159298 doc [handbook] document Konqueror with Webkit support to i o docs/157908 doc [handbook] Description of post-install should include o docs/157337 eadler [handbook] [patch] Indentation changes to network serv f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145631 blackend [handbook] References to ttyd0 serial devices in handb o docs/144543 chinsan [handbook] IPFW doc change o docs/144515 doc [handbook] Expand handbook Table of contents o docs/143416 doc [handbook] IPFW handbook page issues a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev o docs/140082 bland [handbook] handbook/jails: russian translation is miss o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/132718 doc [handbook] Information about adding a new mirror is ou o docs/121585 doc [handbook] Wrong multicast specification o docs/59240 blackend [patch] [handbook] update: linux MATLAB 29 problems total. Problem reports for tag 'hast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158098 pjd [hast] problem with copying data on hast-device 1 problem total. Problem reports for tag 'hdac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, o kern/152500 multimedia [hdac] play interrupt timeout, channel dead 2 problems total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h o kern/162952 [headers] Problems including netinet/tcp_var.h o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c o kern/159279 [headers] [patch] __FreeBSD_cc_version in includes o kern/156637 [headers] [patch] sys/types.h can't be included when _ o kern/155429 [headers] including malloc.h should not abort compile. o kern/149960 [headers] syntax error /usr/include/machine/endian.h a kern/149012 gavin [headers] [patch] please replace '#include -interfac s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o kern/83778 [ip6] [patch] JPv6 cannot use Jumbo Frames o kern/77341 net [ip6] problems with IPV6 implementation 34 problems total. Problem reports for tag 'ipf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 12 problems total. Problem reports for tag 'ipfilter': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162926 net [ipfilter] Infinite loop in ipfilter with fragmented I o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o kern/131601 net [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp 6 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking o kern/164690 ipfw [ipfw] Request for ipv6 support in ipfw tables o kern/163873 ipfw [ipfw] ipfw fwd does not work with 'via interface' in o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156279 net [if_bridge][divert][ipfw] unable to correctly re-injec f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo o kern/148928 hrs [ipfw] Problem with loading of ipfw NAT rules during s o kern/148827 ipfw [ipfw] divert broken with in-kernel ipfw o kern/148689 ipfw [ipfw] antispoof wrongly triggers on link local IPv6 a o kern/148430 ipfw [ipfw] IPFW schedule delete broken. o conf/148137 hrs [ipfw] call order of natd and ipfw startup scripts o kern/148091 ipfw [ipfw] ipfw ipv6 handling broken. f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o kern/137232 ipfw [ipfw] parser troubles o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/130109 net [ipfw] Can not set fib for packets originated from loc f kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o bin/83046 ipfw [ipfw] ipfw2 error: "setup" is allowed for icmp, but s o kern/82724 ipfw [ipfw] [patch] [request] Add setnexthop and defaultrou o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/56031 luigi [ipfw] ipfw hangs on every invocation s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau 49 problems total. Problem reports for tag 'ipl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 2 problems total. Problem reports for tag 'ipmi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147855 [ipmi] [patch] kernel panic when IPMI enabled on some o kern/125389 [ipmi] [bce] IPMI problem with bce a kern/123904 [ipmi] ipmi(4) reports negative temperature values on a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/79143 [ipmi] Broadcom NIC driver do not work for IPMI 5 problems total. Problem reports for tag 'ipnat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt 3 problems total. Problem reports for tag 'ips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may 1 problem total. Problem reports for tag 'ipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164400 net [ipsec] immediate crash after the start of ipsec proce o kern/159629 net [ipsec] [panic] kernel panic with IPsec in transport m o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o kern/147894 net [ipsec] IPv6-in-IPv4 does not work inside an ESP-only o kern/146190 vanhu [ipsec][patch] NAT traversal does not work in transpor o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/129517 net [ipsec] [panic] double fault / stack overflow s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs 26 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131087 bschmidt [ipw] [panic] ipw / iwi - no sent/received packets; iw o kern/126339 net [ipw] ipw driver drops the connection o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o kern/84861 thompsa [ipw] [patch] still can't get working ipw(4) with adho a kern/82926 thompsa [ipw] ipw(4) doesn't seem to do WPA, also leaves entri 5 problems total. Problem reports for tag 'ipx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi 1 problem total. Problem reports for tag 'irq': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/119696 [irq] [ral] ral device causes massive interrupt storm o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o 7 problems total. Problem reports for tag 'isa': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/37441 davidxu [isa] [patch] ISA PNP parse problem 1 problem total. Problem reports for tag 'iscsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157770 scsi [iscsi] [panic] iscsi_initiator panic o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc 2 problems total. Problem reports for tag 'isp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159414 mjacob [isp] isp(4)+gmultipath(8) : removing active fiber pat o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up 3 problems total. Problem reports for tag 'iwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164365 wireless [iwi] iwi0: UP/DOWN in f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o kern/123559 net [iwi] iwi periodically disassociates/associates [regre a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/116185 net [iwi] if_iwi driver leads system to reboot 9 problems total. Problem reports for tag 'iwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163154 [iwn] fatal firmware error on 9.0-RC3 o kern/161407 bschmidt [iwn] iwn panic on 9.0-BETA3 o kern/161293 wireless [iwn] hang at startup when starting network o kern/154826 bschmidt [iwn] iwn driver fails to power on adapter after resum f kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif 5 problems total. Problem reports for tag 'ix': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) 1 problem total. Problem reports for tag 'ixgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and 10 problems total. Problem reports for tag 'jail': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159918 jail [jail] inter-jail communication failure o kern/156584 bz [jail] ipv4 packet is not forward to v4-mapped binding o kern/156111 jail [jail] procstat -b not supported in jail o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o kern/145444 secteam [jail] sysinstall and sade can access host's disks fro o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o kern/133265 jail [jail] is there a solution how to run nfs client in ja o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o bin/78763 pjd [patch] [jail] Added jail support to ps(1) o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai 17 problems total. Problem reports for tag 'joy': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/64588 [joy] [request] Extend joystick driver architecture to 1 problem total. Problem reports for tag 'kbdmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/146793 gavin [kbdmap] [patch] Danish kbdmap for MacBook o conf/72465 [kbdmap] [patch] United States International keyboard 2 problems total. Problem reports for tag 'kbdmux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153459 [kbdmux][patch] add option to specify built-in keymap p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c 2 problems total. Problem reports for tag 'kerberos': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o kern/161888 [kerberos] nfs -sec=krb5x/ldap/krb5-heimdal fix/upgrad o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup o kern/151444 [kerberos] Kerberos5 is broken in the base system from o bin/147175 [kerberos] [patch] libhx509.so containes references to o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o bin/4116 [patch] [kerberos] Kerberized login as .root fai 8 problems total. Problem reports for tag 'kern.post.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE 1 problem total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165382 wireless [kernel] taskqueue_unblock doesn't unblock currently q p kern/163623 eadler [kernel] sysctl net.inet.icmp.icmplim_output descripti o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib o kern/162174 [kernel] [patch] rman_manage_region() error return pat o kern/161949 [kernel] 64-bit structures are used even with 32-bit c o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/146588 [kernel] [patch] sys/kern/kern_uuid.c has a le16dec be p kern/145865 [kernel] [panic] kernel memory leak with disabled devd o kern/145590 [kernel] [patch] SIG_ATOMIC_{MIN,MAX} does not match s o kern/145434 [kernel] [patch] Kernel messages about processes don't o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/138117 [kernel] [panic] spin lock held too long o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o kern/129164 [kernel] Wrong priority value for normal processes o kern/121073 [kernel] [patch] run chroot as an unprivileged user o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o kern/119202 [kernel] [patch] Add generic support for disabling dev o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c p kern/93331 [kernel] [patch] broken asm in kernel o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o kern/85651 [kernel] [patch] debugging code to show entries in eve o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o kern/81588 [kernel] [patch] Devices with SI_CHEAPCLONE flag don't s kern/79339 [kernel] [patch] Kernel time code sync with improvemen s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX s kern/50827 [kernel] [patch] [request] add sane record locking o kern/50526 [kernel] [patch] update to #! line termination o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o kern/37555 [kernel] [patch] vnode flags appear to be changed in n f kern/29355 [kernel] [patch] add lchflags support 57 problems total. Problem reports for tag 'keyboard': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/165163 usb [keyboard] The USB RF keyboard and mouse become non-re o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o conf/160227 [keyboard] Please include new keyboard mapping: French o usb/156898 usb [keyboard] usb keyboard does not work while boot (ps2 o i386/153851 usb [keyboard] keyboard issues on new Intel Mother boards. o usb/153703 usb [keyboard] My USB keyboard can not be used in 8-STABLE o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER f kern/144938 usb [keyboard] [boot] Boot Failure with Apple (MB869LL/A) o kern/142390 [keyboard] 30th console switch hangs computer complete o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o kern/135164 [keyboard] UK currency key inactive o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o kern/115253 [keyboard] Wireless keyboard not working at boot o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, f kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o kern/80694 [keyboard] [patch] atkbd looped on Acer TravelMate 270 o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( 24 problems total. Problem reports for tag 'kld': S Tracker Resp. Description -------------------------------------------------------------------------------- p docs/142938 wkoszek [kld] share/examples: fix warnings 1 problem total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o kern/149857 [kqueue] kqueue not reporting EOF under certain circum o kern/137246 [kqueue] kevents not generated for file writes through o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i 11 problems total. Problem reports for tag 'kthread': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend 1 problem total. Problem reports for tag 'ktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot 1 problem total. Problem reports for tag 'lagg': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/164901 thompsa [regression] [patch] [lagg] igb/lagg poor traffic dist o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) o kern/157182 net [lagg] lagg interface not working together with epair p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o kern/156226 net [lagg]: failover does not announce the failover to swi o kern/145728 net [lagg] Stops working lagg between two servers. o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/139117 net [lagg] + wlan boot timing (EBUSY) o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge 13 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115526 [libalias] libalias doesn't free memory o kern/105579 [libalias] dcc resume over natd in 6.x o kern/74450 [libalias] [patch] enable libalias/natd to create skip o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/41307 [libalias] [patch] logging of links lifecycle (add/del 6 problems total. Problem reports for tag 'libarchive': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport 4 problems total. Problem reports for tag 'libbsdxml': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157446 [libbsdxml] base expat needs minor fixes from vendor c 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164674 [patch] [libc] vfprintf/vfwprintf return error (EOF) o o kern/164637 [libc] Problem with vsnprintf in libc.so when compiled o kern/164445 [libc] lseek(2) always returns ENXIO with SEEK_DATA/SE s kern/164425 [libc] stat(2) doesn't work in 32bit mode on amd64 o kern/162976 [libc] cron fails unnecessarily via setlogin(2) with s o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159179 [libc] close(2) emitting ECONNRESET is not POSIX compl o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o kern/156684 [libc] getaddrinfo(3) returns improper error o kern/154915 [libc] [patch] Force stdio output streams to line-buff o bin/153502 [libc] regex(3) bug with UTF-8 locale p bin/152551 gavin [libc] Remove unused variables. o kern/152036 net [libc] getifaddrs(3) returns truncated sockaddrs for n o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc o stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o kern/149323 [libc] Applications with large memory footprint failin o kern/148581 [libc] fopen(3) fails with EMFILE if there are more th o kern/148179 [libc] Possible Memory Leak in getaddrinfo(3) o kern/147839 [libc] [patch] syscall(2) with wrong argument causing o kern/147756 [libc] open_socket_in: Protocol not supported - after o kern/147647 [libc] select(2) wakes after 24 hours even if timeout o kern/147226 [libc] read(fd, buffer, len) returns -1 immediately, o kern/146889 [libc] [patch] Not having NET_RT_IFLIST #defined cause o kern/146845 net [libc] close(2) returns error 54 (connection reset by o kern/142772 net [libc] lla_lookup: new lle malloc failed o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep s stand/141705 standards [libc] [request] libc lacks cexp (and friends) o kern/141682 [libc] [patch] Faster version of strncpy(3) a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139080 [libc] [patch] closelog() can close negative file desc o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o kern/136669 [libc] [patch] setmode(3) should always set errno on e o kern/134391 [libc] dladdr(3) does effectively not work on main pro o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error a bin/130504 [libc] Serious bug in regular expression library (rege o kern/128933 kib [libc] realpath(3) does not follow SUS specification f o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/126230 [libc] select(2) causing weird process cpu usage and l o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o kern/124160 net [libc] connect(2) function loops indefinitely o kern/121656 [libc] [patch] telldir(3) issues o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware s kern/114578 [libc] wide character printing using swprintf(dst, n, o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o bin/108118 [libc] files should not cache their EOF status p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o bin/102515 [libc] fsck_ufs crashes if no console at all o kern/100709 net [libc] getaddrinfo(3) should return TTL info o bin/99800 [libc] [patch] Add support for profiling multiple exec a bin/96840 [libc] [patch] getgrent() does not return large groups o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o bin/95002 [libc] hash db source code has a bug which prevents us p stand/94729 gnn [libc] fcntl() throws undocumented ENOTTY o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o kern/82980 [libc] realpath(3) treats regular files as directories s kern/79048 [libc] realloc() copies data even when the size of all o kern/78787 [libc] [patch] sysconf(_SC_CLK_TCK) may return incorre o kern/76398 [libc] stdio can lose data in the presence of signals o kern/75855 [libc] getpwent(3) functions on 5.3 with large passwor s bin/75767 [libc] [request] "fdclose" function in libc o kern/70511 [libc] When fread(3)ing with buffering turned off, man o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/68690 [libc] write(2) returns wrong value when EFAULT s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI s kern/56720 [libc] [request] UNICODE support in Resolver o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31647 net [libc] socket calls can return undocumented EINVAL o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d 87 problems total. Problem reports for tag 'libcrypt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/75934 [libcrypt] [patch] missing blowfish functionality in p 2 problems total. Problem reports for tag 'libcrypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O 1 problem total. Problem reports for tag 'libdialog': S Tracker Resp. Description -------------------------------------------------------------------------------- p gnu/148609 imp [libdialog] [patch] printing to a checklist window on 1 problem total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/148881 [libdisk] [patch] libdisk emits errors w/ disks that c o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk 6 problems total. Problem reports for tag 'libedit': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159226 [libedit] [patch] libedit does not always restore its p bin/145528 gavin [libedit] ftp(1) crashes in libedit when cancelling a o kern/117348 [libedit] Loading history file sometimes fails in libe 3 problems total. Problem reports for tag 'libexec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/110017 [libexec] [patch] serial port console output garbled o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/45729 [libexec] [patch] make rbootd transfer the default fil 5 problems total. Problem reports for tag 'libfetch': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature p bin/151866 des [libfetch] [patch] closing the cached FTP connection o kern/140835 des [libfetch] fetchParseURL(3) returns success with inval o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o kern/116005 des [libfetch] libfetch accepts invalid URLs o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip 6 problems total. Problem reports for tag 'libgcc': S Tracker Resp. Description -------------------------------------------------------------------------------- s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi 2 problems total. Problem reports for tag 'libgeom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157879 geom [libgeom] [regression] ABI change without version bump 1 problem total. Problem reports for tag 'libgssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147454 [libgssapi] libgssapi (heimdal) broken in head/, stabl o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free 2 problems total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134249 [libiconv] [patch] ignore case for character set names 1 problem total. Problem reports for tag 'libkrb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol 1 problem total. Problem reports for tag 'libkvm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163926 eadler [libkvm] libkvm.so.5 exports private symbols o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free 4 problems total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o stand/152415 kargl [libm] implementation of expl() o kern/147599 [libm] [patch] Import netbsd complex functions into ou 2 problems total. Problem reports for tag 'libmagic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149936 [libmagic] [patch] wrong handling of decompression uti 1 problem total. Problem reports for tag 'libmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78646 [libmap] [patch] libmap should canonicalize pathnames 1 problem total. Problem reports for tag 'libmd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file 1 problem total. Problem reports for tag 'libpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161456 [libpam] on a system bound to an LDAP server, top trie o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o bin/141016 [libpam] PAM checks in sshd too few? o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o bin/115946 des [libpam] [patch] not thread-safe o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc s kern/20333 des [libpam] ftp login fails on unix password when s/key a 13 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155370 [libpcap] [patch] description string is broken o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o bin/146592 [libpcap] [patch] libpcap 1.0.0 doesn't have error mes o kern/144325 [libpcap] tcpdump compiles complex expression to incor o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n 5 problems total. Problem reports for tag 'librpcsvc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa 1 problem total. Problem reports for tag 'libssh': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159745 [libssh] [patch] Fix improperly specified dependency l 1 problem total. Problem reports for tag 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/83424 [libstand] [patch] improper handling of malloc failure 3 problems total. Problem reports for tag 'libstdc++': Problem reports for tag 'libtacplus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will 1 problem total. Problem reports for tag 'libteken': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144743 [libteken] mouse positioning partialy working o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod 3 problems total. Problem reports for tag 'libusb': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker 2 problems total. Problem reports for tag 'libusbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83451 [libusbhid] [patch] improper handling of malloc failur 1 problem total. Problem reports for tag 'libutil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/84797 [libutil] [patch] State engine in the libutils propert s kern/38347 [libutil] [patch] [request] new library function abs2r o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f 3 problems total. Problem reports for tag 'libvgl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83426 [libvgl] [patch] improper handling of malloc failures 1 problem total. Problem reports for tag 'libwrap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all 1 problem total. Problem reports for tag 'libz': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/154073 delphij [libz] libz causes perl to exit on signal 11 1 problem total. Problem reports for tag 'linprocfs': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w 3 problems total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp p kern/148076 dchagin [linux] linux_sys_futex: unknown op 265 o kern/146237 emulation [linux] Linux binaries not reading directories mounted o kern/140156 emulation [linux] cdparanoia fails to read drive data o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails s kern/118230 acm [linux] games/linux-quake4 fails to start o kern/86619 emulation [linux] linux emulator interacts oddly with cp a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work s kern/21463 eadler [linux] Linux compatability mode should not allow setu 17 problems total. Problem reports for tag 'lo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o 3 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/155441 [loader] [patch] Firewire support in loader is broken f i386/138211 gavin [loader] Boot fails on Intel X5550 o kern/110995 [loader] [patch] loader wastes space worth symtab size o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same 9 problems total. Problem reports for tag 'locale': S Tracker Resp. Description -------------------------------------------------------------------------------- a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac p conf/105100 [patch] [locale] no support for lv (latvian) locale a conf/91106 versus [locale] date definitions in pl_PL locale are wrong 3 problems total. Problem reports for tag 'login.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/155480 [login.conf] maxproc does not work when command runnin 1 problem total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting 3 problems total. Problem reports for tag 'mac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145040 [mac] PANIC_REBOOT_WAIT_TIME not honored o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa 2 problems total. Problem reports for tag 'make.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the 2 problems total. Problem reports for tag 'mbuf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou 2 problems total. Problem reports for tag 'mca': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146590 [mca] [panic] MCA panics 7.3 1 problem total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163801 fs [md] [request] allow mfsBSD legacy installed in 'swap' o kern/162502 [md] mount -t mfs on vnode-based md device destroy him p kern/154228 fs [md] md getting stuck in wdrain state 3 problems total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157293 [mfi] mfiutil/mfi does not allow adding a previously c o kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if o kern/155499 [mfi] mfi(4) command timeout loop on boot on releng/8. o kern/124989 [mfi] mfi driver error - unexpected sense 4 problems total. Problem reports for tag 'minidump': S Tracker Resp. Description -------------------------------------------------------------------------------- p amd64/139614 avg [minidump] minidumps fail when many interrupts fire o kern/118713 fs [minidump] [patch] Display media size required for a k 2 problems total. Problem reports for tag 'mips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR 2 problems total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o i386/55603 [mly] unable to reboot when system runs from Mylex A35 3 problems total. Problem reports for tag 'mmc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/141756 gavin [mmc] MMC card attached to blocks keybo 1 problem total. Problem reports for tag 'mmcsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164536 [modules] [request] disable building kernel modules th o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/114291 [RFE] [modules] [patch] add dynamic module references o kern/96346 [modules] [patch] disable build of modules that are al s kern/83738 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k f kern/48976 gavin [modules] nwfs.ko oddity 9 problems total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o kern/89166 [mouse] jumpy mouse movement o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/86298 usb [mouse] Known good USB mouse won't work with correct s 5 problems total. Problem reports for tag 'mpd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162267 qingli [mpd] mpd kernel panic 1 problem total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164844 [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SA f kern/163130 scsi [mpt] cannot dumpon to mpt connected disk o kern/162256 scsi [mpt] QUEUE FULL EVENT and 'mpt_cam_event: 0x0' o kern/147704 scsi [mpt] sys/dev/mpt: new chip revision, partially unsupp o kern/145768 scsi [mpt] can't perform I/O on SAS based SAN disk in freeb o kern/142351 scsi [mpt] LSILogic driver performance problems o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/128282 gavin [mpt] system failure on removing two drives o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/117688 [mpt] mpt disk timeout and hang 16 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154828 fs [msdosfs] Unable to create directories on external USB o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o kern/123939 fs [msdosfs] corrupts new files f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o kern/111843 fs [msdosfs] Long Names of files are incorrectly created o kern/109024 fs [msdosfs] [iconv] mount_msdosfs: msdosfs_iconv: Operat o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f kern/87368 bde [msdosfs] fat32 is very slow o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o kern/79441 trhodes [msdosfs] problem writing on mounted msdos-fs at /mnt p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c 23 problems total. Problem reports for tag 'msk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164569 net [msk] [hang] msk network driver cause freeze in FreeBS o kern/160420 net [msk] phy write timeout on HP 5310m o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel 3 problems total. Problem reports for tag 'multicast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155680 net [multicast] problems with multicast o kern/154169 net [multicast] [ip6] Node Information Query multicast add o kern/149086 net [multicast] Generic multicast join failure in 8.1 3 problems total. Problem reports for tag 'mutex': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131573 [mutex] lock_init() assumes zero-filled struct 1 problem total. Problem reports for tag 'mwl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163724 wireless [mwl] [patch] NULL check before dereference o kern/146427 net [mwl] Additional virtual access points don't work on m o kern/146426 net [mwl] 802.11n rates not possible on mwl o kern/146425 net [mwl] mwl dropping all packets during and after high u 4 problems total. Problem reports for tag 'mxge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update 1 problem total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o misc/157533 imp [nanobsd][patch] save_cfg improvements p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o misc/145962 imp [nanobsd] [patch] improved cfg save script p misc/144553 imp [nanobsd] NanoBSD's updatep* scripts fail with boot0cf p misc/140436 imp [nanobsd] pkg-add process fails when there is no /usr/ o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re 12 problems total. Problem reports for tag 'nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 3 problems total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe o kern/156016 [ncurses] Arrow keys don't work with any ncurses based o kern/154609 ed [ncurses] END key under screen not sending correct cod o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) 4 problems total. Problem reports for tag 'ndis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/131781 net [ndis] ndis keeps dropping the link f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress 11 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152569 net [net]: Multiple ppp connections and routing table prob o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad s kern/81147 jfv [net] [patch] em0 reinitialization while adding aliase s kern/12071 fanf [net] [patch] new function: large scale IP aliasing 6 problems total. Problem reports for tag 'net80211': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165149 wireless [ath] [net80211] Ping with data length more than iv_fr o kern/165146 wireless [net80211] Net802.11 Fragment number is assigned 1 (sh o kern/163574 wireless [net80211] overly-frequent HT occupancy changes 3 problems total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/165413 net [netgraph]: ngctl(8) does not work as advertised o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/154091 net [netgraph] [panic] netgraph, unaligned mbuf? o kern/153497 net [netgraph] netgraph panic due to race conditions o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/104751 net [netgraph] kernel panic, when getting info about my tr o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/97306 net [netgraph] NG_L2TP locks after connection with failed o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/82881 net [netgraph] [panic] ng_fec(4) causes kernel panic after o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE 23 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re p kern/146250 bz [netinet] [patch] Races on interface alias removal o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat 13 problems total. Problem reports for tag 'netisr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165444 [netisr] [patch] incorrect processing of net.isr.bindt o kern/164145 [netisr] when one of netisr threads take 100% system i o kern/164130 rwatson [netisr] broken netisr initialization o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o kern/100519 net [netisr] suggestion to fix suboptimal network polling 5 problems total. Problem reports for tag 'netsmb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163135 [netsmb] Wrong check in netsmb 1 problem total. Problem reports for tag 'network.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o conf/147681 [network.subr][patch] Add inet6 keyword if it wasn't s 2 problems total. Problem reports for tag 'nfe': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/147684 yongari [nfe] nVidia MCP55 driver blocks IPMI LAN on load f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki 2 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/164933 [nfs] [patch] mountd(8) drops mixed security flavors f f kern/164462 rmacklem [nfs] NFSv4 mounting fails to mount; asks for stronger o kern/163501 fs [nfs] NFS exporting a dir and a subdir in that dir to o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() f kern/157929 fs [nfs] NFS slow read o kern/154255 net [nfs] NFS not responding o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/147998 [nfs] [patch] NFS -mapall group permissions ignored wh o kern/146502 fs [nfs] FreeBSD 8 NFS Client Connection to Server o kern/145189 fs [nfs] nfsd performs abysmally under load o kern/143825 fs [nfs] [panic] Kernel panic on NFS client o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o kern/137327 dfr [nfs] nfs nlm memery leak o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c o kern/123755 dfr [nfs] fstat() fails to return ESTALE with rename()d fi o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown o bin/118318 mohans [nfs] NFS server hangs under special circumstances o kern/118126 fs [nfs] [patch] Poor NFS server write performance o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111162 [nfs] nfs_getpages does not restart interrupted system o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/105241 [nfs] problem with Linux NFS server up/down combined w o kern/97329 [nfs] [patch] code simplification o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur o kern/79336 [nfs] NFS client doesn't detect file updates on Novell s kern/78884 [nfs] [patch] nfs client cache negative lookups o kern/78673 [nfs] [patch] nfs client open resets attrstamp ever if o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea s kern/67545 [nfs] NFS Diskless Mount Option Suggestion a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/35669 [nfs] NFSROOT breaks without a gateway o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo s kern/17108 [nfs] SecureRPC not supported in mount_nfs command 68 problems total. Problem reports for tag 'ng_l2tp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146082 net [ng_l2tp] a false invaliant check was performed in ng_ 1 problem total. Problem reports for tag 'ng_nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125704 [ng_nat] kernel libalias: repeatable panic 1 problem total. Problem reports for tag 'nis': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o bin/40215 [nis] NIS host search not terminate o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/24461 [nis] Being able to increase the YP timeout without re o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus 21 problems total. Problem reports for tag 'notes': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf 1 problem total. Problem reports for tag 'nsswitch.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163798 [nsswitch.conf] nsswitch.conf with nss_ldap ignore [su o conf/156945 [nsswitch.conf] Name service Switch does not work as d o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on 4 problems total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o kern/116515 rwatson [ntfs] NTFS mount does not check that user has permiss o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem 11 problems total. Problem reports for tag 'null': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139014 [null] /dev/null must be immunable to delete/unlink p kern/138526 gnn [null] /dev/null does not support nonblocking operatio 2 problems total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o kern/162591 fs [nullfs] cross-filesystem nullfs does not work as expe o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou o kern/158231 fs [nullfs] panic on unmounting nullfs mounted over ufs o o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o kern/130210 fs [nullfs] Error by check nullfs o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/51583 fs [nullfs] [patch] allow to work with devices and socket 12 problems total. Problem reports for tag 'nwfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange 1 problem total. Problem reports for tag 'ofw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112477 marius [ofw] [patch] Add support to set the node and type on 1 problem total. Problem reports for tag 'ohci': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion 6 problems total. Problem reports for tag 'openbsm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu 1 problem total. Problem reports for tag 'openpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin 1 problem total. Problem reports for tag 'oss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r 1 problem total. Problem reports for tag 'padlock': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164565 [padlock] [panic] kernel crash when kldunload'ing padl 1 problem total. Problem reports for tag 'pae': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/129550 i386 [pae] [kqueue] crash with PAE kernel 1 problem total. Problem reports for tag 'pam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o bin/113230 des [pam] [patch] const-ify PAM-headers o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/83099 des [pam] pam_login_access change causes cyrus-sasl-saslau s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password 8 problems total. Problem reports for tag 'parallels': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec f kern/138944 emulation [parallels] [regression] Parallels no longer works in 2 problems total. Problem reports for tag 'patm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 1 problem total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164189 [pccard] FreeBSD 9.0-RELEASE on Toshiba Satellite Pro o conf/160373 [pccard] [patch] pccard_ether does not take settings i o kern/147127 [pccard] [patch] Fix panic in pccard.c o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp 5 problems total. Problem reports for tag 'pccbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128608 imp [pccbb] [patch] add support for powering down and up C o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF 4 problems total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method f kern/158391 gavin [pci] Resource allocation issues with hda/ath o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m f kern/65355 [pci] [patch] TC1000 serial ports need enabling 8 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159236 multimedia [pcm] [patch] set PCM_CAP_DEFAULT for the default snd o kern/152622 multimedia [pcm] uaudio recording problem o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi 6 problems total. Problem reports for tag 'periodic': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163572 [periodic] not full output in daily run output is ambi o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o conf/152807 [periodic] security 900.tcpwrap does not report any re o kern/135502 net [periodic] Warning message raised by rtfree function i o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o conf/70715 [periodic] Lack of year in dates in auth.log can cause o conf/47596 [periodic] daily security run complains if timezone ch o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea 9 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165315 pf [pf] States never cleared in PF with DEVICE_POLLING o kern/165252 virtualization[vimage] [pf] [panic] kernel panics with VIMAGE and PF o kern/164402 pf [pf] pf crashes with a particular set of rules when fi o kern/164271 pf [pf] not working pf nat on FreeBSD 9.0 [regression] o kern/163208 pf [pf] PF state key linking mismatch o kern/161094 virtualization[vimage] [pf] [panic] kernel panic with pf + VIMAGE wh o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o kern/160370 pf [pf] Incorrect pfctl check of pf.conf o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/153307 pf [pf] Bug with PF firewall o kern/148290 pf [pf] "sticky-address" option of Packet Filter (PF) blo o kern/148260 pf [pf] [patch] pf rdr incompatible with dummynet o kern/148155 virtualization[vimage] [pf] Kernel panic with PF/IPFilter + VIMAGE k o kern/147789 pf [pf] Firewall PF no longer drops connections by sendin o kern/146832 bz [pf] "(self)" not always matching all local IPv6 addre o kern/146719 net [pf] [panic] PF or dumynet kernel panic o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin s kern/143808 virtualization[pf] pf does not work inside jail o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o conf/142961 pf [pf] No way to adjust pidfile in pflogd o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/140697 pf [pf] pf behaviour changes - must be documented o kern/137982 pf [pf] when pf can hit state limits, random IP failures o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/133732 pf [pf] max-src-conn issue o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent f kern/132176 pf [pf] pf stalls connection when using route-to [regress o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o kern/127920 pf [pf] ipv6 and synproxy don't play well together o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w o kern/127439 pf [pf] deadlock in pf o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is o kern/125467 pf [pf] pf keep state bug while handling sessions between s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. o kern/93825 pf [pf] pf reply-to doesn't work o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s o kern/92949 pf [pf] PF + ALTQ problems with latency a kern/86752 mlaier [pf] pf does not use default timeouts when reloading c o kern/82271 pf [pf] cbq scheduler cause bad latency 53 problems total. Problem reports for tag 'pf.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/145727 [pf.conf] pf rules not applied on boot if using inet6 1 problem total. Problem reports for tag 'pfil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164490 net [pfil] Incorrect IP checksum on pfil pass from ip_outp s kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall 3 problems total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker 4 problems total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/52256 embedded [picobsd] picobsd build script does not read in user/s o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt 3 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/93685 jilles [pipe] select on pipe write fails from '0' end 1 problem total. Problem reports for tag 'plip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/102035 net [plip] plip networking disables parallel port printing 2 problems total. Problem reports for tag 'pmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ 1 problem total. Problem reports for tag 'portalfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9679 [portalfs] [patch] fix for uninterruptible open in por 1 problem total. Problem reports for tag 'powerd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I 1 problem total. Problem reports for tag 'ppbus': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 1 problem total. Problem reports for tag 'ppc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165488 net [ppp] [panic] Fatal trap 12 jails and ppp , kernel wit o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o conf/119550 [ppp] ppp not starting during bootup. o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces s kern/84386 [ppp] [request] PPPoA Authentication built into FreeBS o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 16 problems total. Problem reports for tag 'pppd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr 3 problems total. Problem reports for tag 'procfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o kern/97505 [procfs] file entry of procfs points to "unknown" o kern/96999 [procfs] [patch] procfs reports incorrect information s kern/19535 [procfs] [patch] procfs_rlimit tidyup 4 problems total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/161043 jhb [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o kern/159063 [psm] ALPS touchpad recognized as PS mouse (no scrl, n o kern/147237 [psm] [patch] There is no IBM/Lenovo TrackPoint suppor o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o kern/137228 [psm] synaptics support delays 'mouse up' events when o kern/129125 [psm] psm0: failed to reset the aux device. f kern/128308 gavin [psm] psm0 cause page fault o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 o kern/109161 philip [psm] synaptic touchpad doesn't work o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation 16 problems total. Problem reports for tag 'ptrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace 1 problem total. Problem reports for tag 'pty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs 1 problem total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163450 [puc] [patch] new pci quad serial card supported by pu o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s 5 problems total. Problem reports for tag 'pxeboot': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146162 [pxeboot] PXE loader(8) sets nfs_opts[] = "export" cau o i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin 5 problems total. Problem reports for tag 'quota': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164734 [quota] 9.0 quota not working [regression] 1 problem total. Problem reports for tag 'quotas': S Tracker Resp. Description -------------------------------------------------------------------------------- s bin/42004 [quotas] quota is still IPv4 only, and not INET indepe 1 problem total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o f kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] f kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati 3 problems total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o kern/153937 net [ral] ralink panics the system (amd64 freeBSDD 8.X) wh f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 f kern/134168 gavin [ral] ral driver problem on RT2525 2.4GHz transceiver o kern/132238 [ral] ral driver does not support RT2860 o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o kern/119696 [irq] [ral] ral device causes massive interrupt storm f kern/117655 sam [ral] ral%d: device timeout when running as an access o kern/111457 net [ral] ral(4) freeze o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P o kern/95519 net [ral] ral0 could not map mbuf o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP f kern/82456 gavin [ral] WITNESS warning/backtrace in if_ral 19 problems total. Problem reports for tag 'random': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc 2 problems total. Problem reports for tag 'rc': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/165477 [rc] dhclient is run twice o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser 4 problems total. Problem reports for tag 'rc.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip 2 problems total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck o conf/147444 rc [rc.d] [patch] /etc/rc.d/zfs stop not called on reboot o conf/145445 rc [rc.d] error in /etc/rc.d/jail (bad logic) o conf/145440 hrs [rc.d] [patch] add multiple fib support (setfib) in /e o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o conf/137629 rc [rc.d] background_dhclient rc.conf option causing doub o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o conf/135338 rc [rc.d] pf startup order seems broken [regression] o bin/134250 [rc.d] mountlate: bogus error message when using neste o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a 21 problems total. Problem reports for tag 'rc.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands 1 problem total. Problem reports for tag 'rctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162407 [rctl] [panic] rctl crashes kernel with a page fault ( o kern/161552 [rctl] [panic] kernel panic with RCTL option: racct_al 2 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162509 net [re] [panic] Kernel panic may be related to if_re.c (r o kern/161381 net [re] RTL8169SC - re0: PHY write failed f kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. o kern/157429 net [re] Realtek RTL8169 doesn't work with re(4) o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f 5 problems total. Problem reports for tag 'release': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/145580 [release] /usr/src/release/Makefile does not honor HTT 1 problem total. Problem reports for tag 'resolver': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136013 [resolver] Resolver wrong diagnostics 1 problem total. Problem reports for tag 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' 1 problem total. Problem reports for tag 'route': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/161899 rc [route] ntpd(8): Repeating RTM_MISS packets causing hi o kern/155177 net [route] [panic] Panic when inject routes in kernel o kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 o kern/134531 net [route] [panic] kernel crash related to routes/zebra a kern/71474 net [route] route lookup does not skip interfaces marked d 5 problems total. Problem reports for tag 'rp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44202 [rp] [patch] -stable rp driver does not work with mult s i386/28975 [rp] RocketPort problems 2 problems total. Problem reports for tag 'rpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158340 [rpc] Possible dereference of null pointer by code tha p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o kern/150036 [rpc] Sun RPC license has less restrictions now. f kern/117711 [rpc] rpcbind binds to all interfaces on random ports o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux 7 problems total. Problem reports for tag 'rpc.quotad': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support 1 problem total. Problem reports for tag 'rtalloc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs 1 problem total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/152662 [rtld] load libraries with address hint (cf. prelink) o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/84199 [rtld] dlinfo does not handle RTLD_DI_SERINFOSIZE prop 4 problems total. Problem reports for tag 'rum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149643 net [rum] device not sending proper beacon frames in ap mo p usb/146693 thompsa [rum] Edimax EW‐7318USG not found in usbdevs or a kern/141696 virtualization[rum] [vimage] [panic] rum(4)+ vimage = kernel panic o kern/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o usb/133296 usb [rum] driver not working properly in hostap mode o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel 13 problems total. Problem reports for tag 'run': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/162500 maho math/suitesparse: gmake[2]: *** [run] Segmentation fau o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o usb/144387 usb [run] [panic] if_run panic 3 problems total. Problem reports for tag 'sa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe 1 problem total. Problem reports for tag 'safe': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/110662 sam [safe] safenet driver causes kernel panic 1 problem total. Problem reports for tag 'sbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136327 firewire [sbp] [boot] Asus M3N78-EM motherboard cannot boot wit o kern/119572 firewire [sbp] PowerBook not accessable when in target mode 2 problems total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163587 [sched_ule] The ULE scheduler does not load in the fou o kern/161097 [sched_ule] Unkillable process hanging waiting for "ex o kern/128177 jeff [sched_ule] wrong CPU usage reported by top(1)/ps(1) w p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/117420 jeff [sched_ule] round off in sched_balance_pair() s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a 7 problems total. Problem reports for tag 'scheduler': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' 1 problem total. Problem reports for tag 'scsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re o kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 drive if dis o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. 3 problems total. Problem reports for tag 'sctp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165210 rrs [sctp] SCTP sockets don't bind on interfaces created b 1 problem total. Problem reports for tag 'ses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi 1 problem total. Problem reports for tag 'sg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120487 scsi [sg] scsi_sg incompatible with scanners 1 problem total. Problem reports for tag 'siis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145714 [siis] removed SATA device on port multiplier resets e 1 problem total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159647 [sio] device sio will not compile o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o kern/128036 [sio] [patch] serial console mostly ignores typein to a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/97665 [sio] hang in sio driver o kern/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i o kern/51982 remko [sio] sio1: interrupt-level buffer overflows o kern/49039 [sio] [patch] add support for RS485 hardware where dir o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/26261 [sio] silo overflow problem in sio driver s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o 13 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 1 problem total. Problem reports for tag 'smb': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect 1 problem total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/159048 fs [smbfs] smb mount corrupts large files o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o kern/94733 fs [smbfs] smbfs may cause double unlock o kern/91134 fs [smbfs] [patch] Preserve access and modification time a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o kern/87859 fs [smbfs] System reboot while umount smbfs. o kern/80088 fs [smbfs] Incorrect file time setting on NTFS mounted vi o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o kern/61503 fs [smbfs] mount_smbfs does not work as non-root o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o kern/36566 fs [smbfs] System reboot with dead smb mount and umount 26 problems total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164203 [smp] usr/src/sys/sys/smp.h:124: warning: comparison b o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/67830 [smp] [patch] CPU affinity problem with forked child p 3 problems total. Problem reports for tag 'snapshots': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162362 fs [snapshots] [panic] ufs with snapshot(s) panics when g 1 problem total. Problem reports for tag 'snd_emu10k1': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system 7 problems total. Problem reports for tag 'snd_hda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s f kern/158424 multimedia [snd_hda] snd_hda driver doesn't expose 'rec' flag for o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/150284 multimedia [snd_hda] No gain with Audio o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o kern/141826 multimedia [snd_hda] load of snd_hda module fails o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att 10 problems total. Problem reports for tag 'snd_uadio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158979 multimedia [snd_uadio] snd_uaudio fails to initialize built-in mi 1 problem total. Problem reports for tag 'snd_uaudio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156726 multimedia [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant 4 problems total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou p kern/144061 rwatson [socket] race on unix socket close o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm p kern/127360 net [socket] TOE socket options missing from sosetopt() o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec a kern/97921 rwatson [socket] close() socket deadlocks blocked threads f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/21998 net [socket] [patch] ident only for outgoing connections o kern/5877 net [socket] sb_cc counts control data as well as data dat 12 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o kern/148741 multimedia [sound] Headphones are deaf (do not work) on Lenovo Th o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o power/133503 ppc [sound] Sound stutter after switching ttys o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla f usb/80040 usb [sound] [hang] Use of sound mixer causes system freeze o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 54 problems total. Problem reports for tag 'sshd_config': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163843 [sshd_config] Modified VersionAddendum field in sshd_c 1 problem total. Problem reports for tag 'stf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154214 net [stf] [panic] Panic when creating stf interface o conf/148017 hrs [stf] [patch] rc script for stf does not honour create s kern/143673 net [stf] [request] there should be a way to support multi o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/123858 net [stf] [patch] stf not usable behind a NAT 5 problems total. Problem reports for tag 'swap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162382 [swap] Orphaned swap references not garbage collected; 1 problem total. Problem reports for tag 'swi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net 4 problems total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163064 [fix][sym]driver tries to nego synch trans with everyo o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load 4 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o kern/152162 [syscons] On syscons, pressing delete key results in p o kern/148367 [syscons] [patch] Add loader tunable to override SC_HI o kern/148130 [syscons] Inappropriate ioctl for device f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/117242 [syscons] [hang] console hangs when powerd is adaptive o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH s bin/90082 [syscons] [patch] curses ACS line graphics support for o kern/83109 [syscons] syscons does not always display colors corre o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/46973 [syscons] [patch] [request] syscons virtual terminals o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/31890 [syscons] [patch] new syscons font s kern/15436 [syscons] syscons extension: "propellers" 17 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls p kern/148580 gavin [sysctl][patch] Document some sys/kern sysctls o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/54439 [sysctl] [patch] Protecting sysctls variables by given 10 problems total. Problem reports for tag 'tap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165174 net [patch] [tap] allow tap(4) to keep its address on clos o kern/158686 virtualization[vimage] [tap] [patch] Add VIMAGE support to if_tap o kern/123892 net [tap] [patch] No buffer space available o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap 4 problems total. Problem reports for tag 'tcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159795 net [tcp] excessive duplicate ACKs and TCP session freezes o kern/159621 net [tcp] [panic] panic: soabort: so_count f kern/155585 melifaro [tcp] [panic] tcp_output tcp_mtudisc loop until kernel p kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r o kern/154600 net [tcp] [panic] Random kernel panics on tcp_output o kern/154557 net [tcp] Freeze tcp-session of the clients, if in the gat a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t f kern/123617 andre [tcp] breaking connection when client downloading file o kern/123603 andre [tcp] tcp_do_segment and Received duplicate SYN f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a kern/116335 andre [tcp] Excessive TCP window updates o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s 20 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- p conf/147992 gavin [termcap] [patch] xterm-256color is a 8 colors termina o conf/136336 [termcap] [patch] missing entry for "center of keypad" s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili 3 problems total. Problem reports for tag 'terminfo': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/140965 [terminfo] Cannot create terminfo database because ncu 1 problem total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/20529 [ti] gigabit cards fail to link 1 problem total. Problem reports for tag 'tinybsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ 1 problem total. Problem reports for tag 'tmpfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug p kern/122038 gleb [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc 4 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o misc/147463 [tools] [patch] Patch for tools/regression/lib/libc/st o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam 4 problems total. Problem reports for tag 'trm': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 1 problem total. Problem reports for tag 'tun': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162927 net [tun] Modem-PPP error ppp[1538]: tun0: Phase: Clearing o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP p kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o bin/115951 [tun] pppoed(8): tun not closed after client abruptly 6 problems total. Problem reports for tag 'twa': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138948 i386 [twa] [regression] da0: Fi o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid 2 problems total. Problem reports for tag 'twe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72906 [twe] twe0 idefinite wait buffer a kern/66185 [twe] twe driver generates gratuitous warning on shutd 2 problems total. Problem reports for tag 'u3g': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem 1 problem total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155752 [uart] tcdrain(3) does not work with uart(4) driver o kern/155196 [uart] uart cannot identify internal modem or its chip o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x o kern/147082 ed [uart] Serial ports unusable [regression] s kern/146647 [uart] Some PCIe serial/parallel boards with ID 9901 9 o kern/144696 ed [uart] tcdrain(3) does not work right with uart(4) dri o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 8 problems total. Problem reports for tag 'uath': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri 1 problem total. Problem reports for tag 'ubsa': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun 4 problems total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct 11 problems total. Problem reports for tag 'udav': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ 1 problem total. Problem reports for tag 'udbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected 2 problems total. Problem reports for tag 'udf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158376 [udf] [patch] The UDF file system under counts the num o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada 3 problems total. Problem reports for tag 'udp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o kern/133736 net [udp] ip_id not protected ... o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject 4 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164472 fs [ufs] fsck -B panics on particular data inconsistency o kern/164184 fs [ufs] [panic] Kernel panic with ufs_makeinode o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 o kern/160860 fs [ufs] Random UFS root filesystem corruption with SU+J o kern/159930 fs [ufs] [panic] kernel core p kern/156545 fs [ufs] mv could break UFS on SMP systems o kern/156193 fs [ufs] [hang] UFS snapshot hangs && deadlocks processes o kern/152991 [ufs] false disk full with a too slow flash module o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o kern/147420 fs [ufs] [panic] ufs_dirbad, nullfs, jail panic (corrupt o kern/146708 fs [ufs] [panic] Kernel panic in softdep_disk_write_compl o kern/145246 fs [ufs] dirhash in 7.3 gratuitously frees hashes when it o kern/144929 fs [ufs] [lor] vfs_bio.c + ufs_dirhash.c o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132331 fs [ufs] [lor] LOR ufs and syncer o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file a kern/125613 trasz [ufs] [patch] ACL problems with special files o bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o kern/117954 fs [ufs] dirhash on very large directories blocks the mac o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po 35 problems total. Problem reports for tag 'uftdi': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/67301 usb [uftdi] [panic] RTS and system panic 10 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/154710 usb [ugen] Conexant USB Modem is not working in 8.x. In 7. o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n 8 problems total. Problem reports for tag 'uhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 3 problems total. Problem reports for tag 'uhub': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb 3 problems total. Problem reports for tag 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does f usb/102066 gavin [ukbd] usb keyboard and multimedia keys don't work o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar 13 problems total. Problem reports for tag 'ulpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes 11 problems total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/85971 jeff [uma] [patch] minor optimization to uma 2 problems total. Problem reports for tag 'umapfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/74708 [umapfs] [panic] UMAPFS kernel panic 1 problem total. Problem reports for tag 'umass': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o usb/153149 usb [umass] USB stick quirk regression [regression] o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o usb/131583 usb [umass] Failure when detaching umass Device o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/121169 usb [umass] Issues with usb mp3 player o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o usb/114682 usb [umass] generic USB media-card reader unusable f kern/114667 [umass] UMASS device error log problem o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) f usb/74771 usb [umass] [hang] mounting write-protected umass device a s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/40948 usb [umass] [request] USB HP CDW8200 does not work 61 problems total. Problem reports for tag 'umct': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters 1 problem total. Problem reports for tag 'umodem': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number o usb/128485 usb [umodem] [patch] Nokia N80 modem support p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work 5 problems total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s kern/103578 [ums] ums does not recognize mouse buttons s usb/96120 usb [ums] [request] USB mouse not always detected o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 13 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165087 fs [unionfs] lock violation in unionfs o kern/161511 fs [unionfs] Filesystem deadlocks when using multiple uni o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/145750 daichi [unionfs] [hang] unionfs locks the machine o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo o bin/19772 [unionfs] df(1) output wrong for union-mounts 15 problems total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco 1 problem total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode 5 problems total. Problem reports for tag 'urio': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/51958 usb [urio] [patch] update for urio driver 1 problem total. Problem reports for tag 'urtw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b 4 problems total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/163328 usb [usb] Support for Atheros USB abgn devices o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics o usb/129311 usb [usb] [panic] Instant crash with an USB card reader s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f usb/87224 usb [usb] Cannot mount USB Zip750 o usb/79723 usb [usb] [request] prepare for high speed isochronous tra s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 22 problems total. Problem reports for tag 'usb67': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is f usb/137872 usb [usb67] [boot] slow booting on usb flash drive o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/128977 usb [usb67] [patch] uaudio is not full duplex s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con 45 problems total. Problem reports for tag 'usb8': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/157074 usb [boot] [usb8] vfs_mountroot_ask is called when no usb o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf s usb/148702 usb [usb8] [request] IO DATA USB-RSAQ5 support on FreeBSD- p usb/146367 thompsa [usb8] [patch] Revision 205728: broken bluetooth mouse o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date f usb/145513 usb [usb8] New USB stack: no new devices after forced usb p usb/145455 usb [usb8] [patch] USB debug support cannot be disabled o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o usb/137377 usb [usb8] request support for Huawei E180 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/130122 usb [usb8] DVD drive detects as 'da' device o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil 55 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports 10 problems total. Problem reports for tag 'uscanner': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device 1 problem total. Problem reports for tag 'uvisor': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. 1 problem total. Problem reports for tag 'vbox': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o amd64/161418 vbox [panic] [vbox] FreeBSD 9.0beta3 under Virtualbox: lost o ports/151603 vbox [vbox] Self-built emulators/virtualbox-ose-kmod vboxne o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum 4 problems total. Problem reports for tag 'vesa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod 3 problems total. Problem reports for tag 'vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163461 [vfs] vfs.zfs.arc_max/vfs.zfs.arc_meta_limit defaults o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/142878 fs [zfs] [vfs] lock order reversal f kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o kern/139127 [vfs] False negative vfs cache entry p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D 9 problems total. Problem reports for tag 'vga': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o kern/64114 [vga] [patch] bad vertical refresh for console using R 2 problems total. Problem reports for tag 'vimage': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165252 virtualization[vimage] [pf] [panic] kernel panics with VIMAGE and PF o kern/161094 virtualization[vimage] [pf] [panic] kernel panic with pf + VIMAGE wh o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o kern/158686 virtualization[vimage] [tap] [patch] Add VIMAGE support to if_tap a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe o kern/148155 virtualization[vimage] [pf] Kernel panic with PF/IPFilter + VIMAGE k a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash a kern/141696 virtualization[rum] [vimage] [panic] rum(4)+ vimage = kernel panic 9 problems total. Problem reports for tag 'vinum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/79035 geom [vinum] gvinum unable to create a striped set of mirro o conf/47566 [vinum] [patch] add vinum status verification to perio 2 problems total. Problem reports for tag 'virtualpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying 1 problem total. Problem reports for tag 'vlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165296 net [vlan] [patch] Fix EVL_APPLY_VLID, update EVL_APPLY_PR o kern/156408 net [vlan] Routing failure when using VLANs vs. Physical e o kern/155420 net [vlan] adding vlan break existent vlan o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out f kern/146394 net [vlan] IP source address for outgoing connections o kern/146358 net [vlan] wrong destination MAC address p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o kern/117423 net [vlan] Duplicate IP on different interfaces 13 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161887 [vm] [panic] panic at vm_page_wire with FreeBSD 9.0 Be o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero o kern/147459 [vm] [panic] Kernel panic: vm_page / vdrop / vm_page_c o kern/140461 [vm] Fail to read from swap. The swap_pager.c contains o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind s bin/2137 [vm] systat(1) total vm statistics are bad 12 problems total. Problem reports for tag 'vmware': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156749 [vmware] FreeBSD 8.2 does infinite disk access in VMwa f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o kern/147793 emulation [vmware] [panic] cdrom handling, panic, possible race o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind 4 problems total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo f kern/143074 bschmidt [wi]: wi driver triggers panic o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/131776 net [wi] driver fails to init f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/107944 net [wi] [patch] Forget to unlock mutex-locks s kern/79323 [wi] authmod setup with ifconfig on dlink wlan card fa 13 problems total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/146165 net [wlan] [panic] Setting bssid in adhoc mode causes pani o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti 5 problems total. Problem reports for tag 'wlan_xauth': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa 1 problem total. Problem reports for tag 'wpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159203 net [wpi] Intel 3945ABG Wireless LAN not support IBSS o kern/156322 wireless [wpi] no ahdemo support for if_wpi f kern/147862 bschmidt [wpi] Possible bug in the wpi driver. Network Manager o kern/144987 wireless [wpi] [panic] injecting packets with wlaninject using f kern/143595 bschmidt [wpi] [panic] Creating virtual interface over wpi0 in f kern/139079 bschmidt [wpi] Failure to attach wpi(4) f kern/138739 bschmidt [wpi] wpi(4) does not work very well under 8.0-BETA4 o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 f kern/128917 bschmidt [wpi] [panic] if_wpi and wpa+tkip causing kernel panic f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 10 problems total. Problem reports for tag 'xe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne 1 problem total. Problem reports for tag 'xen': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165418 xen [xen] Problems mounting root filesystem from XENHVM o kern/164630 xen [xen] XEN HVM kernel: run_interrupt_driven_hooks: stil o kern/164450 xen [xen] Failed to install FreeeBSD 9.0-RELEASE from CD i o kern/162677 xen [xen] FreeBSD not compatible with "Current Stable Xen" o kern/161318 xen [xen] sysinstall crashes with floating point exception o kern/155468 xen [xen] Xen PV i386 multi-kernel CPU system is not worki o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o kern/154833 xen [xen]: xen 4.0 - DomU freebsd8.2RC3 i386, XEN kernel. o kern/154473 xen [xen] xen 4.0 - DomU freebsd8.1 i386, XEN kernel. Not o kern/154472 xen [xen] xen 4.0 - DomU freebsd8.1 i386 xen kernel reboot o kern/154428 xen [xen] xn0 network interface and PF - Massive performan o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor f kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after f kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. f kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i p kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all f i386/124516 xen [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/118734 xen [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b 26 problems total. Problem reports for tag 'xfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o kern/145411 fs [xfs] [panic] Kernel panics shortly after mounting an p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul 4 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129352 yongari [xl] [patch] xl0 watchdog timeout s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad 2 problems total. Problem reports for tag 'xpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164132 [xpt] "xptioctl: pass device not in the kernel" noise o kern/154432 scsi [xpt] run_interrupt_driven_hooks: still waiting after 2 problems total. Problem reports for tag 'zfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164844 [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SA o kern/164370 fs [zfs] zfs destroy for snapshot fails on i386 and sparc o kern/164256 fs [zfs] device entry for volume is not created after zfs o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/163770 fs [zfs] [hang] LOR between zfs&syncer + vnlru leading to o kern/162860 fs [zfs] Cannot share ZFS filesystem to hosts with a hyph o kern/162751 fs [zfs] [panic] kernel panics during file operations o kern/162519 fs [zfs] "zpool import" relies on buggy realpath() behavi o kern/162083 fs [zfs] [panic] zfs unmount -f pool o kern/161968 fs [zfs] [hang] renaming snapshot with -r including a zvo o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o kern/161533 fs [zfs] [panic] zfs receive panic: system ioctl returnin o kern/161438 fs [zfs] [panic] recursed on non-recursive spa_namespace_ o kern/161280 fs [zfs] Stack overflow in gptzfsboot o kern/161169 fs [zfs] [panic] ZFS causes kernel panic in dbuf_dirty o kern/160893 fs [zfs] [panic] 9.0-BETA2 kernel panic o kern/160801 fs [zfs] zfsboot on 8.2-RELEASE fails to boot from root-o o kern/160777 fs [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/impo o kern/160706 fs [zfs] zfs bootloader fails when a non-root vdev exists o kern/160591 fs [zfs] Fail to boot on zfs root with degraded raidz2 [r o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/159357 fs [zfs] ZFS MAXNAMELEN macro has confusing name (off-by- o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159251 fs [zfs] [request]: add FLETCHER4 as DEDUP hash option o kern/159077 fs [zfs] Can't cd .. with latest zfs version o kern/159045 fs [zfs] [hang] ZFS scrub freezes system o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o kern/157399 fs [zfs] trouble with: mdconfig force delete && zfs strip o kern/157179 fs [zfs] zfs/dbuf.c: panic: solaris assert: arc_buf_remov o kern/156797 fs [zfs] [panic] Double panic with FreeBSD 9-CURRENT and o kern/156781 fs [zfs] zfs is losing the snapshot directory, o kern/155615 fs [zfs] zfs v28 broken on sparc64 -current o kern/155587 fs [zfs] [panic] kernel panic with zfs o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/154930 fs [zfs] cannot delete/unlink file from full volume -> EN o kern/153996 fs [zfs] zfs root mount error while kernel is not located o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o kern/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o kern/153351 fs [zfs] locking directories/files in ZFS o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w o bin/153142 [zfs] ls -l outputs `ls: ./.zfs: Operation not support o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor o kern/151905 fs [zfs] page fault under load in /sbin/zfs o kern/151648 fs [zfs] disk wait bug o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151226 fs [zfs] can't delete zfs snapshot o kern/151111 fs [zfs] vnodes leakage during zfs unmount o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted o kern/149173 fs [patch] [zfs] make OpenSolaris installa o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro o kern/148504 fs [zfs] ZFS' zpool does not allow replacing drives to be o kern/148490 fs [zfs]: zpool attach - resilver bidirectionally, and re o kern/148368 fs [zfs] ZFS hanging forever on 8.1-PRERELEASE o kern/148138 fs [zfs] zfs raidz pool commands freeze o kern/147903 fs [zfs] [panic] Kernel panics on faulty zfs device o kern/147881 fs [zfs] [patch] ZFS "sharenfs" doesn't allow different " o kern/147560 fs [zfs] [boot] Booting 8.1-PRERELEASE raidz system take o kern/146941 fs [zfs] [panic] Kernel Double Fault - Happens constantly o kern/146786 fs [zfs] zpool import hangs with checksum errors o kern/146528 fs [zfs] Severe memory leak in ZFS on i386 o kern/146410 pjd [zfs] [patch] bad file copy performance from UFS to ZF f kern/145802 pjd [zfs] page fault under load s kern/145712 fs [zfs] cannot offline two drives in a raidz2 configurat f kern/145339 pjd [zfs] deadlock after detaching block device from raidz o kern/145272 fs [zfs] [panic] Panic during boot when accessing zfs on o kern/145238 fs [zfs] [panic] kernel panic on zpool clear tank o kern/145229 fs [zfs] Vast differences in ZFS ARC behavior between 8.0 p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o kern/143184 fs [zfs] [lor] zfs/bufwait LOR o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn o kern/142489 fs [zfs] [lor] allproc/zfs LOR o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140640 fs [zfs] snapshot crash o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134491 fs [zfs] Hot spares are rather cold... f kern/128633 pjd [zfs] [lor] lock order reversal in zfs f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/127492 pjd [zfs] System hang on ZFS input-output s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS f sparc/123566 fs [zfs] zpool import issue: EOVERFLOW f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un 110 problems total. Problem reports for tag 'zlib': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl 2 problems total. Problem reports for tag 'zyd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160296 wireless [zyd] [panic] 802.11 usb device reboots system on 'ifc o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o usb/150892 usb [zyd] Whenever network contacted in any shape, way or o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system 5 problems total. From bugmaster at FreeBSD.org Mon Feb 27 11:06:08 2012 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 27 12:08:42 2012 Subject: Current problem reports Message-ID: <201202271106.q1RB64GQ089352@freefall.freebsd.org> (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi .) 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. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/165500 Weechat port broken on 9.0-RELEASE o ports/165499 [MAINTAINER] www/piwik: update to 1.7.1 o ports/165498 perl [NEW PORT] devel/p5-Getopt-Compact-WithCmd: sub-comman o ports/165497 [MAINTAINER] sysutils/lsof: update to 4.86B o ports/165496 crees New port: misc/userspace-rcu userspace RCU (read-copy- o ports/165495 chromium over-agressive patchfile in port www/chromium f ports/165494 [UPDATE] devel/geany-plugins: update to 0.21 o bin/165492 sysinstall bsdinstall(8): segmentation fault o docs/165491 eadler Typo in src/cddl/contrib/opensolaris/cmd/zpool/zpool.8 f ports/165490 [UPDATE] devel/srecord to 1.5.9 o ports/165489 sylvio Upgrade irc/ircII to 20111115 o kern/165488 net [ppp] [panic] Fatal trap 12 jails and ppp , kernel wit o ports/165487 ruby [maintainer-update] science/ruby-gphys: update to 1.2. o ports/165486 miwi [PATCH] irc/weechat: update to 0.3.7 o ports/165485 gahr editors/codelite: outdated version 3.0.XXX in ports re o ports/165484 gahr editors/codelite: Suggest to change category to devel o ports/165483 [patch] graphics/sane-backends creates a circular rcor f ports/165482 sysutils/lsof: lsof-4.86A,6 refuses to build on 8.3 pr o ports/165481 itetcu [PATCH] audio/cpige broken on amd64 , patch attached o kern/165479 rstone [dtrace] [lor] LOR in Userland Dtrace(fasttrap_provs.f o bin/165477 [rc] dhclient is run twice o ports/165476 crees [MAINTAINER] irc/weechat-devel: restore missing DEBUG o kern/165475 wireless [ath] operational mode change doesn't poke the underly o ports/165474 [MAINTAINER] databases/pecl-mysqlnd_qc: [SUMMARIZE CHA o ports/165473 kde devel/qt4-assistant o bin/165471 bsdgrep(1) hang/very slow with mmap o ports/165470 danfe x11/nvidia-driver: NVIDIA video driver crash compile a o ports/165469 roam Fix security/apg build with cracklib support o ports/165468 New port: mail/notmuch o ports/165466 perl [maintainer update] www/p5-Data-Validate-URI o ports/165465 acm [print/foo2zjs] fails to install ppds correctly f ports/165464 x11-drivers/input-wacom is broken [patch] o kern/165463 FreeBSD doesn't work with NIC based on RLT8111E o ports/165462 graphics/kphotoalbum should depend on marblewidget.12 o ports/165457 skv [exp-run]: remove lang/perl5.8 and lang/perl5.10, move f ports/165455 swills [PATCH] devel/p5-constant-def: add missing DEPENDS o ports/165454 osa [patch] www/nginx: re-order extra_commands f ports/165453 swills [PATCH] textproc/p5-Unicode-LineBreak: add missing DEP o i386/165452 i386 [boot] FreeBSD's system installer stops when setting u o ports/165451 python lang/python27 has incorrect CFLAGS when building with o ports/165450 portmgr [patch] Mk/bsd.port.mk: COPYTREE_* macro enhancements f ports/165449 rm portupgrade on multimedia/libbluray fails o ports/165447 mva [patch] editors/hte: update to 2.0.19 o ports/165446 miwi [MAINTAINER] Update devel/bazaar-ng to 2.5.0 o ports/165445 miwi [MAINTAINER] Update devel/bzrtools to 2.5 o kern/165444 [netisr] [patch] incorrect processing of net.isr.bindt o ports/165443 miwi [Maintainer Update] unbreak emulators/doscmd f ports/165442 sunpoet [PATCH] devel/p5-Perl-PrereqScanner: update to 1.010 f ports/165440 sunpoet [PATCH] textproc/p5-Parse-CSV: update to 2.00 o ports/165439 ruby New port: devel/rubygem-jeweler Simple and opinionated o i386/165434 i386 [boot] Install fail Error 19 p docs/165431 gjb [patch] spelling corrections in 23 manpages o ports/165430 [maintainer update] port sysutils/modules upgrade o bin/165429 eadler [patch] wall(1): add multibyte character support o kern/165428 geom [glabel][patch] Add xfs support to glabel o ports/165427 skv [PATCH] devel/p5-POE-Exceptions: mark deprecated o ports/165426 skv [PATCH] devel/p5-POE-Component-DebugShell: add missing p docs/165424 brueffer domain(9) refers to renamed function f ports/165423 glewis math/gnuplot missing some wxwidgets dependency o ports/165422 ume security/cyrus-sasl2-saslauthd: saslauthd 2.1.25 cored o ports/165421 pgollucci cannot work www/mod_perl2 version 2.0.5_1,3 o ports/165419 portmgr [patch] Mk/bsd.port.mk: "make showconfig" to tell whet o kern/165418 xen [xen] Problems mounting root filesystem from XENHVM o ports/165416 johans [PATCH]lang/ocaml-doc: update to 3.12.1 o bin/165413 net [netgraph]: ngctl(8) does not work as advertised o ports/165412 www/sarg: the download report only showed the host nam o docs/165410 doc [handbook] Documentation is not up to date o ports/165409 [UPDATE] www/MT: update to 5.13 o ports/165408 delphij [patch] net/openldap24-server: fix BDB detection. o ports/165406 mm [PATCH] devel/binutils: enable gold and sysroot suppor o ports/165404 tota [PATCH] mail/mailman: separate japanese/mailman from t f ports/165403 tota [PATCH] japanese/mailman: Switch to Japanized mailman p stand/165400 maxim ncal: Sweden listed by wrong country code o kern/165399 turn off port on SWITCH do not change status of igb f ports/165398 [PATCH] sysutils/bacula-server: upgrade to 5.2.6 f ports/165393 swills [PATCH] devel/p5-Oogly: add missing DEPENDS o kern/165392 fs Multiple mkdir/rmdir fails with errno 31 o ports/165390 lev [PATCH] devel/subversion: fix build/package when WITH_ o power/165387 ppc bsdinstall(8) not starting with Apple G5 on powerpc64 o ports/165385 danfe [PATCH] irc/bitchx remove dep on net/socks5 o bin/165384 [PATCH] Add option to suppress RA prefix info o kern/165382 wireless [kernel] taskqueue_unblock doesn't unblock currently q o kern/165381 [cpufreq] powerd(8) eats CPUs for breakfast o ports/165380 [patch] Unbreak net/msend on 9.0 + add rc script o ports/165376 nivit [PATCH] textproc/gladtex: migrate from libungif to gif o ports/165367 sumikawa misc/lv segfaults in grep-mode if last argument was a f ports/165366 kuriyama misc/amanda-server: amrecover showing duplicate direct o misc/165363 [build] 9-stable buildworld broken with NO_DYNAMICROOT o ports/165361 x11-wm/e17-module-mem counts memory incorrectly o ports/165360 ashish net-im/ejabberd: ejabberdctl fails to communicate with o ports/165359 python lang/python27 fails to create package on world WITHOUT o ports/165358 gnome sysutils/policykit do not build while installed devel/ f ports/165356 rm x11-fonts/paratype was update upstream. once again [pa o ports/165354 obrien shells/bash - incorrect pipeline processing s ports/165353 ports-mgmt/portupgrade can't parse date anymore o amd64/165351 amd64 [boot] Error while installing or booting the freeBSD O o ports/165348 gnome converters/libiconv solve problem related to C++ o ports/165341 sunpoet [patch] audio/p5-Ogg-Vorbis-Header fails to build o ports/165338 doceng [patch] print/ghostscript9 has undocumented dependency o ports/165337 new port: sysutils/fusefs-mp3fs 0; skipping" m o ports/165219 kuriyama [PATCH] devel/p5-Log-Dispatch-Colorful: add missing DE o kern/165214 wireless [ieee80211] Kernel panic in ieee80211_output.c:2505 o ports/165213 kde devel/cmake: Reinplacement of paths in Modules is bad o kern/165212 wireless [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB6 a ports/165211 jgh [PATCH] multimedia/zoneminder: update up to 1.25.0 rel o kern/165210 rrs [sctp] SCTP sockets don't bind on interfaces created b o misc/165208 eadler Incorrect unit/description in `vm.vmtotal' output o bin/165207 rctl(8) cannot identify jails via modified name o ports/165206 dinoex wish: change print/cups-base to allow dnssd support vi o ports/165204 sysutils/ipmitool should have periodic IPMI status che o ports/165198 gnome cannot build net-im/telepathy-glib f ports/165197 [patch] benchmarks/xdd: fix CPU detection slew of stri o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking o ports/165184 clsung [PATCH] devel/p5-Git-PurePerl: add misisng DEPENDS o ports/165183 skv [PATCH] devel/p5-Getopt-Popt: mark deprecated since th o kern/165181 net [igb] igb freezes after about 2 weeks of uptime o ports/165179 gnome mail/evolution does not build o ports/165176 [PATCH] mail/dovecot: update to 2.0.18, mail/dovecot2- o misc/165175 [build] installworld built WITHOUT_LIB32 still install o kern/165174 net [patch] [tap] allow tap(4) to keep its address on clos o threa/165173 threads [build] clang buildworld breaks libthr o kern/165170 [panic] server reboot while pinging o ports/165168 skv [PATCH] www/p5-HTTP-BrowserDetect: update to 1.41 o usb/165163 usb [keyboard] The USB RF keyboard and mouse become non-re o ports/165161 lth [PATCH] devel/p5-File-Find-Rule-Perl: add missing DEPE o ports/165160 math/coinmp needs to use libtool f ports/165159 miwi [PATCH] lang/ocaml: fix build error for systems that u o ports/165156 mm [patch] devel/pcre does not build with LIBEDIT OPTION p stand/165155 jilles [PATCH][bin][standards] xargs does not print diagnosti o usb/165154 usb USB patch for new u3g device o kern/165152 net [ip6] Does not work through the issue of ipv6 addresse f ports/165150 swills [PATCH] devel/p5-File-Dir-Dumper: update to 0.0.7 o kern/165149 wireless [ath] [net80211] Ping with data length more than iv_fr o ports/165148 acm [PATCH] devel/p5-File-DesktopEntry: add missing DEPEND o kern/165146 wireless [net80211] Net802.11 Fragment number is assigned 1 (sh o ports/165143 portmgr [exp-run] [patch] devel/apr: CVE / Update / exp-run / o ports/165139 [PATCH] astro/gpstk: update to 1.7 f ports/165138 russian/fortuneru: doesn't install files for other pop f ports/165131 sunpoet [PATCH] devel/p5-Capture-Tiny: update to 0.16 o ports/165129 xfce - xorg - missing shared object in libxcb after re o ports/165125 portmgr [patch] ports/Mk/bsd.port.mk misspelling correction f ports/165124 swills [PATCH] devel/p5-Digest-TransformPath: remove broken t f ports/165123 swills [PATCH] devel/p5-Devel-ebug: update to 0.52 o ports/165122 new port: cad/SystemPerl, SystemC perl library o ports/165121 [MAINTAINER UPDATE] cad/p5-Verilog-Perl o bin/165120 eadler ed and sed - tmp file handling - security and location f ports/165115 glewis bsd.java.mk - Unable to build port where USE_ANT=yes i o ports/165112 kuriyama [PATCH] devel/p5-Devel-KYTProf: add missing DEPENDS o ports/165109 miwi [PATCH] devel/p5-Devel-Events-Objects: add missing dep f ports/165105 miwi audio/libmpdclient updated to 2.7 f ports/165099 pgollucci New port: databases/xtrabackup percona's xtrabackup ut o ports/165090 multimedia audio/faad missing head files o ports/165089 clsung The patch of devel/glog is a little wrong o ports/165088 bad interaction between boost and gcc o kern/165087 fs [unionfs] lock violation in unionfs f ports/165074 miwi [PATCH] www/xpi-bookmarkdd: update to 0.7.5 f ports/165073 miwi [PATCH] www/xpi-yslow: update to 3.0.9 o ports/165072 nork [PATCH] www/xpi-user_agent_switcher: update to 0.7.3 f ports/165071 miwi [PATCH] www/xpi-stumbleupon: update to 3.76 f ports/165070 miwi [PATCH] www/xpi-searchstatus: update to 1.39 f ports/165069 miwi [PATCH] www/xpi-modify_headers: update to 0.7.1.2b o ports/165068 nork [PATCH] www/xpi-it_s_all_text: update to 1.6.0 o ports/165067 skreuzer [PATCH] www/xpi-httpfox: update to 0.8.10 o ports/165065 nork [PATCH] www/xpi-firemobilesimulator: update to 1.2.2 o ports/165064 skreuzer [PATCH] www/xpi-errorzilla: update to 0.42 f ports/165062 miwi [PATCH] mail/xpi-dispmua: update to 1.6.6 o kern/165060 wireless [ath] vap->iv_bss race conditions causing crashes insi o kern/165059 virtio_kmod: networking breaks with a router using vir o ports/165056 danfe games/quakeforge: update to 0.6.2 a ports/165046 sahil [PATCH] mail/postfix preserve ident in mailer.conf f ports/165042 swills [PATCH] devel/p5-Data-Average: add missing DEPENDS f ports/165037 swills [PATCH] devel/p5-Config-Wrest: add missing DEPENDS f ports/165035 farrokhi [update] net/haproxy to 1.4.19 o sparc/165025 sparc64 [PATCH] zfsboot support for sparc64 o ports/165023 gordon [patch] devel/p4v port is marked broken and also stale o kern/165021 wireless [ath] ath device timeout during scan/attach, if wlan_c f ports/165016 pgollucci [PATCH] mail/rubygem-mail: update to 2.4.1 o docs/165009 eadler indent(1) man page fix f ports/165008 net-im/kmess-kde4 fails to connect o ports/165003 [patch] audio/icecast 2.3.2 may leak memory and take e o ports/164995 miwi Update port: games/mahjong to 1.12 o ports/164992 miwi Update port: emulators/qmc2 to 0.35 f ports/164988 miwi Update port: deskutils/cdcat to 1.6 f bin/164982 gavin sysinstall(8) core dump o ports/164979 [maintainer update] net-p2p/retroshare: update to 0.5. o bin/164976 [PATCH] tzsetup(8): Fix VERBOSE reporting on results w o ports/164975 clsung [PATCH] www/p5-Jifty: add missing DEPENDS o ports/164973 kuriyama [PATCH] www/p5-Plack: add TEST_DEPENDS, other changes o kern/164970 eadler dup2(2) incorrectly returns EMFILE instead of EBADF o ports/164965 office editors/openoffice.org-3 fails to build in moz, nss, a s ports/164963 crees [PATCH] ports-mgmt/porttools: add submit -P to print P o docs/164958 brd mirror: anonymous SSH based access to anoncvs1.freebsd o kern/164957 Linux emulation freezes machine after heavy usage of c o kern/164951 Problem build of if_ath driver with certain mode a bin/164950 nwhitehorn bsdinstall(8): pc-style partitions: no way to set 'boo o ports/164948 bapt shells/zsh fails to build o bin/164947 tee looses data when writing to non-blocking file desc f ports/164943 amdmi3 multimedia/mplayer: produces broken binary if built WI f ports/164941 [UPDATE] [NEW PORTS] jamvm/classpath w/o jdk p docs/164940 eadler [PATCH] xref err.3 in strerror.3 o docs/164939 eadler [PATCH] add a standards section to err.3 o docs/164938 eadler [PATCH] consistently use file system in config and tun o bin/164933 [nfs] [patch] mountd(8) drops mixed security flavors f o ports/164932 gerald lang/gcc46 not build with clang o docs/164920 eadler [PATCH] changes to swap section of config chapter o ports/164919 gecko www/seamonkey fails to build on pre-SSE2 processor f ports/164913 kuriyama [PATCH] devel/p5-Module-Metadata: update to 1.000009 o kern/164909 [cam] devfs does not create entries when removable med o ports/164906 crees [PATCH] graphics/libjpeg-turbo: add -fPIC o ports/164905 gecko www/seamonkey fails to build with clang [patch] p kern/164901 thompsa [regression] [patch] [lagg] igb/lagg poor traffic dist f ports/164898 zi net-mgmt/net-snmp: tonns of "error on subcontainer 'sw o ports/164896 portmgr [exp-run] add support for testing perl modules f ports/164893 pgollucci sysutils/conky build fails with clang o ports/164874 joerg [patch] unbreak devel/avr-gcc o ports/164872 ale New ports: databases/mdcached, databases/php-mdcached o ports/164871 crees Release www/xpi-gwt-dev-plugin o ports/164870 portmgr [PATCH] bsd.licenses.mk Set IGNORE if BATCH is set and o ports/164862 sunpoet [MAINTAINER] www/node-devel: update to 0.7.2 o kern/164861 Cannot boot from zfs built in degraded mode o ports/164857 miwi [UPDATE] www/py-requests to 0.10.1 f ports/164856 miwi [UPDATE] net/py-urllib3 to 1.2.2 f ports/164855 miwi [PATCH] textproc/py-chardet o ports/164849 rm [update] lang/php52 security fixes o ports/164847 portmgr [bsd.port.mk] [patch] java/diablo-jdk16 does not build o kern/164844 [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SA o ports/164843 avl [NEW PORT] net/freerdp: new version 1.0.0 o ports/164842 miwi [NEW PORTS] devel/rubygem-racc 1.4.6 o ports/164840 miwi [NEW PORT] sysutils/sshsudo: A bash script to run sudo o misc/164834 freebsd-update(8) does not operate on mounted system o ports/164832 crees upgrade multimedia/qmmp to 0.5.3 o docs/164826 doc handbook ports page does not suggest config-recursive o ports/164825 gnome could not compile port www/webkit-gtk2 o ports/164819 novel x11-wm/openbox package broken? f ports/164818 sysutils/tty-clock may be fixed on 9.0 o bin/164808 crontab(1) doesn't support usernames with spaces in th o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164800 doc Handbook's installation topic doesn't mention ZFS a www/164799 gjb Outdated ports tree growth graph f ports/164795 dinoex Add Via Padlock support to security/openssl (patch inc f ports/164794 miwi [UPDATE] www/py-werkzeug to 0.8.3 o stand/164793 'write' system call violates POSIX standard o stand/164787 standards dirfd() function not available when _POSIX_C_SOURCE is o ports/164785 sylvio [patch] devel/bglibs: linking with libbg causes time(3 o amd64/164773 amd64 [boot] 9.0 amd64 fails to boot on HP DL145 G3 [regress o docs/164772 doc incorrect ipfw sched parameters in manual o ports/164766 [MAINTAINER-UPDATE] audio/firefly patch daap.c for new o kern/164763 Memory leak in VNET a ports/164761 dougb New port: dns/bind10-devel Development version of ISC f ports/164759 dinoex print/cups: printing malfunction "Unable to get print o misc/164752 No option of ZFS in FreeBSD 9.0 DVD installation o kern/164741 zvol always present as 512 bytes/sector regardless of o docs/164739 doceng Documentation on ftp site out-of-date o kern/164734 [quota] 9.0 quota not working [regression] f ports/164727 miwi [UPDATE] devel/libffi: update to 3.0.10 o ports/164725 mm graphics/opencv fails in Tinderbox o kern/164724 [dtrace] [patch] Signal bug in Dtrace o kern/164721 wireless [ath] ath device timeouts o docs/164715 hselasky webcamd(): manpage lists option "-H Register devi o ports/164714 graphics/rawtherapee fails to build o conf/164709 eadler [patch] [pc-sysinstall] add raidz3 support; permit 'ra o amd64/164707 amd64 FreeBSD 9 installer does not work with IBM uefi o ports/164700 leeym net-mgmt/nettop: suddenly core dump o ports/164695 kwm www/swfdec-plugin for firefox does not display the Fla o kern/164694 [ata] Regression in 3726 port multiplier support in 9. o ports/164692 pgollucci [PATCH] devel/otrs: update to version 3.0.11 o ports/164691 mm databases/proftpd-mod_sql_postgres: compiling do not a o kern/164690 ipfw [ipfw] Request for ipv6 support in ipfw tables o ports/164687 gecko www/firefox: build fails on check-sync-dirs.py - parti o docs/164682 doc Handbook contains wrong information about Flash player o kern/164674 [patch] [libc] vfprintf/vfwprintf return error (EOF) o o bin/164672 [patch] mptutil(8): fix build error with DEBUG o ports/164670 miwi New port: security/py-django-openid-auth OpenID integr o ports/164665 miwi [maintainer] devel/premake4: fix broken regression tes f ports/164664 miwi [maintainer] mail/enma update to 1.2.0 o ports/164659 security/py-fail2ban overwrite config files o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h o ports/164653 installation trouble of japanese/ebnetd o amd64/164643 amd64 Kernel Panic at 9.0-RELEASE o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o kern/164637 [libc] Problem with vsnprintf in libc.so when compiled o ports/164631 rm Update mail/dbmail to version 3.0.0 o kern/164630 xen [xen] XEN HVM kernel: run_interrupt_driven_hooks: stil o ports/164625 lme [PATCH] port net-mgmt/icinga to support IDOUtils o docs/164620 doc Raid 1 issues o amd64/164619 amd64 when logged in as root the user and group applications o ports/164618 lx [patch] textproc/scim: building with clang failed o ports/164616 mm Building graphics/ImageMagick and graphics/GraphicsMag o bin/164604 [patch] tftp(1): TFTP pxeboot: should use root-path pr f amd64/164602 gavin world doesn't build f ports/164600 kuriyama textproc/p5-XML-Parser fails to find expat, does not c o bin/164585 ping(8) should use clock_gettime instead of gettimeofd o ports/164581 [new port] cad/linux-eagle6 p bin/164570 maxim [patch] pom(6) wrong usage message o kern/164569 net [msk] [hang] msk network driver cause freeze in FreeBS o ports/164566 skv [patch] databases/pgbouncer: update to latest version o kern/164565 [padlock] [panic] kernel crash when kldunload'ing padl o docs/164564 doc [if_bridge] Incorrect default timeout for a bridge in f ports/164563 games/sumwars can't run o bin/164561 portmgr [patch] pkg_version(1): update references to INDEX-8 f f ports/164559 pav x11-fonts/webfonts port compile fails as requires xcb- o ports/164547 oliver graphics/cegui build failed if has tinyxml installed o ports/164545 oliver graphics/ogre3d 1.7.4 build failed on the machine whic o ports/164544 miwi [patch] x11-servers/xorg-server: prune unused deps f ports/164540 miwi [PATCH] x11-themes/icons-tango: Fix fetching f ports/164539 miwi [patch] Update for audio/libmtp (from 1.0.6 to 1.1.1) o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP o ports/164537 gnome print/system-config-printer D-Bus config patch o kern/164536 [modules] [request] disable building kernel modules th o bin/164535 [patch] ps(1) truncates command to screen size even wh o kern/164534 csjp [bpf] net.bpf.zerocopy_enable=1 makes pflogd eat cpu a o bin/164526 kill(1) can not kill process despite on -KILL o ports/164504 gnome [patch] net/opal3: patch configure to recognize amd64 o ports/164503 gnome [UPDATE] games/gcompris: update to 12.01 o ports/164502 [patch] news/sabnzbdplus not starting on boot o ports/164500 gnome [patch] Build x11-toolkits/libwnck without startup_not o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu o kern/164495 net [igb] connect double head igb to switch cause system t o kern/164490 net [pfil] Incorrect IP checksum on pfil pass from ip_outp o ports/164488 timur [patch] devel/talloc,devel/tdb: fix compile with MAKE_ f ports/164480 mi Upgrade devel/tcllib to1.14 (patch included) o kern/164475 net [gre] gre misses RUNNING flag after a reboot o kern/164474 The system couldn't turn on a monitor connected via Di o kern/164472 fs [ufs] fsck -B panics on particular data inconsistency o ports/164468 sunpoet [Update] graphics/gdal 1.8.1 -> 1.9.0 f ports/164464 port sysutils/dvdisaster does not recognize drives on f kern/164462 rmacklem [nfs] NFSv4 mounting fails to mount; asks for stronger o ports/164459 gnome www/webkit-gtk2 1.4.3 failed to link when WITH_VIDEO=t o amd64/164457 amd64 [install] Can't install FreeBSD 9.0 (amd64) on HP Blad o ports/164453 danfe graphics/luxrender: libpng warning: Application built o kern/164450 xen [xen] Failed to install FreeeBSD 9.0-RELEASE from CD i o ports/164449 crees [PATCH] finance/gnucash update to 2.4.9 a ports/164446 danfe Update port x11/nvidia-driver to 290.10 o kern/164445 [libc] lseek(2) always returns ENXIO with SEEK_DATA/SE o ports/164431 timur net/samba36 does not enable AIO by default s kern/164425 [libc] stat(2) doesn't work in 32bit mode on amd64 o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164418 miwi [PATCH] shells/mksh doesn't build with Clang. o ports/164403 portmgr [patch] Mk/bsd.licenses.mk: bring back --hline o kern/164402 pf [pf] pf crashes with a particular set of rules when fi o kern/164400 net [ipsec] immediate crash after the start of ipsec proce o bin/164399 sysinstall bsdinstall(8): 9.0 installer failures o misc/164396 bugmeister [GNATs] add 'enhancement' class o misc/164395 bugmeister [GNATs] add support for .patch attachments o misc/164394 bugmeister [GNATS] Change some fields to 'unset' to prevent misca o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o ports/164390 portmgr [bsd.port.mk] make package-recursive fails with noise o ports/164388 sunpoet shells/ksh93 fails to build/install o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 a ports/164380 jgh audio/audacity-devel should not forcefully depend on J o bin/164378 [patch] improvement of pkg_info(1) warning o ports/164372 office editors/libreoffice fails to build o kern/164370 fs [zfs] zfs destroy for snapshot fails on i386 and sparc o kern/164369 adrian [if_bridge] [patch] two STP bridges have the same id o ports/164367 secteam ports-mgmt/portaudit finds problem in a jail but not o o kern/164365 wireless [iwi] iwi0: UP/DOWN in o ports/164364 mono New port: multimedia/banshee-devel Music management an o ports/164362 mlaier sysutils/pftop fails to compile o ports/164355 misc/gpt will not install using pkg_add o ports/164354 rm [Maintainer Update] graphics/gauche-gl 0.4.4 -> 0.5. p bin/164353 maxim ifmcstat(8) build fail without -DWITH_KVM o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak p ports/164349 x11 [PATCH] x11/libXinerama :1 LeftOf or Above :0 mouse is o bin/164348 ntpd(1): ntp.conf restrict default ignore option doesn o ports/164345 portmgr Mk/bsd.licenses.mk framework not suitable for linuxula o ports/164341 lev [patch] sysutils/graid5: remove post-deinstall target f ports/164338 miwi [UPDATE] www/py-requests to 0.9.3 o ports/164333 kuriyama missing dependency in security/gnupg o ports/164332 linimon growisofs/cdrecord error on 9.0R (unable to CAMGETPASS o kern/164329 acpi [acpi] hw.acpi.thermal.tz0.temperature shows strange v p bin/164317 glebius [patch] write(1): add multibyte character support p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method o ports/164309 mono New port: graphics/pinta Simple drawing/painting progr o ports/164306 update mail/mailagent to 3.1.77 and utmpx fix o bin/164302 [patch] mail(1) expands aliases beyond # o amd64/164301 amd64 [install] 9.0 - Can't install, no DHCP lease o ports/164298 pgollucci [PATCH] Make print/foomatic-filters not eat PS files o bin/164294 sysinstall bsdinstall(8): FreeBSD 9.0-RELEASE bsdinstall dvd does o ports/164293 rea print/cups-pstoraster failed o bin/164291 sysinstall bsdinstall(8): bsdinstall and filestetyem selection / f ports/164287 gnome x11-toolkits/vte based applications failing to recogni o bin/164284 sysinstall bsdinstall(8): FreeBSD install assign incorrect dev as o bin/164281 sysinstall bsdinstall(8): please allow sysinstall as installer op o ports/164277 new port: mail/roundcube-automatic_addressbook o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o kern/164271 pf [pf] not working pf nat on FreeBSD 9.0 [regression] o ports/164270 gnome textproc/libxml2 CVE-2011-3919 patch o bin/164267 sysinstall bsdinstall(8) bugs when RE-installing to GPT partition o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o kern/164256 fs [zfs] device entry for volume is not created after zfs o kern/164254 geom [geom] gjournal not stopping on GPT partitions f ports/164253 lwhsu [PATCH] databases/cassandra: update to 1.0.7 o kern/164252 geom [geom] gjournal overflow f ports/164243 miwi [PATCH] emulators/dosbox: Fix build with clang s ports/164242 net/openafs port breaks with KERNCONFDIR and include o ports/164239 gecko [PATCH] mail/thunderbird: crash with nss_ldap p kern/164238 eadler [patch] NULL pointer dereference in setusercontext (li f ports/164237 zi [PATCH] security/suricata: overwrite files from libhtp o ports/164235 pgollucci [patch] graphics/vigra: update to 1.8.0 o sparc/164227 sparc64 [boot] Can't boot 9.0-RELEASE/sparc64 on Blade 1500 o sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from o power/164225 ppc Boot fails on IBM 7028-6E1 (heap memory claim failed) o ports/164222 gnome switching users in gnome3 invokes sanity check o kern/164220 sound preferences does not allow continuous adjustment o docs/164217 eadler [patch] correct synchronize flag in setfacl(1) manpage o kern/164210 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164209 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164208 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164207 portmgr [PATCH] bsd.port.mk includes top-level Makefile.inc fr o misc/164206 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164204 az net/p5-ZeroMQ request sending segfault o kern/164203 [smp] usr/src/sys/sys/smp.h:124: warning: comparison b o ports/164199 Ports fail to acknowlegde newly created users o ports/164197 mm smsd(comms/smstools3) doesn't read some configurations o ports/164190 mm [PATCH] devel/liboil: Fix build with clang o kern/164189 [pccard] FreeBSD 9.0-RELEASE on Toshiba Satellite Pro o ports/164187 gnome [PATCH] net/avahi etc should use USERS o kern/164184 fs [ufs] [panic] Kernel panic with ufs_makeinode f ports/164181 [PATCH] www/xxxterm: Fix ssl_ca_file path and style o ports/164177 audio/squeezeboxserver should require mysql 5.0 server o kern/164145 [netisr] when one of netisr threads take 100% system i o kern/164143 geom [geom] Partition table not recognized after upgrade R8 o bin/164137 tunefs(8): issues inappropriate error-message o amd64/164136 amd64 after fresh install 8.1 release or 8.2 release the har o kern/164132 [xpt] "xptioctl: pass device not in the kernel" noise o bin/164131 cperciva freebsd-update(8) does not check for failed install co o kern/164130 rwatson [netisr] broken netisr initialization o ports/164129 obrien editors/vim is unable to use the gnome2 interface f ports/164127 dinoex www/webalizer WITH_GEODB requires WITH_BDB o amd64/164116 amd64 [boot] FreeBSD 9.0-RELEASE installations mediums fails o ports/164115 pgollucci net-mgmt/cacti - cacti.sql does have old fashioned TYP o bin/164102 wireless hostapd not configured for 802.11n o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco f ports/164098 miwi [new port] dns/dnssec-tools: DNSSEC Tools port for eas o bin/164097 sysinstall bsdinstall(8): always installs GPT o www/164096 www PR submission form has no field labelled synopsis f bin/164094 sysinstall bsdinstall(8): installer progress over 100% o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number o amd64/164089 amd64 FreeBSD-9.0-RELEASE-amd64-memstick.img does not boot o kern/164082 recurring problem wirh /dev/console and syslog handlin p bin/164081 jilles sockstat(1) not reporting all open sockets p docs/164078 eadler man setuid(2): a messy sentence o amd64/164073 amd64 /etc/rc warning after booting o ports/164072 pgollucci [NEW PORT] databases/percona-{server,client}: Percona o ports/164060 net/ucarp doesn't work on FreeBSD 9.0-PRERELEASE o usb/164058 usb Lexar 8GB USB flash drive doesn't work by default o ports/164055 sysutils/zfs-periodic: Test if scrubbing is in process f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i o stand/164049 eadler getconf returns bad value for ULLONG_MAX o conf/164048 /etc/rc.d/hostid is not symlink aware p bin/164042 emaste [PATCH] tzsetup(8): Fix VERBOSE to work with new UTC m p bin/164041 emaste [PATCH] tzsetup(8): Remove unnecessary code duplicatio p bin/164039 emaste [PATCH] tzsetup(8): Don't write /var/db/zoneinfo eithe p bin/164038 wollman [PATCH] tzsetup(8): Increase buffer size to hold error o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o docs/164034 doc acl(9) documentation lacking f ports/164029 [PATCH] graphics/bmeps fix build with databases/gdbm o ports/164017 bf [NEW PORT] math/plasma: Parallel Linear Algebra Softwa o ports/164015 devel/php5-pinba: pinba crahes PHP when built with pro o ports/164013 gecko www/firefox: Firefox-9 Icons & xpi-addons from ports o ports/164010 timur [patch] net/samba36: Split up samba scripts into more o misc/164005 rebooting while fsck in progress cause start fsck agai p conf/163993 pluknet wrong documentation in /usr/src/Makefile o bin/163992 dumpfs(8): dumpfs -m is broken f www/163988 jkois bsdlatino.blogspot.com o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/163985 [boot0] Incorrect operand size in boot0 o ports/163979 danfe games/quakeforge: update to 0.6.1 o kern/163978 [hwpmc] [patch] Loading hwpmc with an unknown cpuid ca o kern/163973 [ichwd] ichwd(4) no longer appears to function o ports/163963 portmgr Mk/bsd.port.mk, math/spooles-mpich, science/mpqc-mpich f www/163957 jkois Our site on http://www.fi.freebsd.org/commercial/misc. o ports/163955 input packet for interface are counted twice o bin/163951 secteam [security] bundled openssl seems to miss fix for a CVE o bin/163943 sysinstall bsdinstall(8) fails to detect CD device when booting w o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de o kern/163926 eadler [libkvm] libkvm.so.5 exports private symbols f ports/163924 miwi [PATCH] archivers/xarchiver, warning when delete deskt f ports/163917 pgollucci [new port]: graphics/qmetro Map of the transport syste o ports/163909 bf [MAINTAINER-UPDATE][PATCH] please update math/lapacke o ports/163908 fluffy [patch] filesystem based race condition in multimedia/ o kern/163905 [panic] FreeBSD 9x kernel panic without acpi && event o kern/163903 net [igb] "igb0:tx(0)","bpf interface lock" v2.2.5 9-STABL f ports/163897 [NEW PORT] sysutils/dstat: A versatile resource statis f kern/163890 gavin ps2 keyboard not detected by kernel? [regression] o ports/163884 nivit [Patch]databases/py-sqlalchemy:strict depend on py-MyS o docs/163879 doc [handbook] handbook does not say about how to force to o kern/163873 ipfw [ipfw] ipfw fwd does not work with 'via interface' in a ports/163872 devel/ioncube and distfiles p bin/163863 [patch] adduser(8): confusing usr.sbin/adduser output o ports/163861 new port: devel/art A Resource Tracer (A resource trac o ports/163851 miwi devel/pecl-spread needs to record spread4 as a run dep o ports/163850 New port: cad/linux-bricscad o bin/163847 [PATCH] German filename conversion scheme for mount_nw o conf/163843 [sshd_config] Modified VersionAddendum field in sshd_c o bin/163837 cperciva i386 lastest.ssl freebsd-update file is invalid o docs/163830 doc device smbios: missing documentation, no manpage o conf/163828 [patch] /etc/periodic/daily/110.clean-tmps tries to un o ports/163824 nivit math/jsmath: AMSmath in jsMath-3.6.e will crash if ena o www/163823 www Update www 9.0 release Schedule o bin/163822 kgdb(1): kgdb -w opens symbols file, not just core, wr o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o ports/163806 New port: devel/arduino-lib-irremote: A Multi-Protocol f kern/163804 [request] with uname -a return also date of source tre o kern/163803 vlan does not work o kern/163801 fs [md] [request] allow mfsBSD legacy installed in 'swap' f ports/163800 net-mgmt/nagiosql: All files are Windows-converted o ports/163799 delphij net/openldap24-server: slapd not started earlier o conf/163798 [nsswitch.conf] nsswitch.conf with nss_ldap ignore [su p conf/163789 eadler [patch] Make etc/Makefile more conflict resistant o conf/163778 imp [patch] Conditionalize tools in the source tree o bin/163775 [patch] sfxge(4) explitly sets -g -DDEBUG=1; infects k o bin/163773 eadler [patch] pc-sysinstall(8): pc-sysinstall/backend.sh - c o bin/163772 [patch] nvi(1) - don't mask O_DIRECTORY symbol o docs/163771 doc getnameinfo(3) man-page detail o kern/163770 fs [zfs] [hang] LOR between zfs&syncer + vnlru leading to o bin/163769 [patch] fix zpool(8) compile time warnings o misc/163768 [patch] [boot] fix non-ficl compile time warnings o ports/163766 multimedia/openshot fails to find "main" and "gtk" mod o ports/163762 pgollucci [PATCH] multimedia/mythtv still thinks it's 0.24.0 o ports/163761 pgollucci deskutils/vboxgtk: fix install failure o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode o ports/163751 lme [PATCH] games/scummvm: chase audio/fluidsynth shlib ve a ports/163749 joerg devel/avrdude fails to reset RTS/DTR properly for Ardu o docs/163742 doc [patch] document failok mount(8) option o amd64/163736 amd64 Freebsd 8.2 with MPD5 and about 100 PPPoE clients pani o kern/163724 wireless [mwl] [patch] NULL check before dereference o ports/163722 gnome sysutils/gnome-settings-daemon: crash with abort trap o ports/163720 eclipse java/eclipse doesn't build o kern/163719 wireless [ath] ath interface do not receive multicast f ports/163718 dinoex [PATCH] graphics/jasper: security updates for CVE-2011 o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c a ports/163711 olgeni lang/erlang update request to R15B o amd64/163710 amd64 setjump in userboot.so causes stack corruption f ports/163704 gnome [PATCH] devel/ptlib26: disable ODBC by default f ports/163703 kde x11/kde4: Error with KDE4 printer configuration o kern/163701 ifconfig: group parameter makes impossible to restart o bin/163700 logger(1): broken logic when -f option && long lines i o conf/163690 FreeBSD 10.0-CURRENT/amd64: Set WITH_BIND_LIBS=YES doe o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin f ports/163684 olgeni [PATCH] lang/clojure-mode.el: update to 1.11.5 o bin/163680 vmstat(8): negative values in vmstat -z o ports/163675 pgollucci [PATCH] devel/buildbot: update to 0.8.5 o ports/163674 pgollucci [PATCH] devel/buildbot-slave: update to 0.8.5 o kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip p conf/163668 jh [patch] fstab[5] 'failok' option has no effect on miss a ports/163665 jgh [New Port]: devel/gerrit - Web based code review and p o ports/163663 kuriyama misc/amanda-server is outdated - 3.3.0 is the Latest S f ports/163655 miwi [PATCH] games/odamex update to 0.5.6 o ports/163647 pgollucci [patch] sysutils/xosview: does not build on 10-CURRENT o docs/163646 eadler update man ehci(4) to mention options USB_DEBUG o ports/163643 pgollucci [patch] astro/wmspaceweather: URL changed + two minor f ports/163641 zi net-mgmt/net-snmp: netsnmp_assert were rised o ports/163640 tabthorpe bsd.licenses.mk: Add code to support standard licenses f ports/163636 mi net/opal fails to build o amd64/163625 amd64 Install problems of RC3 amd64 on ASRock N68 GE3 UCC p kern/163623 eadler [kernel] sysctl net.inet.icmp.icmplim_output descripti o kern/163619 OFED failed to build with clang o kern/163618 panic: vm_fault: fault on nofault entry, addr: c278100 o kern/163608 [lor] Two seemingly vfs-related LORs o bin/163602 pmcstat(8) doesn't search symbols under /boot/modules o kern/163587 [sched_ule] The ULE scheduler does not load in the fou o kern/163585 cpuset(1) by twice kill SMP functionality o ports/163583 [patch] x11/kdelibs3 conflicts with openssl-1 o ports/163577 oliver graphics/ogre3d fails to build when textproc/tinyxml i o docs/163576 doc zfs(8) sync property not noted in the manpage o kern/163574 wireless [net80211] overly-frequent HT occupancy changes o kern/163573 wireless [ath] hostap mode TX buffer hang o conf/163572 [periodic] not full output in daily run output is ambi o misc/163571 The system may hang after typing reboot o amd64/163568 amd64 hard drive naming o bin/163567 make(1): add option to disable object directory o kern/163559 wireless [ath] kernel panic AH_DEBUG f ports/163555 danfe [PATCH] irc/bitchx is out of date and BitchX 1.2 does a ports/163550 dinoex [patch] ftp/vsftpd{,-ext}: respect CC/CFLAGS/STRIP uni o bin/163547 vmstat(8): vmstat -i show AVG rate instead of rate p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi f ports/163524 linimon [exp-run] estimate number of ports utilizing old inter o ports/163519 gnome [patch] graphics/gimp-app: unbreak build with clang=20 o ports/163518 gnome [patch] x11/babl: unbreak SSE build with clang o bin/163515 [patch] b64encode(1)/uuencode(1) create files with no o ports/163514 itetcu [PATCH] ports-mgmt/tinderbox-devel: Report the proper o threa/163512 threads libc defaults to single threaded o ports/163511 portmgr [PATCH] bsd.port.mk: Allow existing users on system to o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands o ports/163506 mm multimedia/x264: Does not compile this package x264-0. o kern/163501 fs [nfs] NFS exporting a dir and a subdir in that dir to o kern/163493 FreeBSD 9x amd64 unstable while work with RAM o ports/163490 ohauer www/moinmoin port fix o ports/163489 timur databases/tdb hangs frequently on larger CPU systems o conf/163488 rc Confusing explanation in defaults/rc.conf o bin/163487 syslog.conf filtering syntax broken in 9.0-RC3 (was wo o kern/163481 net freebsd do not add itself to ping route packet o bin/163470 bad cksum in tcpdump(1) output o conf/163469 FreeBSD 10.0-CURRENT/CLANG: WITH_LIBCPLUSPLUS= YE o ports/163467 Ports using python 2.7 and "waf" intermittently hang o o ports/163466 haskell archivers/hs-zip-archive cannot build o kern/163464 Invalid compiler flag in /sys/conf/kern.mk o kern/163461 [vfs] vfs.zfs.arc_max/vfs.zfs.arc_meta_limit defaults a java/163456 java [patch] java/openjdk6: build and distribute open timez o bin/163455 [ath] "bssid" in wlanN create_args does not change wla o ports/163454 gecko [patch] www/firefox-beta: unbreak with libc++ o kern/163450 [puc] [patch] new pci quad serial card supported by pu o ports/163443 gnome [patch] graphics/poppler: unbreak with libc++ o ports/163441 databases/couchdb multiple port installation issues. o ports/163438 miwi New port: multimedia/mplayer2 o kern/163410 panic (page fault) when using mfsroot on i386 with 4 G o kern/163370 csjp [bpf] [request] enable zero-copy BPF by default f ports/163339 garga ftp/pure-ftpd: rc script not supports pure-authd o usb/163328 usb [usb] Support for Atheros USB abgn devices a ports/163323 skv x11/rxvt-unicode fails to build with perl-5.12.4_3 and o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o kern/163318 wireless [ath] ath(4) stops working o ports/163314 miwi [maintainer update] www/ocsigen to version 2.0.2 p kern/163312 wireless [panic] [ath driver] kernel panic: page fault with ath o kern/163310 Panics, sudden reboots and file system corrupts with s f ports/163306 pgollucci [patch] upgrade sysutils/nut to 2.6.2 and fix misc por o misc/163304 complete LLVM toolset in the source tree made availabl o ports/163291 doceng [PATCH] print/ghostscript9: Automatically disable X11 o amd64/163285 amd64 when installing gnome2-lite not all dependent packages o amd64/163284 amd64 print manager failed to install correctly f ports/163279 miwi [update] net/haproxy-devel to 1.5-dev7 f ports/163276 miwi [maintainer update] devel/ocaml-lwt: update to version o kern/163268 acpi [acpi_hp] fix driver detach in absence of CMI o misc/163263 crash on VirtualBox when ACPI is enabled o kern/163245 marcel kernel panic if set /boot/loader.conf vfs.root.mountfr o kern/163240 marius Power down PHY when "none" media is selected o kern/163237 AR5416 as HostAP. Delays among clients when o ports/163232 bf [patch] math/metis: respect CC o ports/163226 obrien [patch] vietnamese/libviet: respect CC/CFLAGS o bin/163219 gtetlow [patch] man: fix 'zcat: standard input is a terminal - o kern/163208 pf [pf] PF state key linking mismatch f www/163203 jkois Submission into Consulting Services List o ports/163196 [NEW PORT] www/ocportal o ports/163195 office editors/openoffice.org-3 installation error o conf/163168 JIS X0208 space should be treated as printable in ja_J o kern/163164 FreeBSD 9.0-RC3 amd64 freezes on boot o kern/163154 [iwn] fatal firmware error on 9.0-RC3 o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o kern/163145 FreeBSD 9.0 PRERELEASE freezes without any warnings or o ports/163142 vbox emulators/virtualbox-ose: virtualbox doesn't work on n o kern/163135 [netsmb] Wrong check in netsmb f kern/163130 scsi [mpt] cannot dumpon to mpt connected disk o bin/163127 brooks sshd(1): SSHD_config Bad configuration option: NoneEna f ports/163126 security/sshguard changed from syslog.conf to daemon b o bin/163123 sysinstall bsdinstall(8): IPV6 only errors connecting o ports/163121 gnome Build issue with graphics/gegl o docs/163119 doc mktemp(3) is referring to (now) non-existent gcc optio o kern/163117 sporadic boot-time panics on 9.0-RC2 and 9.0-RC3 w/ ce o amd64/163114 amd64 no boot on Via Nanao netbook Samsung NC20 o ports/163112 python Updates bsd.python.mk to support Zope 2.11, 2.13 o ports/163111 kwm Error building x11-fonts/cantarell-fonts o ports/163105 bsam cannot portupgrade devel/eric4 to version 4.4.19 o www/163097 www contributor address was obsolete, + contributor now de o bin/163095 brooks Add WITH_OPENSSH_NONE_CIPHER src.conf(5) knob o amd64/163092 amd64 FreeBSD 9.0-RC2 fails to boot from raid-z2 if AHCI is o kern/163091 usb [panic] Fatal trap 12: page fault while in kernel mode p kern/163089 glebius Duplicate free in the error return for mld_v2_encap_re f ports/163084 crees net-mgmt/bsnmptools fails to build o kern/163082 wireless [ath] ar9285 diversity fixes f ports/163072 miwi [NEW PORT] net/dot1ag-utils: Utilities for IEEE 802.1a o ports/163066 eadler [patch] bsd.database.mk: Allow db5 to be selected by U o kern/163065 UDF support for symbolic links with absolute path is b o kern/163064 [fix][sym]driver tries to nego synch trans with everyo o ports/163063 python [PATCH] fix for ports-mgmt/portbuilder o bin/163062 csplit(1) includes extra lines in inner context o ports/163059 portmgr Portbuild: Drop privileges for extract/patch/build pha o ports/163056 miwi [patch] audio/xmms2: update to 0.8 o ports/163055 mm [patch] multimedia/ffmpeg: broken without /usr/bin/per o bin/163053 [patch] camcontrol(8): 'camcontrol nego -D' is ignored o misc/163051 Small disk sizes with 4k sectors have far too few inod o amd64/163048 amd64 normal user cant mount ntfs-3g f ports/163046 cs devel/bazaar is outdated, should be bazaar-ng as the d p docs/163043 eadler [patch] gsched.8: remove reference to gsched_as s kern/163033 [request] 'out of swap space' message should be ammend o ports/163029 delphij [MAINTAINER UPDATE] Update net/openldap24-server to 2. o ports/163022 sunpoet New port: databases/p5-bucardo Asynchronous PostgreSQL a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o ports/163017 autotools [bug] in devel/libtool (2.4 only) o ports/163015 bf New port: math/it++ o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162991 java java/openjdk6 fails to build f ports/162990 mi net/minidlna - requires elevated privileges o ports/162988 maho port bug: math/octave fails to link libumfpack o ports/162977 lev devel/subversion: svn 1.7 does not know who I am at al o kern/162976 [libc] cron fails unnecessarily via setlogin(2) with s f ports/162958 gnome graphics/gimp-app (1.258) make fails with missing TIFF o kern/162952 [headers] Problems including netinet/tcp_var.h o ports/162951 kmoore misc/lxde-common: Missing lxde-logout.desktop o ports/162949 gnome [Update] devel/dbus: update to 1.5.8 o ports/162948 portmgr [exp-run] 10.0 exp-run without libreadline in base sys o kern/162944 fs [coda] Coda file system module looks broken in 9.0 o kern/162943 uClibc explicit runtime loader segfaults under FreeBSD o ports/162939 gecko www/firefox crashes with Zotero add-on o amd64/162936 amd64 fails boot and destabilizes other OSes on FreeBSD 9 RC o kern/162927 net [tun] Modem-PPP error ppp[1538]: tun0: Phase: Clearing o kern/162926 net [ipfilter] Infinite loop in ipfilter with fragmented I o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ o ports/162920 miwi [patch] respect STRIP/LDFLAGS consistently across untr o bin/162905 -E flag in newfs(8) has no effect o conf/162884 FreeBSD's termcap ships monochrome rxvt-unicode entry o kern/162867 better zfs_cv_init o misc/162866 [build] [patch] extract revision from hg in newvers.sh o kern/162860 fs [zfs] Cannot share ZFS filesystem to hosts with a hyph o kern/162859 acpi [acpi] ACPI battery/acline monitoring partialy working f ports/162813 miwi clang doesn't compile games/jaggedalliance2 o bin/162798 add p flag to newsyslog.conf o conf/162794 I experience problem with my network ethernet adapter p kern/162789 glebius [PATCH] if_clone may create multiple interfaces with t o conf/162787 termcap is missing kB entry for xterm o ports/162780 office editors/libreoffice without GUI o docs/162775 doc zpool(1): Document some undocumented zpool import opti o ports/162768 pgollucci [PATCH] ftp/proftpd port update which fixes mod_sql_my o docs/162765 doc [patch] lseek(2) may return successful although no see o ports/162755 gnome [PATCH] graphics/evince: segfault on showing propertie o kern/162751 fs [zfs] [panic] kernel panics during file operations o kern/162736 r214955 (nanobsd) broke build with whitespace in KERNC o ports/162726 miwi [PATCH] update graphics/box to 0.3.0 and graphics/boxe o misc/162724 make whereobj doesn't work after make buildenv o ports/162721 portmgr [PATCH] bsd.port.mk: config target should complain if o bin/162715 pam_krb5(8): pam_krb5 not storing tickets in /tmp p amd64/162708 jhb FreeBSD 9.0-RC2 amd64 fails to boot on Dell Optiplex G o ports/162706 maho math/suitesparse port does not properly detect or link o docs/162699 doc Handbook/Upgrading instructions: should mention delete f ports/162694 pgollucci [patch] [update] multimedia/pitivi to 0.15.0 o bin/162693 sysinstall sysinstall(8): release/Makefile.sysinstall on 9.x refe o kern/162690 gpart label changes only take effect after a reboot o bin/162681 ports pkg_add(1): new installer does not add doc packages o kern/162677 xen [xen] FreeBSD not compatible with "Current Stable Xen" o ports/162676 [NEW PORT] net-mgmt/ssgless: View ScreenOS configurati f ports/162674 graphics/rawtherapee freezes after demosaic when tryin o bin/162670 gabor [patch] libkiconv doesn't work with iconv() in libc o bin/162661 gavin [patch] ftp(8) is giving up on IPv6 o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang o bin/162645 zfs(1): Option parse failure for 'aclmode' when creati o ports/162644 secteam ports-mgmt/portaudit omit fetch output unless verbose o conf/162642 rc .sh scripts in /usr/local/etc/rc.d get executed, not s o ports/162639 timur net/samba36:utils/net_rpc_shell.o(.text+0x480): more u o kern/162620 [ata] SATA device lost when changing brightness on Len o ports/162616 miwi New port: sysutils/cluster-admin tools for managing Fr o kern/162609 [ata] Cannot write to Sony DRU-835A DVD drive o ports/162607 mm little correction for comms/smstools3 o bin/162605 sysinstall sysinstall(8) doesn't identify CD/DVD drives for the u o ports/162602 pgollucci devel/st [patch] event.c missing from work/st-1.9/Make o ports/162596 oliver games/ember: Typo in required lib at runtime o kern/162591 fs [nullfs] cross-filesystem nullfs does not work as expe f bin/162588 dim libz partially broken when compiled with clang [was: n o docs/162587 gjb unclear/incomplete description of per-interface statis f ports/162579 miwi update chinese/pcmanx to 1.0 o ports/162571 gnome textproc/libxml2: provide a way to disable iconv o kern/162558 net [dummynet] [panic] seldom dummynet panics o kern/162524 No full shutdown in FreeBSD 9.0-RC1 o java/162522 java OpenJDK 6 is not setting close on exec o kern/162519 fs [zfs] "zpool import" relies on buggy realpath() behavi o sparc/162513 sparc64 mpt(4), mptutil(8) reports variable, erroneous drive i o ports/162511 [NEW PORT] net-im/imspector-devel devel version of ims o ports/162510 nork [patch] Upgrade graphics/OpenEXR to version 1.7.0 o kern/162509 net [re] [panic] Kernel panic may be related to if_re.c (r o bin/162503 makefs(8) creates a bad image for UFS2 o kern/162502 [md] mount -t mfs on vnode-based md device destroy him o ports/162500 maho math/suitesparse: gmake[2]: *** [run] Segmentation fau o bin/162495 dc(1): dc -e "5 3 %p 1k 5 3 %p" o amd64/162489 amd64 After some time X blanks the screen and does not respo o ports/162480 New port: net-mgmt/cacti-with-plugins Web-driven graph p kern/162475 bschmidt [ath] functions with return type HAL_BOOL (might) retu o ports/162463 skv lang/perl5.12: perldoc shows escape codes o ports/162460 lth update net-mgmt/smokeping o misc/162455 FreeBSD 9x unstable with file-based swap o ports/162447 net/isc-dhcp41-server: starting with rc-script fails o stand/162434 standards getaddrinfo: addrinfo.ai_family is an address family, o docs/162433 doc [handbook] QEMU instructions for FreeBSD guests s www/162430 bugmeister gnats pr-submission mechanism suxx o bin/162429 sysinstall bsdinstall(8): 9.x installer: selecting ZFS for the ro o bin/162428 sysinstall bsdinstall(8): should check available disk space from o ports/162425 gnome graphics/evince doesn't build o ports/162421 python lang/python32 fails to build (undefined reference to ` o docs/162419 doc [request] please document (new) zfs and zpool cmdline o ports/162414 cy [PATCH] sysutils/syslog-ng: misc. fixes o kern/162407 [rctl] [panic] rctl crashes kernel with a page fault ( o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 p threa/162403 davidxu regression in FreeBSD/9 regarding pthread timeouts in o ports/162397 portmgr [patch] Mk/bsd.port.mk: add new target add-plist-build o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen o kern/162382 [swap] Orphaned swap references not garbage collected; o ports/162381 sunpoet [PATCH] audio/icecast2 upgrade to kh development branc o docs/162380 doc Documentation lacking for getfacl/setfacl o kern/162374 posix_openpt wrongly removed O_CLOEXEC o kern/162373 VESA framebuffer memory mapping fails with EINVAL for o kern/162369 kernel problem at shutdown is system has no keydoard o kern/162367 SATA 3.0Gb/s not enabled on Nvidia nForce 430 o bin/162364 sysinstall sysinstall(8): update sysinstall ftp mirror list for c o kern/162362 fs [snapshots] [panic] ufs with snapshot(s) panics when g o docs/162354 gjb Improve wording in rc.conf(5) regarding network-interf o kern/162352 kib [patch] Enhancement: add SO_PROTO to socket.h o ports/162350 office ports/editors/openoffice.org-3 spawns a lawine of gmak o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib o kern/162342 FreeBSD hides gpt labels after mounting ZFS partitions o misc/162338 POLA: mkisoimages.sh does not support extra-bits-dir p o ports/162320 mono lang/mono doesn't build o amd64/162314 amd64 not able to install FreeBSD-8.2-RELEASE-amd64-dvd1 as o ports/162313 acm print/foo2zjs: example devd rules o usb/162306 usb usb devices cant get address asignation, no memories, o kern/162294 Reading DMI memory parts using mmap freeze the system o kern/162277 Repeatable system crash when offlining a zpool vdev o kern/162267 qingli [mpd] mpd kernel panic p docs/162265 doc [Patch] ipfw.8: Documentation clarity a ports/162264 cy [patch] unbreak net/tridiavnc for non-i386 o ports/162261 kde sysutils/k3b-kde4 - fails to compile with ffmpeg-devel o ports/162260 gnome [bsd.gnome.mk] don't add useless dependency for INSTAL o bin/162258 sysinstall sysinstall(8): long-time bugs o kern/162256 scsi [mpt] QUEUE FULL EVENT and 'mpt_cam_event: 0x0' o kern/162250 problems with the work with hard drives Hitachi HDS721 o ports/162240 net/nss-pam-ldapd should allow openldap24-sasl-client o kern/162228 Panic in ufsdirhash_build() p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 o ports/162221 9.0-RC1 new problem building lang/spidermonkey o amd64/162219 amd64 [REGRESSION] In KDE 4.7.2 cant enable OpenGL,in 4.6.5 s ports/162212 ports-mgmt/portupgrade: portversion -r doesn't work o bin/162211 Calendar no longer handles first/last day events in 8. o ports/162207 danfe audio/cdparanoia: crash while building the port. o kern/162201 zec [ip] [patch] multicast forwarding cache hash always al o kern/162195 panic with soft updates journaling during umount -f o bin/162189 kientzle FreeBSD unzip does not restore file permissions proper o kern/162182 Extreme slowness from HighPoint RocketRaid 622 o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s s ports/162178 portmgr [bsd.port.mk] Add bsd.clang.mk with Clang/LLVM support o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o kern/162174 [kernel] [patch] rman_manage_region() error return pat o docs/162172 doc rctl manpage erroneously lists nproc o amd64/162170 amd64 Unable to install due to freeze at "run_interrupt_driv o kern/162160 9-RC1 over IPMI Virtual CD causes unexpected behaviur o arm/162159 arm [panic] USB errors leading to panic on DockStar 9.0-RC o kern/162153 net [em] intel em driver 7.2.4 don't compile o bin/162152 sysinstall bsdinstall(8): No up-to-date IPv6 French mirror o kern/162110 net [igb] [panic] RELENG_9 panics on boot in IGB driver - o power/162091 ppc FreeBSD/ppc CD crashes Mac OS X s ports/162088 inconsistencies in locally generated INDEX file o ports/162085 mm duplicate file name in open-motif-2.3.3 and tcl-8.5.10 o kern/162083 fs [zfs] [panic] zfs unmount -f pool o ports/162075 gecko www/firefox >= 7.0.1_2 bug with respect to pentadactyl o bin/162064 [patch] Loop in fetch(1) when sending SIGINFO after th o usb/162054 usb usbdump just hangs on 9.0-RC1 o ports/162045 print/ghostview 1.5_2 coredumps on certain files f amd64/162043 gavin dev.cpu.0.freq is missing [regression] o ports/162042 bapt [patch] multimedia/libass: add HARFBUZZ option o kern/162036 [geom] Fatal trap 12: page fault while in kernel mode o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/162010 geom [geli] panic: Provider's error should be set (error=0) o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o bin/161986 [patch] netstat(1): Interface auto-width in "netstat - o ports/161984 autotools [patch] devel/libtool: don't split INFO doc (install) f ports/161981 scheidell [maintainer update] sysutils/samesame to v1.10 o kern/161979 geom [geom] glabel doesn't update after newfs, and glabel s f ports/161976 zi net-mgmt/net-snmp: ifSpeed for lagg interface is not a o amd64/161974 amd64 FreeBSD 9 new installer installs succesful, renders ma o kern/161968 fs [zfs] [hang] renaming snapshot with -r including a zvo p bin/161957 jail jls(8): jls -v doesn't show anything if system compile o kern/161949 [kernel] 64-bit structures are used even with 32-bit c o power/161947 ppc multimedia/libdvdnav builds broken binaries on big end o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu s ports/161932 zi net-mgmt/net-snmp reports bogus data in UCD-SNMP-MIB:: f bin/161931 sysinstall bsdinstall(8): (add sysinstall partition config as opt o bin/161929 sysinstall bsdinstall(8): (change partition editor screen default o bin/161928 sysinstall bsdinstall(8): (add option to enable 2 button mouse co o bin/161924 sysinstall bsdinstall(8): add msg box telling user to remove inst o bin/161923 sysinstall bsdinstall(8) games & ports install options o misc/161917 pjd pjdfstest doesn't detect setup/teardown failures prope o misc/161915 pjd pjdtests don't articulate requirements very well o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to p kern/161899 rc [route] ntpd(8): Repeating RTM_MISS packets causing hi o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o ports/161894 New port databases/datamodeler: Database modeling tool o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o ports/161890 ume security/cyrus-sasl2 update broke IMAPS in mail/mutt-d o kern/161888 [kerberos] nfs -sec=krb5x/ldap/krb5-heimdal fix/upgrad o kern/161887 [vm] [panic] panic at vm_page_wire with FreeBSD 9.0 Be o kern/161886 [kerberos] [patch] der_xx_oid not declared before use f conf/161885 remko FreeBSD 9 BETA 3 apparently ignores ifconfig_alias set o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup p conf/161847 gavin [patch] reaper of the dead: remove ancient devfs examp o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option a docs/161808 doc Missing documentation critical to correct usage of uui o bin/161807 fs [patch] add option for explicitly specifying metadata o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod o docs/161804 doc New documentation: French translation for building-pro o usb/161793 usb poor EHCI usb2 i/o performance o ports/161789 office editors/openoffice.org-3: compilations fails in module o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o kern/161768 [ahci] [panic] Panics after AHCI timeouts o ports/161765 mm net/relayd: relayd fails to initialize on systems with o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico p bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks o kern/161755 Kernel fails to report negative malloc type statistics o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o kern/161752 geom [geom] glabel(8) doesn't get gpt label change o bin/161749 kientzle bsdtar(1) --gname and --uname switches not working o bin/161739 top(1): top -b does not restore ICANON and ECHO termin o bin/161720 sysinstall bsdinstall(8): partition editor does not put partition s kern/161719 [request] Support for Realtek 5209 SD card reader o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 f ports/161701 New port: games/chocolate-doom Doom port o ports/161690 New port: games/prboom-plus Port of ID Software's Doom o bin/161677 geom gpart(8) Probably bug in gptboot o ports/161676 gnome databases/libgda4: [UPDATE] to 4.2.9; improvements o www/161672 gavin [patch] add support for 10.x to query-pr o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o ports/161578 devel/strace is not working o ports/161574 demon Can't compile devel/p5-Locale-gettext on 9.0beta o ports/161571 sunpoet New port: devel/p5-Gtk2-Notify - Perl interface to lib o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at p kern/161553 eadler Timestamp missing from msgbuf o kern/161552 [rctl] [panic] kernel panic with RCTL option: racct_al o ports/161549 timur Bugs with aio_suspend configure test in net/samba35 o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o misc/161540 cperciva gzippped kernel is not updated by FREEBSD-UPDATE o kern/161533 fs [zfs] [panic] zfs receive panic: system ioctl returnin o bin/161528 tftpd(8): tftpd[86572]: Timeout #3 on ACK 2 o bin/161526 script(1) outputs corrupt if input is not from a termi o bin/161515 systat(8) does not show Disk MB/s for md devices o kern/161511 fs [unionfs] Filesystem deadlocks when using multiple uni o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o ports/161494 gnome devel/anjuta: gmake[3]: Entering directory `/usr/ports o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash f ports/161462 crees net-mgmt/zabbix-agent: Zabbix_agentd opens a lot of fi s ports/161459 eadler New port: x11-fm/doublecmd Total Commander clone for t o kern/161456 [libpam] on a system bound to an LDAP server, top trie o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/161441 New port: databases/4store o bin/161439 umount(8): umount -a -t doesn't work with nested o kern/161438 fs [zfs] [panic] recursed on non-recursive spa_namespace_ o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o ports/161421 gecko [patch] www/firefox: use libevent2 o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o amd64/161418 vbox [panic] [vbox] FreeBSD 9.0beta3 under Virtualbox: lost o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li o ports/161408 xfce x11-fm/thunar doesn't package o kern/161407 bschmidt [iwn] iwn panic on 9.0-BETA3 o bin/161401 [patch] have service(8) run scripts with the same reso o ports/161390 wen [maintainer] chinese/cxterm broken because does not co o kern/161381 net [re] RTL8169SC - re0: PHY write failed o ports/161359 maho math/gotoblas build fails on "Sandy Bridge" CPU o ports/161356 haskell lang/ghc: bootstrap assumes `gcc', ignoring CC o threa/161344 kib Failure to init TLS variables with func ptr inside sha o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o kern/161318 xen [xen] sysinstall crashes with floating point exception o ports/161317 kde x11/xde4: KDE 4.6.5 does not prompt for authentication o ports/161314 portmgr bsd.port.mk comments for BUILD_ and RUN_DEPENDS fail t o kern/161293 wireless [iwn] hang at startup when starting network o kern/161280 fs [zfs] Stack overflow in gptzfsboot o ports/161278 pgollucci net/dante: getoutaddr(): address [...] selected, but n o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161268 sysutils/fusefs-ntfs fails to mount ntfs "invalid argu s kern/161260 [request] need mps on RELENG_7 for dell servers (PERC o bin/161257 procstat(1): procstat should grow a -l flag to display s kern/161251 [request] Port otus driver from OpenBSD. a ports/161249 shaun net-p2p/bitcoin fails to build o kern/161248 [ahci] Time out, extremly slow response while copying o kern/161233 [build] update RELENG_8 make buildworld error gcc. o ports/161231 [NEW PORT] www/sencha-touch: The First HTML5 Mobile We o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o ports/161185 pgollucci [patch] Remove unnecessary graphics/cairo dependency f o ports/161180 gnome [UPDATE] sysutils/gnome-schedule: update to 2.1.5 o www/161174 www Make http://www.freebsd.org/cgi/search.cgi search GNAT o kern/161169 fs [zfs] [panic] ZFS causes kernel panic in dbuf_dirty o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 f ports/161148 New port: databases/infobright -- the infobright colum o ports/161136 sbz editors/gobby: CLANG: f bin/161113 sysinstall bsdinstall(8): 9.0-BETA3: overwrites Win*-bootcodes wi o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 o arm/161110 arm /usr/src/sys/arm/include/signal.h is bad o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o ports/161106 sysutils/openipmi is dropping core o ports/161103 graphics/rawtherapee fails to build o bin/161101 sysinstall bsdinstall(8): 9.0-BETA3: partition editor: UFS-option o bin/161100 sysinstall bsdinstall(8): 9.0-BETA3: Add User but no Add Group o kern/161097 [sched_ule] Unkillable process hanging waiting for "ex o kern/161094 virtualization[vimage] [pf] [panic] kernel panic with pf + VIMAGE wh o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 pgollucci [patch] misc/ttyrec: don't depend on pty(4), use openp f ports/161070 infinite loop for graphics/xfig on 9.0-CURRENT o ports/161069 mm multimedia/ffmpeg: CLANG: /usr/bin/ld: libavcodec/x86/ o bin/161058 enc(1): enc0 not capturing outgoing IPSEC encrypted tr o docs/161057 doc [handbook] Error in section 18.17.4 of the handbook o bin/161056 sysinstall bsdinstall(8): could allow full control over newfs arg o bin/161055 sysinstall bsdinstall(8): partitioner should auto-populate GPT la f bin/161054 sysinstall bsdinstall(8): partitioner should list valid "type"s o bin/161053 sysinstall bsdinstall(8): network setup dialog is hard to navigat o bin/161052 sysinstall bsdinstall(8): should be consistent about saving confi o bin/161050 sysinstall bsdinstall(8): should use new syntax for IPv4 in rc.co o bin/161049 sysinstall bsdinstall(8): could try to tell if SSDs support TRIM o bin/161048 sysinstall [patch] bsdinstall(8): should run a concurrent shell o o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o power/161045 ppc X doesn't detect ADB mouse up event until another even o arm/161044 arm devel/icu does not build on arm a kern/161043 jhb [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o kern/161035 wireless [ieee80211] Incorrect number describing 11ng MCS rate o bin/161028 [PATCH] service(8) -- Minor improvements o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during o kern/160994 buf_ring(9): MD assumption in MI code f ports/160993 New port: security/sqlcipher o kern/160992 buf_ring(9) statistics accounting not MPSAFE p bin/160979 burncd(8): 9.0 burncd error caused by change to cd0 fr o bin/160975 ipfw(8): ipfw's uid matching doesn't function with IPv o ports/160969 pgollucci [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 x11 [patch] ports/x11/libXi broken manpages o bin/160967 newsyslog(8) is not working o ports/160963 x11 [patch] x11/bigreqsproto: disable specs o ports/160933 gecko Bad port interactions between Mozilla projects o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT o ports/160906 brooks net/openmpi compile error on FreeBSD 8 o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o kern/160893 fs [zfs] [panic] 9.0-BETA2 kernel panic o kern/160873 net [igb] igb(4) from HEAD fails to build on 7-STABLE o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o ports/160861 New port: security/racoon-tool Manage setkey and racoo o kern/160860 fs [ufs] Random UFS root filesystem corruption with SU+J o ports/160856 mm graphics/opencv-core: CLANG build fails o ports/160843 cperciva portsnap3.FreeBSD.org, Snapshot appears to be more tha o kern/160838 acpi [acpi] ACPI Battery Monitor Non-Functional o bin/160834 [patch] grep(1): fixes for POSIX conformance o kern/160833 amd64 Keyboard USB doesn't work o ports/160829 timur devel/talloc hangs during configure on FreeBSD 9.0-BET o docs/160827 blackend New documentation: French translation for linux-users s ports/160821 audio/libmp3splt: Building WITHOUT_ID3 fails o bin/160803 wpa_cli(8): (malloc) /usr/src/lib/libc/stdlib/malloc.c o kern/160802 [install] USB installation image fails to boot if BIOS o kern/160801 fs [zfs] zfsboot on 8.2-RELEASE fails to boot from root-o o ports/160798 pgollucci [PATCH] games/wesnoth-devel: update to latest version o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar o kern/160777 fs [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/impo o www/160774 mirror-adminIrish mirror of freeBSD website is very out of date o kern/160760 (Kernel) Log messages garbled/interleaved o kern/160750 net Intel PRO/1000 connection breaks under load until rebo o bin/160745 sed(1) appends '\n' at the end of binary data (unlike o ports/160717 python port: lang/python27 causing other ports to hang during o threa/160708 threads possible security problem with RLIMIT_VMEM o kern/160706 fs [zfs] zfs bootloader fails when a non-root vdev exists o docs/160698 gjb Remove outdated FreeBSD Jumpstart guide o ports/160695 rafan devel/ncurses libncurses.a doesn't contain libtinfo.a o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t f kern/160692 FreeBSD must consider shipping with SC_PIXEL_MODE on ( o kern/160691 Negative ping times (serious time keeping problem?) on o conf/160689 eadler FreeBSD should have .cshrc updated for modern hardware o ports/160688 hrs print/acroread9 runtime fails with "failed to load mod o ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 o kern/160652 siba_bwn in GENERIC o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 o ports/160631 mm graphics/pecl-imagick: Small change to honor WITHOUT_X o ports/160624 portmgr [exp-run] Process USE_ flags in both parts of bsd.port o kern/160611 lzjb_uncompress possible access violation? o bin/160596 eadler [patch] tzsetup(8): Use libodialog when doing tzsetup o kern/160591 fs [zfs] Fail to boot on zfs root with degraded raidz2 [r o bin/160586 newsyslog(8) can't properly rotate log files when ther o ports/160563 gnome portupgrade of sysutils/tracker-client fails o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o java/160553 java Jaikoz java based audio tagger core dumps o ports/160551 wen graphics/mapserver: CLANG: ./include/agg_renderer_outl o ports/160548 ale databases/mysql55-server - make OpenSSL available to m f ports/160544 rene sysutils/lsof: build fails with clang o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o misc/160517 X pseudo-terminals are not registered in utmp and wtmp p bin/160516 pluknet pkg_delete(1) error messages miss which package had th o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries p ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn o ports/160475 vbox emulators/virtualbox-ose: virtualbox causes panic in v o ports/160471 gnome www/webkit-gtk2 fails to build/link o ports/160465 acm print/foo2zjs: Install of ppd files to /usr/local/shar o misc/160463 eadler [build] [patch] fix build dependency for dtrace module o www/160461 bugmeister Send-pr uses different terminology than docs / executa o docs/160460 doc [handbook] Network setup guide suggestion o docs/160447 doc [handbook] Developer's Handbook contains some outdated o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/160445 doc [handbook] Handbook does not mention ACL o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o usb/160436 usb ucom wedges machine on parity error ? o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o ports/160422 nox astro/google-earth: crashes on FreeBSD 9.0 o kern/160420 net [msk] phy write timeout on HP 5310m o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa o bin/160412 wrong value in systat(1) o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/160409 geom [geli] failed to attach provider o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o docs/160399 doc Man page for re(4) missing jumbo frames info o ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o kern/160392 [panic] double fault on configuring for php5-filter-5. o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o ports/160387 gecko security/ca_root_nss: Allow user to trust extra local o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i o kern/160370 pf [pf] Incorrect pfctl check of pf.conf s docs/160369 gjb [patch] update sample simple makefile with new convent o ports/160366 New port: misc/xmonad-log-applet An applet that will d p ports/160357 x11 x11/dri2proto port update o ports/160354 x11 x11-drivers/xf86-video-intel29 port update o ports/160351 gecko www/libxul installs incorrect mozilla-nss.pc o bin/160320 netstat(1): netstat -f inet6 does not output properly o kern/160307 [dtrace] dtrace -lv can not identify the args of the o usb/160299 usb MicroSDHC-to-USB adapters do not work in FreeBSD 8.x o bin/160298 sysinstall(8) does not allocate enough space in / for o kern/160296 wireless [zyd] [panic] 802.11 usb device reboots system on 'ifc o bin/160295 [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160293 net [ieee80211] ppanic] kernel panic during network setup s ports/160291 pgollucci devel/rubygem-rake 0.9.2 update breaks redmine o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio p misc/160276 brueffer [conf] Spelling Mistake in comments in configure-files o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o ports/160268 gnome www/webkit-gtk2 build process bails: unable to mmap er o ports/160263 obrien shells/bash bug: testing condition for [ -x file ] is o conf/160240 rc rc.d/mdconfig and mdconfig2 should autoset $_type to v o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o conf/160227 [keyboard] Please include new keyboard mapping: French o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o ports/160224 gnome building x11-toolkits/gtk30 fails o ports/160215 office editors/libreoffice-legacy fails to build with KDE 4.6 o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o usb/160192 usb [install] Installation from USB-Stick doesn't find the o ports/160190 timur [New port]: net/samba36-devel Test version of Samba 3. o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR o ports/160047 timur devel/talloc 2.0.5 fails to configure with MAKE_JOBS_U o ports/160022 eclipse release port: java/eclipse-cdt o misc/160011 [boot] Installer Disk will not boot o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat a ports/160003 olgeni drop lang/erlang-lite and update lang/erlang a ports/159982 swills [MAINTAINER] mail/rubygem-vmail: update to 2.3.2 o ports/159981 roam ftp/curl install depends bug? o kern/159971 mckusick [ffs] [panic] panic with soft updates journaling durin o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159947 pgollucci [patch] databases/gnats4 set default index type to pla o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159943 delphij openldap slapd ignores rc.conf slapd_krt5_ktname o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ f ports/159938 lx graphics/shotwell received an X Window System error. o kern/159930 fs [ufs] [panic] kernel core p ports/159928 gnome Updates graphics/clutter to 1.6.16 o kern/159918 jail [jail] inter-jail communication failure f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c o kern/159912 [new driver] [request] Port urtwn from OpenBSD to Free o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o ports/159888 timur net/samba35: pkg_add -r samba35 doesn't accept openlda o ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip o ports/159839 wen graphics/mapserver: bump Python version o ports/159838 wen graphics/mapserver: PDF output doesn't work o misc/159837 bugmeister Ports PR autoassigner does not understand long lines o bin/159833 camcontrol(8): [patch] add ATA security options to cam o ports/159831 gecko www/firefox is broken o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o kern/159809 [build] RELENG_8_1 /UPDATING wrong re: COMPAT_IA32 ali o ports/159807 johans RC file for net/mrouted causes kernel panic by running o kern/159795 net [tcp] excessive duplicate ACKs and TCP session freezes o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o ports/159787 java java/openjdk6 nio muti-thread bug o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l o bin/159730 make(1) in parallel mode fails report failure of @-pre f ports/159728 sysutils/htop 0.9.0_1 is broken (does not show process o ports/159725 portmgr [bsd.commands.mk] Add new command: JOT o ports/159705 brooks Patch adding an option for disabling IPV6 in the net/o o ports/159687 gnome devel/gvfs fails to compile o ports/159677 wen graphics/qgis: /usr/ports/graphics/qgis/work/qgis-1.7 a bin/159665 rik [patch] ctm(1) does not work with bzip2 or xz compress o www/159664 www Add for June/July 2011: FreeBSD in top 3 reliable serv o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr s ports/159656 mandree bsd.database.mk fails to locate installed bdb51 librar o misc/159654 46 kernel headers use register_t but don't #include bpf_if->bif_dlist o ports/158925 delphij New Port: audio/pithos GNOME Pandora player o ports/158904 [PATCH] finance/openerp-web: update to 6.0.2 a ports/158894 danfe audio/ardour: upgrade to 2.8.11 p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents s ports/158878 [patch] textproc/dadadodo assumes long is 32 bits o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o docs/158813 doc [patch] grammar updates for jme(4) o kern/158802 fs amd(8) ICMP storm and unkillable process. o bin/158794 line has been ignored in /etc/newsyslog.conf o ports/158791 sbz Update security/openvas-* o ports/158781 New port: games/drcreep Platform Puzzle Game p bin/158775 jhb [patch] top(1)'s output when using 'C' and 'H' interac o bin/158756 newfs_msdos(8) creates invalid image o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o conf/158734 netif stop don't destroy cloned_interfaces o kern/158726 net [ip6] [patch] ICMPv6 Router Announcement flooding limi o bin/158725 [patch] column(1): `column -t` always separates column o ports/158722 gnome [patch] devel/gobject-introspection does not build if f ports/158713 kde Unable to build /usr/ports/multimedia/phonon-xine afte o ports/158708 gnome x11/gdm doesn't build o kern/158707 [panic] kernel trap 12 with interrupts disabled o bin/158706 [regression] sed(1) in 8.2 gives incorrect output comp o ports/158704 eadler New port: mail/mailfromd o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) o ports/158693 gnome x11-wm/nautilus 2.32.2.1_1 fails to build o ports/158692 devel/cross-gcc: minor patch to enable arm-none-eabi s o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne o kern/158686 virtualization[vimage] [tap] [patch] Add VIMAGE support to if_tap o ports/158684 gnome graphics/evince can not be build p bin/158682 jhb top(1) man page not mentioning all flags that are togg o ports/158680 gnome devel/gvfs doesn't build o kern/158665 net [ip6] [panic] kernel pagefault in in6_setscope() o i386/158653 i386 installing PC-BSD 9 Current with legacy USB Keyboard d o ports/158647 novel audio/bebocd: request for marking it BROKEN and DEPREC o ports/158639 gnome ports-mgmt/packagekit cannot be build o misc/158637 Cannot reinstall 8.2-RELEASE after HEAD o kern/158635 net [em] TSO breaks BPF packet captures with em driver o ports/158616 vd graphics/vigra prevents installing libreoffice p bin/158580 edwin [patch] Disable ncal(1)s date highlighting if stdout i f kern/158569 gavin [ahci] ROOT MOUNT ERROR (caused by AHCI module) o ports/158565 apache www/apache22: Add rlimits based on login class for mpm o conf/158557 rc [patch] /etc/rc.d/pf broken messages o conf/158551 [patch] Enhance periodic 800.scrub-zfs script to handl o ia64/158547 ia64 [ia64] Epilog counter (ar.ec) needs to be saved and re o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s o ports/158533 miwi [NEW PORT] devel/tiled: 2D game map editor o ports/158529 x11 [patch] x11-servers/xorg-server: conditionalize --with o ports/158513 x11 Broken Xvideo in x11-drivers/xf86-video-intel drivers o ports/158506 In multimedia/emotion leave only one backend enabled b o bin/158500 [patch] Add -p to arp(8) to hide permanent entries o kern/158432 [panic] gssd(8) generate much network traffic and led o bin/158431 [dtrace] crash in dt_proc_lookup when attaching to PID f kern/158424 multimedia [snd_hda] snd_hda driver doesn't expose 'rec' flag for o kern/158418 [includes] /usr/include librarys broken by unnecessary p kern/158398 geom [headers] [patch] includes f kern/158391 gavin [pci] Resource allocation issues with hda/ath o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/158378 kientzle cpio/bsdcpio(1) man page does not document -0 and --nu o kern/158376 [udf] [patch] The UDF file system under counts the num o ports/158374 acm databases/firebird21-client coredumps o bin/158363 [patch] partial restore problem in restore(8) o ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/158351 [cam] [patch] missing #includes in o kern/158340 [rpc] Possible dereference of null pointer by code tha p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null p kern/158307 hrs [ip6] ipv6_pktinfo breaks IPV6_USE_MIN_MTU o bin/158296 portmgr pkg_add(1) does not search entire PKG_PATH for depende o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 f i386/158264 gavin Intel Motherboard S5500BCR shut down and power on afte o kern/158231 fs [nullfs] panic on unmounting nullfs mounted over ufs o o kern/158230 libdisk(3) segfault in Open_Disk() with "ada0" o bin/158206 jilles sh(1) doesn't properly return IO errors to conditional f kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. o i386/158200 i386 wifi doesn't work on Acer AO751h, maybe WMI needs to b o kern/158197 geom [geom] geom_cache with size>1000 leads to panics f ports/158192 sunpoet devel/nant: NAnt 0.90 fails to build from ports o kern/158185 bz [ip6] IPv6 does not manage the NIC's route when doing f ports/158181 gavin databases/unixODBC databases/libodbc software packages o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o kern/158160 [coretemp] coretemp reports incorrect CPU temperature o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158098 pjd [hast] problem with copying data on hast-device o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets f ports/158061 kwm New ports: net-im/sofia-sip and net-im/telepathy-sofia f ports/158036 clsung databases/py-redis: [2.2.4] this port don't actually i o misc/158023 Binaries have no SUID bits in FreeBSD-8.2-RELEASE-amd6 o ports/158013 autotools devel/gmake: TARGET_ARCH variable prevents cross-compi o kern/157946 [patch] 'BSM conversion requested for unknown event' g f kern/157932 gavin [cas] loading CAS4 at boot hangs system f kern/157929 fs [nfs] NFS slow read o docs/157908 doc [handbook] Description of post-install should include o ports/157906 gabor print/latex horribly outdated o conf/157903 [devd.conf] [patch] automated kldload for USB class de o ports/157887 osa [UPDATE] sysutils/ccd2iso update and change maintainer o kern/157879 geom [libgeom] [regression] ABI change without version bump f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o kern/157869 easy to create zvols that cannot be forgotten o kern/157863 geom [geli] kbdmux prevents geli passwords from being enter o ports/157855 roam [update] sysutils/timelimit to 1.8 o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o kern/157785 net amd64 + jail + ipfw + natd = very slow outbound traffi o misc/157776 Unable to load kernel modules in fixit shell without c o kern/157770 scsi [iscsi] [panic] iscsi_initiator panic o misc/157764 jfbterm + mplayer = hang o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o bin/157748 calendar(1): Patch for src/usr.bin/calendar/calendars/ o ports/157746 brooks port bug: net/openmpi has incorrect path for sge depen o kern/157739 geom [geom] GPT labels with geom_multipath o kern/157724 geom [geom] gpart(8) 'add' command must preserve gap for sc o kern/157723 geom [geom] GEOM should not process 'c' (raw) partitions fo o kern/157722 fs [geli] unable to newfs a geli encrypted partition p bin/157718 edwin input data trigers a core dump from calendar(1) [regre o bin/157700 tftpd(8) in 8.2-RELEASE expects more data after EOF o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o bin/157635 sysinstall sysinstall(8): "none" Do not install a boot manager - o ports/157600 eclipse java/eclipse: option WITH_TESTS missing distinfo entry o ports/157554 apache www/apache22: Apache RLimitNPROC does not work as inte o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o ports/157544 nork Updates for databases/linux-oracle-instantclient-* o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o misc/157524 [build] make buildkernel fails while updating 8.1-RELE a ports/157504 jgh [new port] net-mgmt/zenpack-NetApp: Provides monitorin o bin/157500 posible chsh(1) bug on systems using nss_ldap/pam_ldap o bin/157499 fetch(1) confused me with its error message o conf/157466 osa [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157446 [libbsdxml] base expat needs minor fixes from vendor c o kern/157429 net [re] Realtek RTL8169 doesn't work with re(4) o bin/157424 inconsistent output from ldd(1) o kern/157418 net [em] em driver lockup during boot on Supermicro X9SCM- o kern/157410 net [ip6] IPv6 Router Advertisements Cause Excessive CPU U o kern/157399 fs [zfs] trouble with: mdconfig force delete && zfs strip o kern/157397 [ada] ahci/ada/cam NCQ timeouts on Samsung and non-dis f ports/157392 marius sysutils/cdrtools can't burn DVDs correctly o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I o misc/157382 host cvsup.freebsd.org has been refusing connections f o usb/157376 usb LaCie USB disk not recognized o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157337 eadler [handbook] [patch] Indentation changes to network serv o ports/157320 [NEW PORT] databases/pecl-pdo_user: PECL classes provi o docs/157316 doc [patch] update devstat(9) man page o ports/157313 hrs cad/spice SEGV o bin/157308 getextattr(8) incorrect listing of attibutes with glob o ports/157301 [New port] net-mgmt/zbxlog: Syslog server receives mes o kern/157293 [mfi] mfiutil/mfi does not allow adding a previously c o bin/157289 repquota(8) does not mark overquota users with a "+" s o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f o ports/157282 x11 [MAINTAINER PATCH] net/xrdp: effective login name is n s ports/157261 itetcu net-im/skype: Cannot Visit account page o kern/157259 [build] kernel: install: mps.ko.symbols: No such file o bin/157244 dump(1): dump/restore: unknown tape header type -2307 o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o docs/157234 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o conf/157189 Default /etc/sysctl.conf should be removed. o kern/157182 net [lagg] lagg interface not working together with epair o kern/157179 fs [zfs] zfs/dbuf.c: panic: solaris assert: arc_buf_remov o bin/157177 primes(1) prints non-prime for numbers > 2^32 o ports/157174 eadler fix typos and small mistakes in various ports o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI o kern/157118 [igb] cleanup error in igb driver - igb_setup_receive_ o bin/157117 sysinstall sysinstall(8): Add ftp4.se.freebsd.org to list of IPv6 o ports/157109 conflict between net/netpipes and sysutils/timelimit o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers o ports/157107 conflict between mail/p5-Mail-SPF and mail/libspf2 o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o www/157076 www freebsd-wireless mailing list not shown on web All Lis o usb/157074 usb [boot] [usb8] vfs_mountroot_ask is called when no usb o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o stand/157050 multimedia OSS implementation lacks AFMT_FLOAT o docs/157049 doc FreeBSD Handbook: Chapter 14 (Security) Inaccuracy o bin/157017 vidcontrol(1): "vidcontrol -r" no longer works [regres o bin/157015 bsnmpd(8) does not create 64bit counters for interface o kern/156974 [boot] [panic] Panic during kernel boot on HP Proliant p docs/156955 doc bug in share/man/man2/setsockopt.2 o ports/156949 x11 x11-drivers/xf86-video-ati 6.14.1 produce black blank o conf/156945 [nsswitch.conf] Name service Switch does not work as d o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP a docs/156920 doc isspecial(3) is not helpful o bin/156908 dumpfs(8) incorrectly displays ufsid o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces o ia64/156900 ia64 ia64 -current r221488 panic if kern.maxssiz=536748033 o usb/156898 usb [keyboard] usb keyboard does not work while boot (ps2 o kern/156884 wireless [ath] ath instablity o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o ports/156834 New port: games/fairymax-devel latest version of games o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o arm/156814 arm OpenRD Ultimate does not boot on DB-88F6XXX or SHEEVAP o kern/156799 HEAD panic: Multiple IRQs for PCI interrupt 0.31.INTA: o kern/156797 fs [zfs] [panic] Double panic with FreeBSD 9-CURRENT and o ports/156787 apache www/mod_auth_kerb2 fails on undefined symbol with base o kern/156781 fs [zfs] zfs is losing the snapshot directory, o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o bin/156768 [patch] sockstat(1): missing spaces between long field o misc/156767 joerg Installation Media do not include current list of mirr o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX o kern/156749 [vmware] FreeBSD 8.2 does infinite disk access in VMwa p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o usb/156735 usb Need Quirk for Goflex USB Disk Drives o bin/156729 make(1) does not respect.ORDER in non-parallel mode o kern/156726 multimedia [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/156725 usb USB stack stall cause complete system input loss o kern/156716 [hang] System freeze during reboot o gnu/156704 Improper behaviour of GNU grep(1) o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o docs/156689 doc stf(4) output-only documentation gives bad configurati o kern/156684 [libc] getaddrinfo(3) returns improper error o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d o kern/156667 net [em] em0 fails to init on CURRENT after March 17 o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/156637 [headers] [patch] sys/types.h can't be included when _ o usb/156596 usb [ehci] Extremely high interrupt rate on ehci/uhci IRQ1 o kern/156584 bz [jail] ipv4 packet is not forward to v4-mapped binding p kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156556 [hpet] FreeBSD fails to boot on ACER 2920: "bad stray p kern/156545 fs [ufs] mv could break UFS on SMP systems p kern/156540 [hwmpc] hwpmc(4) crash when loaded on unknown AMD cpu o misc/156537 Mismatch of Control Sums for ISO-image Files of Old Di o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o ports/156492 skv Multiple versions of Perl not supported o bin/156484 ntpd(8) regularly flips between PLL and FLL mode (time o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156463 [panic] kernel panic at pcpu.h:224 o ports/156425 python lang/python26: Needs to include -L/usr/local/lib/pth i f ports/156424 x11 8.2R xrandr & xf86-video-intel & xorg-server packages o ports/156415 danfe [NEW PORT] net-im/py-hotot, Twitter and Identi.ca micr o kern/156408 net [vlan] Routing failure when using VLANs vs. Physical e o ports/156405 x11 x11-drivers/xf86-video-ati driver: no hardware renderi o ports/156369 x11 x11-drivers/xf86-video-vmware: DPI value wrong calcula o ports/156368 x11 x11-drivers/xf86-video-vmware: pwcview does not work o ports/156362 New port: games/rftg Race for the Galaxy AI o kern/156353 emulation [ibcs2] ibcs2 binaries that execute on 4.x not working o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o ports/156335 gecko www/firefox: Repeatable firefox-4.0_1,1 crash o kern/156328 net [icmp]: host can ping other subnet but no have IP from o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/156322 wireless [wpi] no ahdemo support for if_wpi o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/156317 net [ip6] Wrong order of IPv6 NS DAD/MLD Report o ports/156287 kuriyama security/gnupg does not work without pinentry o ports/156286 snb sysutils/apt port tries to pull from incorrect URL o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o kern/156279 net [if_bridge][divert][ipfw] unable to correctly re-injec o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 o misc/156242 hrs [build] /usr/src/release/Makefile o kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if o i386/156229 i386 [hang] Server IBM x3400 is hangs with option SMP in Ke o kern/156226 net [lagg]: failover does not announce the failover to swi o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/156193 fs [ufs] [hang] UFS snapshot hangs && deadlocks processes f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/156111 jail [jail] procstat -b not supported in jail o amd64/156106 amd64 [boot] boot0 fails to start o gnu/156082 gcc(1) makes incorrect code when swapping array elemen o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o kern/156074 [hang] Removing CD-Rom from Lenovo T61p hangs system f ports/156066 pgollucci [NEW PORT] databases/rubygem-xapian-full (self contain o ports/156042 x11 x11/xorg hang in combination with KWin-Tiling o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/156030 net [ip6] [panic] Crash in nd6_dad_start() due to null ptr o kern/156016 [ncurses] Arrow keys don't work with any ncurses based o ports/156015 pgollucci [PATCH] dns/unbound add MUNIN-plugin o usb/156000 usb rum(4) Fatal trap 18: integer divide fault while in ke o usb/155996 usb NanoBSD not booted as Disk o kern/155994 geom [geom] Long "Suspend time" when reading large files fr f ports/155991 kuriyama textproc/p5-XML-Parser build error o bin/155985 tcpd(8) does not perform a access-control o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o kern/155964 [hang] OS hangs completely when suspend\resume with ac f ports/155949 gecko www/firefox: firefox 4, WITH_PGO, better Text against o ports/155947 xfce x11-wm/xfce4 does not launch or start f ports/155941 net/nepenthes: mwserv library support is not included o ports/155936 python lang/python27 Pthread: previous declaration of ... f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o bin/155902 ifconfig(8): ifconfig wlan0 create wlandev foo0 wlanad f ports/155898 Update port devel/libthai o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o ports/155890 tabthorpe [patch] Mk/bsd.licenses.mk: don't leave temporary file o bin/155886 bc(1) sometimes mangles hexidecimal numbers p bin/155873 edwin calendar(1) recurring date not working o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o usb/155784 usb Problem with Transcend StoreJet 25M3 (2AJ1) on Asus M2 o bin/155778 awk(1) doesn't set error exit status on errors o docs/155773 doc dialog(1): dialog manpages not updated o kern/155772 net ifconfig(8): ioctl (SIOCAIFADDR): File exists on direc o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o bin/155757 problems with setfib(1) behavior o kern/155752 [uart] tcdrain(3) does not work with uart(4) driver o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o ports/155697 ports-mgmt/pkg_replace doesn't want to replace java/op o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o i386/155695 i386 AMD Vision ultimate notebook HP Pavilion DV6 3109ER ov o ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o kern/155680 net [multicast] problems with multicast o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155657 java java/openjdk6: missing symlink for include/freebsd/* o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an s kern/155642 net [request] Add driver for Realtek RTL8191SE/RTL8192SE W o ports/155639 timur net/samba-libsmbclient: unrecorded libtdb dependency o kern/155628 [ahci] ahci disables dvd device o ports/155626 skv lang/perl5.x fails to build on Sheevaplug (ARM) o kern/155615 fs [zfs] zfs v28 broken on sparc64 -current o ports/155601 fluffy new port audio/festvox-russian o kern/155597 net [panic] Kernel panics with "sbdrop" message o kern/155587 fs [zfs] [panic] kernel panic with zfs f kern/155585 melifaro [tcp] [panic] tcp_output tcp_mtudisc loop until kernel o kern/155577 emulation [boot] BTX halted after install. Reboot during install o bin/155567 [patch] cvs(1): add -r tag:date to CVS o bin/155548 pkg_info(1): pkg_info -g mistakenly adds $PREFIX to gl o ports/155546 autotools devel/libtool doesn't work properly if not using built o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o kern/155499 [mfi] mfi(4) command timeout loop on boot on releng/8. o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o conf/155480 [login.conf] maxproc does not work when command runnin o kern/155468 xen [xen] Xen PV i386 multi-kernel CPU system is not worki s ports/155461 gnome [UPDATE] editors/abiword-docs to 2.9.0 s ports/155460 gnome [UPDATE] editors/abiword to 2.9.0 p kern/155442 jhb [bge] bge driver is seen but does not respond to netwo o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o ports/155431 xfce x11-wm/xfce4: The little bugs o kern/155429 [headers] including malloc.h should not abort compile. o kern/155421 [hang] System can't dump corefile [regression] o kern/155420 net [vlan] adding vlan break existent vlan f kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk p kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o ports/155354 bf New port: math/cmlib NIST core maths library o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver f ports/155335 mi multimedia/vic is out of date o kern/155320 [hang] cpufreq/powerd + xorg-7.5.1 + xf86-video-intel- o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot o ports/155275 secteam ports-mgmt/portaudit does not report installed vulnera f ports/155268 danfe games/warsow 0.6 does not work as dedicated server o arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o kern/155199 fs [ext2fs] ext3fs mounted as ext2fs gives I/O errors o kern/155196 [uart] uart cannot identify internal modem or its chip o ports/155182 demon security/qca-tls 1.0_7 does not build in 9-CURREN o kern/155177 net [route] [panic] Panic when inject routes in kernel o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree o amd64/155135 amd64 [boot] Does Not Boot On a Very Standard Hardware o kern/155125 [lor] triple LOR in mkdir(1) o ports/155115 devel/doxygen: dependancy loop o ports/155105 stephen Port science/vis5d+ does not build. o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" o ports/155083 netchild devel/linux_kdump update o ports/155070 NEW PORT: games/CastleVox - new fast strategy board ga o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/155030 net [igb] igb(4) DEVICE_POLLING does not work with carp(4) p bin/155028 init(8): "init q" in single user causes segfault o ports/155011 bland x11/nvidia-settings versions 195 and above fail to all o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel f kern/155004 yongari [bce] [panic] kernel panic in bce0 driver o bin/155000 make(1) doesn't handle .POSIX: correctly o conf/154999 Problems with ARP table o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o ports/154969 jpaetzel Update to net/socks5 (unbreak for -current) o amd64/154957 amd64 [boot] Install boot CD won't boot up - keeps rebooting o kern/154955 acpi [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3 o bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o kern/154943 net [gif] ifconfig gifX create on existing gifX clears IP o kern/154930 fs [zfs] cannot delete/unlink file from full volume -> EN o kern/154915 [libc] [patch] Force stdio output streams to line-buff o ports/154897 emulators/open-vm-tools: Bug in open-vm-tools-313025_2 o ports/154890 mva [UPDATE] devel/py-game to 1.9.1 o ports/154884 java java/openjdk6: Every NetBeans version on FreeBSD 8.1 c o bin/154877 portmgr pkg_info(1) error message should contain information a p stand/154873 pjd ZFS violates POSIX on open/O_CREAT -> ftruncate o kern/154860 ae gmirror(8): [panic] geom_mirror panices system on spec s kern/154851 net [request]: Port brcm80211 driver from Linux to FreeBSD o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o stand/154842 standards invalid request authenticator in the second and subseq o docs/154838 doc update cvs-tags information on releng_* to reflect sup o kern/154833 xen [xen]: xen 4.0 - DomU freebsd8.2RC3 i386, XEN kernel. o kern/154828 fs [msdosfs] Unable to create directories on external USB o kern/154826 bschmidt [iwn] iwn driver fails to power on adapter after resum o kern/154814 [lor] LOR between bufwait/dirhash o bin/154788 sysinstall sysinstall(8) crashes if no network interface found o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o bin/154769 make(1): :L modifier broken in quoted strings o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o ports/154711 security/heimdal: kadmin: hdb_open: hdb_open failed in o usb/154710 usb [ugen] Conexant USB Modem is not working in 8.x. In 7. o kern/154709 [heimdal] Kerberos V5 refuses authentication because R o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o ports/154682 net/iaxmodem: add rc script for running more than 1 ia o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o ports/154674 office Build of editors/openoffice.org-3 3.0 fails o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o amd64/154629 amd64 [panic] Fatal trap 9: general protection fault while i o ports/154628 gabor /usr/ports/textproc/bsddiff/ segfaults with -N o bin/154613 sysinstall sysinstall(8) does not rescan USB automatically o kern/154609 ed [ncurses] END key under screen not sending correct cod o ports/154607 flz Symlinking leads to hashing fail in net-p2p/rtorrent [ o kern/154600 net [tcp] [panic] Random kernel panics on tcp_output p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o i386/154578 i386 [boot] BTX Loader hangs > 1,5 min after listing BIOS d o bin/154570 [patch] gvinum(8) can't be built as part of the kernel o kern/154567 wireless [ath] ath(4) lot of bad series(0) o bin/154562 make(1): corrupted stack access when provided invalid o kern/154557 net [tcp] Freeze tcp-session of the clients, if in the gat f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o ports/154502 x11 x11/xdm authorization failure when used with E17 windo o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o conf/154484 [patch] request for new functionality. jail zfs datase o kern/154473 xen [xen] xen 4.0 - DomU freebsd8.1 i386, XEN kernel. Not o kern/154472 xen [xen] xen 4.0 - DomU freebsd8.1 i386 xen kernel reboot o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy o ports/154449 x11 x11/xorg: missing manpage (7) Xsecurity o kern/154443 net [if_bridge] Kernel module bridgestp.ko missing after u o kern/154432 scsi [xpt] run_interrupt_driven_hooks: still waiting after o kern/154428 xen [xen] xn0 network interface and PF - Massive performan o ports/154423 x11 x11-drivers/xf86-video-radeonhd: radeon xorg driver ca o bin/154419 dig(1) segfault with +trace o bin/154409 indent(1) bug report p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o www/154406 webmaster Mailing List Archives search broken and outdated o ports/154352 pgollucci [patch] multimedia/xmms: update using desktop and mime o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o kern/154299 [arcmsr] arcmsr fails to detect all attached drives f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154255 net [nfs] NFS not responding f ports/154254 rene [patch] mail/asmail imap login broken with gmail at al o ports/154249 bf [NEW PORT] math/sprng: Scalable Parallel Pseudo Random o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o ports/154241 pgollucci [patch] games/wesnoth: move USE_* under bsd.port.optio p kern/154228 fs [md] md getting stuck in wdrain state o arm/154227 arm [geli] using GELI leads to panic on ARM o kern/154226 geom [geom] GEOM label does not change when you modify them o gnu/154225 The rcsintro manpage should not be in section 1 o kern/154214 net [stf] [panic] Panic when creating stf interface f ports/154209 python [PATCH] lang/python: Install symlink for ptags o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o arm/154189 arm lang/perl5.12 doesn't build on arm o kern/154185 net race condition in mb_dupcl o ports/154183 mm graphics/pecl-imagick libthr preload issue o kern/154170 davidxu Panic in sched_switch (/usr/src/sys/kern/sched_ule.c:1 o kern/154169 net [multicast] [ip6] Node Information Query multicast add o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/154134 net [ip6] stuck kernel state in LISTEN on ipv6 daemon whic o misc/154133 [build] device.hints not updated on upgrade == serial f ports/154118 mm graphics/ruby-rmagick: rmagick fails to automaticly re o kern/154091 net [netgraph] [panic] netgraph, unaligned mbuf? o ports/154086 office libsicui18n.a in devel/icu constains no symbols p bin/154073 delphij [libz] libz causes perl to exit on signal 11 o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o bin/154060 host(1): Server Unknown Error while resolve ip by the o conf/154054 cperciva etc/portsnap.conf FreeBSD-7.4 remove INDEX-5 and INDEX p bin/154042 delphij [patch] fix several rtprio(1) issues o kern/153996 fs [zfs] zfs root mount error while kernel is not located o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag o kern/153990 emulation [hyper-v]: Will not install into Hyper-V on Server 200 o docs/153958 doc ksu man-page documented, but not installed o ports/153952 python lang/python26 + pth fails to reconfigure cflags to inc o kern/153937 net [ral] ralink panics the system (amd64 freeBSDD 8.X) wh o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o amd64/153935 amd64 [hang] system hangs while trying to do 'shutdown -h no o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o i386/153851 usb [keyboard] keyboard issues on new Intel Mother boards. a kern/153848 bz [carp] [ipv6] backup host can't connect to master host o ports/153846 multimedia graphics/libcaca 0.99.beta17 - Hidden dependency on Xl o amd64/153831 amd64 [boot] CD bootloader won't on Tyan s2912G2nr o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/153771 Unkillable process after a SCSI tape write error o kern/153757 Kernel panic using openchrome Xorg driver on 9-CURRENT o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh a ports/153735 jsa multimedia/vlc: install error: `Permission denied' for o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o usb/153703 usb [keyboard] My USB keyboard can not be used in 8-STABLE o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o misc/153673 [build] tic (the terminfo compiler) not being created o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153659 awk(1) segfaults when trying to extract a combination o ports/153632 hrs textproc/xmlcharent fails to build o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o bin/153600 Path length restrictions in mount/umount tools prevent o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync f kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif o ports/153593 x11 graphics/dri: clutter segfault, something to do with i o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153567 pgollucci [PATCH] x11/fpc-x11: doesn't respect localbase o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping p bin/153527 jh [patch] wake(8) should use sysexits.h o kern/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable o kern/153514 scsi [cam] [panic] CAM related panic o bin/153502 [libc] regex(3) bug with UTF-8 locale o kern/153497 net [netgraph] netgraph panic due to race conditions o amd64/153496 amd64 [hyper-v] [install] Install on Hyper-V leaves corrupt o ports/153495 x11 x11-drivers/xf86-video-ati wavy line problem for lenov o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o kern/153448 wireless [ath] ath networking device loses association after a o ports/153429 [patch] Fix explicite uses of unzip in ports o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o ports/153406 apache www/apache22's SUEXEC_RSRCLIMIT option does not take e o ports/153386 devel/valgrind does not build/include man pages o arm/153380 arm Panic / translation fault with wlan on ARM f misc/153373 [build] Cannot buildworld for 8.1_RELEASE-p2 o amd64/153372 amd64 [panic] kernel panic o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o ports/153358 x11 x11-drivers/xf86-video-intel: Intel driver freeze with o kern/153351 fs [zfs] locking directories/files in ZFS o kern/153308 net [em] em interface use 100% cpu o kern/153307 pf [pf] Bug with PF firewall o kern/153303 [amr] amr device driver dont detect logical drive amrd f kern/153289 gavin Modem Ring Signal not reliably detected o ports/153281 ashish editors/emacs: glib warning when starting emacs o ports/153277 crees databases/postgresql90-server crashes during compilat o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/153243 emulation [ibcs2] Seg fault whne running COFF binary using iBCS2 p bin/153240 des fetch(1): http transfer hangs after ^T (status) on tty o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out o ports/153231 pgollucci [PATCH] net-mgmt/nrpe2 enable ssl by default o bin/153211 cperciva freebsd-update(8) can not fetch updates over a proxy w p bin/153206 maxim [patch] netstat(1): "netstat -sz" doesn't reset any IP o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o conf/153200 rc post-boot /etc/rc.d/network_ipv6 start can miss neighb o ports/153195 nivit New port: www/mathjax cross-browser JavaScript display o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w o ports/153167 python Problem with signals, threads, and subprocesses in lan o kern/153161 ipfw IPFIREWALL does not allow specify rules with ICMP code o misc/153157 [build] [patch] Add support for generating userland de o bin/153156 When watch(1) is invoked incorrectly it trashes the tt o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o usb/153149 usb [umass] USB stick quirk regression [regression] o ports/153147 danfe Repocopy request: graphics/yafray -> graphics/yafaray o bin/153142 [zfs] ls -l outputs `ls: ./.zfs: Operation not support o ports/153128 bf graphics/ocaml-lablgl fails to build o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o bin/153124 grep(1): "grep foo * > somefile" goes into an infinite o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error o misc/153049 [build] PORTS_MODULES= seriously broken if port depend a docs/153012 doc [patch] iostat(8) requires an argument to -c option o ports/153008 brooks lang/clang: clang/binutils incompatibility f i386/153003 gavin [panic] Cant boot PCBSD-CURRENT-20101204x86CD.iso Dec0 o kern/152991 [ufs] false disk full with a too slow flash module o i386/152942 mav [install] "acd0[READ(offset=32768, length=2048)]error= o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o kern/152922 adrian Routerstation Pro different flash model investigation o ports/152915 russian/xmms v. 1.2.11_12 don't see cdinfo and tag's i f bin/152909 gavin scp mistake file to directory o ports/152899 devel/valgrind: unhandled syscall: 506 o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o amd64/152874 amd64 [install] 8.1 install fails where 7.3 works due to lac o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o ports/152847 pgollucci [patch] port/buildbot-slave could use a startup script o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o gnu/152808 gdb(1) crash on exit o conf/152807 [periodic] security 900.tcpwrap does not report any re o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152796 fcntl(2) audit records should not be labeled "file att o kern/152792 [acpica] [patch] move temperature conversion macros to o kern/152791 bz [icmp] ND, ICMPv6 Redirect vs Destination Cache failed o kern/152750 wireless [ath] ath0 lot of bad series hwrate o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w o kern/152662 [rtld] load libraries with address hint (cf. prelink) o bin/152661 parallel make sometimes gets working dir confused o misc/152636 [install] 8.1 Boot Only ISO doesn't support install vi o kern/152622 multimedia [pcm] uaudio recording problem o misc/152613 FreeBSD 8.x can not find logical drives on extended pa p kern/152609 pjd [geli] geli onetime on gzero panics o kern/152604 FreeBSD 7.2/7.3 installation CD panics on HP Proliant f kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o kern/152569 net [net]: Multiple ppp connections and routing table prob o ports/152568 portmgr New option framework proposal p bin/152551 gavin [libc] Remove unused variables. s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p o bin/152546 gdb(1): internal-error: fbsd_thread_new_objfile: Asser o misc/152543 listing color format cause kernel panic in .zfs dir p misc/152531 maxim Incorrect sysctl description o bin/152525 ntpd(8) on 8.1 loops on select() with EBADF o kern/152500 multimedia [hdac] play interrupt timeout, channel dead o kern/152485 arundel [patch] seek offset for /dev/null(4) and /dev/zero(4) o ports/152474 mi Upgrading 'gdb-6.6_1' to 'gdb-6.6_2' (devel/gdb6) fail o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules f bin/152458 hrs rtadvd(8) needs to allow RA without a prefix info opti o bin/152446 cperciva portsnap(8) error o kern/152438 acpi [acpi]: patch to acpi_asus(4) to add extra sysctls for o amd64/152430 amd64 [boot] HP ProLiant Microserver n36l cannot boot into i o stand/152415 kargl [libm] implementation of expl() o kern/152405 wrong user time is reported when CPU frequency throttl o ports/152389 sem sysutils/grub and sysutils/grub2 misinterpret disklabe o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o ports/152355 hrs net/openbgpd stops syslogging after syslogd restart o ports/152341 bapt shells/zsh fails to load zsh/regex with ZSH_STATIC kno o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x o ports/152306 mm devel/binutils create binary incompatible kernel modul o kern/152293 [libstdc++] SEGV in libstdc++.so.6 o bin/152259 ae bsnmpd(1) fails with stack overflow during GETBULK of o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o bin/152229 b64decode(1)/b64_pton(3) should decode common variant o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 o ports/152224 python [patch] fix installed permissions for lang/python27 o kern/152162 [syscons] On syscons, pressing delete key results in p o ports/152159 x11 [hang] xorg/x11: X11 freezes with Intel Mobile 965 and o bin/152154 script(1) -k malfunctions with certain shells (e.g. tc s kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152131 script(1): [patch] Useless code in script.c (part 1) o ports/152118 New port: deskutils/linux-tahometer A worktime trackin o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo o ports/152111 timur databases/tdb: Cannnot install tdb from ports o docs/152103 chinsan man ipnat is out-dated a ports/152099 cs [NEW PORT] www/loggerhead o kern/152098 acpi [acpi] Lenovo T61p does not resume f amd64/152097 gavin Sound button in Lenovo T61p mutes sound in kde o bin/152084 [patch] pw(8) does not allow @ or ! in gecos o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o ports/152066 mnag [new port] databases/py-MySQLdb40 and so forth: New sl a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe o ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp o kern/152036 net [libc] getifaddrs(3) returns truncated sockaddrs for n o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory o bin/151937 [patch] netstat(1) utility lack support of displaying o kern/151924 very slow boot from disk: 15m+ o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor o kern/151905 fs [zfs] page fault under load in /sbin/zfs o ports/151884 office editors/openoffice.org-3-devel port misbehaviour p bin/151866 des [libfetch] [patch] closing the cached FTP connection o kern/151813 FreeBSD 8.1/amd64: garbage in /var/log/messages o ports/151808 oliver security/courier-authlib: courier-authdaemond doesn't f threa/151767 davidxu pthread_mutex_init returns success with bad attributes o ports/151764 timur security/vuxml update for security vulnerability: port o docs/151752 doc pw.conf(5) doesn't define format for file clearly o ports/151747 new port: emulators/wine-fbsd64: request for (a variat s gnu/151716 gcc(1) fail with internal compiler error when using -f o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o kern/151690 net [ep] network connectivity won't work until dhclient is o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o bin/151663 grdc(1): games/grdc: -s does not scroll s ports/151662 ports-mgmt/portupgrade: upgrade of autoconf leaves old o kern/151650 FreeBSD9-CURRENT can't boot when recompile KERNEL. o kern/151648 fs [zfs] disk wait bug o kern/151629 fs [fs] [patch] Skip empty directory entries during name o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o ports/151603 vbox [vbox] Self-built emulators/virtualbox-ose-kmod vboxne o bin/151600 [patch] route(8) does not always flush stdout o ports/151596 x11 x11/xorg: wacom bamboo button 1 no longer works o kern/151593 net [igb] [panic] Kernel panic when bringing up igb networ o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o ports/151534 python lang/python26 + WITH_PTH doesn't install correctly o ports/151472 ume mail/cyrus-imapd23 failed to compile f ports/151467 stephen New port: sysutils/autojump acts as a complement to cd o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad o kern/151444 [kerberos] Kerberos5 is broken in the base system from f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o www/151438 bugmeister query-cgi use monospace font o www/151437 bugmeister query-cgi broken with base64 encoded mime email o ports/151427 wen math/FriCAS: fatal error encountered in SBCL pid 19170 s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o ports/151414 portmgr Add 'work' when WRKDIRPREFIX is used. o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O o docs/151336 scsi Missing documentation of scsi_ and ata_ functions in c o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o ports/151280 emulators/vmware-guestd6 port install error in /usr/po o bin/151264 syrinx bsnmpd(1): pf counters aren't updated on some SNMP que o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o bin/151229 eadler xterm terminal emulation - shift-tab doesn't work as e o kern/151226 fs [zfs] can't delete zfs snapshot o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o bin/151187 pkg_add(1): allow different pkgdep location o bin/151186 [patch] routed(8) turns RIP off if just one network ca o bin/151168 pkg_add(1): pkg_add -K should preserve file metadata o ports/151154 kde audio/amarok-kde4 crashes on network activity if ports o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151124 hrs net/openbgpd: OpenBGPD exists if an interface is remov o i386/151122 i386 [boot] BTX 1.02 crashes on boot o kern/151111 fs [zfs] vnodes leakage during zfs unmount p docs/151104 keramida mksnap_ffs(8) should mention 20 snapshot limit on UFS o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o bin/150995 sysinstall sysinstall(8): corruption of partition table o ports/150994 maho math/suitesparse can not compile with atlas o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o bin/150988 adduser(8) problem of directory mode a ports/150980 dinoex print/cups-base: I can not create package for cups-bas s ports/150968 kuriyama textproc/p5-XML-Parser fails test o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl f ports/150903 databases/dbf: options --sql / --csv does produce crap o usb/150892 usb [zyd] Whenever network contacted in any shape, way or p bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o docs/150877 doc ambiguity in newsyslog(8) man page about zfs with comp o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o ports/150794 glewis tomcat7's rc.d script wont shutdown tomcat with java/o o bin/150771 [patch] csup(1) GNUmakefile missing o i386/150766 i386 Dell Vostro 3700 siffle sous FreeBSD / Dell Vostro 370 o bin/150723 ae bsnmpd(1): add knowledge of "ada" disks (ATA via SCSI o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of o kern/150640 [panic] Fatal Trap 9 - 8.1-release o ports/150633 x11 x11-servers/xorg-server: KVM switching causing X serve o ports/150631 gecko www/firefox 3.6.9 does not build if you have previousl o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label s bin/150620 [request] Please include utility programs for ncurses o misc/150590 Screen goes blank when PC-BSD graphic install is loade o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o kern/150557 net [igb] igb0: Watchdog timeout -- resetting o kern/150555 geom [geom] gjournal unusable on GPT partitions o www/150553 www [patch] update Russian "FreeBSD Community" page f ports/150541 gahr [new port] sysutils/yum - Installer/updater for rpm o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o kern/150516 jfv [em] e1000 receive queue handling problem s kern/150514 kib [drm] [request] Reorganize DRM Directory to Support Dr o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot f ports/150502 multimedia multimedia/gpac-libgpac 0.4.5_4,1 fails to compile on o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o ports/150425 www/squid31: rc.d/squid's squid_fib setting ineffectiv o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x o ports/150295 nivit audio/sonata fails in __init__ at mpd.MPDClient() : o o kern/150284 multimedia [snd_hda] No gain with Audio o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken s bin/150237 sysinstall sysinstall(8): Suggestion: installer should suggest th o bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o bin/150224 net ppp(8) does not reassign static IP after kill -KILL co o docs/150219 doc zfs(8) manual page misses jail/unjail o kern/150206 [patch] nmount(2): can't switch root partition to rw u o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o ports/150155 x11 x11/xorg hangs after xrandr(1) usage p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o stand/150093 standards C++ std::locale support is broken o ports/150086 [NEW PORT] net-im/tkabber-plugins-devel: External Plug f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo o ports/150040 [patch] security/fwtk: plug-gw does not run on 64bit a o kern/150036 [rpc] Sun RPC license has less restrictions now. f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' o stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o bin/149972 [patch] pw(8): usermod -u should error f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/149960 [headers] syntax error /usr/include/machine/endian.h o ports/149958 bf x11-toolkits/ocaml-lablgtk2's varcc should (maybe) be o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti s kern/149927 scsi [cam] hard drive not stopped before removing power dur o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 pgollucci [PATCH] mail/dspam: important cleanup p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o kern/149857 [kqueue] kqueue not reporting EOF under certain circum o ports/149846 pgollucci graphics/gimp-gap: outdated (not maintained) port o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149828 kientzle tar(1) poor (empty) error message when extracting trun s ports/149817 [wishlist] ports-mgmt/portupgrade: portinstall -p opti o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149762 geom volume labels with rogue characters o ports/149743 x11 x11/xorg: garbled window since Xorg-7.5 o gnu/149712 [build] -fno-builtin in CFLAGS will cause gcc(1) to se o ports/149678 portmgr Mk/bsd.port.mk: add a sanity check for OPTIONS p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly o i386/149647 i386 [panic] Dell Inspiron 530 (FX09) panic at boot with 8. o kern/149643 net [rum] device not sending proper beacon frames in ap mo o ports/149636 x11 x11/xorg: buffer overflow in pci_device_freebsd_read_r o misc/149633 bugmeister Problem with replying to PR o kern/149609 net [panic] reboot after adding second default route o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o kern/149532 jfv [igb] igb/ixgb controllers panic on FreeBSD 8.1-RELEAS o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o ports/149513 eclipse java/eclipse can not compile with 'WITH_TESTS=true' o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o kern/149479 [panic] 8.1-RELEASE kernel panic o www/149446 www [patch] improve misleading title of "report a bug" o ports/149420 ume security/cyrus-sasl2 fails to build GSSAPI, breaking p o bin/149412 secteam bdes(1) in CFB/OFB modes can't decrypt own output o kern/149373 wireless [realtek/atheros]: None of my network card working o bin/149363 tcsh(1) cause situation when ssh connection closed o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149323 [libc] Applications with large memory footprint failin o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o arm/149288 arm mail/dovecot causes panic during configure on Sheevapl o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o ports/149250 hrs japanese/FreeWnn-server: /etc/rc: WARNING: $wnn_enable o bin/149232 cperciva portsnap(8) does not generate INDEX-9 on FreeBSD 9-CUR o kern/149219 [ciss] DL380 G6 P212 trouble o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via o kern/149208 fs mksnap_ffs(8) hang/deadlock o kern/149201 [ata] DVD/CD Drive Error o ports/149186 timur net/samba34 builds broken binaries on Sheevaplug (ARM) o kern/149173 fs [patch] [zfs] make OpenSolaris installa o ports/149167 python lang/python26 fails to build _ctypes on Sheevaplug (AR o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o kern/149086 net [multicast] Generic multicast join failure in 8.1 o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 p docs/149033 pjd hastctl.8 manpage wrong o ports/149031 csjp Not work security/termlog o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include 4.1 does not connect to BSD in hostap wit o kern/144874 net [if_bridge] [patch] if_bridge frees mbuf after pfil ho p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic p conf/144842 hrs [ip6] ipv6_default_interface causes route complaints f o kern/144824 [boot] [patch] boot problem on USB (root partition mou s docs/144818 doc all mailinglist archives dated 19970101 contain traili o kern/144809 [panic] Fatal trap 12: page fault while in kernel mode o conf/144804 ntpd(8) cannot resolve hostnames at system start o ports/144794 amdmi3 multimedia/aegisub: fails to build with multiple optio o kern/144777 qingli [arp] proxyarp broken in 8.0 [regression] s kern/144770 [ata] hard drive spindown functionality broken? s ports/144769 [PATCH] ports-mgmt/portupgrade should have a configura o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/144754 gssapi(3): cyradm crashes inside libgssapi.so o kern/144743 [libteken] mouse positioning partialy working o bin/144736 devd(8) should consider spaces in event description wh o conf/144726 hrs network.subr functions accumulate output before r19713 o bin/144723 [patch] port over coverity SA NULL deref warning fix f o www/144704 brd svn-src-release mailing list page has broken link to a o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o kern/144696 ed [uart] tcdrain(3) does not work right with uart(4) dri o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o bin/144652 [PATCH] pwd_mkdb(8) copies comments to /etc/passwd o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg o bin/144641 [ata] burncd(8) freezes whole system while trying to b o docs/144630 doc [patch] domainname(1) manpage contains old information o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors p misc/144553 imp [nanobsd] NanoBSD's updatep* scripts fail with boot0cf o conf/144548 brian [boot] [patch] Enable automatic detection of amd64/i38 o docs/144543 chinsan [handbook] IPFW doc change o ports/144536 skv lang/perl5.10: /libexec/ld-elf.so.1: /usr/local/sbin/e s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta s bin/144531 [patch] cp(1) show percentage complete o docs/144515 doc [handbook] Expand handbook Table of contents o kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o docs/144488 doc share/examples/etc/make.conf: contains dangerous examp p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi o misc/144442 [build] [patch] remove unnecessary group and passwd en o i386/144437 [boot] BTX loader halts on HP DC5850 o kern/144416 fs [panic] Kernel panic on online filesystem optimization s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t o bin/144388 [patch] different behavior of make(1) between command o usb/144387 usb [run] [panic] if_run panic o bin/144343 hrs The rtadvd cannot avoid the prefix that doesn't want t o kern/144325 [libpcap] tcpdump compiles complex expression to incor f kern/144323 bschmidt [ieee80211] A response management frame appears in wir o bin/144322 truss(1) fails on 'assistant-qt4' from the port qt4-as f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw s bin/144313 vwe ld(1) can't find libs in /usr/local/lib but ldconfig(8 o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o bin/144285 [patch] ps(1): ps -axo user,%cpu,%mem - most processes o bin/144278 sysinstall [install] Fixit from USB dont work o conf/144243 [patch] Add NIS related files to OptionalObsoleteFiles o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o kern/144231 net bind/connect/sendto too strict about sockaddr length a ports/144224 mono [PATCH] lang/mono Fix build with new GCC o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o ports/144203 clsung textproc/refdb: network clients loop indefinitely when o bin/144139 x11/xscreensaver-gnome can't build because of bug in G o docs/144127 ed termios(4) man page wrongly claims CCTS_OFLOW/CRTSCTS o ports/144120 glewis java/openjdk6: games/pcgen doesn't fully work with ope o bin/144109 wireless hostapd(8) uses the MAC of the wireless interface, but p kern/144061 rwatson [socket] race on unix socket close o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive f i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled o ports/144044 gecko [PATCH] www/firefox: Makefile.webplugins target order o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors o i386/144005 [hang] System freezes a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o ports/143949 office editors/openoffice-3: system unzip pickiness unhelpful o docs/143850 doc procfs(5) manpage for status > controlling terminal is o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o bin/143830 [patch] atmconfig(8): Fix conditional inclusion for sb o kern/143825 fs [nfs] [panic] Kernel panic on NFS client s kern/143808 virtualization[pf] pf does not work inside jail o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES o kern/143800 [boot] ping of local ip failed with network boot o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A a usb/143790 usb [boot] [cam] can not boot from usb hdd o misc/143785 [build] [patch] add passive mode to pkg_add cdrtools i o bin/143732 [patch] mtree(8) does a full hierarchy walk when reque o ports/143723 nork graphics/dri fails to build after graphics/libdrm upda o kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 s bin/143699 [patch] extend brandelf's OS knowledge o bin/143698 portmgr pkg_add(1) probably behaving incorrectly s www/143697 linimon [portsmon.freebsd.org] Error: could not connect to the s kern/143673 net [stf] [request] there should be a way to support multi s kern/143666 net [ip6] [request] PMTU black hole detection not implemen o conf/143637 rc [patch] ntpdate(8) support for ntp-servers supplied by o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op f kern/143595 bschmidt [wpi] [panic] Creating virtual interface over wpi0 in o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o i386/143587 i386 [boot] [hang] BTX 1.02 freezes upon assigning Bios C d o kern/143573 jfv [em] em(4) NIC crashes intermittently o bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o bin/143570 ed [patch] stock ftpd(8) does not handle "filesize" limit o bin/143568 secteam ktrace(1) is limited with other user's "filesize" limi o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o bin/143533 [patch] Changes to support Sun jumpstart via bootparam o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o bin/143504 pf [patch] outgoing states are not killed by authpf(8) o docs/143472 standards gethostname(3) references undefined value: HOST_NAME_M o kern/143455 geom gstripe(8) in RELENG_8 (31st Jan 2010) broken o kern/143426 [panic] System crash with Firefox-3..7.5 & FreeBSD-7.2 o kern/143420 acpi [acpi] ACPI issues with Toshiba o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i o bin/143375 [patch] awk(1) trashes memory with regexp and ^ anchor o bin/143373 [patch] awk(1) tolower/toupper functions don't support o bin/143369 [patch] awk(1) doesn't handle RS as a regexp but as a o bin/143368 [patch] awk(1): number of open files is limited to sma o bin/143367 [patch] awk(1) treats -Ft as -F o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o bin/143362 awk(1) incorrect matching o bin/143351 bapt [request] update flex(1) to at least 2.5.33 o kern/143349 [panic] vm_page_free: freeing busy page o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143324 [panic] vm_fault: fault on nofault entry, addr: c10a50 o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 o gnu/143254 [patch] groff(1) build in base system does not honor P o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/143208 net [ipsec] [gif] IPSec over gif interface not working p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o kern/143184 fs [zfs] [lor] zfs/bufwait LOR s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o kern/143126 [ata] Data loss on read timeout o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o kern/143088 [hang] FreeBSD 9.0-CURRENT freezes while starting kern o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances o i386/143082 [install] Unable to install 8.0-RELEASE on Dell 2950 w o conf/143079 wireless hostapd(8) startup missing multi wlan functionality f kern/143074 bschmidt [wi]: wi driver triggers panic o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) f kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks o kern/143034 net [panic] system reboots itself in tcp code [regression] p kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o bin/143017 watch(8): fatal: cannot attach to tty o kern/143006 [build] [request] ACCEPT_FILTER_DATA and ACCEPT_FILTER o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o conf/142961 pf [pf] No way to adjust pidfile in pflogd f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o i386/142946 i386 [boot] Can't boot installation DVD. BTX halted p docs/142938 wkoszek [kld] share/examples: fix warnings o bin/142932 adduser(8) script add bogus symbol at "full name" fiel p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o docs/142917 arundel [patch] top(1) man page does not include information a o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142877 net [hang] network-related repeatable 8.0-STABLE hard hang o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o bin/142867 sysinstall sysinstall(8): in a custom installation re-entering th o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o stand/142803 kargl j0 Bessel function inaccurate near zeros of the functi o kern/142802 [ata] [panic] on removing drive: recursed on non-recur s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m o kern/142781 [lor] New LOR: process lock / system map o kern/142774 net Problem with outgoing connections on interface with mu o kern/142772 net [libc] lla_lookup: new lle malloc failed o ports/142743 [PATCH] devel/cross-binutils: installed by *-rtems-gcc o kern/142728 [panic] Fatal trap 12 in g_io_request o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone f kern/142624 gavin Sending large chunks of data fails o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real p kern/142595 jhb Implementation of "filesystems" file in linprocfs(5) o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o kern/142563 geom [geom] [hang] ioctl freeze in zpool o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142489 fs [zfs] [lor] allproc/zfs LOR o conf/142467 /var/log/auth.log may not be rotated for years o kern/142466 fs Update 7.2 -> 8.0 on Raid 1 ends with screwed raid [re o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) o i386/142421 i386 [ata] optical drives not found o kern/142390 [keyboard] 30th console switch hangs computer complete p docs/142367 roam [patch] wlan(4) does not document requirement for kern o kern/142351 scsi [mpt] LSILogic driver performance problems o misc/142335 sysinstall Download of Release 8.0 LIVE is NOT a "live" from CD p o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two o conf/142304 rc rc.conf(5): mdconfig and mdconfig2 rc.d scripts lack e f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o ports/142259 itetcu sysutils/apcupsd segfaults during shutdown o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/142198 simon SSLv3 failure with irc/xchat on FreeBSD 8.0 o i386/142190 i386 [boot] BTX Loader issue on Gigabyte Motherboard o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep o docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 o conf/142114 periodic(8): security report from 'periodic daily' doe o i386/142108 i386 [panic] vm_fault: fault on nofault entry, addr: c32a40 f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te f kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o ports/142069 x11 x11/xorg: After adding on a laptop Toshiba Sattelite L o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o bin/141920 sort(1): sort -k 3,1g is very slow o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o kern/141915 [hang] Unspecified lockup/deadlock with 7.2 on AMD64 o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141826 multimedia [snd_hda] load of snd_hda module fails f kern/141756 gavin [mmc] MMC card attached to blocks keybo f kern/141741 net Etherlink III NIC won't work after upgrade to FBSD 8, o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o threa/141721 threads rtprio(1): (id|rt)prio priority resets when new thread f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o s stand/141705 standards [libc] [request] libc lacks cexp (and friends) a kern/141696 virtualization[rum] [vimage] [panic] rum(4)+ vimage = kernel panic o kern/141682 [libc] [patch] Faster version of strncpy(3) f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o i386/141675 i386 [boot] memory and BTX halted on Sunfire X4170 o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o ports/141660 x11 x11/xorg: X can't determine amount of video memory on o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/141653 [ata] [panic] Panic in ata? f misc/141652 gavin [install] 8.0 install fails from USB memstick because o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR o i386/141470 i386 [boot] BTX halted immediatly on selecting any of the b o i386/141468 i386 [boot] FreeBSD 8.0 boot manager can cause disk not pro o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro p amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze s bin/141340 netstat(1): wrong netstat -w 1 output o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail o kern/141314 andre Network Performance has decreased by 30% [regression] f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US p misc/141311 [build] "make delete-old" leaves some unnecessary file o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o conf/141275 rc [request] dhclient(8) rc script should print something o bin/141264 ntpd(8) crashes when tries to use an oncore reference a docs/141227 blackend Handbook/sysinstall documentation about distributions o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se o bin/141016 [libpam] PAM checks in sshd too few? o kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o bin/140972 sysintall(8): 8.0-RELEASE-i386-memstick Fixit broken - o ports/140968 python x11-toolkits/py-tkinter(devel/pth): py26-tkinter-2.6.4 o conf/140965 [terminfo] Cannot create terminfo database because ncu o ports/140939 rea [patch] security/vuxml: fix and extend files/newentry. o kern/140932 fork+exec from threaded FreeBSD 7.2 application o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de o ports/140895 hrs net/openbgpd exit, when kernel table change o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o ports/140882 lev devel/py-subversion: subversion-1.6.6_1 build error wi o amd64/140873 gavin [install] Cannot install 8.0-RELEASE on Thinkpad SL300 o bin/140863 cperciva freebsd-update(8) fails to check that writes will succ o kern/140858 [hang] System freeze during boot when PC-Card NIC inst o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- s docs/140847 doc [request] add documentation on ECMP and new route args o bin/140843 sysinstall sysinstall(8): cannot software install from usb o bin/140842 sysinstall sysinstall(8): destroyed ncurses interface with FBSD8. f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o kern/140835 des [libfetch] fetchParseURL(3) returns success with inval a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o kern/140778 jfv [em] randomly panic in vlan/em o kern/140742 net rum(4) Two asus-WL167G adapters cannot talk to each ot o kern/140728 jfv [em] [patch] Fast irq registration in em driver o docs/140725 darrenr wrong directory in ipnat(8) man page o kern/140697 pf [pf] pf behaviour changes - must be documented a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf o i386/140655 i386 [panic] Lenovo X300: fatal trap 12 after /sbin/halt -p o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C p conf/140650 cperciva [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/140640 fs [zfs] snapshot crash o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o ports/140621 edwin Add support for /etc/cron.d and /usr/local/etc/cron.d o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o bin/140595 sysinstall [request] sysinstall(8): Replace "Country Selection" w o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o docs/140583 hrs ports/print/acroread9 - handbook and port fail to ment s www/140580 www svnweb file logs are useless p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o ports/140542 edwin sysutils/isc-cron should be compatible with cron from o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o bin/140462 devd(8): [regression] devd.pid locked by /etc/rc.d and o kern/140461 [vm] Fail to read from swap. The swap_pager.c contains p docs/140457 doc [patch] Grammar fix for isspace(3) o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum o i386/140448 i386 [boot] BTX loader hangs after displaying BIOS drives o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum p misc/140436 imp [nanobsd] pkg-add process fails when there is no /usr/ o docs/140435 arundel ls(1), section STANDARD: the -A is exception from POSI o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o misc/140376 [build] installworld fails trying to use 'chflags schg o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd s ports/140364 [patch] ports-mgmt/portupgrade-devel: #! line substitu f kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid o kern/140352 geom [geom] gjournal + glabel not working o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m a bin/140309 bapt [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o ports/140273 [patch] ports-mgmt/portupgrade-devel chokes on bsdpan o i386/140268 i386 [install] 8.0-RC* does not install on MSI MS-7255 [reg o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o kern/140185 [patch] expand_number(3) does not detect overflow in n o ports/140170 nork net/liveMedia: install shared libraries and thus fix r o ports/140162 hrs print/teTeX listings module bug o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/140156 emulation [linux] cdparanoia fails to read drive data o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140142 net [ip6] [panic] FreeBSD 7.2-amd64 panic w/IPv6 o docs/140082 bland [handbook] handbook/jails: russian translation is miss o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/140067 [boot] 8.0-RC2 from ISO, after install, hangs on boot o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) o kern/140018 [boot] locks up during boot on cpu error on Dell Power o conf/140009 configuration issue NIS in nsswitch.conf(5) s ports/140008 ports-mgmt/portupgrade: many papercut omissions on por o i386/139999 i386 [panic] random freeze and crash s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o gnu/139982 ld(1): BFD internal error o ports/139872 crees [PATCH] ports-mgmt/porttools: improve port's directory f kern/139811 gavin FreeBSD did not recognize Intel Gigabit ET Dual Port S o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139718 trasz [reboot] all mounted fs don't get synced during reboot o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a o kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n p amd64/139614 avg [minidump] minidumps fail when many interrupts fire p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo p kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks p bin/139492 portmgr pkg_install(1) - overlapping data buffer in call to sn o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/139403 [headers] absense of AUE_NULL o bin/139389 pluknet [patch] Change top(1) to display thread IDs o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous o bin/139346 net [patch] arp(8) add option to remove static entries lis o docs/139336 doc [request] ZFS documentation suggestion a bin/139314 [patch] install(1): install -d reports success on fail p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o conf/139255 8.0-RC1 network.subr calls route(8) with obsolete para o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o kern/139232 [panic] Kernel panic (spin lock held too long) p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f ports/139203 crees sysutils/freebsd-snapshot more careful patch not depen o bin/139181 randi WITHOUT_LEGACY_CONSOLE=1 breaks sysinstall(8) o docs/139165 doc gssapi.3 man page out of sync with between crypto and o kern/139162 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o bin/139135 cperciva freebsd-update(8) misbehaves on upgrade and shows erro s sparc/139134 sparc64 kernel output corruption o kern/139127 [vfs] False negative vfs cache entry o kern/139117 net [lagg] + wlan boot timing (EBUSY) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o kern/139080 [libc] [patch] closelog() can close negative file desc f kern/139079 bschmidt [wpi] Failure to attach wpi(4) o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 p bin/139052 kan gcc(1): Stack protection breaks -fprofile-generate on s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o docs/139018 doc translation of submitting.sgml from docproj/submitting a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o kern/139014 [null] /dev/null must be immunable to delete/unlink o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o bin/138961 ldap groups don't work with su(1) o i386/138948 i386 [twa] [regression] da0: Fi f kern/138944 emulation [parallels] [regression] Parallels no longer works in o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in o bin/138858 patch(1) assumes that a file appears only once in the o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o docs/138845 doc Exceeding kern.ipc.maxpipekva refers to tuning(7) whic o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o kern/138782 net [panic] sbflush_internal: cc 0 || mb 0xffffff004127b00 o ports/138772 nox emulators/qemu should build on SPARC f kern/138739 bschmidt [wpi] wpi(4) does not work very well under 8.0-BETA4 o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA o java/138729 java java/jdk16: setting 'export AWT_TOOLKIT=MToolkit' caus o java/138728 java java/jdk16: SIGSEGV in java runtime p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o docs/138663 doc system(3) man page confuses users about "return value o kern/138662 fs [panic] ffs_blkfree: freeing free block o kern/138660 jfv [igb] igb driver troubles in 8.0-BETA4 o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138631 [panic] FreeBSD 7.2 panics when I try to start X f kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o bin/138560 ifconfig(8): wpa_supplicant(8): Incorrect usage of str s bin/138547 vwe [request] improve dhcp behaviour with multiple network o kern/138537 [ata] [panic] Memory modified after free p kern/138526 gnn [null] /dev/null does not support nonblocking operatio o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o bin/138423 sysinstall sysinstall(8): Installer (and sade) get wrong number o o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o bin/138331 sam FreeBSD 8.0-beta3 wpa_supplicant(8) lost auth o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] o kern/138266 net [panic] kernel panic when udp benchmark test used as r o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por f i386/138211 gavin [loader] Boot fails on Intel X5550 o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o kern/138202 fs mount_msdosfs(1) see only 2Gb o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o i386/138126 i386 [panic] Kernel panic trap 12 on bigger load o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o kern/138117 [kernel] [panic] spin lock held too long o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin f kern/138029 net [bpf] [panic] periodically kernel panic and reboot o bin/138025 sysinstall sysinstall(8) fails to create big partition o kern/138002 [lor] Three lock order reversals: ufs/devfs, bufwait/d o kern/137982 pf [pf] when pf can hit state limits, random IP failures s ports/137958 [patch] ports-mgmt/portupgrade fails with recursive de o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o ports/137940 glewis java/jdk15, java/jdk16: bsd java does not start from n o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 f usb/137872 usb [usb67] [boot] slow booting on usb flash drive o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow p bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o ports/137729 apache www/mod_auth_kerb2 port broken on 8.0-BETA2 due to sec o bin/137713 sysinstall sysinstall(8): installer partition editor generates in o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa o conf/137671 [patch][request] enhance beastie.4th: possibility to d s gnu/137665 [patch] dialog(1) goes into tight loop on encountering o bin/137641 net ifconfig(8): various problems with "vlan_device.vlan_i o conf/137629 rc [rc.d] background_dhclient rc.conf option causing doub o ports/137620 portmgr [NEW PORT] devel/p6-perl6-toys o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o misc/137514 cperciva freebsd-update doesn't update the system under some ci p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o kern/137443 [headers] Including /usr/include/rpc/xdr.h fails with o ports/137393 portmgr Remote Package Add of lang/gcc42 does not terminate o kern/137392 net [ip] [panic] crash in ip_nat.c line 2577 o usb/137377 usb [usb8] request support for Huawei E180 o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o bin/137365 [patch] let last(1) read from stdin via "-f -" f kern/137361 [panic] FreeBSD panics with random intervals o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o ports/137332 hrs add caution messages to some adobe products o kern/137327 dfr [nfs] nfs nlm memery leak s bin/137318 [request] import options from NetBSD's lastlogin(1) o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o ports/137250 portmgr OPTIONS that change PREFIX cause an error after 'make o kern/137246 [kqueue] kevents not generated for file writes through o kern/137232 ipfw [ipfw] parser troubles o kern/137228 [psm] synaptics support delays 'mouse up' events when f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de f kern/137053 acpi [hang] FreeBSD 8.0 BETA2Compaq Mini 700 locks on boot o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o kern/137041 [hang] powerd(8) hangs my systems within aprox 15 min o bin/136994 net [patch] ifconfig(8) print carp mac address o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 o ports/136917 python [patch] lang/python26: gettext detection o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re o kern/136888 [boot] boot0sio timeout much longer when DSR/CTS low o kern/136876 yongari [bge] bge will not resume properly after suspend o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136762 [ichsmb] ichsmb can't map resources of compatible IXP o bin/136733 disklabel(8) handle incorrently o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa p gnu/136705 emaste [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136669 [libc] [patch] setmode(3) should always set errno on e o docs/136666 doc [handbook] Configure serial port for remote kernel deb o bin/136661 melifaro [patch] ndp(8) ignores -f option o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o kern/136618 net [pf][stf] panic on cloning interface without unit numb p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS p bin/136419 portmgr [regression] pkg_add(1) segfault on adding package whe o kern/136356 [ata] SATA / ICH7 problems o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136327 firewire [sbp] [boot] Asus M3N78-EM motherboard cannot boot wit o bin/136325 cperciva portsnap(8): "portsnap fetch" not useable by other pro o kern/136216 [headers] Missing prototype declaration for setfib() o o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend o bin/136073 des recent nscd(8) changes cause client processes to die w o ports/136072 portmgr Propose new ports category, internationalization o docs/136035 doc ftpchroot(5) omits an important option o kern/136013 [resolver] Resolver wrong diagnostics o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us f kern/135986 [panic] FreeBSD crashes after VLC close f i386/135961 gavin [boot] booting WRAP and Soekris fails from PXE, boot0 o kern/135948 pf [pf] [gre] pf not natting gre protocol o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive o kern/135898 geom [geom] Severe filesystem corruption - large files or l o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o threa/135673 threads databases/mysql50-server - MySQL query lock-ups on 7.2 f kern/135667 xen ufs filesystem corruption on XEN DomU system o bin/135647 cperciva freebsd-update(8): forces manual merge of every file i o kern/135608 [patch] sysctl(8) should be able to handle byte values o power/135576 ppc gdb cannot debug threaded programs on ppc o ports/135569 portmgr `check-sanity` not documented in bsd.port.mk s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o docs/135516 eadler [patch] pax(1) manual not mentioning chflags unawarene a ports/135503 wxs lang/python26 upgrade should get mailman too o kern/135502 net [periodic] Warning message raised by rtfree function i o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o docs/135475 eadler [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/135458 dchagin Missing errno translation in Linux getsockopt(,,SO_ERR o bin/135444 cperciva freebsd-update(8) failing should be more verbose f kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. o misc/135420 bugmeister gnats generates broken In-Reply-To headers o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o conf/135338 rc [rc.d] pf startup order seems broken [regression] o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135317 randi install.cfg feature request o kern/135307 Boot Loader problem on Acer Aspire 5735 o ports/135276 x11 x11/xorg: GUI running first time only while using Free o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/135222 jfv [igb] low speed routing between two igb interfaces o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe o usb/135206 usb machine reboots when inserted USB device f usb/135200 usb SAMSUNG i740 usb mass: Synchronize cache failed, statu f kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o kern/135164 [keyboard] UK currency key inactive o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines s ports/135089 portmgr bsd.port.mk: Honor LOCALBASE for CFLAGS p kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o usb/134950 usb Lowering DTR for USB-modem via ubsa is not possible o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons f bin/134907 vwe boot0cfg(8): choose / adjust the booting slice doesn't o kern/134887 [ataraid] source consistency problem o ports/134880 ale lang/php5 - PHP CLI interactive mode misbehaviour with o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic s ports/134714 ports-mgmt/portupgrade deletes user data without quest o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 f kern/134584 [panic] spin lock held too long o kern/134583 net [hang] Machine with jail freezes after random amount o o bin/134569 [heimdal] krb5-config(1) does not return all libs nece o kern/134531 net [route] [panic] kernel crash related to routes/zebra o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R o kern/134519 [panic] Kernel panics (2 page faults in kernel) o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod o kern/134491 fs [zfs] Hot spares are rather cold... o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o bin/134425 sysinstall sysinstall(8) custom distributions select all and dese f kern/134407 gavin [hang] freebsd 7.x freezes with the livefs or install f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 o kern/134391 [libc] dladdr(3) does effectively not work on main pro o bin/134389 cperciva portsnap(1): phttpget opens a new connections for ever o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o conf/134333 rc PPP configuration problem in the rc.d scripts in combi o usb/134299 usb Kernel Panic plugging in MF626 USB UMTS Stick u3g o bin/134250 [rc.d] mountlate: bogus error message when using neste o kern/134249 [libiconv] [patch] ignore case for character set names s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/134200 [panic] Fatal trap 12: page fault while in kernel mode o usb/134193 usb System freeze on usb MP3 player insertion f kern/134168 gavin [ral] ral driver problem on RT2525 2.4GHz transceiver o bin/134167 cperciva [request] freebsd-update(8) should be able to be run i o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o docs/134123 doc The RUNQUEUE(9) man page is out of date o kern/134113 geom [geli] Problem setting secondary GELI key f kern/134105 gavin rl(4) Realtek 8110SC with device ID 0x814910ec not det f java/134098 glewis java/diablo-jdk15: random core drops p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix o bin/134022 host(1), dig(1) and nslookup(1) hang in _umtx_op sysca o kern/134011 [hang] swap_pager_getswapspace(4): failed o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic o kern/133931 geom [geli] [request] intentionally wrong password to destr s kern/133926 [request] MAXLOGNAME, the username length limit, is to o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/133892 sam /usr/src/sys/dev/ath/if_ath.c:3414: error: 'const stru o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o ports/133771 doceng print/ghostscript8: Ghostscript8-8.64 port not install f kern/133768 gavin [panic] MONITOR PANIC: vcpu-0:VMM64 DoubleFault src=MO o kern/133736 net [udp] ip_id not protected ... o kern/133732 pf [pf] max-src-conn issue o i386/133727 i386 chars [[[[[[[[[[[[[ occur during install process (sett o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133710 [headers] net/bpf.h and netgraph/ng_message.h should i o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/133595 net [panic] Kernel Panic at pcpu.h:195 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o misc/133540 gavin Cannot connect to ftp mirrors for 7.2 beta boot-only o power/133503 ppc [sound] Sound stutter after switching ttys o kern/133495 [de] interface not properly initialized on boot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o usb/133390 usb umass crashes system in 7.1 when Olympus D-540 attache o power/133382 ppc [install] Installer gets signal 11 o usb/133296 usb [rum] driver not working properly in hostap mode o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/133286 dd can fill system memory o kern/133265 jail [jail] is there a solution how to run nfs client in ja o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo f kern/133213 net arp and sshd errors on 7.1-PRERELEASE s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article o bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p o ports/132783 portmgr ports/Mk/bsd.port.mk: ${ARCH} misuse for "--build" opt o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent o bin/132735 Berkeley db: corrupted file has record with absurd siz o kern/132734 net [ifmib] [panic] panic in net/if_mib.c o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o docs/132718 doc [handbook] Information about adding a new mirror is ou o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/132664 [lor] vfs_mount.c / msdosfs_vfsops.c o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not o conf/132596 examples/cvsup/ports-supfile still oriented on cvsup p o usb/132594 usb USB subsystem causes page fault and crashes o ports/132577 fjoe databases/oracle8-client: Appearence of connection (ph o ports/132576 delphij net/openldap24-server: multipying LDAP trees on the si o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve o conf/132515 stas ntpd_sync_on_start option in /etc/rc.conf misbehaves o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o kern/132397 fs reboot causes filesystem corruption (failure to sync b p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/132331 fs [ufs] [lor] LOR ufs and syncer o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo p kern/132285 glebius [carp] alias gives incorrect hash in dmesg o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o docs/132260 doc dhcpd(8) pid not stored in documented location o kern/132252 [ata] No CD/DVD devices found! o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/132238 [ral] ral driver does not support RT2860 o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o i386/132230 i386 [boot] [reboot] 7.1-RELEASE /boot/loader non-functiona o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( f kern/132176 pf [pf] pf stalls connection when using route-to [regress o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/132145 fs [panic] File System Hard Crashes o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o kern/132107 glebius [carp] carp(4) advskew setting ignored when carp IP us o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 o usb/132036 usb [panic] page fault when connecting Olympus C740 camera o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o docs/131968 danger ipnat man page points to wrong directory o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131853 cron(8): please add support for CRON_TZ and CRON_WITHI o bin/131800 rpcbind(8) fails to start in jail f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte o kern/131784 [lor] triple LOR after hard reboot o kern/131781 net [ndis] ndis keeps dropping the link o kern/131776 net [wi] driver fails to init o bin/131774 cvs(1) commits files then aborts o ports/131758 itetcu net/tightvnc in a jail stopped working after multiple o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh p kern/131718 [lor] kern_sysctl.c / acpi_video.c o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o kern/131601 net [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp o bin/131598 cperciva freebsd-update(8) doesn't interact well with custom ke o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o usb/131583 usb [umass] Failure when detaching umass Device o ports/131579 kuriyama security/gnupg reads security/gnupg1 data incorrectly o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data f kern/131573 [mutex] lock_init() assumes zero-filled struct f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o bin/131549 wireless ifconfig(8) can't clear 'monitor' mode on the wireless o power/131548 ppc ofw_syscons no longer supports 32-bit framebuffer o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o usb/131521 usb Registering Belkin UPS to usb_quirks.c f kern/131448 Bad display while booting o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o bin/131427 [patch] Add to fetch(1) an ability to limit a number o o i386/131426 i386 hald makes cdrom fail o bin/131415 geom [geli] keystrokes are unregulary sent to Geli when typ o docs/131370 keramida glabel(8): geom_label needs clarification in docs a bin/131369 delphij truss(1): truss -f fails to attach to child processes o bin/131365 net route(8): route add changes interpretation of network o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o bin/131359 cperciva freebsd-update(8): freebsd-update tag file not updated o bin/131358 cperciva freebsd-update(8): Update servers for freebsd-update a s bin/131354 des ssh: SSH session hangs o kern/131353 geom [geom] gjournal(8) kernel lock o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o bin/131341 fs makefs: error "Bad file descriptor" on the mount poin p bin/131250 brian [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map s ports/131111 ports-mgmt/portupgrade-devel: completely removes packa o bin/131094 dhclient(8) sets wrong IP address f kern/131087 bschmidt [ipw] [panic] ipw / iwi - no sent/received packets; iw o usb/131074 usb no run-time detection of usb devices plugged into exte o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ p kern/131038 bz [ip6] [panic] kernel panic in ip6_forward o bin/131013 pw(8) does not update NIS group file o kern/130998 [dtrace] DTrace stops tracing because of struct thread o bin/130993 pkg_add(1): pkg_add -n falsely reports present local p f kern/130982 gavin [install] The installation hangs o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ f bin/130954 vwe ps(1): can not obtain which process take all CPU time f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o bin/130831 csh(1) core dumps after building libiconv-1.1x from s f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o usb/130736 usb Page fault unplugging USB stick f misc/130728 joel There are 4-clause BSDL files in src/ o kern/130726 [ata] DMA errors accessing multiple SATA channels f kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o ports/130677 portmgr bsd.port.mk: Centralize handling of CPPFLAGS o kern/130657 bz [ip6] [patch] ipv6 class option o bin/130655 randi sysinstall(8): no IPV4 if answer "no" when "Do you wan o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau a bin/130504 [libc] Serious bug in regular expression library (rege o ports/130479 apache www/apache22 configure_args busted s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD f ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o docs/130364 arundel Man page for top(1) needs explanation of CPU states o bin/130343 top(1): kvm_open: cannot open /proc/42997/mem corrupts o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa o kern/130286 [patch] hifn(4) changes o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o bin/130251 nm(1): 'nm -C' doesn't demangle any 't' symbol names o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o kern/130210 fs [nullfs] Error by check nullfs o usb/130208 usb Boot process severely hampered by umass0 error o kern/130171 [ata] UDMA CF cards do not work with FreeBSD p bin/130159 brian [patch] ppp(8) fails to correctly set routes o usb/130122 usb [usb8] DVD drive detects as 'da' device o i386/130110 i386 [boot] BTX-Halted - booting with SAS/SATA Controller o kern/130109 net [ipfw] Can not set fib for packets originated from loc p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use f usb/130076 vwe Panic when connecting USB camera o stand/130067 standards Wrong numeric limits in system headers? f kern/130059 net [panic] Leaking 50k mbufs/hour o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129989 cperciva portsnap(8) quietly forgets to fetch some ports o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# f i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D s ports/129930 ports-mgmt/portupgrade - portinstall tries to install s www/129923 www Need stylesheet for FreeBSD Subversion DAV tree s ports/129891 ports-mgmt/portupgrade fails to recognize variations o o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o ports/129824 hrs print/acroread8 - help viewer does not work o bin/129814 [patch] support of per script nice(1) value in periodi f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics o bin/129762 sysinstall sysinstall(8) doesn't seem to support GPT for EFI boar o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di a docs/129684 trhodes gcache.8 man page missing o kern/129674 geom [geom] gjournal root did not mount on boot o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o kern/129645 geom gjournal(8): GEOM_JOURNAL causes system to fail to boo o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/129517 net [ipsec] [panic] double fault / stack overflow f kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o docs/129464 doc using packages system o bin/129431 cperciva freebsd-update(8) fetch fails because phttpget fails p o bin/129405 [patch] tcsh(1) vfork bugs o www/129401 edwin FreeBSD Multimedia page should automatically pick up Y p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o bin/129378 csh(1) / tcsh(1) loses foreground process group [regre o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/129352 yongari [xl] [patch] xl0 watchdog timeout o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o bin/129287 [request] powerd(8) should grow signals to switch betw o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire s bin/129248 [request] FreeBSD's syslog(8) can't support log encodi o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o kern/129197 net [panic] 7.0 IP stack related panic o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/129164 [kernel] Wrong priority value for normal processes o kern/129152 fs [panic] non-userfriendly panic when trying to mount(8) o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/129125 [psm] psm0: failed to reset the aux device. o docs/129095 doc ipfw(8): Can not check that packet originating/destine o kern/129053 [lor] lock order reversal with printf(9) syscons video o bin/129052 ps(1) %cpu column reports misleading data for threaded f kern/129040 gavin [install] Lockup during boot - Cannot install the OS f kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o docs/129024 keramida [patch] ipfw(8) improvements p bin/129014 gavin [regression] ftp(1) cannot bind to specific source IP o conf/128994 UPDATING falsly states DTrace bindings are built by de s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/128977 usb [usb67] [patch] uaudio is not full duplex f ports/128972 cy Port security/krb5 has a linking problem when compiled o bin/128954 net ifconfig(8) deletes valid routes o java/128948 java java/jdk16 built from source can't bind a socket, but o kern/128933 kib [libc] realpath(3) does not follow SUS specification f o threa/128922 threads threads hang with xorg running f kern/128917 bschmidt [wpi] [panic] if_wpi and wpa+tkip causing kernel panic o bin/128886 ntpd(8): ntpd -L flag doesn't work s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128840 jfv [igb] page fault under load with igb/LRO o java/128809 java JVM aborted when GNU RXTX write to serial port. p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o ports/128754 portmgr bsd.port.mk: implement master sites randomization f usb/128745 weongyo zyd teoretically supported usb device makes kernel pan o bin/128727 host(1) does not work properly with the -6 option o bin/128668 [request] Kerberos in the base system is too old o bin/128654 atacontrol(8) does not preserve rebuild status through o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct p kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop f kern/128633 pjd [zfs] [lor] lock order reversal in zfs o conf/128632 security periodic 700.kernelmsg repeats messages p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad o bin/128501 cperciva freebsd-update(8) does not work on netbooted machines o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o bin/128465 [request] mount_smbfs(8) does not support IPv6 o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res o conf/128433 [patch] Add option to allow a full login when doing 's o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like s docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages f kern/128308 gavin [psm] psm0 cause page fault o kern/128304 vn_pollrecord(3) derefs NULL if v_addpollinfo() fails o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128284 gdb(1) segfaults f kern/128282 gavin [mpt] system failure on removing two drives f kern/128276 geom [gmirror] machine lock up when gmirror module is used o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p kern/128247 bz [ip6] [panic] Fatal Trap 12 in ip6_forward = o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re f threa/128180 attilio pthread_cond_broadcast(3) lost wakeup o kern/128177 jeff [sched_ule] wrong CPU usage reported by top(1)/ps(1) w o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage f bin/128088 vwe who(1) not listing all logged in users. o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/128076 [panic] Fatal trap 12: page fault while in kernel mode o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to o kern/128035 [ata] unexpexted detach of external SATA drive s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o ports/128028 portmgr bsd.port.mk - Ports-Script do not recognize dialog-ret o bin/128001 net wpa_supplicant(8), wlan(4), and wi(4) issues p bin/127986 [patch] ee(1): fix compiler warnings caused by use of a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/127930 ed auto-logout does not work p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up o usb/127926 usb [boot] USB Timeout during bootup o docs/127923 loader Please mention qemu in the FreeBSD Handbook o kern/127920 pf [pf] ipv6 and synproxy don't play well together s bin/127918 [ata] [request] [patch] ATA Security support for ataco o bin/127912 In theory, uncompress(1) may crash and SEGV f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki p docs/127890 trhodes socket(2) man page should explain that protocol can be s ports/127889 ports-mgmt/portupgrade detects spurious failures and s o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/127842 murray list of hardware devices missing from the relnotes p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o bin/127633 edwin [patch] Update top(1) to 3.8b1 o kern/127623 [headers] header definition for cftime is missing. o kern/127553 [build] (errata) in kernel generic et al, device ural o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s f kern/127528 net [icmp]: icmp socket receives icmp replies not owned by a ports/127496 office devel/icu 3.8.1_1 does not build when Danish locale is f kern/127492 pjd [zfs] System hang on ZFS input-output o ports/127467 portmgr bsd.port.mk: fix checking DISTDIR for writeability s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127439 pf [pf] deadlock in pf o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o i386/127374 i386 Suspend/Resume with Keystroke only once on Thinkpad T4 p kern/127360 net [socket] TOE socket options missing from sosetopt() o docs/127359 keramida Undocumented firewall_xxx options for rc.conf in stabl o i386/127343 i386 [hang] System locks -- simular to PR 123729 o usb/127342 usb [boot] [panic] enabling usb keyboard and mouse support o i386/127337 i386 [boot] FreeBSD 7.1/i386 BTX boot problem on Pavilion d o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127276 [patch] ldd(1) invokes linux yes o bin/127270 fs fsck_msdosfs(8) may crash if BytesPerSec is zero o bin/127265 [patch] ddb(4): Adding the ddb command set from module o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o bin/127192 net routed(8) removes the secondary alias IP of interface f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode s bin/127056 lp(1) doesn't use -o options p kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi o kern/127048 systat(1) information leak when security.bsd.see_other o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o kern/127029 fs [panic] mount(8): trying to mount a write protected zi s ports/127019 ports-mgmt/portupgrade does not recognize fail conditi o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126971 [boot] loader/kernel does not obey comconsole_speed p kern/126945 glebius [carp] CARP interface destruction with ifconfig destro o bin/126936 locate.updatedb(8): updatedb fails silently when attem s ports/126932 itetcu gapcmon option in sysutils/apcupsd conflicts with sysu o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o ports/126853 secteam ports-mgmt/portaudit: speed up audit of installed pack o usb/126848 usb [usb]: USB Keyboard hangs during Installation o kern/126821 [panic] Fatal trap 12 (kdeinit) o bin/126819 randi sysinstall(8) During install if initial name look-up f o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o bin/126721 gcc(1) g++(1) Compiling, assembling and linking code w p kern/126714 glebius [carp] CARP interface renaming makes system no longer o kern/126695 net rtfree messages and network disruption upon use of if_ o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and o i386/126666 i386 [boot] [hang] boot failure for nForce 630i / GeForce 7 p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/126546 des pam_nologin(8) in auth causes log spam o usb/126519 usb [usb] [panic] panic when plugging in an iphone o docs/126484 doc libc function res-zonscut2 is not documented o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o bin/126433 [patch] some missing checks in rm(1) o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126384 [request] find(1) doesn't support whiteout entries yet o kern/126339 net [ipw] ipw driver drops the connection p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o misc/126312 [build] debug message going to stderr while doing "mak o conf/126305 nsmb.conf(5): Hostnames in nsmb.conf seem to be ignore o bin/126301 portmgr pkg_version(1) can induce unexpected parsing of INDEX o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o kern/126230 [libc] select(2) causing weird process cpu usage and l p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o bin/126162 acpi [acpi] ACPI autoload failed : loading required module o kern/126142 [ata] M5281: READ DMA faults, device detaching s ports/126140 ports-mgmt/portupgrade runtime error o misc/126131 cperciva portsnap(8) fetch error with HTTP_PROXY or HTTP_PROXY_ o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom o ports/126083 office textproc/aspell core dumps o kern/126075 net [inet] [patch] internet control accesses beyond end of o bin/125932 portmgr pkg_add(1) doesn't prompt for root credentials and the o bin/125922 net [patch] Deadlock in arp(8) o docs/125921 doc lpd(8) talks about blocks in minfree while it is KB in o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg o kern/125806 np [cxgb] cxgb packet counters do not work o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o stand/125751 brucec man 3 pthread_getschedparam section ERRORS incomplete s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o docs/125717 keramida minor wpa_supplicant.conf(5) buglet o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125704 [ng_nat] kernel libalias: repeatable panic o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/125647 [ciss] [panic] System randomly crashes - ciss driver o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o kern/125617 wireless [ath] [panic] ath(4) related panic a kern/125613 trasz [ufs] [patch] ACL problems with special files o i386/125592 i386 [hang] FreeBSD 7 server in hang o i386/125516 gavin [install] 7.0-RELEASE install dies o usb/125510 usb [panic] repeated plug and unplug of USB mass storage d o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125467 pf [pf] pf keep state bug while handling sessions between o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo f usb/125450 usb [panic] Removing USB flash card while being accessed c o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde o docs/125329 keramida PACKAGEROOT should be documented in the Handbook o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/125239 net [gre] kernel crash when using gre o bin/125184 des sshd(8) does not always log IP address for login failu o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o conf/125041 [patch] periodic(8) new file: /etc/periodic/security/8 o ports/125012 bf problems in math/ldouble for 128bit long double on i38 o kern/124989 [mfi] mfi driver error - unexpected sense o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o gnu/124970 gdb(1): gdb crashes after setting hardware watchpoint o kern/124969 geom gvinum(8): gvinum raid5 plex does not detect missing s o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC o kern/124881 [devfs] [patch] [request] Add possibility to check whi o stand/124860 standards flockfile(3) doesn't work when the memory has been exh o bin/124825 mlaier tcpdump(8) does not support pfsync(4) data o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o ports/124765 ume sysutils/gkrellm2 shows wrong number of users in proc o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/124753 wireless [ieee80211] net80211 discards power-save queue packets o conf/124747 rc [patch] savecore can't create dump from encrypted swap a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o usb/124708 usb [panic] Kernel panic on USB KVM reattach o kern/124670 [ata] large file operation on RAID cause many GEOM err o i386/124633 i386 [boot] [panic] 7.0 does not boot from CD s misc/124541 cperciva portsnap: portsnap3.FreeBSD.org mirror on error for ov f i386/124516 xen [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o docs/124470 remko incomplete (and out of sync) glabel(8) manpage p docs/124468 remko sticky(8) should be sticky(7) o misc/124431 bde [build] [patch] minor revision of BDECFLAGS o bin/124409 fsck(8) requires exact entry for mountpoints when exec p bin/124392 [patch] bootparamd(8) does not work on arm o kern/124389 [build] make installkernel fails with KMODDIR iff $(KM p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile o ports/124375 apache security/heimdal: www/mod_auth_kerb doesn't compile ag o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o bin/124320 pam_radius(8): Login with ssh using pam_radius and a t o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o docs/124253 sam Broken command in the handbook for configuring a wirel o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net s kern/124174 [panic] Panic after installing audio/oss on an Asus A8 o kern/124160 net [libc] connect(2) function loops indefinitely o conf/124151 winbind is ignored in compat mode in nsswitch.conf(5) o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o i386/124124 i386 [boot] [panic] Page fault while booting livefs iso of o bin/124119 edwin locate(1) doesn't check /etc/locate.rc for the default o bin/124084 find(1): find -execdir does not prepend ./ to filename p bin/124052 [patch] adduser(8) throws errors when -f input file in o bin/124049 ntpd(8): ntpd is crashing at startup o kern/124021 net [ip6] [panic] page fault in nd6_output() o i386/123990 i386 [boot] BTX halted on Thinkpad x60s o i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i p bin/123977 Segmentation fault in dialog(1) with ghostscript-gpl-n o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/123939 fs [msdosfs] corrupts new files o bin/123932 amd(8) core dumps while load high a kern/123904 [ipmi] ipmi(4) reports negative temperature values on o kern/123892 net [tap] [patch] No buffer space available o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/123858 net [stf] [patch] stf not usable behind a NAT o kern/123855 philip moused(8): spontaneous mouse events o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 o kern/123758 net [panic] panic while restarting net/freenet6 o kern/123755 dfr [nfs] fstat() fails to return ESTALE with rename()d fi o kern/123735 [panic] 7.0-STABLE kernel panic "AP #1 (PHY# 1) failed o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o kern/123674 scsi [ahc] ahc driver dumping o bin/123633 net ifconfig(8) doesn't set inet and ether address in one f kern/123617 andre [tcp] breaking connection when client downloading file o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o kern/123603 andre [tcp] tcp_do_segment and Received duplicate SYN o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o ports/123570 itetcu audio/cpige version 1.5 coredumps if new .conf entries f sparc/123566 fs [zfs] zpool import issue: EOVERFLOW o kern/123559 net [iwi] iwi periodically disassociates/associates [regre o java/123555 java linux-sun-jdk15, linux-sun-jdk16 produce a coredump o misc/123554 [build] buildworld with TARGET_ARCH=i386 fails on amd6 o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o kern/123520 scsi [ahd] unable to boot from net while using ahd f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 a ports/123468 itetcu mail/postgrey: information leak, privacy issue o bin/123465 net [ip6] route(8): route add -inet6 -interfac o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o misc/123452 brd trustedbsd-audit email list not archiving f bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c s bin/123304 sysinstall sysinstall(8): missing sensible and user friendly prog o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o kern/123160 net [ip] Panic and reboot at sysctl kern.polling.enable=0 o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/123122 geom [geom] GEOM / gjournal kernel lock o conf/123119 rc [patch] rc script for ipfw does not handle IPv6 o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o threa/122923 threads 'nice' does not prevent background process from steali o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t a i386/122887 acpi [panic] [atkbdc] 7.0-RELEASE on IBM HS20 panics immed o conf/122883 [patch] login class for ukrainian users accounts f kern/122880 vwe [hang] Kernel lock-up during 7.0 installation disc boo o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/122813 usb [udbp] [request] udbp driver should be removed in favo f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122685 net It is not visible passing packets in tcpdump(1) a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/122588 [lor] 4 Lock Order Reversal o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o ports/122524 demon www/links1 uses 7-bit us-ascii codepage only when usin o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o java/122513 java native JDKs unbuildable with Linux ones f kern/122493 gavin [boot] BTX Halted - Cause is Promise Fastrack SATA PCI o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o conf/122445 Unable to override EDITOR in /etc/profile due to defau o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, o conf/122170 rc [patch] [request] New feature: notify admin via page o s kern/122145 sam [build] error while compiling with device ath_rate_amr p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint o usb/122119 usb [umass] umass device causes creation of daX but not da o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab o kern/122067 geom [geom] [panic] Geom crashed during boot f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/122058 jfv [em] [panic] Panic on em1: taskq f docs/122052 doc minor update on handbook section 20.7.1 o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o bin/122043 [patch] du(1) does not support byte-count-based report p kern/122038 gleb [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc o conf/122037 [patch] add rsync example for inetd.conf o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o docs/121952 doc Handbook chapter on Network Address Translation wrong o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg p kern/121907 [request] output to console can obscure other messages o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl s kern/121807 ipfw [request] TCP and UDP port_table in ipfw s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o ports/121745 vd misc/ossp-uuid - PostgreSQL contrib ossp-uuid crashes o usb/121734 usb [ugen] ugen HP1022 printer device not working since up p docs/121721 trhodes telnetd(8) not describing -X authentication types o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k f java/121692 java java/jdk16: Java 1.5 1.5.0.14p8 crashes in RMI TCP Con o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o docs/121585 doc [handbook] Wrong multicast specification o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug a docs/121565 brooks dhcp-options(5) manpage incorrectly formatted omitting o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport o kern/121555 net [panic] Fatal trap 12: current process = 12 (swi1: net s docs/121541 doc [request] no man pages for wlan_scan_ap o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o bin/121503 sysinstall sysinstall(8): 7.0 upgrade doesn't let me mount all of s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup o docs/121440 keramida rc(8) and rcorder(8) unclear about PROVIDE keyword bei o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o ports/121416 glewis java/jdk15 can't build if BIN environment variable is o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already f kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati o threa/121336 threads lang/neko threading ok on UP, broken on SMP (FreeBSD 7 o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 o kern/121298 jfv [em] [panic] Fatal trap 12: page fault while in kernel o usb/121275 usb [boot] [panic] FreeBSD fails to boot with usb legacy s o kern/121274 darrenr [panic] Panic in ether_input() with different NIC's. o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o kern/121181 net [panic] Fatal trap 3: breakpoint instruction fault whi o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a o usb/121169 usb [umass] Issues with usb mp3 player o bin/121165 pkg_add(1) prints a weird message: PKG_TMPDIR environm p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o i386/121148 gavin [panic] Repeatable sysctl crash (Fatal Trap 12) with A a bin/121124 sysinstall sysinstall(8): FreeBSD 6.3 installation deletes MBR pa o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o conf/121064 [patch] Use ASCII characters for box/line characters i o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o bin/121059 ntpd(8) doesn't sync with servers after dhclient chang o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o ports/120947 x11 x11/xsm ignores system.xsm and .xsmstartup s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/120749 [request] Suggest upping the default kern.ps_arg_cache o kern/120733 cperciva libbsm.so.1 missing after upgrading to 6.3-RELEASE o usb/120729 usb [panic] fault while in kernel mode with connecting USB f kern/120717 [ata] boot problem when recognizing ata1 a misc/120608 gmirror(8) command set on livecd is minimal [regressio o kern/120566 net [request]: ifconfig(8) make order of arguments more fr o bin/120552 cperciva freebsd-update(8): freebsd-update - -r should check ex o docs/120539 doc Inconsistent ipfw's man page o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120487 scsi [sg] scsi_sg incompatible with scanners o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o docs/120456 wireless ath(4) needs to specify requirement on wlan_scan_sta o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. f ports/120372 eadler java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' o kern/120344 rwatson [panic] FreeBSD 6.3-STABLE panics on high loaded web s p kern/120343 ups [panic] Reproducible Crash - network interface related o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o conf/120263 [patch] 800.loginfail misses relevant security informa p bin/120256 gavin [patch] ftp(1): ftp -u URL/ returns a -1 o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/120177 [ata] ATA DMA modes don't work on CF cards o java/120146 java java/jdk15: netbeans 6.0 causes java core dump on amd6 p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va p kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o ports/120101 cy security/krb5 utilities link against wrong libcom_err o bin/120095 gdb(1) fails to catch signals when threading is involv o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/120066 [geli] geli boot password input fail when using serial o bin/120064 routed(8) marks 802.11 interfaces broken o bin/120060 net routed(8) deletes link-level routes in the presence of o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119891 slow halt, reboot when remote network shares which doe o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying o bin/119801 dhclient(8): dhclient changes alias to address o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w o kern/119696 [irq] [ral] ral device causes massive interrupt storm o bin/119695 pw(8) does not interact with nscd(8) o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch s bin/119645 [request] mount_ntfs(8) -- files permissions mask is i o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o kern/119618 [fdc] Double Density Disks do not work correctly o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o i386/119574 bde [i386] 7.0-RC1 times out in calibrate_clocks() [regres o kern/119572 firewire [sbp] PowerBook not accessable when in target mode o conf/119550 [ppp] ppp not starting during bootup. o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o bin/119524 cron(8) suddenly stops working, not crash f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119432 net [arp] route add -host -iface causes arp e o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose f bin/119354 csup(1) in free(): error: chunk is already free p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 s bin/119196 des fetch(1): [request] parallel download from multiple se o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/119068 dd(1) yields a bogus error when input file is to small o java/119063 java An unexpected error has been detected by Java Runtime o java/118956 java eclipse and netbeans break on diablo-jdk15 o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118912 fs [2tb] disk sizing/geometry problem with large array o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o bin/118759 cvs(1): cvs -R doesn't handle non-existent tags o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118734 xen [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o docs/118693 jfv Update for "em" man page for RELENG_7 o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118571 [boot] [request] fix BTX issues when booting FreeBSD 7 o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o bin/118501 Sending SIGINT to cvs(1) gives segmentation fault o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o bin/118449 randi sysinstall(8): Installer failing dns lookups o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( o gnu/118415 nm -D fails if a file has no symbols p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se o docs/118332 arundel man page for top(1) does not describe STATE column wai o bin/118325 rc [patch] [request] new periodic script to test statuses o bin/118318 mohans [nfs] NFS server hangs under special circumstances p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib p kern/118304 kib freebsd 7 delivers unanticipated signal for page fault s ports/118301 python [patch] devel/py-setuptools easy-install.pth contents o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o i386/118285 [i386] Segmentation fault in reloc_non_plt. p bin/118260 bin: more informative error message for install(1) o conf/118255 rc savecore never finding kernel core dumps (rcorder prob o bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o bin/118248 gavin newsyslog(8) does not obey -s (nosignal) flag s kern/118230 acm [linux] games/linux-quake4 fails to start o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o docs/118214 doc close(2) error returns incomplete o bin/118207 burncd(8) gives I/O error writing CD on Pioneer DVDR-1 o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft f kern/118161 [atapicam] failure message from ATAPI CDROM in the boo s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/118126 fs [nfs] [patch] Poor NFS server write performance s kern/118124 [request] HZ value on slow computers should by dynamic o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t a bin/118071 darrenr ipnat(8): ipnat -s expired counter does not update [re o bin/118069 [patch] camcontrol(8) should be able to leave device s o conf/118047 Move /etc/printcap to /usr/share/examples/ o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o docs/118020 doc ipfilter(4): man pages query for man 4 ipfilter return p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a kern/117987 rwatson read(2) on directories might leak filenames of deleted o kern/117972 [ata] SATA DLT V4 not recognized properly o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o kern/117954 fs [ufs] dirhash on very large directories blocks the mac o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o bin/117922 ftpd(8): remote ftp user possible leave chrooted envir o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o usb/117893 usb [umass] Lacie USB DVD writing failing o kern/117867 [heimdal] kinit generates bad tickets on multihomed IP s bin/117830 [patch] who(1) no longer displays entries for folk log o bin/117812 passwd(1): incapable of changing LDAP passowrds using f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o usb/117712 [reboot] unexpected reboot after mount USB flash drive f kern/117711 [rpc] rpcbind binds to all interfaces on random ports o kern/117688 [mpt] mpt disk timeout and hang o bin/117687 [patch] fstab(5) format cannot handle spaces f kern/117655 sam [ral] ral%d: device timeout when running as an access o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o bin/117520 [patch] csup(1) not-really-equivalent to cvsup s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o gnu/117481 sort(1) incorrect numeric sort in very specific cases p kern/117448 glebius [carp] 6.2 kernel crash [regression] o kern/117443 [ata] [hang] system hang with ataidle o kern/117423 net [vlan] Duplicate IP on different interfaces o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/117420 jeff [sched_ule] round off in sched_balance_pair() o kern/117374 vidcontrol(1) videomode: Operation not supported by de o kern/117348 [libedit] Loading history file sometimes fails in libe o bin/117339 net [patch] route(8): loading routing management commands o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o usb/117313 usb [umass] [panic] panic on usb camera insertion p bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap o kern/117242 [syscons] [hang] console hangs when powerd is adaptive p bin/117214 bz ipfw(8) fwd with IPv6 treats input as IPv4 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov o kern/117188 [geli] System crashes/reboots on access to file on GEL p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o kern/117043 jfv [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM a conf/117027 yar rc.subr doesnt deal with perl daemons p docs/117013 trhodes mount_smbfs(8) doesn't document -U (username) argument p kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o misc/116946 holographic shell breaks live CD shell o kern/116935 [ata] Intermittent error with Promise PDC40718 o conf/116931 fs lack of fsck_cd9660 prevents mounting iso images with p stand/116826 jilles [patch] sh(1) support for POSIX character classes o bin/116784 mount_msdosfs(8): mount_msdosfs -L ru_RU.KOI8-R -W koi o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o threa/116668 threads can no longer use jdk15 with libthr on -stable SMP o java/116667 java linux-sun-javac1.4 hangs on SMP o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o docs/116588 remko No IPFW tables or dummynet in Handbook o kern/116583 fs [ffs] [hang] System freezes for short time when using o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o kern/116515 rwatson [ntfs] NTFS mount does not check that user has permiss o stand/116477 standards rm(1): rm behaves unexpectedly when using -r and relat s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o bin/116413 standards incorrect getconf(1) handling of unsigned constants gi a kern/116335 andre [tcp] Excessive TCP window updates s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 s ports/116222 portmgr files installed with the wrong UID/GID via make instal o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116185 net [iwi] if_iwi driver leads system to reboot p threa/116181 attilio /dev/io-related io access permissions are not propagat o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o kern/116133 Recursive lock panic when w_mtx falls into DELAY o docs/116116 eadler mktemp (3) re/move note o ports/116082 java java/linux-sun-jdk16 jconsole is unable to connect to o stand/116081 standards make does not work with the directive sinclude o docs/116080 doc PREFIX is documented, but not the more important LOCAL o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/116005 des [libfetch] libfetch accepts invalid URLs o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o ports/115957 itetcu Questionable ownership and security on dspam port o bin/115951 [tun] pppoed(8): tun not closed after client abruptly f kern/115947 acpi [hang] Dell poweredge 860 hangs when stressed and ACPI o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115930 jfv [em] Dell nic enumeration problem s conf/115923 [request] rc.subr - logger should be using priorities o kern/115856 geom [geli] ZFS thought it was degraded when it should have s docs/115716 jhb remove cue from supported hardware list p kern/115695 [crypto] When "device padlock" defined first ssh to ma o kern/115651 vanhu Racoon(ipsec-tools) enters sbwait state or 100% CPU ut o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/115526 [libalias] libalias doesn't free memory o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o kern/115479 [ata] [request] ASUS P5K SE need more support p bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o kern/115253 [keyboard] Wireless keyboard not working at boot o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o threa/115211 threads pthread_atfork misbehaves in initial thread s kern/115202 [request] memory error diagnostic o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 p docs/115065 doc [patch] sync ps.1 with p_flag and keywords o bin/115054 ntpd(8): NTP errors out on startup but restart of NTP o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/114970 Wrong system time (last) when machine is crashed due t o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/114928 green_saver does not switch DVI monitor power off o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/114808 [panic] Kernel panic when use USB SpeedTouch ADSL mode o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s ports/114725 portmgr bsd.port.mk - No dependencies in the package if there o usb/114682 usb [umass] generic USB media-card reader unusable o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo f kern/114667 [umass] UMASS device error log problem f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs s kern/114578 [libc] wide character printing using swprintf(dst, n, o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c f i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114550 [cbb] Cardbus WiFi card activation problem o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s bin/114392 [request] add default ssl definitions for openssl(1) o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references o kern/114213 [ata] optical drive not detected in the 6.x series of o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha p kern/114057 jh [devfs] devfs symlink over device doesn't work o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o usb/113977 gavin [request] Need a way to set mode of USB disk's write c f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat o bin/113912 tunefs(8): silent failure setting glabel on boot parti o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o bin/113850 sshd(8): unable to debug sshd with strace/truss/gdb o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o kern/113837 geom [geom] unable to access 1024 sector size storage o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o kern/113785 firewire [firewire] dropouts when playing DV on firewire o ports/113751 java java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 o bin/113669 ftpchroot(5) / ftpusers(5) doesn't do globbing o conf/113552 [request] ntpd(8) driftfile default location inconsist o bin/113518 [patch] make(1): Prevent execution when command is a c o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o kern/113419 geom [geom] geom fox multipathing not failing back o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o gnu/113338 gcc(1): GNU gcc __thread as class member o kern/113256 [headers] _limits.h for some CPU has wrong definitions o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o kern/113098 [amr] Cannot read from amrd while under heavy load o bin/113074 [patch] ppp(8): include for strcasecmp(3) s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl s ports/112818 ports-mgmt/portupgrade -a fails with database error o docs/112804 doc groff(1) command should be called to explicitly use "p o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file o bin/112757 sysinstall sysinstall(8): sysinstall(8): in the FDISK tool we can o ports/112745 portmgr bsd.port.mk: Add a package-smart target o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 o docs/112682 doc Handbook GEOM_GPT explanation does not provide accurat o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b a bin/112613 vwe ls(1): 'ls -l' is very slow or doesn't work at all o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o o docs/112579 mlaier [request] No ipv6 related pf examples in /usr/share/ex o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/112477 marius [ofw] [patch] Add support to set the node and type on o conf/112441 deprecated lines in /etc/hosts.allow o bin/112408 mp [regression] tcsh(1): tcsh causes gdb to hang (regress o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112370 getfacl(1): incorrect display group name by ``getfacl' o bin/112336 [patch] install(1): install -S (safe copy) with -C or p bin/112288 gavin ftp(1): /usr/src/usr.bin/ftp/config.h is redundant and s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o kern/112256 [hang] SC_PIXEL_MODE hangs system s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/112053 [hang] deadlock with almost full filesystem and rtorre o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111843 fs [msdosfs] Long Names of files are incorrectly created s www/111791 www FreeBSD website messes up while using "links" browser o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/111766 [panic] "panic: ffs_blkfree: freeing free block" durin o conf/111557 [gre] link1 flag doesn't work as intended when specifi o kern/111537 net [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via o kern/111457 net [ral] ral(4) freeze o docs/111425 doc Missing chunks of text in historical manpages o ports/111399 doceng print/ghostscript8 (was ghostscript-gpl): WITH_FT_BRID a ports/111356 csjp net/bpfstat: man bpfstat has no descption for the flag o docs/111265 doc [request] Clarify how to set common shell variables p kern/111260 csjp [hang] FreeBSD kernel dead lock and a solution o www/111228 bugmeister [request] Usability improvements for bug search query o kern/111185 console color depth set to 0 at boot causes flat scree o kern/111162 [nfs] nfs_getpages does not restart interrupted system o docs/111147 doc hostapd.conf is not documented s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/111077 date(1): /bin/date -j -f "%b %Y" "Feb 2007" +%m return o ports/111066 secteam ports-mgmt/portaudit does not skip ports fixed listed s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta s kern/111001 [hang] can't install 6.2-RELEASE-amd64 (SuperMicro PDS o docs/110999 doc carp(4) should document unsupported interface types o kern/110995 [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o gnu/110971 gdb(1) crashes f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. s ports/110826 dinoex port graphics/tiff: tiff2pdf tints images with wrong c o docs/110692 doc wi(4) man page doesn't say WPA is not supported a kern/110662 sam [safe] safenet driver causes kernel panic o threa/110636 threads [request] gdb(1): using gdb with multi thread applicat o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o threa/110306 threads apache 2.0 segmentation violation when calling gethost o kern/110284 net [if_ethersubr] Invalid Assumption in SIOCSIFADDR in et o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110151 sysinstall sysinstall(8): sysinstall(8) don't respects install ro o bin/110146 joerg [patch] [request] Allow arbitrary gdb(1) options to by o bin/110068 [patch] rewrite of mdmfs(8) in shell o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit p docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled o docs/109981 doc No manual entry for post-grohtml o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o docs/109977 doc No manual entry for ksu p docs/109975 trhodes No manual entry for elf2aout o docs/109973 doc No manual entry for c++filt o docs/109972 doc No manual entry for zless/bzless o bin/109911 mountd(8) does not accept identical host sets on diffe o bin/109827 mount_smbfs(8) didn't handle password authentication c o kern/109762 [hang] deadlock in g_down -> ahd_action -> contigmallo o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109569 mail(1) command not parsing sendmail parameters o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac o conf/109354 [request] /etc/periodic/daily/110.clean-tmps does not o bin/109334 portmgr pkg_add(1) using chroot exits with error if wrong dire o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd o kern/109161 philip [psm] synaptic touchpad doesn't work o docs/109105 trhodes security.mac.bsdextended.firstmatch_enabled is not ena o docs/109104 trhodes man mac_bsdextended is not consistent with systl outpu o bin/109102 csjp sysctl security.mac.bsdextended is not consistent with o kern/109024 fs [msdosfs] [iconv] mount_msdosfs: msdosfs_iconv: Operat o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) a docs/108980 doc list of missing man pages o bin/108895 net pppd(8): PPPoE dead connections on 6.2 [regression] o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o conf/108589 rc rtsol(8) fails due to default ipfw rules o bin/108462 [request] pkg_info(1) shouldn't have a hard width limi s kern/108442 [request] UTF-8 support for console o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o bin/108191 sysinstall sysinstall(8): Disklabel editor help text (by F1 key) s ports/108153 portmgr ports extraction with package uid/gid and quota proble o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o bin/108118 [libc] files should not cache their EOF status o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o bin/108020 comsat(8) does not verify return values of getpwnam an o kern/107944 net [wi] [patch] Forget to unlock mutex-locks f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o bin/107830 sysinstall sysinstall(8): Change Units (Z) in fdisk doesn't work o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found s kern/107759 Unable to load a kernel after clean install o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 f kern/107446 gavin problems with usb and fw disks o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device o ports/107354 edwin net/icmpinfo: icmpinfo -vvv does not recocnize any ICM s www/107291 murray Keyboard accessibility sabotaged by www/share/sgml/hea p kern/107285 [panic] freeze and reboot by mounting CDROM volume twi f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent s sparc/107087 sparc64 [hang] system is hung during boot from CD o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n f kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o kern/106786 No reboot with FreeBSD and Mylex Acceleraid 352 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening s ports/106616 portmgr bsd.port.mk: Default file modes set incorrect for non- f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/106432 [ata] Record of disks (DVD-R) through the k3b program o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o bin/106355 [headers] macros in stdio.h non-portable (e.g., C++ :: o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/106275 [hifn] Hifn 7955 on Soekris Engineering vpn1401 return o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o docs/106135 doc [request] articles/vinum needs to be updated o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p p docs/105997 trhodes sys/kern/sys_pipe.c refer to tuning(7), but there is n o kern/105945 net Address can disappear from network interface s kern/105943 net Network stack may modify read-only mbuf chain copies o bin/105925 net problems with ifconfig(8) and vlan(4) [regression] o bin/105860 top(1) user ID misalignment in mixer username/uid mode o conf/105689 rc [ppp] [request] syslogd starts too late at boot o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105608 doc fdc(4) debugging description staled o kern/105579 [libalias] dcc resume over natd in 6.x o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o docs/105456 keramida [patch] overhaul of the security chapter (14) o kern/105368 [geli] geli passphrase prompt malfunctioning when moun f kern/105348 wireless [ath] ath device stopps TX o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o kern/105241 [nfs] problem with Linux NFS server up/down combined w o gnu/105221 grep(1): `grep -w -F ""` issue o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last s kern/104950 [ata] [request] no support for SATA controller Initio o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o ports/104910 nobutaka portsdb -Uu fails on building lsdb when EMACS_NAME is o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104809 cron(8): incorrect cron behavior with mday field = "*/ o kern/104751 net [netgraph] kernel panic, when getting info about my tr o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w o java/104744 glewis java/berkeley-db installation error p stand/104743 jilles [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/104675 [bktr] METEORSINPUT seemingly not setting input f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and o kern/104486 TI1131 Cardbus Bridge cannot detect card insertion on o bin/104432 jilles sh(1): remove undocumented "exp" and "let" builtins o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems a bin/104092 keramida [patch] iostat(8): missing blanks in iostat output o threa/103975 threads Implicit loading/unloading of libpthread.so may crash o www/103938 brd cvs-src archive does not rebuild since 12 Mar 2006 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o bin/103890 w(1) doesn't see sessreg'd entries in utmp o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra a bin/103873 csjp login(1) SEGFAULT on unsuccessful login o bin/103845 sha256(1): sha256 /dev/acd0 returns immediately o conf/103794 adding other login class to login.conf in case one is o bin/103762 ppp(8): some tun interfaces with a mtu of 1500 while i o ports/103751 nork databases/linux-oracle-instantclient-sqlplus: ldconfig o bin/103712 amd(8): Automounter is apparently not passing flags to o bin/103682 [patch] [request] nfsstat(1) should use %u instead of s kern/103578 [ums] ums does not recognize mouse buttons s www/103522 www Search interface oddity o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/103283 pf pfsync fails to sucessfully transfer some sessions o kern/103281 pf pfsync reports bulk update failures o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/103253 thompsa inconsistent behaviour in arp reply of a bridge o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/103191 net Unpredictable reboot o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/103022 cperciva [headers] /usr/include/crypto/rijndael.h is wrong o ports/102946 secteam [patch] ports-mgmt/portaudit o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o bin/102515 [libc] fsck_ufs crashes if no console at all o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o bin/102498 sysinstall sysinstall(8): Cursor doesn't track sysinstall hilight o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o bin/102232 gad Defects in -O option to ps(1) o bin/102205 kdc(8): login failure: ssh + gssapi + dual stacks + pa o bin/102162 [patch] tftpd(8): Limit port range for tftpd f usb/102066 gavin [ukbd] usb keyboard and multimedia keys don't work o kern/102035 net [plip] plip networking disables parallel port printing o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o bin/101921 [request] security.bsd.see_other_uids for further prog o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker a bin/101762 sysinstall sysinstall(8) does not obey /usr/ports symlink while i o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o docs/101271 remko serial console documentation implies kernel rebuild re o kern/101226 jfv [em] Access to IPMI module is lost when the em driver f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o kern/100974 rwatson [panic] sorele. FreeBSD 6.1 RELEASE i386 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup s bin/100805 yar WITHOUT_INET6 is ignored by many src/ components o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/100709 net [libc] getaddrinfo(3) should return TTL info o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o conf/100616 [patch] syslog.conf: lines after exclamation point ign o kern/100519 net [netisr] suggestion to fix suboptimal network polling a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100442 obrien ftpd(8): lukemftpd core dumps on anonymous login o bin/100436 kensmith sysinstall(8): live CD fixit mount does not find mount o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam p docs/100242 trhodes sysctl(3) description of KERN_PROC is not correct anym o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o docs/100196 doc man login.conf does explain not "unlimited" s kern/100170 [request] Support login class in ldap directory o misc/100133 [boot] keyhit function in boot2.c that falls into an i o bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ s bin/99973 yar systat(1): systat -ifstat traffic counter overflow o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o bin/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o bin/99662 rpc.rquotad(8): quota information leak while rpc.rquot o misc/99643 request to remove src/tools/tools/portsinfo because it o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid f kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o docs/99506 doc FreeBSD Handbook addition: IPv6 Server Settings o kern/99485 Disk IO Causes multimedia/mplayer To Drop Frames o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar s kern/99421 [request] Option Globetrotter Fusion card not recogniz a docs/99356 ru man page of sendmsg(2) does not include EINVAL o conf/99328 [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o www/99305 bugmeister [request] send-pr.html is frustrating/broken o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l a www/99184 wosch Viewing HP-UX manpages with http://www.freebsd.org/cgi o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o docs/98974 doc Missing tunables in loader(8) manpage o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the s www/98798 gjb Our statistics page is out of date o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98597 net [inet6] Bug in FreeBSD 6.1 IPv6 link-local DAD procedu o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o bin/98468 newsyslog(8): Value over 99 in newsyslog.conf count fi o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled p misc/98383 yar [request] include the mt command in the rescue CD o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 s bin/98220 wpa_supplicant(8) operation does not match documentati o bin/98218 net wpa_supplicant(8) blacklist not working s kern/98162 adrian [request] AcerHK driver port needed for enabling WiFi o docs/98115 doc Missing parts after rendering handbook to RTF format o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to a kern/97921 rwatson [socket] close() socket deadlocks blocked threads o kern/97665 [sio] hang in sio driver o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/97505 [procfs] file entry of procfs points to "unknown" s bin/97498 fs [request] newfs(8) has no option to clear the first 12 o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97306 net [netgraph] NG_L2TP locks after connection with failed s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o usb/97175 usb [umass] [hang] USB cardreader hangs system o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97108 sysinstall sysinstall(8): write failure on transfer (wrote -1 byt o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o conf/97014 net [gif] gifconfig_gif? in rc.conf does not recognize IPv o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96538 multimedia [sound] emu10k1-driver inverts channels o usb/96457 usb [umass] [panic] fatback on umass = reboot o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync o docs/96207 doc Comments of a sockaddr_un structure could confuse one o kern/96171 [ata] burncd(8): (ATA driver) fails to write in vcd mo s usb/96120 usb [ums] [request] USB mouse not always detected o conf/96094 [gif] startup scripts do not configure gif interfaces p conf/96015 jilles uncommenting the msgs invocation in /etc/profile can f o gnu/95936 egrep(1) misparses multiline parenthetical grouping o bin/95698 philip [patch] moused(8): Software control of sysmouse o gnu/95691 GDB segfaults on my programme in both FreeBSD 6 and 5 s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o kern/95559 RELENG_6: write(2) fails with EPERM on TCP socket unde o kern/95532 [gif] if_gif has artificial limitations o kern/95519 net [ral] ral0 could not map mbuf o kern/95459 Rebooting the system while rebuilding RAID (Intel Matr o docs/95408 remko install over serial console does not work as documente o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95267 net packet drops periodically appear o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o usb/95037 usb [umass] USB disk not recognized on hot-plug. o bin/95002 [libc] hash db source code has a bug which prevents us o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o ports/94935 cy security/aide: propose an AIDE_CONF knob for make.conf o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o bin/94810 fs fsck(8) incorrectly reports 'file system marked clean' o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o kern/94733 fs [smbfs] smbfs may cause double unlock p stand/94729 gnn [libc] fcntl() throws undocumented ENOTTY o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o gnu/94695 bugmeister send-pr.el is missing from send-pr distribution o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/94632 geom [geom] Kernel output resets input while GELI asks for o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind s www/94423 danger [patch] XML'ified release todo list o kern/94393 [ar] PseudoRAID loses track of the master disk o usb/94384 usb [panic] kernel panic with usb2 hardware o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests s kern/94182 [altq] [request] altq support for vlan driver p bin/94181 ume portsnap(8) should remove the trailing dot from the se p bin/94180 ume portsnap(8) does not handle HTTP_PROXY_AUTH correctly o kern/94166 [boot] btx halted with a flashcard plugged s bin/94159 [request] ipsecctl ported from openbsd o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94051 login(1): IP network in login.access ignored unless DN o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o conf/93899 mount_smbfs can't load libiconv.so during boot up o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o kern/93825 pf [pf] pf reply-to doesn't work o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d a kern/93790 cperciva cpufreq missing frequencies o i386/93787 gavin [hang] freebsd 6.0 hangs on atkbd0 on Proliant 1850r s o docs/93785 obrien The man page for ftpchroot(5)/ftpusers(5) contradicts o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/93771 [ar] [panic] atacontrol status ar1 causes panic o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may p kern/93685 jilles [pipe] select on pipe write fails from '0' end o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93629 GNU sort(1) tool dumps core within non-regular locale o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o kern/93381 reboot(8) works but 'reboot -n' hangs f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo p kern/93331 [kernel] [patch] broken asm in kernel o bin/93317 ld-elf.so doesn't translate unresolved weak symbol int o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o ports/93279 skv devel/cvsmonitor: not useable (/dev/mem: Permission de o bin/93275 sysinstall sysinstall(8): Failure to install after restarting ins o kern/93197 [libc] strptime(3) succeeds on formats it should fail o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o bin/92866 portmgr pkg_add(1) should return a different result code if pa o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92716 [hifn] [hang] hifn driver hangs after a short while wh o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o docs/92626 doc jail manpage should mention disabling some periodic sc f kern/92552 yongari A serious bug in most network drivers from 5.X to 6.X o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o kern/92518 [hptmv] Intense disk activity (large FS newfs and/or m o kern/92512 multimedia [sound] distorted mono output with emu10k1 s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o kern/92104 des [panic] kernel panic near readlink syscall o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o bin/91993 sam dhclient(8) option missing, script incompability o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg f usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o conf/91732 [patch] 800.loginfail: fix log message grep expression o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin o bin/91606 sha1(1): sha1 /dev is suspended o kern/91594 acpi [acpi] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/ o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work p www/91539 gjb FreeBSD web site renders very badly o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o bin/91536 burncd(8): burncd -t feature strangeness o docs/91506 doc ndis(4) man page should be more specific about support f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o ports/91393 trhodes misc/window changes console cursor shape to blink o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/91311 net [aue] aue interface hanging o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o kern/91134 fs [smbfs] [patch] Preserve access and modification time a conf/91106 versus [locale] date definitions in pl_PL locale are wrong f bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90656 sysinstall sysinstall(8): 6.0-RELEASE (i386) cannot be installed o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o bin/90524 reset(1) doesn't fully restore terminal state o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd s bin/90367 [request] libmap.conf needs exclusivity support o bin/90311 [patch] add "eject" to mt(1) o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o bin/90266 philip bsnmpd(1) returns bad data during a snmpwalk of the en o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 o bin/90093 geom fdisk(8) incapable of altering in-core geometry s kern/90086 net [hang] 5.4p8 on supermicro P8SCT hangs during boot if s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o bin/89959 brooks dhclient(8): dhcp: ip length 314 disagrees with bytes o usb/89954 usb [umass] [panic] USB Disk driver race condition? o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks a conf/89589 secteam virecover follows hardlinks, possibly exposing sensiti o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o docs/89492 attilio vfs doc: some VOP_*(9) manual pages are outdated with o ports/89441 hrs TeX support in FreeBSD is problematic. o bin/89403 fetch(1) doesn't honour authentication credentials whe o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr o kern/89166 [mouse] jumpy mouse movement s usb/89003 usb [request] LaCie Firewire drive not properly supported o conf/88913 rc [patch] wrapper support for rc.subr o bin/88826 randi sysinstall(8): sysinstall infinity wait for da0 o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( o kern/88555 fs [panic] ffs_blkfree: freeing free frag on AMD 64 a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o kern/88518 rodrigc cannot mount root rw at boot o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88450 andre SYN+ACK reports strange size of window o usb/88408 usb [axe] axe0 read PHY failed o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 fs [patch] newfs(8): introduce -A flag for newfs to enabl o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o kern/87859 fs [smbfs] System reboot while umount smbfs. o docs/87857 doc ifconfig(8) wireless options order matters o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup p bin/87726 dfr gssapi.h is not c++ aware s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo s bin/87529 [request] pw(8): "pw lock", "pw unlock" should support o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/87515 Splash screen fails to load on boot o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so f kern/87368 bde [msdosfs] fat32 is very slow f usb/87224 usb [usb] Cannot mount USB Zip750 o www/87119 hrs [patch] encode copyright and such symbolically o kern/87074 mlaier pf does not log dropped packets when max-* stateful tr o bin/87022 telnet(1) hang in ptcout o kern/87010 pjd Reading kernel memory & pagefault under non-root o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s s bin/86859 sysinstall sysinstall(8): Installer should ask about Linux earlie o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the a kern/86752 mlaier [pf] pf does not use default timeouts when reloading c o bin/86665 randi sysinstall(8): sysinstall binary upgrade clobbers name o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o kern/86619 emulation [linux] linux emulator interacts oddly with cp o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o bin/86485 eadler [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o bin/86454 sysinstall sysinstall(8): sysinstall terminates with signal 10 if o kern/86427 net [lor] Deadlock with FASTIPSEC and nat o bin/86405 more(1) segmentation fault o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur o usb/86298 usb [mouse] Known good USB mouse won't work with correct s o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o bin/86012 kpasswd(1) fails if one of the KDC are unreachable. o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci o gnu/85824 obrien gas crashes when assembling this file o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/85809 darrenr panic: mutex "ipf state entry" already initialized o kern/85780 net 'panic: bogus refcnt 0' in routing/ipv6 o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o bin/85712 uncompress(1) program emits bogus "overwrite?" prompt s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou f i386/85656 jhb [i386] [patch] expose more i386 specific CPU informati f i386/85655 jhb [i386] [patch] expose cpu info for i386 systems o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o bin/85494 fs fsck_ffs: unchecked use of cg_inosused macro etc. o bin/85445 net ifconfig(8): deprecated keyword to ifconfig inoperativ p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85123 [iir] Improper serialization in iir_ioctl() allows iir o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device o bin/85011 restore(8) on 5.4 will not read Solaris-sparc dumps, w o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o bin/78131 geom gbde(8) "destroy" not working. o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/78021 sem_open(3) doesn't mention fnctl.h include requiremen o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo a bin/77651 [patch] init(8) can lose shutdown related signals o kern/77341 net [ip6] problems with IPV6 implementation f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o bin/77261 login(1) doesn't chdir into a group-protected home dir s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/77156 FreeBSD does not redirect packets on proper interface. o bin/77089 natd(8) ignores -u with passive FTP o bin/77001 randi sysinstall(8): sysinstall binary upgrade clobbers /etc o kern/76972 64-bit integer overflow computing user cpu time in cal o bin/76756 des function pw_equal in pw_util.c does not test pw_passwd o bin/76736 dwmalone syslogd(8) pipelines losing messages o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi p bin/76697 simon newsyslog(8) keeps one more archive files than documen s threa/76694 threads fork cause hang in dup()/close() function in child (-l o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o bin/76590 adding -mapall in nfs exports requires reboot o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) o kern/76504 silby Keep-alives doesn't work on half-closed sockets. s conf/76491 Addition into /etc/security few new functions o kern/76398 [libc] stdio can lose data in the presence of signals f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 o bin/76362 [patch] sys directory link points to wrong location o conf/76226 Default local.9600 gettytab initially uses parity o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system o gnu/76169 [patch] Add PAM support to cvs pserver f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed o bin/76134 fetch(1) doesn't like 401 errors with -A o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o kern/75873 net Usability problem with non-RFC-compliant IP spoof prot o kern/75855 [libc] getpwent(3) functions on 5.3 with large passwor o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn s bin/75767 [libc] [request] "fdclose" function in libc o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o kern/75710 [cue] cue0 device configuration causes kernel panic f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) s kern/75407 net [an] an(4): no carrier after short time o bin/75378 login(1): login/wtmp/utmp not updating properly o bin/75362 mount_smbfs(8) No buffer space available o bin/75258 [patch] dd(1) has not async signal safe interrupt hand s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o bin/75177 philip Bug selecting psm operation level in moused(8) o kern/75157 Cannot print to /dev/lpt0 with HP Laserjet 1005 : Devi o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula o kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 gifs? s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74827 [fdc] Problem writing data to floppies a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o bin/74779 fs Background-fsck checks one filesystem twice and omits f usb/74771 usb [umass] [hang] mounting write-protected umass device a s kern/74708 [umapfs] [panic] UMAPFS kernel panic o gnu/74654 libsupc++.a lacks necessary functions o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 o conf/74610 Hostname resolution failure causes firewall rules to s s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma s kern/74352 NFSCLIENT and booting to an mfsroot via TFTP are mutua o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection s kern/74242 rwatson Write to fifo with no reader fails in 6.0 current o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect o conf/74004 [patch] add fam support to inetd.conf o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/73823 acpi [request] acpi / power-on by timer support o conf/73786 [patch] added WARNING in spanish to stable-supfile o conf/73677 rc [patch] add support for powernow states to power_profi s bin/73617 sysinstall sysinstall(8): fdisk editor unmarks active partition s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/73549 brd [request] fix mail list archive navigation difficulty o gnu/73512 gdb -> Abort trap (core dumped) s kern/73496 [request] A more flexible version of mkstemp() s kern/73492 [request] Reliable Temporary Files o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o bin/73422 portmap forks ad infinitum when the NIS domain name is s bin/73411 [request] ftpd(8) could set attributes to 0600 while u o bin/73410 sysinstall sysinstall(8): Sysinstall could not allocate disklabel o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o bin/73261 Suspending su(1) sometimes hangs o kern/73171 imp fwohci driver stating cardbus firewire card has incorr o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/72906 [twe] twe0 idefinite wait buffer o conf/72901 [patch]: dot.profile: prevent printing when doing an s o bin/72895 sysinstall sysinstall(8): Sysinstall generates invalid partition o bin/72875 des Some utilities used in debugging do not function prope o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o bin/72398 whatis(8): emulators/mtools man pages are too funky fo o bin/72355 Can't run strings(1) on a (disk) device, even if you w o conf/72277 [patch] update for /usr/share/skel o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/72210 darrenr ipnat problem with IP Fastforward enabled s ports/72202 simon portaudit warns about the CVS server vulnerability whi o bin/72173 csplit(1) ver 1.9 wrong behaviour with negative offset s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o conf/71994 [patch] dot.login: login shell may unnecessarily print s kern/71965 andre TCP MSS issue in combination with ipfw fwd o conf/71952 missing past participles in /usr/share/dict/words o bin/71928 Disk quota doesn't work with numeric login o kern/71833 multiple process disc access / injustice o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem o bin/71749 [patch] truss -f causes circular wait when traced proc o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71602 [patch] uninitialized "len" used instead of "slen" wit o kern/71532 Multiple SCSI-Busses are seen differently by BIOS, loa a kern/71474 net [route] route lookup does not skip interfaces marked d o kern/71469 net default route to internet magically disappears with mu o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: s bin/71290 des [patch] passwd(1) cannot change passwords other than N o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) o kern/71219 /proc/*/map dont tell file offset o gnu/71210 Update to GNU sdiff: add user-preference for merge key o kern/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o bin/70756 indent(1) mishandles code that is protected for c++ co f kern/70753 gavin [boot] Device for firewire hard disk not created in ti o conf/70715 [periodic] Lack of year in dates in auth.log can cause o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea o bin/70600 fs fsck(8) throws files away when it can't grow lost+foun o bin/70536 reboot(8) -dp tries to dump when powering off o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters o kern/70511 [libc] When fread(3)ing with buffering turned off, man o bin/70476 [patch] reboot(8) change, -p behavior default for halt o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k o bin/70336 telnetd(8) always exits with value 1 o bin/70335 inetd(8) inconsistent syslog behavior when max childre o i386/70330 Re-Open 33262? - gdb does not handle pending signals p o bin/70297 amd(8) request to make amd timeouts per-mount local o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o bin/70002 sysinstall sysinstall(8): fails to locate FTP dirs if the OS has o kern/69989 killing process that uses snp + unloading module + lis o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69942 sysinstall sysinstall(8): sysinstall changes /etc/rc.conf after i o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o bin/69723 sysinstall sysinstall(8): [request] allow to continue from packag o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi f bin/69362 mbr amd(8) does not properly detect the local network sett o ports/69309 ale mysql database backup script for periodic/daily o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge s i386/69218 simokawa [boot] failure: 4.10-BETA and later do not boot on Asu o bin/69164 gdb(1) amd64: coredump while debugging a core file. o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po a kern/68905 secteam [patch] core dumps are assigned wrong ownership o kern/68889 net [panic] m_copym, length > size of mbuf chain o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68727 gdb(1) coredumps after recent CURRENT upgrade o kern/68690 [libc] write(2) returns wrong value when EFAULT o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o conf/68108 [patch] Adding mac-address /conf selector to diskless o bin/68062 standalone repeat(1) command o bin/67943 find(1) fails when current directory is not readable b o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67723 restore(8) FreeBSD 5.x restore cannot handle other pla s kern/67580 [request] add hints for boot failures s kern/67545 [nfs] NFS Diskless Mount Option Suggestion o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o usb/67301 usb [uftdi] [panic] RTS and system panic o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/66677 mv(1) incorrectly copies somedir/.. to ./.. when it cr s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o docs/66505 trhodes escaping '~' and '$' characters in login.conf setenv o o stand/66357 standards make POSIX conformance problem ('sh -e' & '+' command- s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a s kern/66270 [hang] dump(8) causes machine freeze o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message a kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/66162 [gbde] gbde destroy error o bin/66103 ppp(8) macro HISADDR is not sticky in filters o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o bin/65774 randi sysinstall(8): cannot run repair disk when booted from o kern/65616 net IPSEC can't detunnel GRE packets after real ESP encryp o kern/65448 jhb _mtx_unlock_sleep() race condition if ADAPTIVE_MUTEXES f kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65299 vi(1) temp path contains double / o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on s kern/64588 [joy] [request] Extend joystick driver architecture to o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes o bin/63608 Add a -c option to time(1) to display csh output o www/63552 gabor Validation errors due to CAPs in attribute values o bin/63489 top(1) finger(1) segfault when using NIS groups to res o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o a bin/63197 [patch] tftp(1) Bus error, core dumped o docs/63084 des Several Man-pages reference non-existant pam.conf(5) a s bin/62965 portmgr pkg_add(1) -r fails if fetching multiple packages at a o kern/62890 ups proc pointer set by fork1 can be stale in fork,rfork,v f bin/62885 des pam_radius(8) doesn't maintain multiple state fields o bin/62766 systat(1) -vm does not work on diskless machines o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o bin/62711 kensmith sysinstall(8): installation: "Insert Next CD" Prompt i o bin/62702 sysinstall sysinstall(8): backup of /etc and /root during sysinst o conf/62417 luigi diskless op script failed o docs/62412 trhodes one of the diskless boot methods described in the Hand o bin/62367 sysinstall sysinstall(8): 5.2.1-RC installation problems a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o kern/62102 alc obreak update o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME o bin/61971 kinit(1) --renewable fails o bin/61890 sysinstall sysinstall(8): fdisk(8) uses incorrect calculations fo a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s kern/61677 Unable to open CDROM tray if boot_cdrom is in loader.c s kern/61622 Intel Pro/100 Intelligent Server Adapter unsupported N o docs/61605 doc [request] Improve documentation for i386 disk geometry o bin/61603 sysinstall sysinstall(8): wrong geometry guessed o kern/61503 fs [smbfs] mount_smbfs does not work as non-root s i386/61481 [patch] a mechanism to wire io-channel-check to userla p kern/61404 bz RFC1323 timestamps with HZ > 1000 o bin/61355 login(1) does not restore terminal ownership on exit o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o conf/61289 /etc/pccard_ether: please use ifn value on pccard scri s kern/61165 scsi [panic] kernel page fault after calling cam_send_ccb o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load o bin/60632 sysinstall sysinstall(8): UI bug in partition label screen in sys s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/60598 scsi wire down of scsi devices conflicts with config s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o docs/60529 ume resolver(5) man page is badly out of date o kern/60313 data destruction: lseek(2) misalignment silently ignor p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o kern/60174 debugging a kernel module in load/attach routines s kern/59912 mremap() implementation lacking o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans s bin/59638 des passwd(1) does not use PAM to change the password o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o docs/59477 doc Outdated Info Documents at http://docs.freebsd.org/inf o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o kern/58967 Kernel kills processes in spite of cputime parameter i o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o bin/58483 [patch] mount(8): allow type special or node relative o bin/58293 vi(1) replace with CR (ASCII 13) doesn't work o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement a stand/57911 fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) returns FNM_ o bin/57715 [patch] tcopy(1) enhancement a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets p bin/57630 lptcontrol(8) gives "device busy" if device turned off o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back f ports/57498 HEIMDAL_HOME should be defined in src or ports Makefil s bin/57407 [patch] Better NTP support for dhclient(8) and friends s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o kern/57350 [panic] using old monocrome printer port (IO_LPT3 / 0x o docs/57298 doc [patch] add using compact flash cards info to handbook o stand/57295 harti make's handling of MAKEFLAGS is not POSIX conform s bin/57255 usb [patch] usbd(8) and multi-function devices o bin/57088 jh [cam] [patch] for a possible fd leak in libcam.c o bin/57045 trpt(8) option -t was disabled on -current s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface s kern/56720 [libc] [request] UNICODE support in Resolver o kern/56664 bad file# in MTIO status buffer after MTEOD until MTRE o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56339 select(2) call (poll(2) too) hangs, yet call works per o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o bin/56249 obrien ftpd(8) has two bugs (motd, munged utmp) o kern/56245 [bktr] Distorted and choppy video with bktr-driver on a kern/56233 net IPsec tunnel (ESP) over IPv6: MTU computation is wrong o kern/56031 luigi [ipfw] ipfw hangs on every invocation o kern/56024 acpi ACPI suspend drains battery while in S3 s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s bin/55965 sshd(8) problems with HostBasedAuthentication and NSS o gnu/55936 bugmeister send-pr(1) does not set mail envelope from o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR s kern/55802 [request] Make kernel.GENERIC suitable for diskless us o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o i386/55603 [mly] unable to reboot when system runs from Mylex A35 o bin/55546 [patch] cdcontrol(1) play tr m:s.f interface is partia o bin/55539 [patch] Parse fstab(5) with spaces in path names o kern/55448 dbm(3): dbm_nextkey() misbehaves after dbm_store() in f misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi f bin/55349 mbr amd(8) mixes up symlinks in its virtual filesystem. o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o stand/54410 standards one-true-awk not POSIX compliant (no extended REs) o kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o conf/54170 [patch] error from weekly periodic script 330.catman o bin/54141 wrong behavour of cu(1) o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW s stand/53682 [feature request] [patch] add fuser(1) utility o docs/53596 doc Updates to mt(1) manual page o bin/53560 logging domain names in wtmp is retarded o bin/53520 su(1) to another user does not update utmp o kern/53506 [partial patch] support gzipped modules o bin/53475 cp(1) copies files in reverse order to destination o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is o bin/53288 edwin tail(1) will sometimes display more lines than it is t o docs/53271 doc bus_dma(9) fails to document alignment restrictions o bin/53131 randi sysinstall(8): "ALL" could not turn check BOXes ON at s bin/52826 portmgr [request] Adding Timestamps to pkg info upon pkg_add(1 s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o bin/52743 ppp(8) /etc/ppp/ppp.linkup instability issues o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52638 scsi [panic] SCSI U320 on SMP server won't run faster than o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 [request] [patch] New functionality for mail(1) o bin/52469 ppp(8) Multiple devices using UDP don't work. o misc/52256 embedded [picobsd] picobsd build script does not read in user/s s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o kern/51982 remko [sio] sio1: interrupt-level buffer overflows s usb/51958 usb [urio] [patch] update for urio driver o kern/51685 fs [hang] Unbounded inode allocation causes kernel to loc o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/51583 fs [nullfs] [patch] allow to work with devices and socket o docs/51480 doc Multiple undefined references in the FreeBSD manual pa s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee o bin/51137 [patch] config(8) should check if a scheduler is selec s www/51135 www Problems with the mailing-lists search interface p docs/51133 murray RSH environmental variable not described in rcmd(3) o kern/51009 [aue] [patch] buggy aue driver fixed. o bin/50949 mtree(8) doesn't honor the -P when checking/changing o s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge a kern/50687 jmg ioctl(.., CDIOCCAPABILITY, ...) always reports "Inappr p bin/50656 cp(1) - wrong error on copying of multiple files p bin/50569 jilles sh(1) doesn't handles ${HOME}/.profile correctly o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation f bin/50118 edwin calendar(1) dumps core if there is ./calendar/ o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename o bin/48989 sysinstall sysinstall(8): Sysinstall's partition editor gets con f kern/48976 gavin [modules] nwfs.ko oddity s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu s threa/48856 threads Setting SIGCHLD to SIG_IGN still leaves zombies under o kern/48741 darrenr ipnat corrupts packets on gre interface with rul o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files s bin/48341 sysinstall sysinstall(8): changes the active slice flag when it p o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48309 ppp(8) pppoe connections fail to establish if throughp s kern/48279 [bktr] Brooktre878 may cause freeze o conf/48195 /var/db/mounttab error on diskless boot o bin/48183 [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] Add documentation on the fixit disk o bin/47815 [patch] stty(1) -all should work. s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with o conf/47596 [periodic] daily security run complains if timezone ch o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit a kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals s conf/46913 darrenr ipf denied packets of security run output contains non o bin/46905 sysinstall sysinstall(8): FreeBSD 5.x cannot be installed from mu o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o bin/46758 [patch] moused(8) enhancements s conf/46746 No way to set link addresses through rc.conf o stand/46441 stefanf /bin/sh does not do parameter expansion in PS1, PS2, P o conf/46409 Certain periodic scripts check broken NFS mounts. o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o bin/46235 sysinstall sysinstall(8): NTP servers for Finland require updatin o bin/46163 gad lpc(8) problem. Only root can modify despite man page o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o stand/46119 standards Priority problems for SCHED_OTHER using pthreads o conf/46062 remko Remove skel from BSD.root.dist. s kern/46036 [RFE] select is unsuitable for implementing a periodic o bin/45990 dwmalone top(1) dumps core if specific errors in password file o kern/45896 dwmalone setnetgrent(3) should return error code o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45608 randi sysinstall(8): install should config all ether devices s kern/45568 gibbs [ahc] ahc(A19160) pci parity error o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o docs/45303 remko Bug in PDF DocBook rendering o conf/45222 [patch] daily rejected mail hosts report too long o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o bin/44915 randi sysinstall(8): 'choose installation media' choose CD-R o bin/44894 markm telnet(1): as a local non-root user and remote it's po o kern/44587 scsi dev/dpt/dpt.h is missing defines required for DPT_HAND o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o docs/44519 obrien ftpd.conf(5) contains references to ftpd(8) when it is s bin/44518 yar ftpd(8) does not show OPIE OTP challenge o kern/44372 roberto some kernel options prevent NTP clock synchronization o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar o conf/44286 roberto /etc/defaults/rc.conf uses the obsolete ntpdate o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o bin/44212 [request] Unify 'recursive' options -r and -R o kern/44202 [rp] [patch] -stable rp driver does not work with mult o www/44181 re www "Release Information" organization o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start s bin/44122 ppp(8) tun0 gets a second ip adress after a disconnect o docs/44034 trhodes Multiple sysctl variables are not documented o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43592 mktime(3) rejects dates at the start of daylight savin o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements s bin/43497 mount(8): mount -t nfs -> crunchgen incompatible o docs/43470 blackend solid-state article out of date (x109). o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43368 portmgr pkg_create(1) fails if target directory does not exist o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42658 markm recompile telnetd(8) and log NULL ip in /var/wtmp o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o bin/42162 sysinstall sysinstall(8): after restart, installation crashes, md o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o kern/42089 ntp_gettime returns time in wrong scale o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o bin/42022 randi sysinstall(8): non-interactive mode prompts when only o bin/42018 portmgr pkg_info(1) with PKG_PATH searches through tarred pkgs s bin/42004 [quotas] quota is still IPv4 only, and not INET indepe o bin/41949 sysinstall sysinstall(8): sysinstall sorts /etc/rc.conf during ne a bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o bin/41850 sysinstall sysinstall(8): sysinstall fails to create root filesys o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login s bin/41647 net ifconfig(8) doesn't accept lladdr along with inet addr o kern/41632 luigi bridging when one interface has no carrier a bin/41583 [patch] mtree(8) assorted mtree bugs a stand/41576 standards ln(1): replacing old dir-symlinks o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o bin/41526 mount(8) symlinked mount points get mounted more than o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41297 mp tcsh(1)/csh(1) backquote/braces expansion bug o bin/41271 [patch] non-suid crontab(1) o bin/41213 top(1) blocks if NIS-related entries in passwd(5) are o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o docs/41089 doc pax(1) -B option does not mention interaction with -z o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o conf/40777 [patch] disktab does not support 2.88MB floppies o bin/40597 [patch] add fdisk(8) ability of showing extended parti o bin/40572 vipw(8) prints silly message if $EDITOR fails o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o bin/40260 sysinstall sysinstall(8): hang when detecting devices (No CD/DVD o bin/40215 [nis] NIS host search not terminate o gnu/40057 bugmeister send-pr -a flag does not work with -f s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di s kern/39937 net ipstealth issue o bin/39849 restore(8) fails to overwrite files with schg flag set o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR s conf/39580 sysinstall sysinstall(8): [request] more secure mount options o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o bin/39439 tcopy(1) will not duplicate tapes with block size larg o kern/39388 scsi ncr/sym drivers fail with 53c810 and more than 256MB m o stand/39256 standards snprintf/vsnprintf aren't POSIX-conformant for strings o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix o bin/38940 [request] an option to *stat to allow supressing of he o misc/38937 delay between tracks in digital audio dumps from CD wi o bin/38854 sysinstall sysinstall(8): resetting during setup causes the targe o kern/38749 kientzle Diskless booting fails with some DHCP servers (no root s kern/38730 philip Memorex scrollpro mouse is not fully functional a bin/38727 [patch] mptable(1) should complain about garbage argum o kern/38626 luigi dummynet/traffic shaper: RED: max_th and min_th are li o bin/38610 randi sysinstall(8): should be able to mount ISO images on D s bin/38609 sysinstall sysinstall(8): [request] sysinstall should know the si s ports/38593 portmgr [request] Third level ports o docs/38556 doc EPS file of beastie, as addition to existing examples a kern/38554 net [patch] changing interface ipaddress doesn't seem to w o bin/38478 sysinstall sysinstall(8): In Choose Distributions screen, it's di s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o bin/38057 sysinstall sysinstall(8): "install" document doesn't display corr o bin/38056 sysinstall sysinstall(8): User (creation)'s "Member groups" item o bin/38055 sysinstall sysinstall(8): Groups (creation) item should be before o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o docs/37719 kensmith [request] Detail VOP_ naming in a relevant man-page o bin/37710 sysinstall sysinstall(8): LAN interface in wrong state after atte o bin/37672 pw(8) prints warnings after successful NIS map updates o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" o bin/37083 [patch] [request] small improvement to talk(1): add cl o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36911 [ata] ATA cannot be disabled with hints or through BIO o kern/36902 [libc] [patch] proposed new format code %N for strftim s bin/36786 make ps(1) use 24-hour time by default s bin/36740 make ps(1) obey locale (particularly for times) o docs/36724 darrenr ipnat(5) manpage grammar is incomplete and inconsisten o kern/36626 login_cap(3) incorrectly claims that all resources fre o kern/36566 fs [smbfs] System reboot with dead smb mount and umount o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect f docs/36432 gabor Proposal for doc/share/mk: make folded books using psu o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36385 luigi crunchgen(1) does not handle Makefiles with includes p o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce a bin/36110 dmesg(8) output corrupt if /dev/console is busy o bin/35886 [patch] pax(1) enhancement: custom time format for lis s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f o bin/35769 w(1) does not correctly interpret X sessions s docs/35678 doc docproj Makefiles for web are broken for paths with sp o kern/35669 [nfs] NFSROOT breaks without a gateway o docs/35652 trhodes bsd.README seriously obsolete o bin/35568 make(1) declares target out of date, but $? is empty o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35429 select(2)/poll(2)/kevent(2) can't/don't notice lost co o bin/35400 randi sysinstall(8): sysinstall could improve manipulation o o kern/35399 poll(2) botches revents on dropped socket connections o kern/35396 poll(2) doesn't set POLLERR for failed connect(2) atte o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/35234 scsi World access to /dev/pass? (for scanner) requires acce o bin/35214 obrien dump(8) program hangs while exiting o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34811 jilles sh(1) "jobs" is not pipeable o bin/34788 dwmalone dmesg(8) issues with console output o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md s threa/34536 threads accept() blocks other threads o kern/34470 bde Modem gets sio1 interrupt-level buffer overflows' o bin/34412 [patch] tftp(1) will still try and receive traffic eve o bin/34309 gad lpd(8) does not garantie that controlfiles begin with p bin/34270 man(1) -k could be used to execute any command. o docs/34239 trhodes tunefs(8) man page doesn't describe arguments. s bin/34171 yar ftpd(8) indiscrete about unprivileged user accounts o gnu/34128 sdiff(1) "e" doesn't work with some editors o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o kern/33834 strptime(3) is misleading o bin/33809 [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) a bin/33661 PAP AuthAck/AuthNak parsing problem in pppd(8) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/33182 gdb(1) seg faults when given handle SIGALRM nopass for o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/32667 systat(1) waste too much time reading input o bin/32501 maxim quot(8) is stupid regarding the filesystem option a bin/32411 shutdown(8) absolute-time handling could be more usefu a bin/32375 sysinstall sysinstall(8): sysinstall doesn't respect User generat s conf/32108 Proposed Firewall (IPv4) configuration script o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o bin/31985 New /etc/remote flag for tip(1) to append LF to CR o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31940 net ip queue length too short for >500kpps o bin/31933 pw(8) can interpret numeric name as userid during user o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31890 [syscons] [patch] new syscons font o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind s kern/31686 andre Problem with the timestamp option when flag equals zer o kern/31647 net [libc] socket calls can return undocumented EINVAL o bin/31588 change request to allow mount(8) to set the MNT_IGNORE o bin/31387 mailwrapper(8): When getuid(2)=0, mailwrapper should d o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o bin/31363 sysinstall sysinstall(8): "partition editor" silently corrects pa o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o bin/31034 dwmalone regularly add original address logging for tcpwrappers o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30863 bootpd(8) dovend.c Win95 compatibility improvement and o bin/30854 bootpd(8) bootpgw change - skip ARP modifications by o a bin/30737 sysinstall sysinstall(8): sysinstall leaks file descriptors on re o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o conf/30590 /etc/hosts.equiv and ~/.rhosts interaction violates PO o bin/30542 [patch] add -q option to shut up killall(1) o bin/30517 randi sysinstall(8): using sysinstall with install.cfg has n s threa/30464 threads [patch] pthread mutex attributes -- pshared o bin/30424 Generalization of vipw(8) to lock pwdb while being edi a bin/30360 vmstat(8) returns impossible data o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt p bin/29893 kensmith sysinstall(8): suggestions for 4.4 sysinstall o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/29516 markm telnet(1) from an non FreeBSD host still uses /etc/tty s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/29375 sysinstall sysinstall(8): disk editor gets confused by slices tha p bin/29363 simon [patch] newsyslog(8) can support time as extension f kern/29355 [kernel] [patch] add lchflags support a bin/29253 natd(8) forgets about udp connections o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol s i386/28975 [rp] RocketPort problems o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28424 remko mtree(8) fails to report directory hierarchy mismatch o bin/28364 bapt [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u a bin/28223 remko su(1) doesn't look at login.conf all the time o bin/27972 losing information with talk(1) a conf/27896 Error in /etc/exports invalidates entire line, not jus o bin/27829 pax(1) uid/gid cache is read-only o bin/27687 fs fsck(8) wrapper is not properly passing options to fsc o docs/27605 doc [patch] Cross-document references () o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c o kern/27403 [lpt] lpt driver doesn't handle flags anymore o bin/27319 obrien df(1) displays amd(4) pid processes o bin/27306 [patch] hw watchpoints work unreliable under gdb(1) o bin/27281 vidcontrol(1) does not have error codes o bin/27258 getty(8) didn't check if if= isn't empty o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o bin/27216 randi sysinstall(8): can not get to shell prompt from serial o kern/27008 kernel function sysbeep(xxx, 0) does produce sound o bin/26803 fetch(1) Fix fetch to allow FTP puts in '-o' & allow ' o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain s gnu/26362 "cvs server" doesn't honour the global --allow-root o docs/26286 doc *printf(3) etc should gain format string warnings o kern/26261 [sio] silo overflow problem in sio driver o bin/26005 vis(1)/unvis(1) MIME quoted-printable encoding added t a docs/26003 standards getgroups(2) lists NGROUPS_MAX but not syslimits.h f kern/25986 silby Socket would hang at LAST_ACK forever. o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o bin/25736 ac(8) -d option probrem with overdays logon o kern/25733 [intpm] mismatch between error reporting in smbus fram s bin/25598 yar patch to let ftpd(8) output message when changing dire s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password o kern/25445 kernel statistics are displayed in wrong types and wra o bin/25218 mailwrapper(8) invokes sendmail when resources are tig o bin/25015 cp(1) options -i and -f do not work as documented f kern/24959 net [patch] proper TCP_NOPUSH/TCP_CORK compatibility o docs/24786 doc missing FILES descriptions in sa(4) o bin/24757 yar ftpd(8) not RFC compliant f kern/24629 harti ng_socket failes to declare connected data sockets as s stand/24590 standards timezone function not compatible witn Single Unix Spec o kern/24528 Bad tracking of Modem status o bin/24485 [patch] to make cron(8) handle clock jumps o bin/24461 [nis] Being able to increase the YP timeout without re f bin/24066 gdb(1) can't detach from programs linked with libc_r a bin/23912 vi(1) underflow of cnt in vs_paint() by O_NUMBER_LENGT o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23402 sysinstall sysinstall(8): upgrade ought to check partition sizes a bin/23254 bapt [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network o misc/22914 [bootinst] bootinst messages are not updated o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted o bin/22182 vi(1) options noprint/print/octal broken s bin/22034 [request] nfsstat(1) lacks useful features found in So o kern/21998 net [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o i386/21672 [i386] AMD Duron Rev. A0 reports incorrect L2 cache si o stand/21519 standards sys/dir.h should be deprecated some more s kern/21463 eadler [linux] Linux compatability mode should not allow setu o bin/21008 gad lpr(1) Fix for lpr's handling of lots of jobs in a que o bin/20944 natd(8) enhancements, default config file and manpage o kern/20529 [ti] gigabit cards fail to link s bin/20521 rmt(8) /etc/rmt several problems o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o bin/20391 jhb sysinstall(8): sysinstall should check debug.boothowto s kern/20333 des [libpam] ftp login fails on unix password when s/key a o bin/20282 randi sysinstall(8): sysinstall does not recover some /etc f o bin/20054 yar ftpd(8) rotating _PATH_FTPDSTATFILE losts xferlog s docs/20028 doc ASCII docs should reflect tags in the sourc o gnu/19882 obrien ld does not detect all undefined symbols! a kern/19782 mkisofs 1.12.1 (i386-unknown-freebsd4.0) doesn't prese o bin/19772 [unionfs] df(1) output wrong for union-mounts o kern/19756 [patch] Inability to use linux extended partition (typ o bin/19683 mount(8) displays incorrect mount point on failed moun s conf/19573 des Dot Files for Optional Shells s kern/19535 [procfs] [patch] procfs_rlimit tidyup s kern/19402 Signals 127 and 128 cannot be detected in wait4() inte o kern/18909 dwmalone select(2) timeout limited to 100000000 seconds o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t s kern/18704 GLOB_ERR not handled correctly by glob() s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad o bin/18498 jhb allowing ELF_VERBOSE in /etc/make.conf o bin/18326 dwmalone no /usr/libdata/lint/llib-lc.ln o bin/18319 dump(8) fails with "cannot reopen disk: interrupted sy o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o conf/17993 obrien improving on the default /etc/amd.map s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer s kern/17109 darrenr fastroute crashes for lo0 udp s kern/17108 [nfs] SecureRPC not supported in mount_nfs command o bin/16948 sysinstall sysinstall(8): sysinstall/disklabel: bad partition tab o kern/16765 bde Add support for mark/space parity o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16422 [patch] [request] newfs(8) always make root's / direct o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c s kern/15478 incorrect utmp/wtmp records update upon connection bei s kern/15436 [syscons] syscons extension: "propellers" o bin/15168 [patch] Adding tracklist support to fdformat(1) a kern/15095 silby TCP's advertised window is not scaled immediately upon o bin/15038 sysinstall sysinstall(8): easy to not notice that selection lists p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k s bin/14925 standards getsubopt isn't poisonous enough a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/14562 ioctl() codes should be provided for ejecting all remo o bin/14318 randi sysinstall(8): sysinstall upon install has some counte s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai o bin/13882 mount(8) mount -p is missing the quota options p bin/13869 man(1) program saves multiple cached copies of the sam s conf/13775 multi-user boot may hang in NIS environment o bin/13397 vi(1) nvi mishandles tags files under certain conditio s kern/13326 [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c o bin/13108 authunix_create_default includes egid twice o bin/13042 make(1) doesn't handle wildcards in subdirectory paths o bin/12801 nvi infinite recursion with options "leftright" and "c o bin/12545 peter kldload(8) should be more sensitive to errors in *_mod s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 s bin/11114 harti make(1) does not work as documented with .POSIX: targe a kern/11024 mtm [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9619 rodrigc Restarting mountd kills existing mounts o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o kern/8498 silby Race condition between unp_gc() and accept(). o bin/7973 gad lpd(8) Bad control file owner in case of remote printi s kern/7556 sl_compress_init() will fail if called anything else t o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/7232 sysinstall sysinstall(8): suggestion for FreeBSD installation dia s bin/6785 place for all the default dump flags o kern/5877 net [socket] sb_cc counts control data as well as data dat s bin/5712 /bin/chio code cleaup and option added o bin/5609 gad lpd(8) cannot send long files to HP's JetDirect interf s bin/5296 slattach fails creating pidfile with ioctl(TIOCSCTTY): o bin/5031 gad lpr(1) does not remove original file if -s is used o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry o bin/4116 [patch] [kerberos] Kerberized login as .root fai s bin/3170 vi(1): vi freaks and dump core if user doesn't exist s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2137 [vm] systat(1) total vm statistics are bad s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 6207 problems total. From atmotaruno at gmail.com Mon Feb 27 22:00:33 2012 From: atmotaruno at gmail.com (Nugroho Atmotaruno) Date: Mon Feb 27 22:00:39 2012 Subject: kern/165509: re(4) intermittently UP/DOWN on TPLink TG-3268 Message-ID: <201202272159.q1RLx5lD071771@red.freebsd.org> >Number: 165509 >Category: kern >Synopsis: re(4) intermittently UP/DOWN on TPLink TG-3268 >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 Feb 27 22:00:32 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Nugroho Atmotaruno >Release: FreeBSD 9.0 -RELEASE >Organization: ARC ITB >Environment: FreeBSD 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: TPLink TG-3268 (rl8169) flapping (UP/DOWN every several seconds). [root@xtreme ~]# tail /var/log/messages Feb 23 04:47:05 xtreme kernel: re0: link state changed to UP Feb 23 04:47:07 xtreme kernel: re0: link state changed to DOWN Feb 23 04:47:10 xtreme kernel: re0: link state changed to UP Feb 23 04:47:16 xtreme kernel: re0: link state changed to DOWN Feb 23 04:47:19 xtreme kernel: re0: link state changed to UP Feb 23 04:47:20 xtreme kernel: re0: link state changed to DOWN Feb 23 04:47:23 xtreme kernel: re0: link state changed to UP Feb 23 04:48:44 xtreme kernel: re0: link state changed to DOWN Feb 23 04:48:47 xtreme kernel: re0: link state changed to UP [root@xtreme ~]# pciconf -lcv re0@pci0:2:5:0: class=0x020000 card=0x816910ec chip=0x816910ec rev=0x10 hdr=0x00 vendor = 'Realtek Semiconductor Co., Ltd.' device = 'RTL-8169 Gigabit Ethernet' class = network subclass = ethernet cap 01[dc] = powerspec 2 supports D0 D1 D2 D3 current D0 [root@xtreme ~]# devinfo -rv | grep rg rgephy0 pnpinfo oui=0xe04c model=0x11 rev=0x3 at phyno=1 >How-To-Repeat: >Fix: YongHyeon PYUN sent following patch. Patch attached with submission follows: Index: sys/dev/mii/rgephy.c =================================================================== --- sys/dev/mii/rgephy.c (revision 232144) +++ sys/dev/mii/rgephy.c (working copy) @@ -110,11 +110,16 @@ rgephy_attach(device_t dev) { struct mii_softc *sc; + struct mii_attach_args *ma; + u_int flags; sc = device_get_softc(dev); + ma = device_get_ivars(dev); + flags = 0; + if (strcmp(ma->mii_data->mii_ifp->if_dname, "re") == 0) + flags |= MIIF_PHYPRIV0; + mii_phy_dev_attach(dev, flags, &rgephy_funcs, 0); - mii_phy_dev_attach(dev, 0, &rgephy_funcs, 0); - /* RTL8169S do not report auto-sense; add manually. */ sc->mii_capabilities = (PHY_READ(sc, MII_BMSR) | BMSR_ANEG) & sc->mii_capmask; @@ -243,7 +248,8 @@ * Check to see if we have link. If we do, we don't * need to restart the autonegotiation process. */ - if (sc->mii_mpd_rev >= 2) { + if ((sc->mii_flags & MIIF_PHYPRIV0) == 0 && + sc->mii_mpd_rev >= 2) { /* RTL8211B(L) */ reg = PHY_READ(sc, RGEPHY_MII_SSR); if (reg & RGEPHY_SSR_LINK) { @@ -298,7 +304,7 @@ mii->mii_media_status = IFM_AVALID; mii->mii_media_active = IFM_ETHER; - if (sc->mii_mpd_rev >= 2) { + if ((sc->mii_flags & MIIF_PHYPRIV0) == 0 && sc->mii_mpd_rev >= 2) { ssr = PHY_READ(sc, RGEPHY_MII_SSR); if (ssr & RGEPHY_SSR_LINK) mii->mii_media_status |= IFM_ACTIVE; @@ -328,7 +334,7 @@ } } - if (sc->mii_mpd_rev >= 2) { + if ((sc->mii_flags & MIIF_PHYPRIV0) == 0 && sc->mii_mpd_rev >= 2) { ssr = PHY_READ(sc, RGEPHY_MII_SSR); switch (ssr & RGEPHY_SSR_SPD_MASK) { case RGEPHY_SSR_S1000: @@ -484,7 +490,7 @@ { uint16_t ssr; - if (sc->mii_mpd_rev == 3) { + if ((sc->mii_flags & MIIF_PHYPRIV0) == 0 && sc->mii_mpd_rev == 3) { /* RTL8211C(L) */ ssr = PHY_READ(sc, RGEPHY_MII_SSR); if ((ssr & RGEPHY_SSR_ALDPS) != 0) { Index: sys/dev/re/if_re.c =================================================================== --- sys/dev/re/if_re.c (revision 232145) +++ sys/dev/re/if_re.c (working copy) @@ -1577,19 +1577,6 @@ re_gmii_writereg(dev, 1, 0x0e, 0); } -#define RE_PHYAD_INTERNAL 0 - - /* Do MII setup. */ - phy = RE_PHYAD_INTERNAL; - if (sc->rl_type == RL_8169) - phy = 1; - error = mii_attach(dev, &sc->rl_miibus, ifp, re_ifmedia_upd, - re_ifmedia_sts, BMSR_DEFCAPMASK, phy, MII_OFFSET_ANY, MIIF_DOPAUSE); - if (error != 0) { - device_printf(dev, "attaching PHYs failed\n"); - goto fail; - } - ifp->if_softc = sc; if_initname(ifp, device_get_name(dev), device_get_unit(dev)); ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; @@ -1614,6 +1601,19 @@ TASK_INIT(&sc->rl_inttask, 0, re_int_task, sc); +#define RE_PHYAD_INTERNAL 0 + + /* Do MII setup. */ + phy = RE_PHYAD_INTERNAL; + if (sc->rl_type == RL_8169) + phy = 1; + error = mii_attach(dev, &sc->rl_miibus, ifp, re_ifmedia_upd, + re_ifmedia_sts, BMSR_DEFCAPMASK, phy, MII_OFFSET_ANY, MIIF_DOPAUSE); + if (error != 0) { + device_printf(dev, "attaching PHYs failed\n"); + goto fail; + } + /* * Call MI attach routine. */ >Release-Note: >Audit-Trail: >Unformatted: From gjb at FreeBSD.org Tue Feb 28 01:30:07 2012 From: gjb at FreeBSD.org (Glen Barber) Date: Tue Feb 28 01:30:13 2012 Subject: bin/165515: [jail][patch] "jail: unknown parameter: allow.nomount" when starting jail Message-ID: <201202280121.q1S1L6Sr047797@red.freebsd.org> >Number: 165515 >Category: bin >Synopsis: [jail][patch] "jail: unknown parameter: allow.nomount" when starting jail >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 01:30:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Glen Barber >Release: 10.0-CURRENT r232116M >Organization: >Environment: FreeBSD nucleus 10.0-CURRENT FreeBSD 10.0-CURRENT #7 r232116M: Sun Feb 26 14:12:14 EST 2012 root@nucleus:/usr/obj/usr/src/sys/NUCLEUS amd64 >Description: On a recent -CURRENT, the jail(8) rc script fails to start jails. This seems to be caused by looking up a sysctl that does not exist. >How-To-Repeat: Create a minimalistic jail setup as follows: nucleus# cat /etc/rc.conf.local # jail_enable="YES" jail_parallel_start="YES" jail_list="cfm" jail_cfm_hostname="cfm" jail_cfm_rootdir="/jails/cfm" jail_cfm_ip="172.16.1.2" Start the jail with the rc(8) script: nucleus# sh -x /etc/rc.d/jail start cfm + . /etc/rc.subr [...] + eval '_x="$jail_cfm_ip_multi0"' + _x='' + break + echo ' cannot start jail "cfm": ' cannot start jail "cfm": + tail +2 /tmp/jail.bJIDqW5x/jail.52395 jail: unknown parameter: allow.nomount >Fix: The attached patch fixes it for me. Patch attached with submission follows: Index: usr.sbin/jail/jail.c =================================================================== --- usr.sbin/jail/jail.c (revision 232116) +++ usr.sbin/jail/jail.c (working copy) @@ -84,7 +84,7 @@ { "security.jail.chflags_allowed", "allow.nochflags", "allow.chflags" }, { "security.jail.mount_allowed", - "allow.nomount", "allow.mount" }, + "allow.mount", "allow.nomount" }, { "security.jail.socket_unixiproute_only", "allow.socket_af", "allow.nosocket_af" }, }; >Release-Note: >Audit-Trail: >Unformatted: From gjb at FreeBSD.org Tue Feb 28 01:30:34 2012 From: gjb at FreeBSD.org (gjb@FreeBSD.org) Date: Tue Feb 28 01:30:44 2012 Subject: bin/165515: [jail][patch] "jail: unknown parameter: allow.nomount" when starting jail Message-ID: <201202280130.q1S1UXug003926@freefall.freebsd.org> Synopsis: [jail][patch] "jail: unknown parameter: allow.nomount" when starting jail Responsible-Changed-From-To: freebsd-bugs->jail Responsible-Changed-By: gjb Responsible-Changed-When: Tue Feb 28 01:30:19 UTC 2012 Responsible-Changed-Why: Over to maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=165515 From jhs at berklix.com Tue Feb 28 01:50:08 2012 From: jhs at berklix.com (Julian H. Stacey) Date: Tue Feb 28 01:50:14 2012 Subject: bin/165516: Calendar for Austria for Ash Wednesday wrong by a week. Message-ID: <201202280149.q1S1n912011244@fire.js.berklix.net> >Number: 165516 >Category: bin >Synopsis: Calendar for Austria for Ash Wednesday wrong by a week. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 01:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Julian H. Stacey >Release: FreeBSD 8.2-RELEASE amd64 >Organization: http://berklix.com BSD Linux Unix Consultancy, Munich/Muenchen. >Environment: System: FreeBSD fire.js.berklix.net 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Jun 2 23:10:13 CEST 2011 jhs@blak.js.berklix.net:/ad6s4/release/8.2-RELEASE/src/sys/amd64/compile/FIRE64.small amd64 >Description: The calendar for Austria for Ash Wednesday is wrong, off by a week. (& that's of more than mere religious importance, as lots of people take time off work to party & or go for fish meals etc, etc :-) >How-To-Repeat: echo "#include " >> \ ~/.calendar/calendar calendar -t 28.02.2012 29 Feb* Aschermittwoch >Fix: see explanation in http://berklix.com/~jhs/src/bsd/fixes/freebsd/src/gen/usr.bin/calendar/calendars/de_AT.ISO_8859-15/ apply patch from there, or delete 02/WednesdayLast Aschermittwoch & insert Easter-46 Aschermittwoch >Release-Note: >Audit-Trail: >Unformatted: From adrian at FreeBSD.org Tue Feb 28 02:40:08 2012 From: adrian at FreeBSD.org (Adrian Chadd) Date: Tue Feb 28 02:40:15 2012 Subject: kern/165517: [net80211] bgscan isn't triggered when invalid beacons are being sent Message-ID: <201202280238.q1S2ccfU022573@red.freebsd.org> >Number: 165517 >Category: kern >Synopsis: [net80211] bgscan isn't triggered when invalid beacons are being sent >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 02:40:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Adrian Chadd >Release: -CURRENT >Organization: >Environment: 9.0-RELEASE with HEAD net80211/ath >Description: I was trying to figure out why bgscan isn't working in some instances. What's happening is this: * the bgscan is triggered via sta_recv_mgmt(), on a valid beacon frame * but if the beacon frame isn't valid, it fails an earlier check, so the ieee80211_bg_scan() call is never made. >How-To-Repeat: Find an AP whose beacons fail the check. >Fix: * Fix ieee80211_parse_beacon() if it needs to be fixed * potentially ignore the beacon contents _but_ still trigger a background scan if possible. >Release-Note: >Audit-Trail: >Unformatted: From adrian at FreeBSD.org Tue Feb 28 02:42:33 2012 From: adrian at FreeBSD.org (adrian@FreeBSD.org) Date: Tue Feb 28 02:42:39 2012 Subject: kern/165517: [net80211] bgscan isn't triggered when invalid beacons are being sent Message-ID: <201202280242.q1S2gXIA076229@freefall.freebsd.org> Synopsis: [net80211] bgscan isn't triggered when invalid beacons are being sent Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Tue Feb 28 02:42:25 UTC 2012 Responsible-Changed-Why: Reassign http://www.freebsd.org/cgi/query-pr.cgi?pr=165517 From linimon at FreeBSD.org Tue Feb 28 04:26:24 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Tue Feb 28 04:26:35 2012 Subject: kern/165509: [re] re(4) intermittently UP/DOWN on TPLink TG-3268 Message-ID: <201202280426.q1S4QNNf068338@freefall.freebsd.org> Old Synopsis: re(4) intermittently UP/DOWN on TPLink TG-3268 New Synopsis: [re] re(4) intermittently UP/DOWN on TPLink TG-3268 Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 28 04:26:12 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165509 From eugene at zhegan.in Tue Feb 28 04:50:09 2012 From: eugene at zhegan.in (Eugene M. Zheganin) Date: Tue Feb 28 04:50:15 2012 Subject: misc/165521: livelock on 1 Gig of RAM with zfs when 310.locate is run Message-ID: <201202280449.q1S4ncG2057766@red.freebsd.org> >Number: 165521 >Category: misc >Synopsis: livelock on 1 Gig of RAM with zfs when 310.locate is run >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 04:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugene M. Zheganin >Release: 8.2-RELEASE >Organization: RealService LLC >Environment: FreeBSD moscow-omega 8.2-RELEASE FreeBSD 8.2-RELEASE #2: Wed Jan 25 11:30:58 YEKT 2012 emz@moscow-omega:/usr/obj/usr/src/sys/MOSCOW amd64 >Description: Every saturday this server hangs around 4:15 in the morning. 4:15 in the morning is the time when periodic weekly is run. After some investigations it looks like 310.locate is the critical script. This is reproduceable. Simply launching this script also makes server hang. Other servers with similar hardware configuraton and use also hang. loader.conf: zfs_load="YES" vfs.root.mountfrom="zfs:zfsroot" ng_iface_load="YES" ng_ether_load="YES" vm.kmem_size="330M" vm.kmem_size_max="330M" vfs.zfs.arc_max="30M" Console is responsive, but the machine doesn't allow to log in and doesn't respond to network. >How-To-Repeat: Get a FreeBSD, use zfs for system, use 1 Gig of RAM, run 310.locate from weekly set of periodic scripts. >Fix: Turn of periodic runs. Add more RAM (problem disappears on 4 Gigs of RAM with the same config set). >Release-Note: >Audit-Trail: >Unformatted: From andrey at zonov.org Tue Feb 28 09:00:21 2012 From: andrey at zonov.org (Andrey Zonov) Date: Tue Feb 28 09:00:27 2012 Subject: misc/165523: stale files after upgrade from 8.2 to 9.0 Message-ID: <201202280850.q1S8omNo084226@red.freebsd.org> >Number: 165523 >Category: misc >Synopsis: stale files after upgrade from 8.2 to 9.0 >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 Feb 28 09:00:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Andrey Zonov >Release: 8.2-STABLE, 9.0-STABLE >Organization: >Environment: >Description: After upgrade from 8.2-STABLE to 9.0-STABLE and `make delete-old; make delete-old-libs' I found stale files in the system. /usr/include/tmmintrin.h /usr/share/doc/bind9/KNOWN-DEFECTS /usr/share/doc/bind9/NSEC3-NOTES /usr/share/doc/bind9/README.idnkit /usr/share/doc/bind9/README.pkcs11 /usr/share/man/man4/ast.4.gz /usr/share/man/man4/afd.4.gz /usr/share/man/man4/ad.4.gz /usr/share/man/man4/acd.4.gz /usr/share/man/man8/named.reload.8.gz /usr/share/man/man8/named.reconfig.8.gz /usr/lib32/libutil.so.8 I can't find them in ObsoleteFiles. >How-To-Repeat: Upgrade from 8.2 to latest 9-stable. >Fix: Just rm them by yourself. >Release-Note: >Audit-Trail: >Unformatted: From snelius at tsu.ru Tue Feb 28 11:10:10 2012 From: snelius at tsu.ru (Anatoly Y.) Date: Tue Feb 28 11:10:16 2012 Subject: misc/165526: UDP packets checksum calculation whithin if_bxe driver is not correct may be. Message-ID: <201202281101.q1SB1vwP020300@red.freebsd.org> >Number: 165526 >Category: misc >Synopsis: UDP packets checksum calculation whithin if_bxe driver is not correct may be. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 11:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Anatoly Y. >Release: 9.0-STABLE at 28 Feb 2012 >Organization: Tomsk State University >Environment: FreeBSD vpdn 9.0-STABLE FreeBSD 9.0-STABLE #0: Tue Feb 28 07:09:58 NOVT 2012 root@vpdn:/usr/obj/usr/src/sys/vpdn amd64 >Description: Hardware: HP bl460c G6. bxe0@pci0:2:0:0: class=0x020000 card=0x7058103c chip=0x165014e4 rev=0x00 hdr=0x00 vendor = 'Broadcom Corporation' device = 'NetXtreme II BCM57711E 10-Gigabit PCIe' class = network subclass = ethernet Main symptom is a domains lookuping failed by timed out from any NS on fresh installed 9.0R system. >How-To-Repeat: Everytime present. >Fix: ifconfig bxe<#> -txcsum or -rxcsum >Release-Note: >Audit-Trail: >Unformatted: From simon at comsys.ntu-kpi.kiev.ua Tue Feb 28 11:50:09 2012 From: simon at comsys.ntu-kpi.kiev.ua (Andrey Simonenko) Date: Tue Feb 28 11:50:16 2012 Subject: bin/165527: setgroupent() does not make file descrptors opened Message-ID: <20120228114023.GA68878@pm513-1.comsys.ntu-kpi.kiev.ua> >Number: 165527 >Category: bin >Synopsis: setgroupent() does not make file descrptors opened >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 11:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Andrey Simonenko >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: >Description: If the setgroupent() library function is called with non-zero argument, then file descriptors used for accessing databases should be left opened. Actually this does not work and reduce performance. >How-To-Repeat: >Fix: --- getgrent.c.orig 2007-12-12 12:08:02.000000000 +0200 +++ getgrent.c 2012-02-28 11:00:23.000000000 +0200 @@ -811,6 +811,7 @@ files_setgrent(void *retval, void *mdata rewind(st->fp); else if (stayopen) st->fp = fopen(_PATH_GROUP, "r"); + st->stayopen = stayopen; break; case ENDGRENT: if (st->fp != NULL) { @@ -1252,6 +1253,7 @@ compat_setgrent(void *retval, void *mdat rewind(st->fp); else if (stayopen) st->fp = fopen(_PATH_GROUP, "r"); + st->stayopen = stayopen; set_setent(dtab, mdata); (void)_nsdispatch(NULL, dtab, NSDB_GROUP_COMPAT, "setgrent", compatsrc, 0); >Release-Note: >Audit-Trail: >Unformatted: From mexas at bristol.ac.uk Tue Feb 28 15:50:11 2012 From: mexas at bristol.ac.uk (Anton Shterenlikht) Date: Tue Feb 28 15:50:18 2012 Subject: kern/165533: [lpr.c] wrong 661 permission for /var/spool/output/lpd/.seq (should be 660) Message-ID: <201202281525.q1SFPCwt057978@mech-cluster241.men.bris.ac.uk> >Number: 165533 >Category: kern >Synopsis: [lpr.c] wrong 661 permission for /var/spool/output/lpd/.seq (should be 660) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 15:50:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Anton Shterenlikht >Release: FreeBSD 9.0-BETA2 ia64 >Organization: University of Bristol >Environment: System: FreeBSD mech-cluster241.men.bris.ac.uk 9.0-BETA2 FreeBSD 9.0-BETA2 #4 r225618: Fri Sep 16 21:11:50 BST 2011 root@mech-cluster241.men.bris.ac.uk:/usr/obj/usr/src/sys/TZAV ia64 >Description: I've a parallel printer attached to a 9.9-CURRENT #2 r230787M box. Recently I started seeing this line in daily security output: Checking negative group permissions: 70834 -rw-r----x 1 root daemon 4 Feb 21 12:54:02 2012 /var/spool/output/lpd/.seq I think .seq is created with wrong permissions, thus triggering a security warning. >How-To-Repeat: # pwd /var/spool/output/lpd # ls -al total 8 drwxr-xr-x 2 root daemon 512 Feb 24 12:43 . drwxr-xr-x 3 root daemon 512 Mar 9 2010 .. -rw-rw-r-- 1 root daemon 41 Feb 21 12:54 lock -rw-rw-r-- 1 root daemon 25 Feb 21 12:54 status # Then I print something, e.g.: % pwd | lpr Then this .seq file appears with weird permissions: # ls -al total 10 drwxr-xr-x 2 root daemon 512 Feb 24 12:46 . drwxr-xr-x 3 root daemon 512 Mar 9 2010 .. -rw-r----x 1 root daemon 4 Feb 24 12:45 .seq -rw-rw-r-- 1 root daemon 41 Feb 24 12:45 lock -rw-rw-r-- 1 root daemon 25 Feb 24 12:45 status # # cat .seq 001 # >Fix: From: jb Date: Tue, 28 Feb 2012 15:07:43 +0000 (UTC) It is an intermediate-processing (run-time) lockfile found in various spool dirs and their sub-dirs, like /var/spool/cron/ /at, /lpd, etc. It is used to save job# by the respective programs (cron, at, etc). You can find a ref to .SEQ in file at.c in at port sources. I did not see ref to .seq in lpr or cron port sources. The periodic security check /etc/periodic/security/110.neggrpperm checks for risque condition like ! -perm +010 -and -perm +001 The file should not be executable, according to its purpose. So the lpr.c should be changed from if ((fd = open(buf, O_RDWR|O_CREAT, 0661)) < 0) { to if ((fd = open(buf, O_RDWR|O_CREAT, 0660)) < 0) { >Release-Note: >Audit-Trail: >Unformatted: From kes-kes at yandex.ru Tue Feb 28 17:40:11 2012 From: kes-kes at yandex.ru (Eugen Konkov) Date: Tue Feb 28 17:40:19 2012 Subject: misc/165536: netisr bad distribution between CPUs Message-ID: <201202281731.q1SHVe8c060456@red.freebsd.org> >Number: 165536 >Category: misc >Synopsis: netisr bad distribution between CPUs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 17:40:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugen Konkov >Release: 9.0-CURRENT >Organization: ISP FreeLine >Environment: FreeBSD flux2 9.0-CURRENT FreeBSD 9.0-CURRENT #4: Fri Jun 10 01:30:12 UTC 2011 >Description: As you see two of four threads get about 100% cpu usage and other two only 30% # top -SIHP last pid: 43373; load averages: 5.14, 5.58, 5.79 up 0+06:25:33 19:15:20 293 processes: 6 running, 268 sleeping, 17 waiting, 2 lock CPU 0: 3.6% user, 0.0% nice, 24.6% system, 42.0% interrupt, 29.7% idle CPU 1: 3.6% user, 0.0% nice, 14.5% system, 64.5% interrupt, 17.4% idle CPU 2: 0.0% user, 0.0% nice, 10.9% system, 77.5% interrupt, 11.6% idle CPU 3: 0.7% user, 0.0% nice, 10.9% system, 70.3% interrupt, 18.1% idle Mem: 515M Active, 1309M Inact, 230M Wired, 260K Cache, 112M Buf, 1844M Free Swap: 32G Total, 32G Free PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU COMMAND 12 root -72 - 0K 160K *per-i 2 223:06 99.61% {swi1: netisr 0} 12 root -72 - 0K 160K CPU1 1 180:02 88.43% {swi1: netisr 2} 12 root -72 - 0K 160K *per-i 0 65:57 34.72% {swi1: netisr 1} 12 root -72 - 0K 160K WAIT 3 65:10 32.52% {swi1: netisr 3} 11 root 155 ki31 0K 32K CPU0 0 199:44 31.35% {idle: cpu0} 11 root 155 ki31 0K 32K RUN 1 181:36 18.02% {idle: cpu1} 11 root 155 ki31 0K 32K RUN 3 174:51 14.31% {idle: cpu3} 11 root 155 ki31 0K 32K CPU2 2 174:50 13.43% {idle: cpu2} 12 root -92 - 0K 160K WAIT 0 45:35 12.89% {irq256: re0} 13 root -16 - 0K 32K sleep 0 17:41 4.93% {ng_queue2} 13 root -16 - 0K 32K sleep 2 17:40 4.74% {ng_queue1} 13 root -16 - 0K 32K sleep 0 17:44 4.69% {ng_queue3} 13 root -16 - 0K 32K sleep 0 17:41 4.59% {ng_queue0} # netstat -Q Configuration: Setting Current Limit Thread count 4 4 Default queue limit 256 10240 Direct dispatch disabled n/a Forced direct dispatch disabled n/a Threads bound to CPUs disabled n/a Protocols: Name Proto QLimit Policy Flags ip 1 1024 flow --- igmp 2 256 source --- rtsock 3 256 source --- arp 7 256 source --- ip6 10 256 flow --- Workstreams: WSID CPU Name Len WMark Disp'd HDisp'd QDrops Queued Handled 0 0 ip 493 1024 0 0 7217665 377961834 377960765 0 0 igmp 0 0 0 0 0 0 0 0 0 rtsock 0 256 0 0 113 27218 27218 0 0 arp 0 12 0 0 0 36476 36476 0 0 ip6 0 5 0 0 0 191 191 1 1 ip 0 786 0 0 0 103683774 103683774 1 1 igmp 0 0 0 0 0 0 0 1 1 rtsock 0 0 0 0 0 0 0 1 1 arp 0 3 0 0 0 16403 16403 1 1 ip6 0 1 0 0 0 165 165 2 2 ip 33 1024 0 0 20062 406492881 406492832 2 2 igmp 0 0 0 0 0 0 0 2 2 rtsock 0 0 0 0 0 0 0 2 2 arp 0 9 0 0 0 58454 58454 2 2 ip6 0 1 0 0 0 191 191 3 3 ip 1 1024 0 0 8312 267733875 267733873 3 3 igmp 0 0 0 0 0 0 0 3 3 rtsock 0 0 0 0 0 0 0 3 3 arp 0 10 0 0 0 135230 135230 3 3 ip6 0 3 0 0 0 3107 3107 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Tue Feb 28 18:57:20 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Tue Feb 28 18:57:32 2012 Subject: kern/165526: [bxe] UDP packets checksum calculation whithin if_bxe driver is not correct may be. Message-ID: <201202281857.q1SIvKSA006588@freefall.freebsd.org> Old Synopsis: UDP packets checksum calculation whithin if_bxe driver is not correct may be. New Synopsis: [bxe] UDP packets checksum calculation whithin if_bxe driver is not correct may be. Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 28 18:56:45 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165526 From jb.1234abcd at gmail.com Tue Feb 28 20:50:08 2012 From: jb.1234abcd at gmail.com (J B) Date: Tue Feb 28 20:50:15 2012 Subject: kern/165533: [lpr] [patch] wrong 661 permission for /var/spool/output/lpd/.seq (should be 660) Message-ID: <201202282050.q1SKo84v011629@freefall.freebsd.org> The following reply was made to PR kern/165533; it has been noted by GNATS. From: J B To: bug-followup@FreeBSD.org, mexas@bristol.ac.uk Cc: Subject: Re: kern/165533: [lpr] [patch] wrong 661 permission for /var/spool/output/lpd/.seq (should be 660) Date: Tue, 28 Feb 2012 21:40:08 +0100 Regarding fix to .seq file permission: http://ftp.utcluj.ro/pub/docs/ldp/bible-src/howtos/printing.html ... The Important Files Apart from the programs discussed above, each spool directory should contain four files - .seq, errs. lock and status. These files should have the permissions "-rw-rw-r--". The .seq file contains the job number counter for lpr to assign ... So, we can relax the permission to 0664. jb From marc at marc-abramowitz.com Wed Feb 29 01:20:12 2012 From: marc at marc-abramowitz.com (Marc Abramowitz) Date: Wed Feb 29 01:20:19 2012 Subject: kern/165541: Kernel panic when dtracing userland Message-ID: <201202290114.q1T1EXZ2009933@red.freebsd.org> >Number: 165541 >Category: kern >Synopsis: Kernel panic when dtracing userland >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 01:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Marc Abramowitz >Release: 9.0 >Organization: >Environment: FreeBSD freebsd9-0.localdomain 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Mon Feb 27 00:16:24 PST 2012 root@freebsd9-0.localdomain:/usr/obj/usr/src/sys/DTRACE amd64 >Description: When I dtrace even a trivial program in certain ways, the kernel panics when the traced process exits. I'm using FreeBSD 9.0 on amd64 (I also later reproduced the problem with i386 as well) in VMware Fusion 4.1.1 on OS X 10.6.8 and trying to DTrace userland programs. I recompiled my kernel and world, following the instructions at: http://wiki.freebsd.org/DTrace http://wiki.freebsd.org/DTrace/userland The test.c pid provider example worked fine for me: $ sudo dtrace -s pid.d -c ./test dtrace: script 'pid.d' matched 2 probes dtrace: buffer size lowered to 1m CPU ID FUNCTION:NAME 0 43030 main:entry 0 43031 sleep:entry 0 43031 sleep:entry 0 43031 sleep:entry As does a simple probe of test.c specified with the -n option: [marca at freebsd9-0 ~]$ sudo dtrace -n 'pid$target:test:main:entry' -c ./test dtrace: description 'pid$target:test:main:entry' matched 1 probe dtrace: buffer size lowered to 1m CPU ID FUNCTION:NAME 0 43030 main:entry When I start trying to dtrace other programs, things don't go so well. DTracing very simple programs causes a kernel panic when the process exits. For example: [marca at freebsd9-0 ~]$ sudo kldload dtraceall [marca at freebsd9-0 ~]$ sudo dtrace -n 'pid$target:cat:main:entry' -c '/bin/cat hello_world.txt' (kernel panic!) According to the core.txt file, it was a "Fatal trap 10: trace trap while in kernel mode" and here's the KDB backtrace: KDB: stack backtrace: #0 0xffffffff8089025e at kdb_backtrace+0x5e #1 0xffffffff80858ce7 at panic+0x187 #2 0xffffffff80b4bf20 at trap_fatal+0x290 #3 0xffffffff80b4c540 at trap+0x180 #4 0xffffffff80b36963 at calltrap+0x8 #5 0xffffffff8162583d at dtrace_assfail+0x2d #6 0xffffffff8188aa2e at fasttrap_provider_free+0x1de #7 0xffffffff8188ad13 at fasttrap_pid_cleanup_cb+0x1c3 #8 0xffffffff8086dfa1 at softclock+0x3a1 #9 0xffffffff8082d724 at intr_event_execute_handlers+0x104 #10 0xffffffff8082eee4 at ithread_loop+0xa4 #11 0xffffffff8082a34f at fork_exit+0x11f #12 0xffffffff80b36e8e at fork_trampoline+0xe >How-To-Repeat: [marca at freebsd9-0 ~]$ sudo kldload dtraceall [marca at freebsd9-0 ~]$ sudo dtrace -n 'pid$target:cat:main:entry' -c '/bin/cat hello_world.txt' - or - [marca at freebsd9-0 ~]$ sudo kldload dtraceall [marca at freebsd9-0 ~]$ cat -n test.c 1 #include 2 3 int main() 4 { 5 sleep(15); 6 7 FILE *fp = fopen("hello.txt", "w"); 8 fprintf(fp, "Here I am at %s:%d.\n", __FILE__, __LINE__); 9 fclose(fp); 10 } [marca at freebsd9-0 ~]$ gcc test.c -o test [marca at freebsd9-0 ~]$ sudo dtrace -n 'pid$target:test:main:entry' -c ./test dtrace: description 'pid$target:test:main:entry' matched 1 probe dtrace: buffer size lowered to 1m CPU ID FUNCTION:NAME 0 43030 main:entry (Kernel panic! After reboot....) [marca at freebsd9-0 ~]$ cat hello.txt Here I am at test.c:8. Interestingly, the crash doesn't occur until after the sleep and the fprintf call, so it looks the kernel panic happens as a result of the traced process _exiting_... I reproduced this on both the amd64 and i386 architectures. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From uzimac at da3m0n8t3r.com Wed Feb 29 02:50:12 2012 From: uzimac at da3m0n8t3r.com (Waitman Gobble) Date: Wed Feb 29 02:50:26 2012 Subject: kern/165543: ath0 endless scanning of channels without connect - Atheros 9280 Message-ID: <201202290243.q1T2hg7l085644@red.freebsd.org> >Number: 165543 >Category: kern >Synopsis: ath0 endless scanning of channels without connect - Atheros 9280 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 02:50:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Waitman Gobble >Release: 10.0-CURRENT >Organization: Waitman Gobble >Environment: FreeBSD hunny.waitman.net 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Feb 25 23:36:23 PST 2012 root@:/usr/obj/usr/src/sys/KEYSHIA amd64 >Description: Having issues connecting to AP. 1) cannot seem to connect to 5GHz 11a network. 2) setting mode to 11g can connect to 2GHz eventually. >How-To-Repeat: ifconfig wlan0 create wlandev ath0 ssid BOOTAY wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant-bootay.conf ifconfig wlan0 mode 11g ifconfig wlan0 inet 10.0.0.21 netmask 255.255.255.0 ifconfig wlan0 up scan route add default 10.0.0.1 attached log files related to ath0 in shar format thanks! >Fix: presently unknown Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # n_ath0.chan.txt # n_ath0.dmesg.txt # n_ath0.fin.txt # echo x - n_ath0.chan.txt sed 's/^X//' >n_ath0.chan.txt << '0728732b11af54ff7066a6fc7f1c6cff' XFeb 28 17:31:30 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:31:31 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:31:31 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:31:31 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:31:31 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:31:31 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:31:32 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:31:32 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:31:32 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:31:32 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:31:33 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:31:33 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:31:33 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:31:33 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:31:34 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:31:34 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:31:34 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:31:34 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:31:34 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:31:35 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:31:35 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:31:35 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:31:35 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:31:36 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:31:36 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:31:36 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:31:36 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:31:36 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:31:37 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:31:37 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:31:37 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:31:37 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:31:38 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:31:38 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:31:38 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:31:38 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:31:39 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:31:39 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:31:39 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:31:39 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:31:39 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:31:40 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:31:40 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:31:40 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:31:40 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:31:41 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:31:41 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:31:41 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:31:41 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:31:42 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:31:42 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:31:42 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:31:42 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:31:42 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:31:43 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:31:43 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:31:43 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:31:43 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:31:44 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:31:44 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:31:44 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:31:44 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:31:44 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:31:45 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:31:45 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:31:45 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:31:45 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:31:46 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:31:46 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:31:46 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:31:47 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:31:47 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:31:47 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:31:47 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:31:47 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:31:48 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:31:48 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:31:48 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:31:49 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:31:49 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:31:49 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:31:49 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:31:49 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:31:50 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:31:50 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:31:50 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:31:50 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:31:51 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:31:51 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:31:51 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:31:51 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:31:51 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:31:52 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:31:52 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:31:52 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:31:52 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:31:53 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:31:53 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:31:53 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:31:53 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:31:54 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:31:54 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:31:54 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:31:54 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:31:54 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:31:55 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:31:55 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:31:55 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:31:55 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:31:56 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:31:56 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:31:56 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:31:56 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:31:57 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:31:57 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:31:57 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:31:57 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:31:57 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:31:58 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:31:58 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:31:58 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:31:58 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:31:59 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:31:59 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:31:59 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:31:59 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:32:00 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:32:00 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:32:00 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:32:00 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:32:01 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:32:01 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:32:01 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:32:01 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:32:02 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:32:02 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:32:02 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:32:02 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:32:03 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:32:03 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:32:03 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:32:03 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:32:04 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:32:04 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:32:04 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:32:04 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:32:04 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:32:05 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:32:05 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:32:05 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:32:05 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:32:06 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:32:06 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:32:06 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:32:06 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:32:07 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:32:07 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:32:07 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:32:07 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:32:07 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:32:08 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:32:08 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:32:08 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:32:08 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:32:09 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:32:09 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:32:09 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:32:09 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:32:09 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:32:10 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:32:10 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:32:10 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:32:10 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:32:11 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:32:11 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:32:11 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:32:11 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:32:12 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:32:12 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:32:12 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:32:12 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:32:12 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:32:13 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:32:13 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:32:13 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:32:13 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:32:14 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 XFeb 28 17:32:14 hunny kernel: ath0: ath_chan_set: unable to reset channel 9 (2452 MHz, flags 0x480), hal status 14 XFeb 28 17:32:14 hunny kernel: ath0: ath_chan_set: unable to reset channel 10 (2457 MHz, flags 0x480), hal status 14 XFeb 28 17:32:14 hunny kernel: ath0: ath_chan_set: unable to reset channel 12 (2467 MHz, flags 0x680), hal status 14 XFeb 28 17:32:14 hunny kernel: ath0: ath_chan_set: unable to reset channel 1 (2412 MHz, flags 0x480), hal status 14 XFeb 28 17:32:15 hunny kernel: ath0: ath_chan_set: unable to reset channel 6 (2437 MHz, flags 0x480), hal status 14 XFeb 28 17:32:15 hunny kernel: ath0: ath_chan_set: unable to reset channel 11 (2462 MHz, flags 0x480), hal status 14 XFeb 28 17:32:15 hunny kernel: ath0: ath_chan_set: unable to reset channel 7 (2442 MHz, flags 0x480), hal status 14 XFeb 28 17:32:15 hunny kernel: ath0: ath_chan_set: unable to reset channel 13 (2472 MHz, flags 0x680), hal status 14 XFeb 28 17:32:16 hunny kernel: ath0: ath_chan_set: unable to reset channel 2 (2417 MHz, flags 0x480), hal status 14 XFeb 28 17:32:16 hunny kernel: ath0: ath_chan_set: unable to reset channel 3 (2422 MHz, flags 0x480), hal status 14 XFeb 28 17:32:16 hunny kernel: ath0: ath_chan_set: unable to reset channel 4 (2427 MHz, flags 0x480), hal status 14 XFeb 28 17:32:16 hunny kernel: ath0: ath_chan_set: unable to reset channel 5 (2432 MHz, flags 0x480), hal status 14 XFeb 28 17:32:17 hunny kernel: ath0: ath_chan_set: unable to reset channel 8 (2447 MHz, flags 0x480), hal status 14 0728732b11af54ff7066a6fc7f1c6cff echo x - n_ath0.dmesg.txt sed 's/^X//' >n_ath0.dmesg.txt << '8932f272e79ad92a9b905b9e538697e1' Xath0: mem 0xf0100000-0xf010ffff irq 19 at device 0.0 on pci7 Xath0: [HT] enabling HT modes Xath0: [HT] 2 RX streams; 2 TX streams Xath0: AR9280 mac 128.2 RF5133 phy 13.0 Xath0: 2GHz radio: 0x0000; 5GHz radio: 0x00c0 Xath0: ath_start: sc_inreset_cnt > 0; bailing Xath0: ath_tx_tid_drain: node 0xffffff800278e000: tid 16: txq_depth=0, txq_aggr_depth=0, sched=1, paused=0, hwq_depth=0, incomp=0, baw_head=0, baw_tail=0 txa_start=-1, ni_txseqs=158 Xath0: ath_start: sc_inreset_cnt > 0; bailing Xath0: ath_reset_grablock: didn't finish after 10 iterations Xath0: ath_reset_grablock: warning, recursive reset path! Xath0: ath_reset: concurrent reset! Danger! Xath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing 8932f272e79ad92a9b905b9e538697e1 echo x - n_ath0.fin.txt sed 's/^X//' >n_ath0.fin.txt << 'b322102728a7850851a37cf056bd326d' XFeb 28 12:25:46 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:25:46 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:26:05 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:26:05 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:26:05 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:26:05 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:26:05 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:26:33 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:26:33 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:26:33 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:26:33 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:26:37 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:26:41 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:26:55 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:26:55 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:26:55 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:26:55 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:26:55 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:27:49 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:27:49 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:27:49 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:27:51 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:27:51 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:27:51 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:27:51 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:28:57 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:28:57 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:28:57 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:28:57 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:29:28 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:29:28 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:29:28 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:29:28 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:29:28 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:29:35 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:29:35 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:29:35 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:29:38 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:29:42 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:29:42 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:29:52 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:29:52 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:29:52 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:29:52 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:29:52 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:30:10 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:30:10 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:30:10 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:31:05 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:31:26 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:31:31 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:31:47 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:31:47 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:31:47 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:31:47 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:31:52 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:31:52 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:31:52 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:31:52 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:31:52 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:32:32 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:32:32 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:32:32 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:32:44 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:32:44 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:32:46 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:32:46 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:32:46 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:33:08 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:33:08 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:33:08 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:33:23 hunny kernel: ath0: ath_rx_tasklet: sc_inreset_cnt > 0; skipping XFeb 28 12:33:28 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:33:28 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:33:28 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:33:28 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:33:38 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:33:40 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:33:40 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:33:40 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:33:46 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:33:46 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:33:46 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:34:13 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:34:13 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:34:13 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:34:13 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:34:13 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:34:13 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:34:15 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:34:21 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:34:21 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:34:21 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:34:21 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:34:25 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:34:25 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:34:31 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:34:36 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:34:36 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:34:38 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:34:38 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:34:38 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:34:38 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:34:38 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:34:47 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:34:47 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:34:47 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:34:51 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:34:51 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:34:51 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:34:54 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:34:54 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:34:54 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:34:54 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:34:57 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:34:57 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:34:57 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:34:59 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:35:03 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:35:03 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:35:03 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:35:03 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:35:24 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:35:24 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:35:24 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:35:24 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:35:24 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:35:26 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:35:26 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:35:26 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:35:26 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:35:26 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:35:51 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:35:51 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:35:51 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:35:51 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:35:51 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:35:53 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:35:53 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:35:53 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:36:05 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:36:14 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:36:14 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:36:14 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:36:16 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:36:16 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:36:16 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:36:36 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:36:36 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:36:36 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:37:22 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:37:51 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:37:51 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:37:51 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:37:51 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:37:51 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:37:56 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:37:57 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:37:57 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:37:57 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:37:57 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:37:57 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:37:59 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:37:59 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:37:59 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:37:59 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:38:05 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:38:05 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:38:05 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:38:05 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:38:05 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:38:07 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:38:07 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:38:07 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:38:07 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:38:22 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:38:22 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:38:22 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:38:28 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:38:28 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:38:28 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:38:31 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:39:03 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:39:03 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:39:03 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:39:03 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:39:38 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:39:38 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:39:42 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:39:42 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:39:42 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:39:42 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:40:20 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:40:20 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:40:20 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:40:20 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:40:20 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:40:20 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:40:23 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:40:23 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:40:28 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:40:28 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:40:28 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:40:28 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:40:31 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:40:31 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:40:35 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:40:35 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:40:35 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:40:35 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:40:48 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:40:48 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:40:49 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:40:50 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:40:50 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:40:50 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:40:52 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:40:52 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:40:52 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:40:52 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:41:26 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:41:26 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:41:26 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:41:44 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:41:44 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:41:44 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:42:14 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:42:16 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:42:16 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:42:16 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:42:16 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:42:16 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:42:19 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:42:19 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:42:19 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:42:22 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:42:22 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:42:22 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:42:22 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:42:25 hunny kernel: ath0: ath_rx_tasklet: sc_inreset_cnt > 0; skipping XFeb 28 12:42:46 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:42:53 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:42:53 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:42:54 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:42:54 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:42:54 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:42:56 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:43:14 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:43:14 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:43:14 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:43:14 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:43:21 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:43:21 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:43:21 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:43:22 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:43:22 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:43:22 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:43:22 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:43:22 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:43:31 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:43:31 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:43:31 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:43:31 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:43:31 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:43:32 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:43:32 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:43:32 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:43:32 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:43:45 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:43:45 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:43:45 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:43:45 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:43:45 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:44:00 hunny kernel: ath0: ath_tx_tid_drain: node 0xffffff800278e000: tid 16: txq_depth=0, txq_aggr_depth=0, sched=1, paused=0, hwq_depth=0, incomp=0, baw_head=0, baw_tail=0 txa_start=-1, ni_txseqs=10252 XFeb 28 12:44:05 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:44:05 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:44:08 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:44:08 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:44:08 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:44:11 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:44:24 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:44:24 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:44:29 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:44:29 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:44:29 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:44:30 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:44:30 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:44:30 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:44:30 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:44:30 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:44:49 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:44:49 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:44:49 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:44:49 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:45:01 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:45:15 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:45:15 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:45:15 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:45:15 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:45:15 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:45:37 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:45:37 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:45:37 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:45:45 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:45:45 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:45:45 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:45:56 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:45:56 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:45:56 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:45:56 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:45:56 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:46:00 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:46:00 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:46:00 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:46:00 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:46:35 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:46:43 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:46:43 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:46:43 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:46:43 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:46:43 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:46:43 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:46:58 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:46:58 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:47:00 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:47:00 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:47:00 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:47:00 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:47:00 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:47:14 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:47:14 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:47:14 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:47:14 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:47:14 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:47:22 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:47:22 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:47:22 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:47:25 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:47:25 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:47:25 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:47:25 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:47:41 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:47:46 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:47:46 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:47:46 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:47:46 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:48:20 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:48:20 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:48:20 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:48:20 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:48:20 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:48:20 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:48:23 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:48:23 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:48:23 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:48:23 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:48:32 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:48:32 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:48:32 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:48:32 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:49:06 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:49:06 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:49:06 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:49:06 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:49:06 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:49:09 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:49:09 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:49:09 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:49:20 hunny kernel: ath0: ath_tx_tid_drain: node 0xffffff800278e000: tid 16: txq_depth=0, txq_aggr_depth=0, sched=1, paused=0, hwq_depth=0, incomp=0, baw_head=0, baw_tail=0 txa_start=-1, ni_txseqs=13840 XFeb 28 12:49:27 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:49:35 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:49:37 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:49:37 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:49:37 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:49:37 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:49:59 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:49:59 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:49:59 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:49:59 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:50:19 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:50:19 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:50:19 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:50:19 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:50:27 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:50:27 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:50:27 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:50:27 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:50:30 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:50:33 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:50:33 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:50:33 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:50:33 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:51:02 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:51:02 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:51:02 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:51:02 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:51:02 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:51:08 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:51:08 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:51:08 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:51:21 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:51:55 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:51:55 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:52:06 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:52:06 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:52:06 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:52:06 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:52:39 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:52:39 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:52:53 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:52:53 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:52:53 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:52:53 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:52:53 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:52:58 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:52:58 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:52:58 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:53:04 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:53:04 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:53:04 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:53:18 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:53:18 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:53:18 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:53:19 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:53:21 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:53:21 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:53:21 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:53:21 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:53:21 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:53:21 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:53:21 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:53:21 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:53:21 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:53:46 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:53:46 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:54:18 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:54:18 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:54:18 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:54:25 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:54:25 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:54:25 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:54:25 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:54:25 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:54:38 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:54:38 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:54:38 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:54:38 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:54:38 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:55:51 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:55:51 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:55:51 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:55:51 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:55:56 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:55:56 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:55:56 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:55:56 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:55:56 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:56:08 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:56:08 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:56:08 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:56:08 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:56:08 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:56:38 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:56:58 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:56:58 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:57:00 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:57:00 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:57:00 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:57:00 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:57:08 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:57:19 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:57:19 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:57:19 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:57:19 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:57:40 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:57:40 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:57:40 hunny kernel: ath0: ath_reset: concurrent reset! Danger! XFeb 28 12:57:40 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:57:40 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:57:45 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:57:45 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:57:45 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:57:45 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:58:08 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:58:08 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:58:08 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:58:08 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:58:14 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:58:14 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:58:51 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:59:23 hunny kernel: ath0: ath_raw_xmit: sc_inreset_cnt > 0; bailing XFeb 28 12:59:30 hunny kernel: ath0: ath_tx_tid_drain: node 0xffffff800278e000: tid 16: txq_depth=0, txq_aggr_depth=0, sched=1, paused=0, hwq_depth=0, incomp=0, baw_head=0, baw_tail=0 txa_start=-1, ni_txseqs=20626 XFeb 28 12:59:33 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:59:33 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:59:33 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:59:33 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing XFeb 28 12:59:44 hunny kernel: ath0: ath_reset_grablock: didn't finish after 10 iterations XFeb 28 12:59:44 hunny kernel: ath0: ath_reset_grablock: warning, recursive reset path! XFeb 28 12:59:44 hunny kernel: ath0: ath_chan_set: concurrent reset! Danger! XFeb 28 12:59:44 hunny kernel: ath0: ath_start: sc_inreset_cnt > 0; bailing b322102728a7850851a37cf056bd326d exit >Release-Note: >Audit-Trail: >Unformatted: From dfilter at FreeBSD.ORG Wed Feb 29 06:20:09 2012 From: dfilter at FreeBSD.ORG (dfilter service) Date: Wed Feb 29 06:20:17 2012 Subject: kern/156567: commit references a PR Message-ID: <201202290620.q1T6K9mF043862@freefall.freebsd.org> The following reply was made to PR kern/156567; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/156567: commit references a PR Date: Wed, 29 Feb 2012 06:19:16 +0000 (UTC) Author: davidxu Date: Wed Feb 29 06:19:00 2012 New Revision: 232290 URL: http://svn.freebsd.org/changeset/base/232290 Log: MFC 230857: If multiple threads call kevent() to get AIO events on same kqueue fd, it is possible that a single AIO event will be reported to multiple threads, it is not threading friendly, and the existing API can not control this behavior. Allocate a kevent flags field sigev_notify_kevent_flags for AIO event notification in sigevent, and allow user to pass EV_CLEAR, EV_DISPATCH or EV_ONESHOT to AIO kernel code, user can control whether the event should be cleared once it is retrieved by a thread. This change should be comptaible with existing application, because the field should have already been zero-filled, and no additional action will be taken by kernel. PR: kern/156567 MFC 231006: Add 32-bit compat code for AIO kevent flags introduced in revision 230857. MFC 231724: Add notes about sigev_notify_kevent_flags introduced in revision 230857 which enables thread-friendly polling on same fd for AIO events. Reviewed by: delphij MFC 231777: Bump .Dd date for previous revision. Modified: stable/9/lib/libc/sys/kqueue.2 stable/9/sys/compat/freebsd32/freebsd32_signal.h stable/9/sys/kern/vfs_aio.c stable/9/sys/sys/signal.h Directory Properties: stable/9/lib/libc/ (props changed) stable/9/lib/libc/stdtime/ (props changed) stable/9/lib/libc/sys/ (props changed) stable/9/sys/ (props changed) stable/9/sys/amd64/include/xen/ (props changed) stable/9/sys/boot/ (props changed) stable/9/sys/boot/i386/efi/ (props changed) stable/9/sys/boot/ia64/efi/ (props changed) stable/9/sys/boot/ia64/ski/ (props changed) stable/9/sys/boot/powerpc/boot1.chrp/ (props changed) stable/9/sys/boot/powerpc/ofw/ (props changed) stable/9/sys/cddl/contrib/opensolaris/ (props changed) stable/9/sys/conf/ (props changed) stable/9/sys/contrib/dev/acpica/ (props changed) stable/9/sys/contrib/octeon-sdk/ (props changed) stable/9/sys/contrib/pf/ (props changed) stable/9/sys/contrib/x86emu/ (props changed) stable/9/sys/i386/conf/XENHVM (props changed) Modified: stable/9/lib/libc/sys/kqueue.2 ============================================================================== --- stable/9/lib/libc/sys/kqueue.2 Wed Feb 29 05:48:29 2012 (r232289) +++ stable/9/lib/libc/sys/kqueue.2 Wed Feb 29 06:19:00 2012 (r232290) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 15, 2009 +.Dd February 15, 2012 .Dt KQUEUE 2 .Os .Sh NAME @@ -322,6 +322,9 @@ The sigevent portion of the AIO request .Va sigev_notify_kqueue containing the descriptor of the kqueue that the event should be attached to, +.Va sigev_notify_kevent_flags +containing the kevent flags which should be EV_ONESHOT, EV_CLEAR or +EV_DISPATCH, .Va sigev_value containing the udata value, and .Va sigev_notify Modified: stable/9/sys/compat/freebsd32/freebsd32_signal.h ============================================================================== --- stable/9/sys/compat/freebsd32/freebsd32_signal.h Wed Feb 29 05:48:29 2012 (r232289) +++ stable/9/sys/compat/freebsd32/freebsd32_signal.h Wed Feb 29 06:19:00 2012 (r232290) @@ -92,6 +92,7 @@ struct sigevent32 { uint32_t _function; uint32_t _attribute; } _sigev_thread; + unsigned short _kevent_flags; uint32_t __spare__[8]; } _sigev_un; }; Modified: stable/9/sys/kern/vfs_aio.c ============================================================================== --- stable/9/sys/kern/vfs_aio.c Wed Feb 29 05:48:29 2012 (r232289) +++ stable/9/sys/kern/vfs_aio.c Wed Feb 29 06:19:00 2012 (r232290) @@ -1524,6 +1524,7 @@ aio_aqueue(struct thread *td, struct aio int error; int fd, kqfd; int jid; + u_short evflags; if (p->p_aioinfo == NULL) aio_init_aioinfo(p); @@ -1640,10 +1641,15 @@ aio_aqueue(struct thread *td, struct aio if (aiocbe->uaiocb.aio_sigevent.sigev_notify != SIGEV_KEVENT) goto no_kqueue; + evflags = aiocbe->uaiocb.aio_sigevent.sigev_notify_kevent_flags; + if ((evflags & ~(EV_CLEAR | EV_DISPATCH | EV_ONESHOT)) != 0) { + error = EINVAL; + goto aqueue_fail; + } kqfd = aiocbe->uaiocb.aio_sigevent.sigev_notify_kqueue; kev.ident = (uintptr_t)aiocbe->uuaiocb; kev.filter = EVFILT_AIO; - kev.flags = EV_ADD | EV_ENABLE | EV_FLAG1; + kev.flags = EV_ADD | EV_ENABLE | EV_FLAG1 | evflags; kev.data = (intptr_t)aiocbe; kev.udata = aiocbe->uaiocb.aio_sigevent.sigev_value.sival_ptr; error = kqfd_register(kqfd, &kev, td, 1); @@ -2688,6 +2694,7 @@ convert_sigevent32(struct sigevent32 *si break; case SIGEV_KEVENT: CP(*sig32, *sig, sigev_notify_kqueue); + CP(*sig32, *sig, sigev_notify_kevent_flags); PTRIN_CP(*sig32, *sig, sigev_value.sival_ptr); break; default: Modified: stable/9/sys/sys/signal.h ============================================================================== --- stable/9/sys/sys/signal.h Wed Feb 29 05:48:29 2012 (r232289) +++ stable/9/sys/sys/signal.h Wed Feb 29 06:19:00 2012 (r232290) @@ -169,12 +169,14 @@ struct sigevent { void (*_function)(union sigval); void *_attribute; /* pthread_attr_t * */ } _sigev_thread; + unsigned short _kevent_flags; long __spare__[8]; } _sigev_un; }; #if __BSD_VISIBLE #define sigev_notify_kqueue sigev_signo +#define sigev_notify_kevent_flags _sigev_un._kevent_flags #define sigev_notify_thread_id _sigev_un._threadid #endif #define sigev_notify_function _sigev_un._sigev_thread._function _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From linimon at FreeBSD.org Wed Feb 29 06:56:29 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Feb 29 06:56:35 2012 Subject: kern/165543: [ath] ath0 endless scanning of channels without connect - Atheros 9280 Message-ID: <201202290656.q1T6uTkO083268@freefall.freebsd.org> Old Synopsis: ath0 endless scanning of channels without connect - Atheros 9280 New Synopsis: [ath] ath0 endless scanning of channels without connect - Atheros 9280 Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 29 06:56:16 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165543 From proler at gmail.com Wed Feb 29 12:00:24 2012 From: proler at gmail.com (oleg) Date: Wed Feb 29 12:01:03 2012 Subject: misc/165551: no info in "ipfw pipe show" about ipv6 Message-ID: <201202291156.q1TBuaAN082004@red.freebsd.org> >Number: 165551 >Category: misc >Synopsis: no info in "ipfw pipe show" about ipv6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 12:00:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: oleg >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD progw 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: # ipfw pipe 1 config bw 1MBit/s # ipfw add 10000 pipe 1 ip6 from any to any via dc0 # ipfw show 10000 10000 93825 53039919 pipe 1 ip6 from any to any via dc0 # ipfw pipe show 00001: 1.000 Mbit/s 0 ms burst 0 q131073 50 sl. 0 flows (1 buckets) sched 65537 weight 0 lmax 0 pri 0 droptail sched 65537 type FIFO flags 0x0 0 buckets 1 active BKT Prot ___Source IP/port____ ____Dest. IP/port____ Tot_pkt/bytes Pkt/Byte Drp 0 ip 0.0.0.0/0 0.0.0.0/0 60 47550 11 11620 0 maybe its documentation problem >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From jim at carroll.com Wed Feb 29 17:50:11 2012 From: jim at carroll.com (Jim C.) Date: Wed Feb 29 17:50:36 2012 Subject: kern/165559: ufsmount.h uses the 'export' keyword as a structure member name Message-ID: <201202291746.q1THkbc6044907@red.freebsd.org> >Number: 165559 >Category: kern >Synopsis: ufsmount.h uses the 'export' keyword as a structure member name >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 17:50:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jim C. >Release: 8.2-RELEASE-p4 >Organization: Carroll-Net, Inc. >Environment: FreeBSD bv601.hck.carroll.com 8.2-RELEASE-p4 FreeBSD 8.2-RELEASE-p4 #0: Fri Nov 18 15:50:11 EST 2011 >Description: While compiling some GNU C++ code against the include file /usr/include/ufs/ufs/ufsmount.h, we discovered the ufs_args structure has a member variable named 'export'. G++ chokes with the following error: /usr/include/ufs/ufs/ufsmount.h:43: error: expected unqualified-id before 'export' The reason is that the term 'export' is a reserved, but presently unused keyword in the C++ language. To solve our problem, we've copied the header locally to our project folder, and renamed the reference. But if possible, I was hoping this could be folded back into the main tree. I recognize this could present a breaking change for any projects that link against libufs -- but sooner or later this change will need to be accepted or someone is going to have to convince the folks at GNU/C++ to add a compiler directive to ignore the 'export' keyword (fyi -- I checked, but so far this looks like a no go). FYI -- the folks at the openssl project encountered had a similar problem and eventually they were forced to just rename the member variable. >How-To-Repeat: Create my.cpp, paste in #include #include #include #include #include #include g++ -c my.cpp ~ ~ >Fix: --- ufsmount.h 2012-02-29 12:33:04.000000000 -0500 +++ /usr/include/ufs/ufs/ufsmount.h 2012-02-29 12:32:28.000000000 -0500 @@ -40,7 +40,7 @@ */ struct ufs_args { char *fspec; /* block special device to mount */ - struct oexport_args export_; /* network export information */ + struct oexport_args export; /* network export information */ }; #ifdef _KERNEL >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Wed Feb 29 18:02:50 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Feb 29 18:02:57 2012 Subject: kern/165547: [ata] NVIDIA MCP67 AHCI SATA controller timeout Message-ID: <201202291802.q1TI2o6n032506@freefall.freebsd.org> Old Synopsis: NVIDIA MCP67 AHCI SATA controller timeout New Synopsis: [ata] NVIDIA MCP67 AHCI SATA controller timeout Responsible-Changed-From-To: freebsd-amd64->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 29 18:02:05 UTC 2012 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=165547 From linimon at FreeBSD.org Wed Feb 29 18:03:47 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Feb 29 18:03:54 2012 Subject: docs/165551: ipfw(8): no info in "ipfw pipe show" about ipv6 Message-ID: <201202291803.q1TI3lnH032684@freefall.freebsd.org> Old Synopsis: no info in "ipfw pipe show" about ipv6 New Synopsis: ipfw(8): no info in "ipfw pipe show" about ipv6 Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 29 18:03:23 UTC 2012 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=165551 From linimon at FreeBSD.org Wed Feb 29 18:08:41 2012 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Feb 29 18:08:52 2012 Subject: kern/165559: [ufs] [patch] ufsmount.h uses the 'export' keyword as a structure member name Message-ID: <201202291808.q1TI8ejt033108@freefall.freebsd.org> Old Synopsis: ufsmount.h uses the 'export' keyword as a structure member name New Synopsis: [ufs] [patch] ufsmount.h uses the 'export' keyword as a structure member name Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 29 18:08:22 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=165559 From brueffer at FreeBSD.org Wed Feb 29 19:51:34 2012 From: brueffer at FreeBSD.org (brueffer@FreeBSD.org) Date: Wed Feb 29 19:51:41 2012 Subject: misc/160867: [tools] [patch] Swapped arguments in cap_test_capmode.c Message-ID: <201202291951.q1TJpXhn033728@freefall.freebsd.org> Synopsis: [tools] [patch] Swapped arguments in cap_test_capmode.c State-Changed-From-To: open->patched State-Changed-By: brueffer State-Changed-When: Wed Feb 29 20:50:58 CET 2012 State-Changed-Why: Fixed, thanks! Responsible-Changed-From-To: freebsd-bugs->brueffer Responsible-Changed-By: brueffer Responsible-Changed-When: Wed Feb 29 20:50:58 CET 2012 Responsible-Changed-Why: MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=160867 From kes-kes at yandex.ru Wed Feb 29 20:20:12 2012 From: kes-kes at yandex.ru (Eugen Konkov) Date: Wed Feb 29 20:20:56 2012 Subject: misc/165562: no support for Intel i350 in FreeBSD 7.4 Message-ID: <201202292016.q1TKGYIv012834@red.freebsd.org> >Number: 165562 >Category: misc >Synopsis: no support for Intel i350 in FreeBSD 7.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 20:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugen Konkov >Release: >Organization: ISP FreeLine >Environment: >Description: >How-To-Repeat: >Fix: add support for Intel i350 into 7.4 >Release-Note: >Audit-Trail: >Unformatted: From chuzzwassa at gmail.com Wed Feb 29 21:00:32 2012 From: chuzzwassa at gmail.com (Andy Farkas) Date: Wed Feb 29 21:00:40 2012 Subject: misc/165521: livelock on 1 Gig of RAM with zfs when 310.locate is run Message-ID: <201202292100.q1TL0VYi089970@freefall.freebsd.org> The following reply was made to PR misc/165521; it has been noted by GNATS. From: Andy Farkas To: "Eugene M. Zheganin" , bug-followup@freebsd.org Cc: Subject: Re: misc/165521: livelock on 1 Gig of RAM with zfs when 310.locate is run Date: Thu, 1 Mar 2012 06:35:10 +1000 On Tue, Feb 28, 2012 at 2:49 PM, Eugene M. Zheganin wrote: > > loader.conf: > > zfs_load="YES" > vfs.root.mountfrom="zfs:zfsroot" > ng_iface_load="YES" > ng_ether_load="YES" > vm.kmem_size="330M" > vm.kmem_size_max="330M" > vfs.zfs.arc_max="30M" > My fileserver (4 x 1.5TB in raidz1) has only 1GB and it runs fine. It boots a UFS root though. The difference to my loader.conf: vfs.zfs.arc_max="256M" vfs.zfs.prefetch_disable="1" vfs.zfs.zio.use_uma="0" vm.kmem_size="512M" vm.kmem_size_max="512M" FreeBSD 8.2-STABLE (HUMMER) #0: Tue Jul 5 19:10:42 EST 2011 6:32AM up 17 days, 13:25, 4 users, load averages: 0.03, 0.06, 0.04 -andyf From info at targipolitalia.com Wed Feb 29 23:23:40 2012 From: info at targipolitalia.com (Dariusz Trzaska) Date: Wed Feb 29 23:23:56 2012 Subject: =?iso-8859-2?q?Nowa_wiadomo=B6=E6?= Message-ID: <20120229232340.344751065678@hub.freebsd.org> We invite you to visit our newly formed and remodeled website: http://www.targipolitalia.com The world's first international exhibition on-line now active. Free registration gives the possibility of advertising, which can lead to the development and success of the company. We designed a "VIRTUAL FAIR Boxes" run functions that operate after registering and logging in, for all firms and individuals registered on the portal. You can place ads in all languages, such as: I am looking for customers, suppliers, contractors as well as an investor, partner, etc. Similarly, you can browse proposals from other companies. We are open for cooperation, as well as suggestions on how to further improve the functioning of site. Greetings and welcome to register a company as well as private individuals. Dariusz Trzaska Electronic signature no. 287732/CCK/2011 Mob. +39 3806460196 E-mail: info@targipolitalia.com http://www.targipolitalia.com