From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 28 12:18:13 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D75B01065670; Sun, 28 Aug 2011 12:18:13 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AF8908FC21; Sun, 28 Aug 2011 12:18:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7SCID9F057954; Sun, 28 Aug 2011 12:18:13 GMT (envelope-from marius@freefall.freebsd.org) Received: (from marius@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7SCIDIq057949; Sun, 28 Aug 2011 12:18:13 GMT (envelope-from marius) Date: Sun, 28 Aug 2011 12:18:13 GMT Message-Id: <201108281218.p7SCIDIq057949@freefall.freebsd.org> To: eugene@zhegan.in, marius@FreeBSD.org, freebsd-bugs@FreeBSD.org From: marius@FreeBSD.org Cc: Subject: Re: kern/157534: [mpt] freeze when disk is removed/died from geom_mirror/zfs raid X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2011 12:18:13 -0000 Synopsis: [mpt] freeze when disk is removed/died from geom_mirror/zfs raid State-Changed-From-To: open->closed State-Changed-By: marius State-Changed-When: Sun Aug 28 12:16:36 UTC 2011 State-Changed-Why: Close; patches have been committed and MFC'ed down to stable/7. http://www.freebsd.org/cgi/query-pr.cgi?pr=157534 From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 28 16:40:14 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D4D1106564A for ; Sun, 28 Aug 2011 16:40:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4BC108FC08 for ; Sun, 28 Aug 2011 16:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7SGeE5Y027439 for ; Sun, 28 Aug 2011 16:40:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7SGeErI027438; Sun, 28 Aug 2011 16:40:14 GMT (envelope-from gnats) Date: Sun, 28 Aug 2011 16:40:14 GMT Message-Id: <201108281640.p7SGeErI027438@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Kostik Belousov Cc: Subject: Re: misc/159654: 46 kernel headers use register_t but don't #include X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kostik Belousov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2011 16:40:14 -0000 The following reply was made to PR misc/159654; it has been noted by GNATS. From: Kostik Belousov To: Bruce Evans Cc: Robert Millan , freebsd-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: misc/159654: 46 kernel headers use register_t but don't #include Date: Sun, 28 Aug 2011 19:35:16 +0300 --Z12CilHQyxEpxhFF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 11, 2011 at 12:57:33PM +1000, Bruce Evans wrote: > is not a kernel header, but it is not a user > header either. It is an error to include this header directly. The > only supported includes of it are indirectly via in > applications and via in the kernel ( > is just a copy or symlink of ). >=20 > The amd64 and i386 's spell register_t as __register_= t, > but they don't include , so they still have > as a prerequisite ( or any header that > is documented to include that would work too, but only accidentally > since no types declared in ). >=20 > The i386 used to spell register_t as int, and it > now has a rotted comment that depends on this spelling for easy checking. > It says that the first 20 of __mcontext fields MUST match the definition > of sigcontext, but for sigcontext the fields are spelled with an int. > Also, the number '20' is confusing and rotted. It is the first 20 fields > of __mcontext that used to have to match the not the first 20 fields of > sigcontext, but the second through 21st fields of sigcontext (since the > first field of mcontext and sigcontext is not in __mcontext). Both > structures have been expanded, and binary compatibility seems to have > been perfected, so there are now 28 fields in __mcontext that all seem > to be binary compatible with sigcontext, giving perfect binary > compatibility of mcontext with sigcontext. >=20 > The i386 also declares struct mcontext4. The magic > 20 is correct for it, since binary compatibility is lost at the "new" > 21st field (there is mc_len but no sc_len, and the FP data structures > have different sizes). But the comment is only attached to struct > __mcontext where it doesn't apply at all -- it was easy to implement > perfect compatibility of the whole structs when the ABI was changed. >=20 > The i386 also declares struct osigcontext. This is > even older than struct mcontext4. The magic 20 applies to it to, even > more so (osigcontext ends after the 1+20'th field in it, where > mcontext4 just becomes incompatitible after the 1+20'th field). >=20 > The amd64 has even larger bugs in the comment. > amd64 has at least 8 more registers, so it should have at least 8 more > fields, but the comment only says 24. The code seems to be correct, > giving perfect binary compatibility for all 36 fields. >=20 > The amd64 spells register_t as long where the i386 > version spells it as int. This difference is of course necessary if > a basic type is used, but it gives larger diffs than if [__]register_t > is used. Another annoying lexical style bug in these files is that > the fields are hard to count and hard to see all at once due to > vertical whitespace being used to separate blocks that are only of > historical interest, but with much the same bugs as the comment -- the > 20 special fields used to be nicely blocked off, but now they are > nastily blocked off because the magic 20 has no significance in the > current ABI. >=20 > kib@ should look at this. I suspect that struct sigcontext is unused at all. I understand that it is a user-mode interface, but the kernel uses mcontext_t almost exclusively, except for the compat layouts. This made especially confusing by packing sigmask into sigcontext as the first member, but using a separate field in ucontext_t right before uc_mcontext (I hope this can be deciphered). And, the driving force beyond the layout is struct trapframe, that is well-known but not obvious until you start to remember sigsend() code. I tried to do some minimal comment cleanup. diff --git a/sys/amd64/include/signal.h b/sys/amd64/include/signal.h index 228e2d9..9e9c9ad 100644 --- a/sys/amd64/include/signal.h +++ b/sys/amd64/include/signal.h @@ -57,8 +57,8 @@ typedef long sig_atomic_t; * a non-standard exit is performed. */ /* - * The sequence of the fields/registers in struct sigcontext should match - * those in mcontext_t. + * The sequence of the fields/registers after sc_mask in struct + * sigcontext should match those in mcontext_t and struct trapframe. */ struct sigcontext { struct __sigset sc_mask; /* signal mask to restore */ @@ -93,8 +93,8 @@ struct sigcontext { long sc_ss; long sc_len; /* sizeof(mcontext_t) */ /* - * XXX - See and for - * the following fields. + * See and for + * the following fields. */ long sc_fpformat; long sc_ownedfp; diff --git a/sys/amd64/include/ucontext.h b/sys/amd64/include/ucontext.h index c5bbd65..0341527 100644 --- a/sys/amd64/include/ucontext.h +++ b/sys/amd64/include/ucontext.h @@ -41,12 +41,12 @@ =20 typedef struct __mcontext { /* - * The first 24 fields must match the definition of - * sigcontext. So that we can support sigcontext - * and ucontext_t at the same time. + * The definition of mcontext_t shall match the layout of + * struct sigcontext after the sc_mask member. So that we can + * support sigcontext and ucontext_t at the same time. */ - __register_t mc_onstack; /* XXX - sigcontext compat. */ - __register_t mc_rdi; /* machine state (struct trapframe) */ + __register_t mc_onstack; /* XXX - sigcontext compat. */ + __register_t mc_rdi; /* machine state (struct trapframe) */ __register_t mc_rsi; __register_t mc_rdx; __register_t mc_rcx; diff --git a/sys/i386/include/signal.h b/sys/i386/include/signal.h index 7a5f876..47035de 100644 --- a/sys/i386/include/signal.h +++ b/sys/i386/include/signal.h @@ -83,7 +83,7 @@ struct osigcontext { =20 /* * The sequence of the fields/registers in struct sigcontext should match - * those in mcontext_t. + * those in mcontext_t and struct trapframe. */ struct sigcontext { struct __sigset sc_mask; /* signal mask to restore */ @@ -109,8 +109,8 @@ struct sigcontext { int sc_ss; int sc_len; /* sizeof(mcontext_t) */ /* - * XXX - See and for - * the following fields. + * See and for + * the following fields. */ int sc_fpformat; int sc_ownedfp; diff --git a/sys/i386/include/ucontext.h b/sys/i386/include/ucontext.h index d8657d3..d9f8344 100644 --- a/sys/i386/include/ucontext.h +++ b/sys/i386/include/ucontext.h @@ -33,9 +33,9 @@ =20 typedef struct __mcontext { /* - * The first 20 fields must match the definition of - * sigcontext. So that we can support sigcontext - * and ucontext_t at the same time. + * The definition of mcontext_t shall match the layout of + * struct sigcontext after the sc_mask member. So that we can + * support sigcontext and ucontext_t at the same time. */ __register_t mc_onstack; /* XXX - sigcontext compat. */ __register_t mc_gs; /* machine state (struct trapframe) */ --Z12CilHQyxEpxhFF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEARECAAYFAk5abkMACgkQC3+MBN1Mb4jBKgCdH1d8YiFe9Htjy30Vw5dvlWer o/YAoPbaQVbjkI9/sclHewUTGrD06r/c =SDSz -----END PGP SIGNATURE----- --Z12CilHQyxEpxhFF-- From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 28 16:57:23 2011 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 307BC106566B for ; Sun, 28 Aug 2011 16:57:23 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.zoral.com.ua (mx0.zoral.com.ua [91.193.166.200]) by mx1.freebsd.org (Postfix) with ESMTP id 95CB58FC18 for ; Sun, 28 Aug 2011 16:57:22 +0000 (UTC) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id p7SGZHgS011677 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 28 Aug 2011 19:35:17 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.4/8.14.4) with ESMTP id p7SGZHfN059733; Sun, 28 Aug 2011 19:35:17 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.4/8.14.4/Submit) id p7SGZG2x059731; Sun, 28 Aug 2011 19:35:16 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Sun, 28 Aug 2011 19:35:16 +0300 From: Kostik Belousov To: Bruce Evans Message-ID: <20110828163516.GS17489@deviant.kiev.zoral.com.ua> References: <201108101917.p7AJHin7006109@red.freebsd.org> <20110811103923.F926@besplex.bde.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Z12CilHQyxEpxhFF" Content-Disposition: inline In-Reply-To: <20110811103923.F926@besplex.bde.org> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: clamav-milter 0.95.2 at skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-3.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DNS_FROM_OPENWHOIS autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua Cc: Robert Millan , freebsd-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: misc/159654: 46 kernel headers use register_t but don't #include X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2011 16:57:23 -0000 --Z12CilHQyxEpxhFF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 11, 2011 at 12:57:33PM +1000, Bruce Evans wrote: > is not a kernel header, but it is not a user > header either. It is an error to include this header directly. The > only supported includes of it are indirectly via in > applications and via in the kernel ( > is just a copy or symlink of ). >=20 > The amd64 and i386 's spell register_t as __register_= t, > but they don't include , so they still have > as a prerequisite ( or any header that > is documented to include that would work too, but only accidentally > since no types declared in ). >=20 > The i386 used to spell register_t as int, and it > now has a rotted comment that depends on this spelling for easy checking. > It says that the first 20 of __mcontext fields MUST match the definition > of sigcontext, but for sigcontext the fields are spelled with an int. > Also, the number '20' is confusing and rotted. It is the first 20 fields > of __mcontext that used to have to match the not the first 20 fields of > sigcontext, but the second through 21st fields of sigcontext (since the > first field of mcontext and sigcontext is not in __mcontext). Both > structures have been expanded, and binary compatibility seems to have > been perfected, so there are now 28 fields in __mcontext that all seem > to be binary compatible with sigcontext, giving perfect binary > compatibility of mcontext with sigcontext. >=20 > The i386 also declares struct mcontext4. The magic > 20 is correct for it, since binary compatibility is lost at the "new" > 21st field (there is mc_len but no sc_len, and the FP data structures > have different sizes). But the comment is only attached to struct > __mcontext where it doesn't apply at all -- it was easy to implement > perfect compatibility of the whole structs when the ABI was changed. >=20 > The i386 also declares struct osigcontext. This is > even older than struct mcontext4. The magic 20 applies to it to, even > more so (osigcontext ends after the 1+20'th field in it, where > mcontext4 just becomes incompatitible after the 1+20'th field). >=20 > The amd64 has even larger bugs in the comment. > amd64 has at least 8 more registers, so it should have at least 8 more > fields, but the comment only says 24. The code seems to be correct, > giving perfect binary compatibility for all 36 fields. >=20 > The amd64 spells register_t as long where the i386 > version spells it as int. This difference is of course necessary if > a basic type is used, but it gives larger diffs than if [__]register_t > is used. Another annoying lexical style bug in these files is that > the fields are hard to count and hard to see all at once due to > vertical whitespace being used to separate blocks that are only of > historical interest, but with much the same bugs as the comment -- the > 20 special fields used to be nicely blocked off, but now they are > nastily blocked off because the magic 20 has no significance in the > current ABI. >=20 > kib@ should look at this. I suspect that struct sigcontext is unused at all. I understand that it is a user-mode interface, but the kernel uses mcontext_t almost exclusively, except for the compat layouts. This made especially confusing by packing sigmask into sigcontext as the first member, but using a separate field in ucontext_t right before uc_mcontext (I hope this can be deciphered). And, the driving force beyond the layout is struct trapframe, that is well-known but not obvious until you start to remember sigsend() code. I tried to do some minimal comment cleanup. diff --git a/sys/amd64/include/signal.h b/sys/amd64/include/signal.h index 228e2d9..9e9c9ad 100644 --- a/sys/amd64/include/signal.h +++ b/sys/amd64/include/signal.h @@ -57,8 +57,8 @@ typedef long sig_atomic_t; * a non-standard exit is performed. */ /* - * The sequence of the fields/registers in struct sigcontext should match - * those in mcontext_t. + * The sequence of the fields/registers after sc_mask in struct + * sigcontext should match those in mcontext_t and struct trapframe. */ struct sigcontext { struct __sigset sc_mask; /* signal mask to restore */ @@ -93,8 +93,8 @@ struct sigcontext { long sc_ss; long sc_len; /* sizeof(mcontext_t) */ /* - * XXX - See and for - * the following fields. + * See and for + * the following fields. */ long sc_fpformat; long sc_ownedfp; diff --git a/sys/amd64/include/ucontext.h b/sys/amd64/include/ucontext.h index c5bbd65..0341527 100644 --- a/sys/amd64/include/ucontext.h +++ b/sys/amd64/include/ucontext.h @@ -41,12 +41,12 @@ =20 typedef struct __mcontext { /* - * The first 24 fields must match the definition of - * sigcontext. So that we can support sigcontext - * and ucontext_t at the same time. + * The definition of mcontext_t shall match the layout of + * struct sigcontext after the sc_mask member. So that we can + * support sigcontext and ucontext_t at the same time. */ - __register_t mc_onstack; /* XXX - sigcontext compat. */ - __register_t mc_rdi; /* machine state (struct trapframe) */ + __register_t mc_onstack; /* XXX - sigcontext compat. */ + __register_t mc_rdi; /* machine state (struct trapframe) */ __register_t mc_rsi; __register_t mc_rdx; __register_t mc_rcx; diff --git a/sys/i386/include/signal.h b/sys/i386/include/signal.h index 7a5f876..47035de 100644 --- a/sys/i386/include/signal.h +++ b/sys/i386/include/signal.h @@ -83,7 +83,7 @@ struct osigcontext { =20 /* * The sequence of the fields/registers in struct sigcontext should match - * those in mcontext_t. + * those in mcontext_t and struct trapframe. */ struct sigcontext { struct __sigset sc_mask; /* signal mask to restore */ @@ -109,8 +109,8 @@ struct sigcontext { int sc_ss; int sc_len; /* sizeof(mcontext_t) */ /* - * XXX - See and for - * the following fields. + * See and for + * the following fields. */ int sc_fpformat; int sc_ownedfp; diff --git a/sys/i386/include/ucontext.h b/sys/i386/include/ucontext.h index d8657d3..d9f8344 100644 --- a/sys/i386/include/ucontext.h +++ b/sys/i386/include/ucontext.h @@ -33,9 +33,9 @@ =20 typedef struct __mcontext { /* - * The first 20 fields must match the definition of - * sigcontext. So that we can support sigcontext - * and ucontext_t at the same time. + * The definition of mcontext_t shall match the layout of + * struct sigcontext after the sc_mask member. So that we can + * support sigcontext and ucontext_t at the same time. */ __register_t mc_onstack; /* XXX - sigcontext compat. */ __register_t mc_gs; /* machine state (struct trapframe) */ --Z12CilHQyxEpxhFF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEARECAAYFAk5abkMACgkQC3+MBN1Mb4jBKgCdH1d8YiFe9Htjy30Vw5dvlWer o/YAoPbaQVbjkI9/sclHewUTGrD06r/c =SDSz -----END PGP SIGNATURE----- --Z12CilHQyxEpxhFF-- From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 07:20:10 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC7101065670 for ; Mon, 29 Aug 2011 07:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9A3328FC17 for ; Mon, 29 Aug 2011 07:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7T7KAYE051291 for ; Mon, 29 Aug 2011 07:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7T7KAHM051290; Mon, 29 Aug 2011 07:20:10 GMT (envelope-from gnats) Resent-Date: Mon, 29 Aug 2011 07:20:10 GMT Resent-Message-Id: <201108290720.p7T7KAHM051290@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Paul Ambrose Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEED5106566B for ; Mon, 29 Aug 2011 07:11:21 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AF2B38FC19 for ; Mon, 29 Aug 2011 07:11:21 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7T7BLuu007007 for ; Mon, 29 Aug 2011 07:11:21 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7T7BLnM007006; Mon, 29 Aug 2011 07:11:21 GMT (envelope-from nobody) Message-Id: <201108290711.p7T7BLnM007006@red.freebsd.org> Date: Mon, 29 Aug 2011 07:11:21 GMT From: Paul Ambrose To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/160275: dtrace -lv cause X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 07:20:10 -0000 >Number: 160275 >Category: kern >Synopsis: dtrace -lv cause >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 Aug 29 07:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Paul Ambrose >Release: 9.0-beta2 >Organization: >Environment: [root@lateaxfreebsd ~]# uname -a FreeBSD lateaxfreebsd 9.0-BETA2 FreeBSD 9.0-BETA2 #4 r+c45c70e: Mon Aug 29 14:34:54 CST 2011 root@lateaxfreebsd:/usr/obj/usr/src/sys/MYKERNEL amd64 >Description: dtrace -lv; the output seems all right; but the dmesg has warnings like this: fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! fbt_getargdesc(1302): Unknown function! ctf_lookup_by_id(998): type 2363 exceeds max 2363 ctf_lookup_by_id(998): type 2363 exceeds max 2363 I notice the 'dtrace -l' output has something like this ....................... 19324 syscall freebsd32 #518 entry 19325 syscall freebsd32 #518 return 19326 syscall freebsd32 #519 entry 19327 syscall freebsd32 #519 return 19328 syscall freebsd32 #520 entry 19329 syscall freebsd32 #520 return 19330 syscall freebsd32 #521 entry 19331 syscall freebsd32 #521 return 19332 syscall freebsd32 freebsd32_pselect entry 19333 syscall freebsd32 freebsd32_pselect return 19334 syscall freebsd32 getloginclass entry 19335 syscall freebsd32 getloginclass return 19336 syscall freebsd32 setloginclass entry 19337 syscall freebsd32 setloginclass return 19338 syscall freebsd32 rctl_get_racct entry 19339 syscall freebsd32 rctl_get_racct return 19340 syscall freebsd32 rctl_get_rules entry 19341 syscall freebsd32 rctl_get_rules return 19342 syscall freebsd32 rctl_get_limits entry 19343 syscall freebsd32 rctl_get_limits return 19344 syscall freebsd32 rctl_add_rule entry 19345 syscall freebsd32 rctl_add_rule return 19346 syscall freebsd32 rctl_remove_rule entry 19347 syscall freebsd32 rctl_remove_rule return 19348 syscall freebsd32 freebsd32_posix_fallocate entry 19349 syscall freebsd32 freebsd32_posix_fallocate return 19350 syscall freebsd32 #531 entry 19351 syscall freebsd32 #531 return some of function column of syscall provider is #num, not the function name, I checked the syscalls.c, It seems the warning come from unimplemented syscall(the num is the syscall number), this syscall exists in the syscall table, and dtrace produce relevant probe for it, but these syscall has no implementation, so 'dtrace -lv' found no ctf info plus, on 8.2-stable, the dtrace -lv cause page fault on fbt_getargdesc in fbt.c /* Check if this module hasn't been initialised yet. */ if (*lc.ctfoffp == NULL) { //it seems ctfoffp == NULL /* * Initialise the CTF object and function symindx to * byte offset array. */ if (fbt_ctfoff_init(ctl, &lc) != 0) return; /* Initialise the CTF type to byte offset array. */ if (fbt_typoff_init(&lc) != 0) return; } >How-To-Repeat: dtrace -lv with dtrace enabled; >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 08:50:07 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DE501065675 for ; Mon, 29 Aug 2011 08:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1C88E8FC1B for ; Mon, 29 Aug 2011 08:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7T8o6H0059893 for ; Mon, 29 Aug 2011 08:50:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7T8o6w2059892; Mon, 29 Aug 2011 08:50:06 GMT (envelope-from gnats) Resent-Date: Mon, 29 Aug 2011 08:50:06 GMT Resent-Message-Id: <201108290850.p7T8o6w2059892@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, MATSUMIYA Ryo Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D79F1065670 for ; Mon, 29 Aug 2011 08:40:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 820F48FC12 for ; Mon, 29 Aug 2011 08:40:04 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7T8e4gq066168 for ; Mon, 29 Aug 2011 08:40:04 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7T8e4v2066167; Mon, 29 Aug 2011 08:40:04 GMT (envelope-from nobody) Message-Id: <201108290840.p7T8e4v2066167@red.freebsd.org> Date: Mon, 29 Aug 2011 08:40:04 GMT From: MATSUMIYA Ryo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/160276: Spelling Mistake in comments in configure-files X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 08:50:07 -0000 >Number: 160276 >Category: kern >Synopsis: Spelling Mistake in comments in configure-files >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: Mon Aug 29 08:50:06 UTC 2011 >Closed-Date: >Last-Modified: >Originator: MATSUMIYA Ryo >Release: FreeBSD 8.2-RELEASE-p2 amd64 >Organization: University of Electro-Communications >Environment: FreeBSD nest.mma.club.uec.ac.jp 8.2-RELEASE-p2 FreeBSD 8.2-RELEASE-p2 #1: Sun May 29 15:21:20 JST 2011 root@core.mma.club.uec.ac.jp:/usr/obj/export/freebsd/src/sys/CORE amd64 >Description: I think there are spelling mistakes in: sys/pc98/conf/GENERIC sys/i386/conf/GENERIC sys/sparc64/conf/GENERIC sys/mips/conf/OCTEON1 sys/amd64/conf/GENERIC > device zyd # ZyDAS zb1211/zb1211b wireless NICs I remember there are not zb1211/zb1211b but zd1211/zd1211b. In fact, zb1211 was not found by grep in /usr/src/sys/dev/, but zd1211 was found. >How-To-Repeat: >Fix: Apply the patch. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 11:09:27 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BAE9A1065708 for ; Mon, 29 Aug 2011 11:09:27 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A853C8FC13 for ; Mon, 29 Aug 2011 11:09:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TB9Rsr091139 for ; Mon, 29 Aug 2011 11:09:27 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TB9QLl091137 for freebsd-bugs@FreeBSD.org; Mon, 29 Aug 2011 11:09:26 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 29 Aug 2011 11:09:26 GMT Message-Id: <201108291109.p7TB9QLl091137@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Cc: Subject: Current problem reports containing patches X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 11:09:27 -0000 (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/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio o ports/160274 [patch] sysutils/hfsexplorer updated url discripton o ports/160273 [patch] Fix distfile sources for port net/AquaGatekeep f ports/160272 [patch] unbreak port net/AquaGatekeeper o ports/160271 skv [PATCH] devel/thrift: fix compile error with fb303, pa o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o docs/160269 doc [patch] Handbook wireless section: sand off some rough o docs/160267 doc [patch] wlan.4 has incorrect apostrophe o ports/160266 lme [PATCH] multimedia/devede: remove broken patch f ports/160264 ohauer [patch] net/tac_plus-libradius fix build on FreeBSD-9 o ports/160261 jpaetzel [patch] textproc/translate-toolkit: eliminate py-pysql f ports/160257 [patch] mail/ssmtp: pkg-message needs further descript o ports/160255 kuriyama [PATCH] databases/p5-TokyoCabinet: update MASTER_SITES o ports/160251 gnome [PATCH] www/webkit-gtk2 to avoid Midori's crash when w o ports/160250 gabor [PATCH] databases/gdbm: update to 1.9.1 o ports/160249 flo [patch] (ports) games/crafty-tablebase-pawn: undepreca f ports/160244 ruby [PATCH] finance/rubygem-money: update to 3.7.1 and fix o ports/160236 [patch] Upgrade lang/jruby to 1.6.4 o conf/160235 [syscons] [patch] Spanish Dvorak keyboard f ports/160233 [patch][update] devel/pinba_engine Update to new revis o ports/160231 sunpoet [PATCH] databases/cassandra: update to 0.8.4 o ports/160229 demon [PATCH] devel/p5-ExtUtils-ParseXS: update to 3.04 o ports/160223 miwi [PATCH] major memory leak in graphics/ristretto o ports/160220 sbz [PATCH] www/roundup: eliminate py-pysqlite2x dependenc o ports/160205 skv [PATCH] sysutils/hyperic-sigar: update to 1.6.4 o ports/160203 skv [PATCH] devel/thrift: update to 0.6.1 o ports/160202 adamw [PATCH] shells/bash-completion: use @dirrmtry for PREF o ports/160195 ruby [patch][maintainer-update] security/rubygem-bcrypt-rub o ports/160194 [PATCH] sysutils/jdiskreport: update to 1.3.2 o ports/160189 lippe [PATCH] textproc/p5-Excel-Template: update to 0.33 o ports/160188 tobez [PATCH] textproc/p5-YAML: update to 0.73 o ports/160187 lwhsu [PATCH] textproc/tokyodystopia: update to 0.9.15 o ports/160180 zi [PATCH] Update and fix www/xxxterm o ports/160174 [PATCH] japanese/jcode.pl Fix defined(%hash) is deprec o ports/160164 kde [PATCH] x11/kdebase4-workspace - make astro/gpsd depen o ports/160161 [PATCH] deskutils/griffith: eliminate py-pysqlite2x de o ports/160071 [PATCH] security/zenmap: eliminate py-pysqlite2x depen o ports/160070 [PATCH] multimedia/miro: eliminate py-pysqlite2x depen f ports/160069 glarkin [PATCH] devel/bzr-git: eliminate py-pysqlite2x depende o ports/160066 [PATCH] security/hottsh: eliminate py-pysqlite2x depen o ports/160065 [PATCH] multimedia/pyjama: eliminate py-pysqlite2x dep f ports/160064 lth [PATCH] textproc/p5-Text-Markdown: cleanup dependencie o ports/160063 gnome [PATCH] deskutils/conduit: eliminate py-pysqlite2x dep f ports/160058 [patch] games/instead: update to 1.5.0 o ports/160055 [PATCH] games/anki: eliminate py-pysqlite2x dependency o ports/160054 gnome [PATCH] games/gcompris: eliminate py-pysqlite2x depend f ports/160052 [patch] sysutils/fusefs-kmod: fix build after vfs_flag o ports/160051 clsung [PATCH] net/py-s3cmd: eliminate py-elementtree depende o ports/160050 girgen [patch] databases/postgresql84-server: unbreak for 9.x o ports/160049 [PATCH] emulators/wahcade: eliminate py-elementtree de f ports/160045 [PATCH] emulators/visualboyadvance-m: fix SFML depend f ports/160040 sunpoet [patch] databases/cassandra: update to 0.8.4 o ports/160036 dhn [PATCH]x11-wm/i3 update to v4.0.1 f ports/160034 delphij [PATCH] net/istgt: Don't enforce run before mountcritr o ports/160031 [PATCH] devel/yajl add yajl.pc o ports/160030 vsevolod [PATCH] devel/libev add libev.pc o ports/160012 [maintainer-update] [patch] net-p2p/lopster portlint c o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat o ports/160000 clsung [PATCH] devel/global: update to 5.9.7 o ports/159998 oliver [PATCH] x11/xfce4-conf breaks with perl bindings o ports/159993 multimedia [patch] multimedia/podcatcher: broken with ruby19 o ports/159991 [PATCH] devel/py-mercurialserver mark IGNORE f ports/159985 delphij [patch] add aio support knob to net/istgt o kern/159975 [acpica] [patch] add units to hw.acpi.sleep_delay f ports/159973 zi [PATCH] www/trafficserver: update to 3.0.1 o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159968 haskell [PATCH] x11-wm/hs-xmonad-contrib fix o ports/159964 garga [PATCH] mail/qmail Add smtpauthuser and SRS support o ports/159962 python [PATCH] Mk/bsd.python.mk: prevent polluting filesystem o ports/159961 [Patch] Update x11-wm/echinus to version 0.4.7 f ports/159954 lwhsu [PATCH] devel/py-twistedCore: update to 11.0.0 f ports/159952 miwi [PATCH] irc/znc: update to 0.200 f ports/159951 [patch] www/woof to support Python 2.7 o docs/159948 doc [patch] grammar updates to ata.4 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/ o ports/159935 ports-bug [PATCH] devel/libparserutils: update dependencies and f ports/159926 [PATCH] lang/py-prolog: some cleanup f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap p kern/159905 delphij [patch] type specifier error /sys/kern/sched_ule.c p kern/159904 delphij [patch] type specifier error /sys/kern/sched_4bsd.c o ports/159902 skv [patch][update] devel/thrift Update to 0.7.0 & FIX: bu o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o docs/159897 doc [handbook] [patch] improve HAST section of Handbook f ports/159891 swills [PATCH] databases/p5-Class-DBI-Plugin-DeepAbstractSear f ports/159890 swills [PATCH] databases/p5-Cache-Memcached-libmemcached: add o ports/159876 bf [PATCH] math/R: Fix Cario and Atlas bugs f ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 f docs/159870 doc [PATCH] PR handling guidelines still reference freebsd o ports/159865 amdmi3 [patch] graphics/gnash: typo o ports/159863 [patch] chinese/tin with tin 1.9.6 o ports/159861 clsung [PATCH] www/py-pyramid: update to 1.1.1 o ports/159858 miwi [PATCH] databases/p5-DBICx-MapMaker: add BUILD_DEPENDS o ports/159857 miwi [PATCH] databases/p5-DBICx-Deploy: add BUILD_DEPENDS t o docs/159854 doc [patch] grammar updates for carp.4 f ports/159849 swills [PATCH] comms/p5-SMS-Send-TW-ShareSMS: add BUILD_DEPEN o ports/159844 girgen [PATCH] databases/postgresql90-client: fix build o ports/159843 [PATCH] databases/postgresql-plpython: unbreak p usb/159836 hselasky [patch] [uhso] Add support for Option GlobeTrotter Max o bin/159833 camcontrol(8): [patch] add ATA security options to cam f ports/159826 swills [PATCH] audio/p5-MP3-Find: add BUILD_DEPENDS to silenc f ports/159821 [patch] www/squid31: dnsserver does not build o ports/159815 sergei [patch] mail/offlineimap: upgrade to 6.3.4 o ports/159812 apache [PATCH] www/apache20,www/apache22 Strip Binaries o ports/159811 daichi [PATCH] Update japanese/mozc-server to new version o ports/159797 danfe [patch] Update games/openttd to 1.1.2 o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i f ports/159786 [patch] upgrade of security/ossec-hids-server and secu o kern/159780 [kernel] [patch] make sys/vfs_subr.c more jail-friendl o ports/159779 clsung [PATCH] devel/p5-IO-AIO: update to 3.93 o ports/159778 tobez [PATCH] devel/p5-Guard: update to 1.022 o ports/159758 tobez [PATCH] mail/p5-Email-Valid: update to 0.185 f ports/159755 sunpoet [PATCH] devel/p5-CPAN-Meta: update to 2.112150 o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l f ports/159738 zi [patch] net-mgmt/nfsen: update to 1.3.5 o ports/159735 [patch] adopt and update comms/rxtx o ports/159716 gnome [PATCH] print/freetype2: remove --disable-nls o ports/159708 avl [patch] sysutils/flashrom from 0.9.3 -> 0.9.4 o kern/159669 [puc] [patch] Add Moxa CP-112UL support to puc(4) o bin/159665 [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 p www/159634 gjb [patch] add Javascriptt 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 usb [PATCH] USB stick extrememory Snippy needs quirks o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c o kern/159602 net [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re o ports/159598 sylvio [patch] lang/libhx -- update to 3.10.1 o ports/159577 portmgr [PATCH] ports/Mk/bsd.port.mk: fix and simplify adding o bin/159568 [patch] allow daemon(8) to write pid file in /var/run f ports/159560 [PATCH] devel/php-xdebug: update to 2.1.2 o docs/159551 doc [patch] ports(7) makes no mention of LOCALBASE f ports/159535 mi [patch] add support for building www/websh with EAPI s f ports/159516 [patch] Port comms/mlan3 update to 310r2 version f ports/159409 [PATCH] devel/py-boto: update to 2.0 f ports/159365 crees [patch] mail/p5-Mail-SpamAssassin: fix WITH_AWL option 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 kern/159353 net [netinet] [patch] conditional call of ifa_del_loopback o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() f ports/159348 haskell [patch] devel/git-annex: Update to 3.20110707 and Caba f ports/159322 [PATCH] sysutils/fusefs-kmod doesn't build due to rece o docs/159307 doc [patch] lpd smm chapter unconditionally installed o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/159281 [linprocfs] [patch] Linux-like /proc/swaps for linproc o conf/159280 [syscons] [patch] Improve utf-8 -> cp437 console map 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 ports/158333 pav [PATCH] audio/libsamplerate portlint complains o ports/158327 clsung [PATCH] devel/p5-SVN-Notify: update to 2.82 o ports/158302 niels [PATCH] www/rubygem-anemone: update to 0.6.0 f ports/158301 ruby [PATCH] mail/rubygem-vmail: update to 1.5.0 o ports/158278 kuriyama [PATCH] textproc/p5-XML-Parser: update to 2.41 o ports/158276 niels [PATCH] www/rubygem-robots: update to 0.10.1 f ports/158225 pgollucci [PATCH] devel/rubygem-ruby_parser: update to 2.0.6 f ports/158223 pgollucci [PATCH] devel/rubygem-ruby-prof: update to 0.10.0 o ports/158204 [PATCH] java/jde: update to 2.4.0.1 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 f ports/158058 culot [PATCH] lang/elk: update to 3.99.8 o ports/158054 matusita [PATCH] japanese/ja-skk-jisyo: update to 201106 o ports/158051 clsung [PATCH] devel/buildbot-slave: update to 0.8.4 o ports/157999 des [patch] www/varnish update to 3.0.0 o ports/157961 amdmi3 [PATCH] graphics/gnash: update to 0.8.9 o kern/157946 [patch] 'BSM conversion requested for unknown event' g o ports/157917 skv [PATCH] sysutils/pmap: multiple build problems 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 ports/157760 tobez [PATCH] devel/p5-Time-HiRes: update to 1.9724 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/157559 crees [PATCH] Fix port: databases/postgresql82-server should o ports/157558 crees [PATCH] Fix port databases/postgresql83-server should 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 p ports/157537 crees [PATCH] Modify port: chinese/firebird to use USERS and 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 p docs/157389 gavin [patch] mount.8: add example of option values for oth o ports/157369 stas [PATCH] x11-toolkits/ocaml-lablgtk2: add an option for o ports/157355 danfe [patch] add options to games/openttd o bin/157351 [patch] fsdb(8): Add some ports names to See Also for s ports/157346 brooks [PATCH] update to security/ca_root_nss port 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 bin/157211 [patch] add ftp4.se.freebsd.org to the list of IPv6 mi o bin/157210 [patch] add ftp4.se.freebsd.org to list of mirrors in 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/157176 [patch] sysutils/heartbeat crashes when clock_t (signe 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/157068 mnag [PATCH] www/pecl-APC: update to 3.1.9 o ports/157045 skv [patch] devel/p5-Devel-Leak: sv_dump() fix o gnu/157025 [patch] gcc(1): gcc Bug 28796 - __builtin_nan() and __ p ports/157022 kde [PATCH] x11-toolkits/shared-desktop-ontologies: update f ports/156998 zi [patch] new version of graphics/xnview is available 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/156868 doc [patch] Typos and grammar in Spanish translation of ar o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o ports/156824 kuriyama [PATCH] japanese/ja-trac: update to 0.12.2 o ports/156818 kuriyama [PATCH] databases/pgpool-II: add reload to startup scr o misc/156817 [build] [patch] WITHOUT_CDDL and NO_CTF ignored if WIT o ports/156813 gecko [PATCH] deskutils/lightning-thunderbird: Patch to requ 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 ports/156737 [patch] www/squid31: squid.in startup script fixes to o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' o ports/156693 [PATCH] security/hmap: refine this port a bit f ports/156687 mi [PATCH] graphics/libmng: misc improvements 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 _ o ports/156629 [patch] sysutils/puppet patch to use PACKAGEROOT inste o ports/156578 kuriyama [PATCH] databases/pgpool-II: [SUMMARIZE CHANGES] o kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue p ports/156543 kde [patch] Mk/bsd.cmake.mk: distinguish STRIP from WITH_D o ports/156528 fluffy [PATCH] textproc/wv2: remove useless depends on gmake o ports/156527 fluffy [PATCH] multimedia/gstreamer-qt4: remove depends on gm 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/156433 multimedia [sound] [patch] OSS4/VPC is broken on 64-bit platforms o kern/156423 [kqueue] [patch] Please add kqueue support for /dev/kl o ports/156386 danfe [patch] x11/nvidia-driver: EnableMSI doesn't work f ports/156376 [PATCH] graphics/optipng: update to 0.6.5 o kern/156358 jkim [patch] make amdtemp.c compatible with Llano/Brazos pl o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o ports/156319 java [patch] java/openjdk6 does not compile with previous l o ports/156313 [patch][new port] astro/gkrellsun2 (Gkrellm2 Plugin) o ports/156293 kde [patch] net/kdenetwork4: googletalk plugin for kopete o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o ports/156253 makc [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o ports/156251 apache [PATCH] Enable module by default for www/mod_fastcgi 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 docs/155989 doc [patch] Fix offset in boot.config(5) o conf/155984 [network.subr] [patch] Fix typos in network.subr 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/155937 ashish [patch] multimedia/libvpx incompatible with doxygen 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/155893 sobomax [PATCH] devel/py27-interface: update to 1.1.1 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 ports/155740 sobomax [PATCH] net/asterisk14: update to 1.4.40 o conf/155738 portmgr [patch] reaper of the dead: time to BURN_BRIDGES and r o conf/155737 portmgr [patch] reaper of the dead: remove OBJFORMAT variable 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 usb [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155650 bf [PATCH] math/atlas: add OPTIONS for STATICLIB and OPTI o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an o ports/155570 [patch] devel/py-twistedCore: update to 10.2.0 and oth 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 usb [usb][patch] support BUFFALO WLI-U2-SG54HG wireless o kern/155491 [sysctl][patch] Document some sys/dev/md sysctls o kern/155490 [sysctl][patch] Document some sys/vm sysctls o kern/155489 [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 f ports/155404 [PATCH] mail/mutt-devel: doesn't build in presence of o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o bin/155365 net [patch] routed(8): if.c in routed fails to compile if 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 java/155107 java [patch] port java/diablo-jdk16 small cosmetic fix for 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 p kern/154978 jhb [patch] [mfi] Support MFI cards with boot option ROM d f ports/154973 [PATCH] security/ike: fix plist when QTGUI=off, respec o bin/154954 [patch] csup(1) in the CVS mode terminates before it o ports/154951 girgen [patch] databases/postgresql-jdbc: update to 9.0.801 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/154834 des [PATCH] www/varnish: update to 2.1.5 o ports/154809 sergei [PATCH] ports-mgmt/porttools should include PORTREVISI o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o usb/154753 usb [usbdevs] [patch] Support for Qualcomm USB modem/stora o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which f ports/154644 clsung [PATCH] databases/cassandra: update to 0.7.0 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 p kern/154505 [libc] [patch]Buffer underflow in RPC library for non- 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 o gnu/154445 [patch] gcc(1): Attempt to "fix" gcc -ftree-vrp 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 stas [patch] multimedia/xmms: update using desktop and mime o kern/154302 xen [xen] [panic] [patch] xn0: Error 2 parsing device/vif/ f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l o kern/154287 [kernel] [patch] Avoid malloc(0) implementation depend 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 o ports/154209 python [PATCH] lang/python: Install symlink for ptags o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o bin/154042 [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 kern/153920 multimedia [sound] [patch] Replace the GPL'd sound/maestro3 heade o kern/153901 multimedia [sound] [patch] Replace the GPL'd emu10k1-alsa.h with o 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 usb [usbdevs] [patch] Feiya Elango USB MicroSD reader sync o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153573 tabthorpe [patch] ports/Mk bsd.license.mk honor pkg_add -p/-P 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 f ports/153437 rene [patch] emulators/dgen-sdl: mark BROKEN on non-i386 ar 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 ports/153425 [PATCH] www/limesurvey: Added a switch to use PostgreS o ports/153409 ache [PATCH] mail/procmail: Port builds shouldn't ask for u f ports/153395 pgollucci [PATCH] misc/ruby18-vpim: update to 0.695 o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153257 [libc] [patch] regex(3): Add support for \< and \> wor 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 o bin/153206 [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 [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 ports/152982 [patch] net/nss_ldap, ignore option nss_initgroups_ign 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/152901 mnag [patch] databases/pecl-sqlite Cleanup/Fixes o ports/152871 portmgr [patch] Request for exp-run and comment w/rt MACHINE_A 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 f ports/152820 bapt [patch] shells/zsh: correct memory report for time bui f 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 f ports/152537 girgen [patch] database/postgresql90-server no longer needs p p kern/152488 fs [tmpfs] [patch] mtime of file updated when only inode o kern/152485 [patch] null(4)/zero(4): /dev/null seek offset is not 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 p ports/152262 openoffice [patch] editors/openoffice.org-3 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 s ports/152195 [PATCH] deskutils/pinot update to xapian-core 1.2.3 o ports/152194 brix [PATCH] www/xapian-omega update to 1.2.3 o ports/152193 perl [PATCH] databases/p5-Search-Xapian update to 1.2.3 f ports/152192 [PATCH] databases/xapian-bindings update to 1.2.3 o ports/152191 [PATCH] databases/xapian-core update to 1.2.3 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 kern/152042 [libc] [patch] wrong bufsize of __hdtoa 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/151930 [PATCH] net-mgmt/netams links to libmysqlclient/libpq 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/151850 [patch] style cleanups to newfs_msdosfs(8) o kern/151845 fs [smbfs] [patch] smbfs should be upgraded to support Un f ports/151837 stephen [patch] sysutils/bsdstats : does honor BATCH when inst o ports/151830 kde [patch] devel/cmake: install cmake-mode.el o bin/151736 [patch] mount_nullfs(8) patch to add support for expos 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 ports/151477 girgen [PATCH] databases/postgresql-jdbc: update to 9.0.801 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 docs/151367 doc [patch] Update for puc.4 man page o kern/151365 [puc] [patch] Two new Moxa puc(4) devices o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o ports/151296 [patch] ports/sysutils/fusefs-kmod build fails: MNT_NF 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 f ports/150940 olgeni [PATCH] lang/clojure-mode.el: update to 1.7.1 o ports/150934 girgen [PATCH] databases/postgresql-jdbc: fix build with java 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/150772 [patch] csup(1) should include limits.h instead of sys o bin/150771 [patch] csup(1) GNUmakefile missing o conf/150752 rc [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 o ports/150594 x11 [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 doc [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 jh [libc] [patch] nmount(2): can't switch root partition 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 o amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA 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 f ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a a stand/149980 standards [libc] [patch] negative value integer to nanosleep(2) o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti p usb/149934 usb [patch] [usb8] Transcend JetFlash V85 poor performance 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 o kern/149800 [fdc] [patch] "driver bug: Unable to set devclass (dev p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem s kern/149665 imura [PATCH] mount_smbfs the CP932 to UTF-8 mount as not. 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" p bin/149403 ed [patch] truss(1) hangs when user input is requested 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 bsnmp dependen o bin/143830 [patch] atmconfig(8): Fix conditional inclusion for sb 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 kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 s bin/143699 [patch] extend brandelf's OS knowledge o conf/143637 rc [patch] ntpdate(8) support for ntp-servers supplied by o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result 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/143533 [patch] Changes to support Sun jumpstart via bootparam o bin/143504 pf [patch] outgoing states are not killed by authpf(8) 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 kern/143370 [new driver] [patch] New splash_txt module - support f 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 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 conf/143084 rc [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 o 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 kern/142999 [puc] [patch] add support for the I-O DATA RSA-PCI2/R 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 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 stas [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 kern/141934 scsi [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 o 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 kern/140416 [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 [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 sergei [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 kern/139604 [patch] [ichwd] watchdog sometimes does not enable 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 p kern/138390 brueffer [gif] [patch] NULL pointer dereference in gif_input() p kern/138388 brueffer [ppbus] [patch] NULL pointer dereference in pcfclock_o p kern/138387 brueffer [ppbus] [patch] NULL pointer dereference in lptopen() p kern/138384 brueffer [ips] [patch] NULL pointer dereference in ipsd_dump() 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 kern/137436 [puc] [patch] Fix puc driver to support newer Timedia 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 p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H 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 net [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 usb/135348 usb [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 kern/133174 fs [msdosfs] [patch] msdosfs must support multibyte inter 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 rc [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 stas [PATCH] lang/ruby18: Add option to build with Profile- o ports/132293 stas [PATCH] lang/ruby19: Add option to build with Profile- o kern/132271 [puc] [patch] puc support for a generic card o kern/132172 [patch] [panic] Page fault panic in scioctl and consol 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 kern/131933 [uart] [patch] add support for Sony Ericsson GC89 EDGE 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 p usb/131123 usb [patch] [usb67] re-add UQ_ASSUME_CM_OVER_DATA USB quir o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o kern/130749 [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 bin/128427 [patch] mdfs(8): mount_mfs warns "chmod: Read-only fil 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 i386/128014 phk [geode] [patch] AMD Geode CS5536 watchdog(9) not disab 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 doc [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 p kern/127834 rstone [ixgbe] [patch] wrong error counting 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 p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s 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 o bin/125449 [patch] awk(1): /usr/bin/awk fails mawk's FPE test p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani 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 o bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag p bin/123329 phk [patch] usage strings for fifolog_create(1) and fifolo 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 o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic 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/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 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 p bin/120870 jh [patch] truss(1) shows 'pipe' system call as having 6 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 o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, 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 o kern/119606 [sio] [patch] PCMCIA card not attached to driver o 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 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 a 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 p 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 f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug 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 [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 kern/110392 scottl [hptmv] [patch] hptmv very old and missing important f 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 kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to 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 usb/101761 usb [usb67] [patch] [request] usb.h: increase maximal size 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 stand/96236 standards [patch] [posix] sed(1) incorrectly describes a functio 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 o 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/89061 rc [patch] IPv6 6to4 auto-configuration enhancement 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 arundel [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) o kern/85886 [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 phk [geom] [patch] Solaris/x86 label structures for GEOM ( a bin/77651 [patch] init(8) can lose shutdown related signals s i386/77355 i386 [patch] Detect i*86 subarches for uname 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 s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver 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 f i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 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 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o 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 p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc 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 blackend [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 s 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/45226 rc [patch] Fix for rc.network, ppp-user annoyance 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 gnu/44564 peter [patch] Aborted cvs session causes an endless loop in 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/43716 [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 conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite a docs/30008 doc [patch] French softupdates document should be translat 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/28620 ru [patch] install(1) has no way to pass options to strip o bin/28364 [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 [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo 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 o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro o 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 bin/9868 [patch] date(1) add "date -a" 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 s kern/4184 rwatson [netatalk] [patch] minor nits in sys/netatalk 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 owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 11:14:32 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B73361065686 for ; Mon, 29 Aug 2011 11:14:32 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A41228FC19 for ; Mon, 29 Aug 2011 11:14:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TBEWgV001421 for ; Mon, 29 Aug 2011 11:14:32 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TB9RY6091143 for freebsd-bugs@FreeBSD.org; Mon, 29 Aug 2011 11:09:27 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 29 Aug 2011 11:09:27 GMT Message-Id: <201108291109.p7TB9RY6091143@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Cc: Subject: Current problem reports sorted by tag X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 11:14:32 -0000 (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 -------------------------------------------------------------------------------- p bin/147572 sbruno [2tb] mptutil(8) doesn't support configs over 2TB 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 8 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 o kern/91910 scottl [aac] [regression] aac driver hangs on Dell PE800 with 3 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/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 o 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 o amd64/131456 amd64 [acpi] [ata] ACPI & ATA problems o kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/124412 acpi [acpi] power off error on Toshiba M40 laptop o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f kern/119356 acpi [acpi]: i386 ACPI wakeup not work due resource exhaust o kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H o kern/116939 acpi [acpi] PCI-to-PCI misconfigured for bus three and can o i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114165 acpi [acpi] Dell C810 - ACPI problem s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/108695 acpi [acpi]: Fatal trap 9: general protection fault when in o kern/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed o 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/ 35 problems total. Problem reports for tag 'acpica': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159975 [acpica] [patch] add units to hw.acpi.sleep_delay o kern/152792 [acpica] [patch] move temperature conversion macros to 2 problems 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 'adw': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo 1 problem total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118962 x11 [agp] Intel GMA 3000 Video Controller Not Recognized U o kern/103733 x11 [agp] i915 driver on hp dc7100: device not recognized o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets 4 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 -------------------------------------------------------------------------------- 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 4 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/156513 scottl [aic7xxx] [patch] missing check of scb. 1 problem total. Problem reports for tag 'alc': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/148772 yongari [alc] alc0 does not send/receive packets if not plugge 1 problem 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 'amd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158802 fs [amd] amd(8) ICMP storm and unkillable process. o kern/124667 scsi [amd] [panic] FreeBSD-7 kernel page faults at amd-scsi 2 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/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag 5 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 f kern/99529 [amr] DELL PowerEdge 2600 with streamer PowerVault 100 o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a 8 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o kern/85886 [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/101926 [ar] 6.1-STABLE crashes under heavy disk I/O and acces 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 9 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/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 o kern/140051 yongari [bce] [arp] ARP not sent through Bridge Firewall with 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 amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 3 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/153440 mav [ata] 8.2 doesn't detect ICH8M anymore 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 amd64/135040 amd64 [ata] FreeBSD/amd64 does not (always) detect disk on S 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 amd64/131456 amd64 [acpi] [ata] ACPI & ATA problems 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 p kern/127411 [ata] [panic] ata panics on bad block 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 o 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 amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A o kern/116935 [ata] Intermittent error with Promise PDC40718 o kern/116270 [ata] READ_DMA48 UDMA ICRC error s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp 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 o kern/111196 [ata] [hang] SATA drives cause errors and cause system 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/108379 [ata] Secondary SATA drive not detected by FreeBSD 6.2 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 f i386/104719 i386 [ata] Seagate ST3802110A errors/delays when using PIO4 o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra p kern/103075 [ata] SATA disk attach/unplug from a MV88SX5041 freeze f kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD f i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) f i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96171 [ata] burncd (ATA driver) fails to write in vcd mode 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 111 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 f i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi 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 7 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/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/149307 wireless [ath] Doesn't work Atheros 9285 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/148112 wireless [ath] Atheros 9285 cannot register with wifi AP (timeo o kern/148078 wireless [ath] wireless networking stops functioning o kern/145826 wireless [panic] [ath] Unable to configure adhoc mode on ath0/w o kern/143868 wireless [ath] [patch] [request] allow Atheros watchdog timeout o kern/140796 wireless [ath] [panic] Cannot attach (unable to attach hardware 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 40 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 -------------------------------------------------------------------------------- o kern/155004 net [bce] [panic] kernel panic in bce0 driver o kern/140051 yongari [bce] [arp] ARP not sent through Bridge Firewall with s amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 5 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 -------------------------------------------------------------------------------- s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD 1 problem 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/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 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. 19 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159222 [boot0] unusual behavior writing boot0 from single use p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive f i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 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/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. 6 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.cpu.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari 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.own.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/143831 [bsd.own.mk] [patch] Fix missing atm -> bsnmp dependen 1 problem total. Problem reports for tag 'bsd.port.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 f ports/157936 pav [bsd.port.mk] add LDFLAGS support 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] New opt-in knob to compile ports with SS o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe 15 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 '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/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 o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 o 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 kern/28840 gibbs [cam] Possible interrupt masking trouble in sys/cam/ca s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro 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 o kern/144572 net [carp] CARP preemption mode traffic partially goes to o kern/141023 net [carp] CARP arp replays with wrong src mac o kern/133218 net [carp] [hang] use of carp(4) causes system to freeze o kern/132285 net [carp] alias gives incorrect hash in dmesg o kern/132107 net [carp] carp(4) advskew setting ignored when carp IP us o kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat o kern/127050 net [carp] ipv6 does not work on carp interfaces [regressi o kern/126945 net [carp] CARP interface destruction with ifconfig destro o kern/126714 net [carp] CARP interface renaming makes system no longer o kern/125816 net [carp] [if_bridge] carp stuck in init when using bridg f kern/125442 net [carp] [lagg] CARP combined with LAGG causes system pa o kern/120130 net [carp] [panic] carp causes kernel panics in any conste o kern/117448 net [carp] 6.2 kernel crash [regression] o kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) o kern/114095 pf [carp] carp+pf delay with high state limit 17 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 '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 o kern/115997 scottl [ciss] [panic] [patch?] kernel panics on heavy disk I/ o kern/109813 [ciss] ciss(4) driver API header is not installed 12 problems 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 f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug 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 [crypto] [patch] MD5 alignment problem on a TriMedia p 7 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 'cx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does not work for 4. 1 problem total. Problem reports for tag 'cxgb': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 3 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 o kern/119507 [dri] mach64.o kernel module version is 1.0.0, but ver 2 problems total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 o kern/150514 [drm] [request] Reorganize DRM Directory to Support Dr p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/114995 [drm] acpi_video prevents savage drm from loading succ 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 6 problems total. Problem reports for tag 'dtrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr o kern/159612 [dtrace] walltimestamp and timestamp functions incompl o kern/159064 marcel [dtrace] MFC request for dtrace to fix "invalid probe o 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 7 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 11 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/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 amd64/129315 amd64 [em] amd64 motherboard: Intel DG965WH motherboard comp 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) f i386/102562 i386 [em] no traffic pass through a em card after approx. a o kern/101226 jfv [em] Access to IPMI module is lost when the em driver 49 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 f i386/133388 i386 [est] est causes wrong dev.cpu.0.freq_levels values 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/159117 portmgr [exp-run] Clang exp-run request. o ports/157769 miwi [exp-run] devel/bison update to 2.5 o ports/156253 makc [exp-run] [patch] Update devel/boost-* from 1.45 to 1. f ports/153262 pgollucci [exp-run]: Death to FreeBSD 6, Long Live FreeBSD! 4 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159233 fs [ext2fs] [patch] fs/ext2fs: finish reallocblk implemen o kern/159232 fs [ext2fs] [patch] fs/ext2fs: merge ext2_readwrite into 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 5 problems total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149800 [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 amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" 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 9 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/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 o kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t p 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 o kern/73313 simokawa [firewire] Maxtor Onetouch drivers hang or corrupt dat 14 problems total. Problem reports for tag 'flowtable': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155604 net [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-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 -------------------------------------------------------------------------------- f 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 phk [gbde] gbde destroy error 3 problems total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 bin/116782 [geli] geli not updated on migrate from 6.1 to 6.2 rel o kern/115856 geom [geli] ZFS thought it was degraded when it should have o 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 16 problems total. Problem reports for tag 'geode': S Tracker Resp. Description -------------------------------------------------------------------------------- p i386/128014 phk [geode] [patch] AMD Geode CS5536 watchdog(9) not disab f i386/98215 i386 [geode] [regression] FreeBSD can no longer boot Geode 2 problems total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159595 geom [geom] [panic] panic on gmirror unload in vbox [regres o kern/159091 geom [geom] GEOM fails to scan nested partitions to create 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/144905 geom [geom][geom_part] panic in gpart_ctlreq when unpluggin 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 phk [geom] [patch] Solaris/x86 label structures for GEOM ( 40 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 o kern/144905 geom [geom][geom_part] panic in gpart_ctlreq when unpluggin 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 6 problems total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 p kern/138390 brueffer [gif] [patch] NULL pointer dereference in gif_input() 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 '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/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 8 problems total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/159897 doc [handbook] [patch] improve HAST section of Handbook o docs/159650 ryusuke [handbook] dumpdev variable was changed to "no" on Sep o docs/159374 doc [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 22 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/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 amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA 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/79895 net [ipf] 5.4-RC2 breaks ipfilter NAT when using netgraph 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 14 problems total. Problem reports for tag 'ipfilter': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 5 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 f kern/144269 ipfw [ipfw] problem with ipfw tables o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result f kern/143474 ipfw [ipfw] ipfw table contains the same address 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 f kern/127209 ipfw [ipfw] IPFW table become corrupted after many changes 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 f kern/91847 ipfw [ipfw] ipfw with vlanX as the device 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 51 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 f i386/105175 i386 [ipmi] ipmi acpi trouble on supermicro server a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/79143 [ipmi] Broadcom NIC driver do not work for IPMI 6 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 -------------------------------------------------------------------------------- p kern/138384 brueffer [ips] [patch] NULL pointer dereference in ipsd_dump() f i386/121903 i386 [ips] [boot] can't boot on IBM x235 ServeRaid 6M [regr o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may o kern/92164 scottl [ips] [lor] SCSI target mode LOR o kern/57832 scottl [ips] softdep_deallocate_dependencies: dangling deps 5 problems total. Problem reports for tag 'ipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 26 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142766 bschmidt [ipw] [regression] ipw(4) with Intel PRO/wireless 2100 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 f kern/110140 bschmidt [ipw] ipw fails under load 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 7 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 f kern/103532 [irq] Interrupt storm in 6.2-PRERELEASE [regression] o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o 10 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 -------------------------------------------------------------------------------- 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 8 problems total. Problem reports for tag 'iwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159768 bschmidt [iwn] [panic] iwn_auth being called with wrong ni_chan 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 3 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/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 p kern/127834 rstone [ixgbe] [patch] wrong error counting 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/143084 rc [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/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 4 problems total. Problem reports for tag 'kern.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159278 [kern.mk] [patch] FreeBSD compiler extensions 1 problem total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159780 [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/154287 [kernel] [patch] Avoid malloc(0) implementation depend 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 phk [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 52 problems total. Problem reports for tag 'keyboard': S Tracker Resp. Description -------------------------------------------------------------------------------- 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, o kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar f usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen f 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 -------------------------------------------------------------------------------- o kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156423 [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 f kern/125442 net [carp] [lagg] CARP combined with LAGG causes system pa 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 bin/153154 [patch][libarchive] fix error handling in mtree parsin o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport 2 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 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/155606 [libc] select() does not return EBADF on closed file d o kern/154915 [libc] [patch] Force stdio output streams to line-buff p kern/154505 [libc] [patch]Buffer underflow in RPC library for non- o bin/153502 [libc] regex(3) bug with UTF-8 locale o bin/153257 [libc] [patch] regex(3): Add support for \< and \> wor p bin/152551 gavin [libc] Remove unused variables. o kern/152042 [libc] [patch] wrong bufsize of __hdtoa 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 kern/150206 jh [libc] [patch] nmount(2): can't switch root partition a stand/149980 standards [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 f kern/131602 gavin [libc] sendfile(2) sends corrupted data o kern/130749 [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 o stand/94729 standards [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 p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc 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/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 5 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] ABI change without version bump in 8.2 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 s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver 2 problems 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/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 3 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/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 12 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 'libthr': S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/157040 threads [libthr] valgrind detects leaks in libthr.so.3 1 problem 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 -------------------------------------------------------------------------------- o kern/159281 [linprocfs] [patch] Linux-like /proc/swaps for linproc 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 4 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 s 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 o kern/21463 emulation [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/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 o bin/148296 fs [zfs] [loader] [patch] Very slow probe in /usr/src/sys 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 doc [make.conf] [patch] remove BDECFLAGS from make.conf(5) a bin/114082 [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 -------------------------------------------------------------------------------- p kern/154228 fs [md] md getting stuck in wdrain state 1 problem 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. p kern/154978 jhb [patch] [mfi] Support MFI cards with boot option ROM d p kern/145960 jhb [mfi] [patch] make MFI_STAT_INVALID_STATUS error more o kern/140416 [mfi] [patch] mfi driver stuck in timeout o kern/124989 [mfi] mfi driver error - unexpected sense 7 problems total. Problem reports for tag 'minidump': S Tracker Resp. Description -------------------------------------------------------------------------------- o 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 '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/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 7 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 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 amd64/135265 amd64 [mpt] Boot from install cd hangs on HP DL160 G5 with L 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 14 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/133174 fs [msdosfs] [patch] msdosfs must support multibyte inter 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 24 problems total. Problem reports for tag 'msk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel f kern/150257 yongari [msk] watchdog timeout f kern/134401 yongari [msk] [panic] Kernel Fatal trap 12: page fault while i 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/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 3 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 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 9 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 p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani 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 12 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 amd64/139998 amd64 [panic][net] 7.2 amd64 panic in rtrequest1_fib 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 7 problems total. Problem reports for tag 'netatalk': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/4184 rwatson [netatalk] [patch] minor nits in sys/netatalk 1 problem total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 21 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c o kern/159602 net [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re o kern/159353 net [netinet] [patch] conditional call of ifa_del_loopback 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/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o kern/100519 net [netisr] suggestion to fix suboptimal network polling 2 problems 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/155984 [network.subr] [patch] Fix typos in network.subr 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 -------------------------------------------------------------------------------- f kern/157132 yongari [nfe] nfe0 hang up the system after the 'dhclient nfe0 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 3 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() f kern/157929 fs [nfs] NFS slow read o kern/156168 fs [nfs] [panic] Kernel panic under concurrent access ove o kern/154255 net [nfs] NFS not responding o kern/153847 fs [nfs] [panic] Kernel panic from incorrect m_free in nf 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/148204 fs [nfs] UDP NFS causes overload 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 sparc/142102 sparc64 [nfs] [panic] FreeBSD 8.0 kernel panics on sparc64 whe 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/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 f kern/26142 vwe [nfs] Unlink fails on NFS mounted filesystem 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 70 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_mppc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/123045 net [ng_mppc] ng_mppc_decompress - disabling node 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/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 3 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/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 o kern/138526 [null] /dev/null does not support nonblocking operatio 2 problems total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159663 [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 9 problems total. Problem reports for tag 'nve': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/118990 yongari [nve] nve + PAE bus_addr_t/void * inconsistencies 1 problem 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 o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic 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 7 problems 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 '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/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 3 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 -------------------------------------------------------------------------------- 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 o kern/65355 [pci] [patch] TC1000 serial ports need enabling 7 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/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 8 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159390 pf [pf] [panic] mutex pf task mtx owned at /usr/src/sys/c o kern/159029 pf [pf] [panic] m_copym, offset > size of mbuf chain when o kern/158873 pf [pf] [panic] When I launch pf daemon, I have a kernel o kern/158636 pf [pf] if_pfsync.c fails to build when NBPFILTER == 0 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 pf [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 47 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 -------------------------------------------------------------------------------- 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 2 problems total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 3 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 -------------------------------------------------------------------------------- a kern/93685 [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 -------------------------------------------------------------------------------- p kern/138388 brueffer [ppbus] [patch] NULL pointer dereference in pcfclock_o p kern/138387 brueffer [ppbus] [patch] NULL pointer dereference in lptopen() o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 3 problems 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/138525 [ppp] [panic] Kernel corruption of pppoe lists 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 -------------------------------------------------------------------------------- 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 bin/122235 [psm] freebsd-7.0 moused(8) problems with ALPS GlidePo 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/159669 [puc] [patch] Add Moxa CP-112UL support to puc(4) o kern/151365 [puc] [patch] Two new Moxa puc(4) devices o kern/142999 [puc] [patch] add support for the I-O DATA RSA-PCI2/R 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/137436 [puc] [patch] Fix puc driver to support newer Timedia o kern/132271 [puc] [patch] puc support for a generic card o kern/124128 [puc] puc driver doesn't support VScom PCIex-800H 8-po 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 o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- 11 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 '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/138288 [radeon] RADEON(0): No valid MMIO address [regression] o kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati 2 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/153123 rc [rc] [patch] add gsched rc file to automatically inser 1 problem total. Problem reports for tag 'rc.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip 1 problem total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 rc [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 rc [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 22 problems total. Problem reports for tag 'rc.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/150752 rc [rc.subr] [patch] be not needed to eval $_pidcmd on re 1 problem total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 3 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/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/134931 hrs [route] Route messages sent to all socket listeners re 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 'rtc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/70649 [rtc] system clock slows down when heavily loaded 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 kern/151861 [rtld] dlclose() of library causes separately opened l 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 p kern/139723 [rtld] Quagga/zebra abort trap 6, FreeBSD 8.0-RC1 o kern/84199 [rtld] dlinfo does not handle RTLD_DI_SERINFOSIZE prop 7 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 usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o usb/144387 usb [run] [panic] if_run panic 2 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 -------------------------------------------------------------------------------- p kern/110662 sam [safe] safenet driver causes kernel panic 1 problem total. Problem reports for tag 'sbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119572 [sbp] PowerBook not accessable when in target mode 1 problem total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 5 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/119606 [sio] [patch] PCMCIA card not attached to driver f i386/112487 i386 [sio] kernel panic on swi0:sio o kern/109743 [sio] The sio(4) driver appears to be getting the seri f i386/105063 i386 [sio] US Robotics (3Com) 3CP5609 PCI 16550 Modem works f i386/100831 i386 [sio] sio ignores BIOS information about serial ports 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 17 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/159048 fs [smbfs] smb mount corrupts large files o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o kern/151845 fs [smbfs] [patch] smbfs should be upgraded to support Un 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 25 problems total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127486 [smp] [panic] early SMP panic ("AP #1 (PHY #1) failed! o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/109936 [smp] SMP kernel performance problem on FSC TX600 o kern/67830 [smp] [patch] CPU affinity problem with forked child p 4 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 [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/156433 multimedia [sound] [patch] OSS4/VPC is broken on 64-bit platforms o kern/153920 multimedia [sound] [patch] Replace the GPL'd sound/maestro3 heade o kern/153901 multimedia [sound] [patch] Replace the GPL'd emu10k1-alsa.h with 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 multimedia [sound] No sound inside Virtualbox on 50% volume 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 f kern/115666 multimedia [sound] Microphone does not work 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/90837 [sound] PCM - ICH6 - device is busy, but old process d 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 59 problems 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 '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/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs o kern/93128 scottl [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI 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 [syscons] [patch] Spanish Dvorak keyboard o conf/159280 [syscons] [patch] Improve utf-8 -> cp437 console map 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 p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s 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" 19 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/155491 [sysctl][patch] Document some sys/dev/md sysctls o kern/155490 [sysctl][patch] Document some sys/vm sysctls o kern/155489 [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/118399 secteam [tap] local/remote kernel DoS through TAP device 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 o kern/155585 net [tcp] [panic] tcp_output tcp_mtudisc loop until kernel o 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 -------------------------------------------------------------------------------- o kern/159418 fs [tmpfs] [panic] tmpfs kernel panic: recursing on non r o kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No p kern/152488 fs [tmpfs] [patch] mtime of file updated when only inode 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 8 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 3 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 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 5 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 f kern/147082 [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/131933 [uart] [patch] add support for Sony Ericsson GC89 EDGE o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 9 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 o kern/60089 scottl [udf] UDF filesystem appends garbage to files 4 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/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 o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 o kern/33464 fs [ufs] soft update inconsistencies after system crash 32 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 [usb67] [ukbd] usb keyboard and multimedia keys don't 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 o 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 a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass o usb/135348 usb [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 o 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/104292 gavin [usb67] [umass] [hang] system lockup on forced umount 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/83563 usb [umass] [panic] Page Fault while detaching Mpman Usb d s usb/82569 usb [umass] [panic] USB mass storage plug/unplug causes sy 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 66 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/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 4 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/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 12 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/155496 usb [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 s usb/84336 usb [usb] [reboot] instant system reboot when unmounting a 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 s usb/138570 usb [usb67] [panic] USB mass device panics current 7.2-STA 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 o 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 p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis p usb/131123 usb [patch] [usb67] re-add UQ_ASSUME_CM_OVER_DATA USB quir 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 f usb/121232 usb [usb67] [panic] USB CardBus card removal causes reboot 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 o usb/105361 usb [usb67] [panic] Kernel panic during unmounting mass st 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/104292 gavin [usb67] [umass] [hang] system lockup on forced umount 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 f usb/102066 gavin [usb67] [ukbd] usb keyboard and multimedia keys don't o usb/101761 usb [usb67] [patch] [request] usb.h: increase maximal size 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 53 problems total. Problem reports for tag 'usb8': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 p usb/149934 usb [patch] [usb8] Transcend JetFlash V85 poor performance s usb/148702 usb [usb8] [request] IO DATA USB-RSAQ5 support on FreeBSD- p usb/146871 usb [usbdevs] [usb8] [patch] provide descriprive string fo 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 o 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 a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass 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 57 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/155663 usb [usbdevs] [patch] Add support for Supertop Nano 1GB US o usb/154753 usb [usbdevs] [patch] Support for Qualcomm USB modem/stora o usb/153599 usb [usbdevs] [patch] Feiya Elango USB MicroSD reader sync p usb/146871 usb [usbdevs] [usb8] [patch] provide descriprive string fo p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H 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 11 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 '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/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/142878 fs [zfs] [vfs] lock order reversal o 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 8 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 -------------------------------------------------------------------------------- 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 3 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/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 f 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] f kern/121234 [vm] vm_fault: fault on nofault 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 f kern/118819 [vmware] FreeBSD 6.2 in VMware is unstable and there i o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind 5 problems total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 12 problems total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 4 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/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/154302 xen [xen] [panic] [patch] xn0: Error 2 parsing device/vif/ o kern/153789 xen [xen] [regression] FreeBSD 8.2-RC1 crashes under Solar 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 23 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/154432 scsi [xpt] run_interrupt_driven_hooks: still waiting after 1 problem total. Problem reports for tag 'zfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160035 fs [zfs] zfs rollback does not invalidate mmapped cache 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/156933 fs [zfs] ZFS receive after read on readonly=on filesystem 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/156218 pjd [zfs] IO on ZFS filesystems does not register in top(1 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/154447 fs [zfs] [panic] Occasional panics - solaris assert somew 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 bin/148296 fs [zfs] [loader] [patch] Very slow probe in /usr/src/sys 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/147790 fs [zfs] zfs set acl(mode|inherit) fails on existing zfs 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/130133 fs [panic] [zfs] 'kmem_map too small' caused by make clea 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 f kern/127375 fs [zfs] If vm.kmem_size_max>"1073741823" then write spee f kern/126703 fs [panic] [zfs] _mtx_lock_sleep: recursed on non-recursi 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 o bin/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 f kern/120210 fs [zfs] [panic] reboot after panic: solaris assert: arc_ 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 100 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 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 4 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 11:06:06 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE55D1065670 for ; Mon, 29 Aug 2011 11:06:06 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D89188FC15 for ; Mon, 29 Aug 2011 11:06:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TB66C0088460 for ; Mon, 29 Aug 2011 11:06:06 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TB63Dg088458 for freebsd-bugs@FreeBSD.org; Mon, 29 Aug 2011 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 29 Aug 2011 11:06:03 GMT Message-Id: <201108291106.p7TB63Dg088458@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list X-Mailman-Approved-At: Mon, 29 Aug 2011 11:36:59 +0000 Cc: Subject: Current problem reports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 11:06:07 -0000 (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/160278 [MAINTAINER] japanese/ibus-skk: update to 1.3.8 o ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio o kern/160276 Spelling Mistake in comments in configure-files o kern/160275 dtrace -lv cause o ports/160274 [patch] sysutils/hfsexplorer updated url discripton o ports/160273 [patch] Fix distfile sources for port net/AquaGatekeep f ports/160272 [patch] unbreak port net/AquaGatekeeper o ports/160271 skv [PATCH] devel/thrift: fix compile error with fb303, pa o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o docs/160269 doc [patch] Handbook wireless section: sand off some rough o ports/160268 gnome www/webkit-gtk2 build process bails: unable to mmap er o docs/160267 doc [patch] wlan.4 has incorrect apostrophe o ports/160266 lme [PATCH] multimedia/devede: remove broken patch o ports/160265 [NEW PORT] lang/pypy 1.6 f ports/160264 ohauer [patch] net/tac_plus-libradius fix build on FreeBSD-9 o ports/160263 obrien shells/bash bug: testing condition for [ -x file ] is o ports/160262 New port: net-mgmt/better-cacti-templates - better Cac o ports/160261 jpaetzel [patch] textproc/translate-toolkit: eliminate py-pysql f ports/160260 wen databases/py-axiom: request for marking it BROKEN and f ports/160257 [patch] mail/ssmtp: pkg-message needs further descript o ports/160255 kuriyama [PATCH] databases/p5-TokyoCabinet: update MASTER_SITES o ports/160254 [MAINTAINER-UPDATE] from net-mgmt/vidalia 0.2.12 to 0. o ports/160251 gnome [PATCH] www/webkit-gtk2 to avoid Midori's crash when w o ports/160250 gabor [PATCH] databases/gdbm: update to 1.9.1 o ports/160249 flo [patch] (ports) games/crafty-tablebase-pawn: undepreca o www/160247 www Website vulnerability o ports/160246 sylvio net-mgmt/net-snmp: incorrect hrStorageType if "disk" i f ports/160244 ruby [PATCH] finance/rubygem-money: update to 3.7.1 and fix f ports/160243 emulators/wine-gecko: update to last version f ports/160242 audio/murmur installs directories with incorrect owner o www/160241 www FreeBSD vs. Linux vs. Windows 2000: Desperately outdat o conf/160240 rc rc.d/mdconfig and mdconfig2 should autoset $_type to v o ports/160239 obrien [update] shells/bash -> 4.1.11 o ports/160236 [patch] Upgrade lang/jruby to 1.6.4 o conf/160235 [syscons] [patch] Spanish Dvorak keyboard o ports/160234 [maintainer-update] comms/grig to 0.8.0 f ports/160233 [patch][update] devel/pinba_engine Update to new revis f ports/160232 Update: x11/xlockmore to 5.34 o ports/160231 sunpoet [PATCH] databases/cassandra: update to 0.8.4 o ports/160229 demon [PATCH] devel/p5-ExtUtils-ParseXS: update to 3.04 o conf/160227 [keyboard] Please include new keyboard mapping: French f ports/160226 Unbreak lang/nawk by updating it to 20110810 o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o ports/160224 gnome building x11-toolkits/gtk30 fails o ports/160223 miwi [PATCH] major memory leak in graphics/ristretto f ports/160222 dougb Update net-mgmt/nagios-check_ports o ports/160220 sbz [PATCH] www/roundup: eliminate py-pysqlite2x dependenc o ports/160218 roam security/stunnel is vulnerable to CVE-2011-2940 o ports/160217 [Maintainer Update] emulators/doscmd update o ports/160216 perl New port: devel/p5-Log-Dispatch-DBI DBI interface for o ports/160215 office editors/libreoffice-legacy fails to build with KDE 4.6 o ports/160214 skv math/p5-Math-Pari port build failure o ports/160213 [NEW PORT] security/py-htpasswd - htpasswd replacement o ports/160212 [maintainer update] textproc/pear-Numbers_Words o ports/160211 [NEW PORT] math/pear-Math_BigInteger : Pure-PHP arbit f ports/160210 [update] devel/php5-pinba o ports/160208 [NEW PORT} print/py27-pdfcolorsplit - script to split o ports/160207 [NEW PORT] devel/php5-dav: The PHP WebDAV extension 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 ports/160204 swills [MAINTAINER] devel/rubygem-tilt: update to 1.3.3 o ports/160203 skv [PATCH] devel/thrift: update to 0.6.1 o ports/160202 adamw [PATCH] shells/bash-completion: use @dirrmtry for PREF o kern/160198 art amd + NFS reconnect = ICMP storm + unkillable process o ports/160195 ruby [patch][maintainer-update] security/rubygem-bcrypt-rub o ports/160194 [PATCH] sysutils/jdiskreport: update to 1.3.2 o misc/160192 Installation from USB-Stick doesn't find the USB-Stick o ports/160190 New port: net/samba36-devel Test version of Samba 3.6 o ports/160189 lippe [PATCH] textproc/p5-Excel-Template: update to 0.33 o ports/160188 tobez [PATCH] textproc/p5-YAML: update to 0.73 o ports/160187 lwhsu [PATCH] textproc/tokyodystopia: update to 0.9.15 o ports/160185 garga security/clamav fails to build with custom options f ports/160184 graphics/jpeg2pdf is broken with ruby 1.9, but does no o ports/160182 [maintainer patch] graphics/zbar. Fix pkg-plist, restr o ports/160180 zi [PATCH] Update and fix www/xxxterm o ports/160178 [NEW PORT] www/vimprobable1 - webkit browser inspired o ports/160177 [NEW PORT] www/vimprobable2 - webkit browser inspired o misc/160176 Kernel panic on AR7161 platform with AR9220 (BGN) WIFI o ports/160174 [PATCH] japanese/jcode.pl Fix defined(%hash) is deprec o ports/160172 [NEW PORTS] japanese/wordpress: add ja-wordpress 3.2.1 o ports/160168 perl Update port: www/p5-Gtk2-WebKit update to 0.09 o ports/160167 perl New port security/p5-Crypt-OpenSSL-CA The crypto parts o ports/160166 perl New port devel/p5-Devel-Mallinfo o ports/160165 beech [UPDATE] deskutils/gourmet: update to 0.15.9 o ports/160164 kde [PATCH] x11/kdebase4-workspace - make astro/gpsd depen o ports/160162 beech [MAINTAINER] finance/kmymoney-kde4: Update to 4.6.0 o ports/160161 [PATCH] deskutils/griffith: eliminate py-pysqlite2x de f ports/160160 skreuzer Update ports mail/p5-Net-SenderBase to 1.02 o ports/160153 wen new port: math/dynare, software platform for handling o ports/160142 Update port: security/fakebo to 0.4.2.1 o ports/160133 Update port: net-im/py-pyxmpp to 1.1.2 o ports/160132 Update port: net-im/cjc to 1.2.1 o ports/160126 Update port: math/parmetis to 4.0 o ports/160122 Update port: lang/libjit to 0.1.2 o ports/160120 Update port: graphics/raster3d to 3.0.2 o ports/160117 Update port: graphics/icoutils to 0.29.1 o ports/160116 Update port: graphics/glfw to 2.7.2 o ports/160115 Update port: graphics/epix to 1.2.9 o ports/160114 Update port: graphics/boxer to 0.3.1 o ports/160113 Update port: graphics/box to 0.2.3 o ports/160112 Update port: games/xspringies to 1.12 o ports/160110 Update port: games/xfrisk to 1.3.r1 o ports/160104 Update port: games/lgeneral to 1.2.2 o ports/160097 Update port: devel/z80-asm to 2.4.p3 o ports/160095 Update port: devel/rlog to 1.4 o ports/160094 Update port: devel/piklab to 0.15.10 o ports/160092 Update port: deskutils/rubrica to 2.0.10 o ports/160091 Update port: deskutils/cdcat to 1.5 o ports/160090 Update port: databases/lsdb to 0.11 o ports/160086 Update port: cad/magic to 7.5.213 o ports/160085 Update port: cad/feappv to 2.2 o ports/160084 Update port: cad/atlc to 4.6.1 o ports/160082 Update port: benchmarks/mdtest to 1.8.3 o ports/160081 Update port: audio/slv2 to 0.6.6 o ports/160080 Update port: audio/liteamp to 0.2.4.2 o ports/160073 Update port: audio/HVSC-Update to 2.8.5 f ports/160072 [UPDATE] security/umit: update to 1.0 o ports/160071 [PATCH] security/zenmap: eliminate py-pysqlite2x depen o ports/160070 [PATCH] multimedia/miro: eliminate py-pysqlite2x depen f ports/160069 glarkin [PATCH] devel/bzr-git: eliminate py-pysqlite2x depende o ports/160066 [PATCH] security/hottsh: eliminate py-pysqlite2x depen o ports/160065 [PATCH] multimedia/pyjama: eliminate py-pysqlite2x dep f ports/160064 lth [PATCH] textproc/p5-Text-Markdown: cleanup dependencie o ports/160063 gnome [PATCH] deskutils/conduit: eliminate py-pysqlite2x dep o ports/160062 math/pari: fix fetch and undeprecate f ports/160060 collision: sysutils/coreutils Collision between system o ports/160059 wen [UPDATE] databases/py-sqlobject: update to 1.1.2 f ports/160058 [patch] games/instead: update to 1.5.0 o ports/160055 [PATCH] games/anki: eliminate py-pysqlite2x dependency o ports/160054 gnome [PATCH] games/gcompris: eliminate py-pysqlite2x depend f ports/160052 [patch] sysutils/fusefs-kmod: fix build after vfs_flag o ports/160051 clsung [PATCH] net/py-s3cmd: eliminate py-elementtree depende o ports/160050 girgen [patch] databases/postgresql84-server: unbreak for 9.x o ports/160049 [PATCH] emulators/wahcade: eliminate py-elementtree de o ports/160047 timur devel/talloc 2.0.5 fails to configure with MAKE_JOBS_U f ports/160045 [PATCH] emulators/visualboyadvance-m: fix SFML depend f ports/160044 zi [update] security/snort to 2.9.1 f ports/160042 zi [update] net/daq to 0.6.1 o ports/160041 anders Request repo-copy of ports/www/varnish due to pending f ports/160040 sunpoet [patch] databases/cassandra: update to 0.8.4 o ports/160039 request to maintain x11/stalonetray o ports/160036 dhn [PATCH]x11-wm/i3 update to v4.0.1 o kern/160035 fs [zfs] zfs rollback does not invalidate mmapped cache f ports/160034 delphij [PATCH] net/istgt: Don't enforce run before mountcritr o ports/160033 [maintainer] update port devel/libffi o ports/160031 [PATCH] devel/yajl add yajl.pc o ports/160030 vsevolod [PATCH] devel/libev add libev.pc f ports/160027 net/rabbitmq daemon fails to restart half of the time o ports/160025 update the /databases/py-firebirdsql o ports/160023 office editors/libreoffice: LibreOffice Calc 3.3.3_2 crashes o ports/160022 eclipse release port: java/eclipse-cdt o ports/160020 [MAINTAINER] japanese/ddskk: update to 14.3 o ports/160017 crees New port for NeoRouter client & server o ports/160012 [maintainer-update] [patch] net-p2p/lopster portlint c o misc/160011 Installer Disk will not boot o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat o ports/160007 [NEW PORT] ports-mgmt/porttree: Show dependences of Fr o ports/160006 [new port] devel/premake4: cross-platform build script o ports/160003 olgeni drop lang/erlang-lite and update lang/erlang o ports/160000 clsung [PATCH] devel/global: update to 5.9.7 o ports/159998 oliver [PATCH] x11/xfce4-conf breaks with perl bindings f ports/159996 multimedia/ffmpegthumbnailer doesn't link with libjpeg o ports/159995 crees [NEW PORT] www/hastymail-devel o ports/159993 multimedia [patch] multimedia/podcatcher: broken with ruby19 o ports/159991 [PATCH] devel/py-mercurialserver mark IGNORE f ports/159985 delphij [patch] add aio support knob to net/istgt o ports/159982 ruby [MAINTAINER] mail/rubygem-vmail: update to 2.3.2 o ports/159981 roam ftp/curl install depends bug? o ports/159978 devel/bazaar-ng 2.4.0: Viewing help for subcommands re o ports/159977 fluffy news/inn doesn't package its examples o ports/159976 new port: games/blackjack o kern/159975 [acpica] [patch] add units to hw.acpi.sleep_delay f ports/159973 zi [PATCH] www/trafficserver: update to 3.0.1 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 o ports/159968 haskell [PATCH] x11-wm/hs-xmonad-contrib fix o ports/159966 zi [maintainer update] Update sysutils/boxbackup-devel to o ports/159964 garga [PATCH] mail/qmail Add smtpauthuser and SRS support o ports/159963 stas [update] Update graphics/djview4 from 4.7 to latest re o ports/159962 python [PATCH] Mk/bsd.python.mk: prevent polluting filesystem o ports/159961 [Patch] Update x11-wm/echinus to version 0.4.7 f ports/159959 [UPDATE] x11-wm/matwm2 to 0.1.2pre3 f ports/159958 [UPDATE] x11/deskpaint to 3.1 f ports/159954 lwhsu [PATCH] devel/py-twistedCore: update to 11.0.0 f ports/159952 miwi [PATCH] irc/znc: update to 0.200 f ports/159951 [patch] www/woof to support Python 2.7 a ports/159949 crees Update port: security/maia Security fixes, code change o docs/159948 doc [patch] grammar updates to ata.4 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. f kern/159936 yongari [request] add support for ALI PCI fast ethernet contro o ports/159935 ports-bug [PATCH] devel/libparserutils: update dependencies and o ports/159934 tobez [update] textproc/p5-Text-Xslate: update to 1.4001 o ports/159932 vsevolod [update] devel/libev: Update to 4.04 o kern/159930 fs [ufs] [panic] kernel core o ports/159928 gnome Updates graphics/clutter to 1.6.16 f ports/159926 [PATCH] lang/py-prolog: some cleanup o ports/159920 [MAINTAINER] dns/zonecheck: update to 3.0.5 p usb/159919 hselasky Patch for HUAWEI E173 (u3g/umodem) 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 ports/159915 [MAINTAINER] net-mgmt/ndpmon: [SUMMARIZE CHANGES] o ports/159914 [MAINTAINER] net-mgmt/ramond: [SUMMARIZE CHANGES] o kern/159912 [new driver] [request] Port urtwn from OpenBSD to Free o ports/159909 [maintainer] lang/ikarus: add more MASTER_SITES o ports/159908 [new] devel/php5-blitz-devel Templating engin p kern/159905 delphij [patch] type specifier error /sys/kern/sched_ule.c p kern/159904 delphij [patch] type specifier error /sys/kern/sched_4bsd.c o ports/159903 japanese/a2ps: a2ps-j generates warning errors for obs o ports/159902 skv [patch][update] devel/thrift Update to 0.7.0 & FIX: bu f ports/159900 zi sysutils/logwatch update to 7.4.0 o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o docs/159897 doc [handbook] [patch] improve HAST section of Handbook o ports/159896 skreuzer New Port: sysutils/vlogger o ports/159895 hrs print/teTeX-base : fix build with clang o ports/159894 [new port] databases/php52-rrdtool f ports/159891 swills [PATCH] databases/p5-Class-DBI-Plugin-DeepAbstractSear f ports/159890 swills [PATCH] databases/p5-Cache-Memcached-libmemcached: add o ports/159888 timur net/samba35: pkg_add -r samba35 doesn't accept openlda f ports/159878 zi [MAINTAINER] www/typo345: update to 4.5.5 o ports/159876 bf [PATCH] math/R: Fix Cario and Atlas bugs f ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159873 net/libgcrypt needs libgpg error > 1.8 f ports/159872 [UPDATE] www/xpi-firebug: update to 1.8.1 o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 f docs/159870 doc [PATCH] PR handling guidelines still reference freebsd o ports/159868 sunpoet Improper building graphics/gdal o ports/159865 amdmi3 [patch] graphics/gnash: typo o ports/159863 [patch] chinese/tin with tin 1.9.6 o ports/159861 clsung [PATCH] www/py-pyramid: update to 1.1.1 o ports/159858 miwi [PATCH] databases/p5-DBICx-MapMaker: add BUILD_DEPENDS o ports/159857 miwi [PATCH] databases/p5-DBICx-Deploy: add BUILD_DEPENDS t o docs/159854 doc [patch] grammar updates for carp.4 f ports/159849 swills [PATCH] comms/p5-SMS-Send-TW-ShareSMS: add BUILD_DEPEN o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip f ports/159845 gabor add multi-conf file to security/barnyard2 o ports/159844 girgen [PATCH] databases/postgresql90-client: fix build o ports/159843 [PATCH] databases/postgresql-plpython: unbreak o ports/159841 garga Add functionality to addport -- check for any duplicat 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 p usb/159836 hselasky [patch] [uhso] Add support for Option GlobeTrotter Max f ports/159835 sunpoet [UPDATE] multimedia/mediainfo: Update 0.7.48 o bin/159833 camcontrol(8): [patch] add ATA security options to cam o ports/159831 gecko www/firefox is broken f ports/159826 swills [PATCH] audio/p5-MP3-Find: add BUILD_DEPENDS to silenc f ports/159821 [patch] www/squid31: dnsserver does not build o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o ports/159815 sergei [patch] mail/offlineimap: upgrade to 6.3.4 o ports/159812 apache [PATCH] www/apache20,www/apache22 Strip Binaries o ports/159811 daichi [PATCH] Update japanese/mozc-server to new version o amd64/159809 amd64 RELENG_8_1 /UPDATING wrong re: COMPAT_IA32 alias for C o ports/159807 johans RC file for net/mrouted causes kernel panic by running o ports/159805 zi New port: devel/radare2 Disassembler o ports/159803 update security/monkeysphere to 0.35 o ports/159797 danfe [patch] Update games/openttd to 1.1.2 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 f ports/159791 x11-fonts/terminus-font patch apply fails f ports/159790 sysutils/freesbie cannot build iso o ports/159787 java java/openjdk6 nio muti-thread bug f ports/159786 [patch] upgrade of security/ossec-hids-server and secu o kern/159780 [kernel] [patch] make sys/vfs_subr.c more jail-friendl o ports/159779 clsung [PATCH] devel/p5-IO-AIO: update to 3.93 o ports/159778 tobez [PATCH] devel/p5-Guard: update to 1.022 o conf/159775 [boot] handling of autoboot_delay="-1" has changed in o ports/159770 eadler New port: net-mgmt/massh o ports/159769 eadler New port: shells/ambit o kern/159768 bschmidt [iwn] [panic] iwn_auth being called with wrong ni_chan o ports/159766 cannnot execute sysutil/ezjail on 9.0 BETA1 o ports/159760 New port: devel/libparserutils A library useful when w o ports/159758 tobez [PATCH] mail/p5-Email-Valid: update to 0.185 f ports/159755 sunpoet [PATCH] devel/p5-CPAN-Meta: update to 2.112150 o ports/159748 comms/rxtx installs improperly with openjdk7 o ports/159747 New port: sysutlis/wiimms : Wii and GameCube ISO Tools o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l o ports/159740 obrien shells/bash requires devel/bison f ports/159738 zi [patch] net-mgmt/nfsen: update to 1.3.5 f ports/159736 crees sysutils/dtc: many security issues o ports/159735 [patch] adopt and update comms/rxtx o bin/159730 make(1) in parallel mode fails report failure of @-pre o 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 f ports/159721 gnome x11/gdm: Usernames that are too long get logged onto G o ports/159717 danfe Update ports x11/nvidia-driver to 280.13 o ports/159716 gnome [PATCH] print/freetype2: remove --disable-nls o ports/159708 avl [patch] sysutils/flashrom from 0.9.3 -> 0.9.4 o ports/159705 brooks Patch adding an option for disabling IPV6 in the net/o o ports/159703 ohauer NEW PORT: Apache Libcloud 0.5.2 o ports/159699 naddy audio/flac broken on powerpc64 ps3 o ports/159690 kde math/eigen2 fails with CMake o ports/159689 haskell New port: textproc/hs-csv a haskell csv library o ports/159687 gnome devel/gvfs fails to compile o ports/159677 wen graphics/qgis: /usr/ports/graphics/qgis/work/qgis-1.7 o kern/159669 [puc] [patch] Add Moxa CP-112UL support to puc(4) o bin/159665 [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 [socket] [nullfs] sockets don't work though nullfs mou o ports/159661 apache [maintainer] Minor cleanup to www/mod_macro22 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 15 charact o bin/159558 bsdinstall(8): Installer doesn't configure WPA2-PSK ne o docs/159551 doc [patch] ports(7) makes no mention of LOCALBASE o ports/159550 audo/freeswitch-sounds: update to latest version, othe o ports/159549 [New Port] graphics/ocrfeeder o ports/159548 lwhsu [New Port] graphics/py-reportlab o ports/159544 [New Port] graphics/py-imaging-sane f ports/159535 mi [patch] add support for building www/websh with EAPI s o kern/159534 [panic] general protection fault when switching to con f ports/159525 swills [MAINTAINER] www/xpi-jslib: update to 0.1.367 f ports/159516 [patch] Port comms/mlan3 update to 310r2 version o ports/159515 [MAINTAINER] net-mgmt/zabbix-server: update to 1.8.6 o ports/159512 gnome x11/gnome-panel causes high load with opacity settings o kern/159511 [ata] ad0 disappear after upgrading to 8.2-STABLE, roo o ports/159502 jlaffaye Update to dist file URL o ports/159432 jlaffaye Update port: devel/guile-lib to 0.2.1 o kern/159418 fs [tmpfs] [panic] tmpfs kernel panic: recursing on non r o ports/159415 python Support more plasmoids as Google Translator with devel o kern/159414 mjacob [isp] isp(4)+gmultipath(8) : removing active fiber pat o kern/159412 scsi [ciss] 7.3 RELEASE: ciss0 ADAPTER HEARTBEAT FAILED err f ports/159409 [PATCH] devel/py-boto: update to 2.0 o kern/159402 fs [zfs][loader] symlinks cause I/O errors a ports/159398 delphij security/openssl: openssl slapd tls init def ctx faile o misc/159395 [boot] Incorrect implementation of strncmp in boot cod o ports/159393 [New port] x11/gnome-color-chooser: customize appearan o ports/159391 gnome x11/gdm needs hal dep, rc.d fixes o kern/159390 pf [pf] [panic] mutex pf task mtx owned at /usr/src/sys/c o ports/159378 [NEW PORT] lang/php-plua: PLua is a PHP extension whic o bin/159377 system vi(1)/nvi(1) does not display wide characters, o ports/159376 ohauer security/nmap 5.59BETA1 not working o docs/159374 doc [handbook] Difficulty following guide on configuring l o ports/159372 zi new port: net/opennx f ports/159365 crees [patch] mail/p5-Mail-SpamAssassin: fix WITH_AWL option o ports/159361 sysutils/fusefs-kmod doesn't compile 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/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o kern/159353 net [netinet] [patch] conditional call of ifa_del_loopback o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() f ports/159348 haskell [patch] devel/git-annex: Update to 3.20110707 and Caba o ports/159347 gnome cannot portupgrade net-im/telepathy-glib to version 0. o misc/159344 Installing FreeBSD causes computer not to boot o ports/159336 gnome graphics/evince fails to build o kern/159326 [ata] [panic] kernel panics when accessing spindowned o ports/159325 new port: emulators/joytran f ports/159322 [PATCH] sysutils/fusefs-kmod doesn't build due to rece o ports/159320 girgen databases/p5-postgresql-plperl doesn't build with post o ports/159319 databases/postgresql-plpython doesn't build with postg f ports/159313 sysutils/uhidd: uhidd-devd.conf.sample doesn't work o ports/159311 daichi japanese/mozc-server, japanese/mozc-tool, japanese/ibu o docs/159307 doc [patch] lpd smm chapter unconditionally installed o ports/159306 hselasky multimedia/webcamd: New rc script with $webcamd_device o bin/159305 [request] make syslogd(8) bind to multiple specific IP o ports/159302 New port:math/geogebra - software for math and geometr o docs/159298 doc [handbook] document Konqueror with Webkit support to i o kern/159294 net [em] em watchdog timeouts o bin/159293 mount_smbfs(8) 'has' problems with Umlauten (and simil o www/159291 www Error 404 - when I try to send-pr over freebsd.org/es/ o ports/159287 office editors/libreoffice segfaults when some option menu is o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/159281 [linprocfs] [patch] Linux-like /proc/swaps for linproc o conf/159280 [syscons] [patch] Improve utf-8 -> cp437 console map o kern/159279 [headers] [patch] __FreeBSD_cc_version in size of mbuf chain when f ports/159026 makc x11-themes/qtcurve-qt4 does not build on 8.2-RELEASE o ports/159025 New port: www/py-tornado2 - An open source scalable, n f ports/159017 glarkin [NEW PORT] security/py-arm o kern/159013 rwatson [dtrace] kldunload dtraceall crashing if userland dtra o ports/159012 gnome multimedia/totem cannot be build p bin/159011 brueffer [patch] ed(1): Memory leak in bin/ed/buf.c o ports/159008 kde cannot portupgrade editors/koffice-kde4 to version 2.3 o ports/159007 New ports: print/linux-f10-cups-libs, security/linux-f o ports/159003 stas devel/cross-gcc attempts to use $PRFIX/../../ranlib on o ports/159001 stas devel/cross-gcc: 4.5.2 libiberty fails on missing sys/ p docs/158992 jhb loader.conf(5) man page: examples are incorrect o ports/158987 multimedia multimedia/py-kaa-multimedia: fix build error for grap s ports/158983 [NEW PORT] devel/pecl-dtrace: PHP DTrace provider o ports/158980 sbz New port: net/py-msrplib Python MSRP client library o kern/158979 multimedia [snd_uadio] snd_uaudio fails to initialize built-in mi o docs/158973 gordon Update man(1) o ports/158971 kde textproc/qt4-xmlpatterns: build fails due to missing . f ports/158968 Update port: lang/mosh version 0.2.7 o ports/158966 gnome graphics/libchamplain: broken build after GnuTLS updat o ports/158962 portmgr [bsd.port.mk] Make EXTRACT_CMD more flexible-- support o arm/158950 arm arm/sheevaplug fails fsx when mmap operations are enab o ports/158945 office editors/libreoffice: 3.3.3_1 build failure (errors 652 o bin/158942 Interactive wpa_cli(8) does not terminate after "quit" o ports/158941 shaun [PATCH] ports-mgmt/portscout: add MySQL backend and fi o ports/158936 portmgr [bsd.port.mk] Add a filename field to DESKTOP_ENTRIES f ports/158935 [PATCH] print/lpr-wrapper: update to 0.7 o ports/158933 avl mail/heirloom-mailx won't build o ports/158931 print/perlftlib is not built with perl5.14 o kern/158930 net [bpf] BPF element leak in ifp->bpf_if->bif_dlist o ports/158925 New Port: audio/pithos GNOME Pandora player o ports/158923 perl port update: www/p5-Apache2-SiteControl -> 1.05_1 f ports/158916 [PATCH] textproc/ctpp2: update to 2.7.1 a ports/158910 [PATCH] sysutils/battmond: update to 0.3 o ports/158909 stas [PATCH] net/enet: update to 1.3.3 f ports/158907 [PATCH] www/interchange: update to 5.6.3 s ports/158904 ports [PATCH] finance/py27-openerp-web: update to 6.0.2 a ports/158899 roam [PATCH] sysutils/prips: update to 0.9.9 f ports/158898 [PATCH] www/libecap: update to 0.2.0 f ports/158897 [PATCH] net/phamm: update to 0.5.18 a ports/158894 danfe audio/ardour: upgrade to 2.8.11 o ports/158893 stas [PATCH] net-mgmt/braa: update to 0.82 f ports/158889 [PATCH] sysutils/ucspi-proxy: update to 0.98 o ports/158887 knu [PATCH] databases/kyotocabinet: update to 1.2.68 p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents o ports/158878 [patch] textproc/dadadodo assumes long is 32 bits o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( o kern/158873 pf [pf] [panic] When I launch pf daemon, I have a kernel s ports/158842 mm converters/wkhtmltopdf port compilation issues o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o ports/158838 girgen [patch] Update www/mod_jk to 1.2.32 o ports/158826 java Can't install java/icedtea-web f ports/158824 devel/flyspray: share/flyspray/flyspray.conf.php remai o ports/158817 mm multimedia/ffmpeg fails to build, when RTMP option is o docs/158813 doc [patch] grammar updates for jme(4) o ports/158803 mva sysutils/flexbackup calls dump without -L on mounted f o kern/158802 fs [amd] 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 Update security/openvas-* f ports/158786 jlaffaye [MAINTAINER] devel/libsigsegv: Update to 2.10 o ports/158781 New port: games/drcreep Platform Puzzle Game o ports/158776 tabthorpe [patch] [bsd.licenses.db.mk] add support for the copyf p bin/158775 jhb [patch] top(1)'s output when using 'C' and 'H' interac f ports/158759 ohauer mail/dovecot2 fails installation if user dovenull exis o bin/158756 newfs_msdos(8) creates invalid image o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o ports/158748 bapt net/libvncserver won't compile a ports/158744 beech [Maintainer] textproc/scim-kmfl-imengine: fix pkg-plis o conf/158734 netif stop don't destroy cloned_interfaces f ports/158731 sysutils/byobu wants module "snack" 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 o ports/158715 mm www/lighttpd: consider USE_GMAKE=yes o 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 o ports/158704 New port: mail/mailfromd f ports/158703 sahil New port: mail/mailutils 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 stas 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 f ports/158687 wen [UPDATE] deskutils/freemind: update to 0.9.0 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 ports/158679 lwhsu www/py-django: django-1.3 segfaults with python built 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 bin/158652 [patch] csup(1): .csup/auth isn't read if the server n f ports/158649 mi print/lyx14: Remove port 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/158636 pf [pf] if_pfsync.c fails to build when NBPFILTER == 0 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/158621 clsung devel/autogen port is out of date. o ports/158616 vd graphics/vigra prevents installing libreoffice o ports/158608 acm x11-toolkits/qt4pas: Update to 2.3 release o ports/158599 fjoe [PATCH] databases/pgadmin3 o 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 f ports/158556 wen [Update]databases/postgis:update to 1.5.3 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 f ports/158545 zi [PATCH] fix net/tptest to build with clang f ports/158544 apache Port www/mod_perl2 fails to build o bin/158543 named(8) spams logs with unexpected errors o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s f ports/158533 [NEW PORT] devel/tiled: 2D game map editor o ports/158529 x11 [patch] x11-servers/xorg-server: conditionalize --with o ports/158525 mm cannot portupgrade graphics/opencv to version 2.3.0.r o ports/158513 x11 Broken Xvideo in x11-drivers/xf86-video-intel drivers o ports/158506 stas 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 f ports/158403 New port: mail/dovecot2-deleted-to-trash-plugin: dovec p kern/158398 geom [headers] [patch] includes f kern/158391 gavin [pci] Resource allocation issues with hda/ath o ports/158389 pgollucci [NEW PORT] mail/rubygem-larch (copy mail from one IMAP 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 doc 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 ports/158357 ashish Strange behaviour of epmd launched with net-im/ejabber f ports/158352 glarkin [UPDATE] devel/bzr-builder o kern/158351 [cam] [patch] missing #includes in o ports/158348 gecko mail/thunderbird build error 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 ports/158333 pav [PATCH] audio/libsamplerate portlint complains o ports/158327 clsung [PATCH] devel/p5-SVN-Notify: update to 2.82 o ports/158316 pgollucci [NEW PORT] databases/rubygem-amalgalite (embeded SQLit o ports/158313 pgollucci [NEW PORT] www/rubygem-typhoeus (Parallel HTTP request o ports/158312 pgollucci [NEW PORT] textproc/rubygem-sanitize (Whitelist-based o kern/158307 hrs [ip6] ipv6_pktinfo breaks IPV6_USE_MIN_MTU o ports/158302 niels [PATCH] www/rubygem-anemone: update to 0.6.0 f ports/158301 ruby [PATCH] mail/rubygem-vmail: update to 1.5.0 o bin/158296 portmgr pkg_add(1) does not search entire PKG_PATH for depende o ports/158278 kuriyama [PATCH] textproc/p5-XML-Parser: update to 2.41 o ports/158276 niels [PATCH] www/rubygem-robots: update to 0.10.1 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" f ports/158225 pgollucci [PATCH] devel/rubygem-ruby_parser: update to 2.0.6 f ports/158223 pgollucci [PATCH] devel/rubygem-ruby-prof: update to 0.10.0 o bin/158206 jilles sh(1) doesn't properly return IO errors to conditional o ports/158204 [PATCH] java/jde: update to 2.4.0.1 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 ports/158179 some packages do not fully honor -P dir option in pkg_ o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o ports/158167 [NEW PORT] databases/percona-server: Multithreaded SQL o kern/158160 [coretemp] coretemp reports incorrect CPU temperature o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe f www/158126 www We offer a freebsd installation and consulting service o bin/158125 [patch] whois(1) takes too long to move to next addres f ports/158105 dhn [maintainer-update] games/traindirector: Respect CXX ( o ports/158102 multimedia ports/multimedia/mjpegtools triggers internal compiler 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/158058 culot [PATCH] lang/elk: update to 3.99.8 o ports/158054 matusita [PATCH] japanese/ja-skk-jisyo: update to 201106 o ports/158051 clsung [PATCH] devel/buildbot-slave: update to 0.8.4 o ports/158045 sobomax net/asterisk14: latest version is 1.4.41 o ports/158044 Multiple net/iaxmodem instances started o ports/158036 clsung databases/py-redis: [2.2.4] this port don't actually i f ports/158035 zi [new port] graphics/rubygem-rmagick 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 ports/157999 des [patch] www/varnish update to 3.0.0 o ports/157964 clsung [UPDATE] textproc/nltk: update to 2.0.1rc1 o ports/157961 amdmi3 [PATCH] graphics/gnash: update to 0.8.9 o kern/157946 [patch] 'BSM conversion requested for unknown event' g f ports/157936 pav [bsd.port.mk] add LDFLAGS support f kern/157932 gavin [cas] loading CAS4 at boot hangs system f kern/157929 fs [nfs] NFS slow read o ports/157917 skv [PATCH] sysutils/pmap: multiple build problems 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 ports/157885 multimedia multimedia/mjpegtools 2.0.0 build failure o kern/157879 geom [libgeom] ABI change without version bump in 8.2 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 a ports/157853 roam [update] security/stunnel to 4.36 o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin o misc/157835 Do not copy symlinks or through mtree, or via rsync o ports/157814 perl [new port] graphics/p5-Image-ExifTool-devel: developme f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o ports/157791 audo/midimountain fails to copy all xpm files and fail o kern/157785 net amd64 + jail + ipfw + natd = very slow outbound traffi p docs/157778 brueffer Broken doc link regarding Atheros products o misc/157776 Unable to load kernel modules in fixit shell without c o kern/157770 scsi [iscsi] [panic] iscsi_initiator panic o ports/157769 miwi [exp-run] devel/bison update to 2.5 o misc/157764 jfbterm + mplayer = hang o ports/157760 tobez [PATCH] devel/p5-Time-HiRes: update to 1.9724 o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o ports/157752 dougb [NEW PORT] dns/bind97-sdb: The BIND DNS suite with upd 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 ports/157738 New port: net/py-ldaptor o ports/157730 chromium www/chromium: x11_util.cc X Error detected (BadAccess 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 o ports/157719 [new port] net-mgmt/zenpack-CheckPing: Provides nagios p bin/157718 edwin input data trigers a core dump from calendar(1) o ports/157715 [new port] net-mgmt/zenpack-libvirt: Provides monitori o ports/157709 makc irc/quassel: version bump to 0.7.2 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 o ports/157686 mm Wrong version id in x11-toolkits/tk86/pkg-descr p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi o ports/157669 crees Fix port: databases/postgresql90-server should use USE o ports/157666 crees Fix port: databases/postgresql84-server should use USE p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o ports/157636 brix [repocopy] xapian* => xapian*10 o bin/157635 sysinstall sysinstall(8): "none" Do not install a boot manager - o ports/157631 linimon Fix port: databases/gnats should use USERS o ports/157620 flo change request: www/asterisk-stat o ports/157600 eclipse java/eclipse: option WITH_TESTS missing distinfo entry p ports/157589 crees Fix port: irc/ptlink-services should use USERS p ports/157588 crees Fix port: irc/ptlink-ircd should use USERS f ports/157567 culot [Maintainer Update] cad/brlcad 7.18.4 -> 7.20.0 o ports/157559 crees [PATCH] Fix port: databases/postgresql82-server should o ports/157558 crees [PATCH] Fix port databases/postgresql83-server should 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 p ports/157537 crees [PATCH] Modify port: chinese/firebird to use USERS and o misc/157533 imp [nanobsd][patch] save_cfg improvements o misc/157524 [build] make buildkernel fails while updating 8.1-RELE o ports/157505 crees [new port] net-mgmt/zenpack-DeviceSearch: Provides the o ports/157504 crees [new port] net-mgmt/zenpack-NetApp: Provides monitorin o ports/157503 crees [new port] net-mgmt/zenpack-InterfaceGraphs: Provides 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 f ports/157494 lang/ezm3 fails to compile o ports/157492 niels security/whatweb -- missing dependency o ports/157469 kuriyama textproc/expat2 provides the incorrect upstream patch 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 o ports/157398 mbr 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 p docs/157389 gavin [patch] mount.8: add example of option values for oth 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 ports/157369 stas [PATCH] x11-toolkits/ocaml-lablgtk2: add an option for o ports/157357 office editor/libreoffice: ERROR: error 65280 occurred while o ports/157355 danfe [patch] add options to games/openttd o bin/157351 [patch] fsdb(8): Add some ports names to See Also for s ports/157346 brooks [PATCH] update to security/ca_root_nss port o ports/157342 skreuzer devel/gdb: Problem with running simple pthreads progra o docs/157337 doc [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 [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 bin/157211 [patch] add ftp4.se.freebsd.org to the list of IPv6 mi o bin/157210 [patch] add ftp4.se.freebsd.org to list of mirrors in 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/157197 crees [new port] net-mgmt/zenpack-deviceAdvDetail: Provides o ports/157196 crees [new port] net-mgmt/zenpack-DellMon: Provides addition o ports/157194 crees [new port] net-mgmt/zenpack-NtpMonitor: Monitors the o o ports/157191 [new port] net-mgmt/zenpack-MACReport: Lists MAC addre o ports/157190 [new port] net-mgmt/zenpack-GraphPortlet: Enables user o conf/157189 Default /etc/sysctl.conf should be removed. o kern/157182 net [lagg] lagg interface not working together with epair o ports/157180 rea portupgrade of mail/exim fails 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/157176 [patch] sysutils/heartbeat crashes when clock_t (signe o ports/157175 mnag Fix port: www/pecl-APC 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 f ports/157149 zi [MAINTAINER] databases/tuning-primer: Resolve file fet o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe o ports/157136 [new port] net-mgmt/zenpack-Domain: Provides expiratio o ports/157135 [new port] net-mgmt/zenpack-DellMonitor: Provides Zeno o ports/157133 [new port] net-mgmt/zenpack-ApacheMonitor: Provides pe f kern/157132 yongari [nfe] nfe0 hang up the system after the 'dhclient nfe0 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 kern/157074 [boot] vfs_mountroot_ask is called when no usb keyboar o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o ports/157068 mnag [PATCH] www/pecl-APC: update to 3.1.9 o stand/157050 standards 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 f ports/157044 x11-toolkits/slgtk: fails to start o threa/157040 threads [libthr] valgrind detects leaks in libthr.so.3 o gnu/157025 [patch] gcc(1): gcc Bug 28796 - __builtin_nan() and __ p ports/157022 kde [PATCH] x11-toolkits/shared-desktop-ontologies: update f ports/157021 multimedia/mplayer: does not build with multimedia/lib o bin/157017 vidcontrol(1): "vidcontrol -r" no longer works [regres o bin/157015 bsnmpd(8) does not create 64bit counters for interface o ports/157014 devel/jam: does not compile on FreeBSD 9.0 CURRENT/amd f ports/156998 zi [patch] new version of graphics/xnview is available o ports/156987 apache www/apache22: Harden SSL cipher suites strength and SS o ports/156975 bsam devel/qct plist is wrong 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/156936 avilla multimedia/kdenlive crash o kern/156933 fs [zfs] ZFS receive after read on readonly=on filesystem f ports/156926 stephen security/openssh-portable port/pkg doesn't recognize i 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 ports/156889 gecko www/firefox36: firefox 3.6.17 eats cpu on current/x64 o kern/156884 wireless [ath] ath instablity o ports/156881 stas devel/valgrind: Fix build with newer gcc o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o docs/156868 doc [patch] Typos and grammar in Spanish translation of ar o ports/156857 portmgr split lang/gcc* ports in stable and devel versions o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl f bin/156840 man(1): shell prompt doesn't show up when suspending a o ports/156836 mm multimedia/x264: undefined reference to `__gcov_init' o ports/156834 New port: games/fairymax-devel latest version of games o ports/156824 kuriyama [PATCH] japanese/ja-trac: update to 0.12.2 o ports/156818 kuriyama [PATCH] databases/pgpool-II: add reload to startup scr o misc/156817 [build] [patch] WITHOUT_CDDL and NO_CTF ignored if WIT 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 ports/156813 gecko [PATCH] deskutils/lightning-thunderbird: Patch to requ 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/156791 New port: security/py-kerberos Python bindings for ker 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 ports/156777 gecko www/firefox and mail/thunderbird menus show corrupt da 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 f ports/156747 multimedia/mplayer: fix 24-bits OSS + some improvement p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o ports/156737 [patch] www/squid31: squid.in startup script fixes to 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' o ports/156693 [PATCH] security/hmap: refine this port a bit 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 f ports/156687 mi [PATCH] graphics/libmng: misc improvements 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 ports/156629 [patch] sysutils/puppet patch to use PACKAGEROOT inste o www/156614 www Change log_pagesize on ViewVC (svnweb) 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 o ports/156578 kuriyama [PATCH] databases/pgpool-II: [SUMMARIZE CHANGES] o 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 ports/156543 kde [patch] Mk/bsd.cmake.mk: distinguish STRIP from WITH_D o kern/156540 [hwmpc] hwpmc(4) crash when loaded on unknown AMD cpu o ports/156539 [NEW PORT] print/frescobaldi: A music score editor for o misc/156537 Mismatch of Control Sums for ISO-image Files of Old Di o ports/156528 fluffy [PATCH] textproc/wv2: remove useless depends on gmake o ports/156527 fluffy [PATCH] multimedia/gstreamer-qt4: remove depends on gm 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/156495 amdmi3 [NEW PORT] audio/mscore: MuseScore music notation prog 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 ports/156472 [new port] devel/ocaml-react - OCaml library for react o amd64/156464 amd64 fpsetprec does not work o kern/156463 [panic] kernel panic at pcpu.h:224 o ports/156452 makc irc/quassel: quasselcore should have an init script o kern/156433 multimedia [sound] [patch] OSS4/VPC is broken on 64-bit platforms o ports/156426 decke New ports: devel/libg19, devel/libg19draw - libs to he o ports/156425 python lang/python26: Needs to include -L/usr/local/lib/pth i o ports/156424 x11 8.2R xrandr & xf86-video-intel & xorg-server packages o kern/156423 [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/156386 danfe [patch] x11/nvidia-driver: EnableMSI doesn't work f ports/156376 [PATCH] graphics/optipng: update to 0.6.5 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/156365 amdmi3 Update graphics/gnash-devel to 0.8.9 beta 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/156343 multimedia/xbmc 10.1_1 mp3 playback problem - CALSADir o ports/156335 gecko www/firefox: Repeatable firefox-4.0_1,1 crash f ports/156332 if net/quagga - update to 0.99.18 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 ports/156319 java [patch] java/openjdk6 does not compile with previous l o kern/156317 net [ip6] Wrong order of IPv6 NS DAD/MLD Report o ports/156313 [patch][new port] astro/gkrellsun2 (Gkrellm2 Plugin) o ports/156293 kde [patch] net/kdenetwork4: googletalk plugin for kopete 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 makc [exp-run] [patch] Update devel/boost-* from 1.45 to 1. f ports/156252 New port: devel/radar Opensource tools to disasm, debu o ports/156251 apache [PATCH] Enable module by default for www/mod_fastcgi 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 ports/156237 lev Request: Add subversion-freebsd OPTION to devel/p5-sub 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/156218 pjd [zfs] IO on ZFS filesystems does not register in top(1 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 f ports/156171 port multimedia/mplayer patch-libao2-ao_oss.c is incor o kern/156168 fs [nfs] [panic] Kernel panic under concurrent access ove o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, f ports/156143 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 ports/156121 rea The port "mail/exim" isn't compiled at setting of opti o ports/156119 x11-fonts/font-manager: ignore a problem caused by the o ports/156115 wen sysutils/tmux: teken, tmux and vim: multiplexer proble o kern/156111 jail [jail] procstat -b not supported in jail o amd64/156106 amd64 [boot] boot0 fails to start o ports/156088 amdmi3 graphics/gnash: Segmentation fault, if opengl is the o 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 f ports/156075 [new port] graphics/openfst: library for constructing, o amd64/156074 amd64 [hang] Removing CD-Rom from Lenovo T61p hangs system s ports/156066 ruby [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 ports/156038 office editors/libreoffice failed installing when WRKDIRPREFI o ports/156035 novel security/libgpg-error 1.10 wrongly identifies libiconv f ports/156034 print/lyx-devel spell checking with enchant does not w 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 ports/156002 sbz New port: sysutils/pefs-kmod kernel level stacked cryp 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 o ports/155991 kuriyama textproc/p5-XML-Parser build error o docs/155989 doc [patch] Fix offset in boot.config(5) o ports/155987 kuriyama misc/amanda-client: $HOME of amanda user don't allow f o bin/155985 tcpd(8) does not perform a access-control o conf/155984 [network.subr] [patch] Fix typos in network.subr 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 oliver x11-wm/xfce4 does not launch or start f ports/155941 mwserv library support is not included in nepenthes.co o ports/155938 mlaier Unbreak sysutils/pftop on 9.X o ports/155937 ashish [patch] multimedia/libvpx incompatible with doxygen o ports/155936 python lang/python27 Pthread: previous declaration of ... f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o misc/155925 CD tray is not locked even if using /dev/adc0. 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/155893 sobomax [PATCH] devel/py27-interface: update to 1.1.1 o ports/155888 girgen databases/postgresql84-server won't build with PAM ena o bin/155886 bc(1) sometimes mangles hexidecimal numbers p bin/155873 edwin calendar(1) recurring date not working o ports/155788 ports security/cfsd startup -- multiple problems 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 ports/155740 sobomax [PATCH] net/asterisk14: update to 1.4.40 o conf/155738 portmgr [patch] reaper of the dead: time to BURN_BRIDGES and r o conf/155737 portmgr [patch] reaper of the dead: remove OBJFORMAT variable o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit f 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 usb [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/155650 bf [PATCH] math/atlas: add OPTIONS for STATICLIB and OPTI 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 kern/155606 [libc] select() does not return EBADF on closed file d o kern/155604 net [flowtable] Flowtable excessively caches dest MAC addr o ports/155601 fluffy new port audio/festvox-russian o ports/155598 x11 x11/xcalc is missing minor dependencies o kern/155597 net [panic] Kernel panics with "sbdrop" message o ports/155593 lang/mpd .16.1 ignores embedded cue sheets in FLAC fil f ports/155592 polish/ekg, after polish/libgadu update, contacts are o kern/155587 fs [zfs] [panic] kernel panic with zfs o kern/155585 net [tcp] [panic] tcp_output tcp_mtudisc loop until kernel o kern/155577 emulation [boot] BTX halted after install. Reboot during install o ports/155570 [patch] devel/py-twistedCore: update to 10.2.0 and oth o ports/155568 gerald bsd.gcc.mk: Fixing dependency not to pick ccache stubs 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 java/jboss5 port build failure o ports/155546 ade devel/libtool doesn't work properly if not using built o ports/155538 new port devel/radlib radlib developer library. Event- 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/155522 ashish multimedia/libvpx update to 0.9.6 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 usb [usb][patch] support BUFFALO WLI-U2-SG54HG wireless o kern/155491 [sysctl][patch] Document some sys/dev/md sysctls o kern/155490 [sysctl][patch] Document some sys/vm sysctls o kern/155489 [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 f ports/155456 stephen security/openssh-portable fails to compile with LPK en o ports/155447 Update ports: net-p2p/eiskaltdcpp-* to 2.2.1, New port 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/155436 fluffy Missing Files in pkg-plist of news/inn o ports/155431 oliver 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 o 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 o kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r f ports/155404 [PATCH] mail/mutt-devel: doesn't build in presence of o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o bin/155365 net [patch] routed(8): if.c in routed fails to compile if 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() f ports/155306 multimedia/openshot doesn't work o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot o ports/155291 gecko reinstalling www/firefox removes www/firefox-sync o ports/155275 secteam ports-mgmt/portaudit does not report installed vulnera o ports/155268 danfe games/warsow 0.6 does not work as dedicated server o amd64/155249 amd64 [build] 8.1 buildworld failure o ports/155225 plz split antlr2 and antlr3 ports. not update antlr2 - f ports/155220 clsung deprecate security/gpgme03, security/cryptplug: mark D 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 ports/155166 update deskutils/org-mode.el to 7.4 o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o ports/155157 stas devel/libdispatch don't build with clang on 8.2-RELEAS 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/155120 Update of port devel/php-libawl f ports/155115 devel/doxygen: dependancy loop o java/155107 java [patch] port java/diablo-jdk16 small cosmetic fix for 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/155099 python lang/python*: Not handled "nis_failed.so" file by pyth o ports/155083 netchild devel/linux_kdump update o ports/155070 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 o kern/155004 net [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 p kern/154978 jhb [patch] [mfi] Support MFI cards with boot option ROM d f ports/154973 [PATCH] security/ike: fix plist when QTGUI=off, respec 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 [patch] csup(1) in the CVS mode terminates before it o ports/154951 girgen [patch] databases/postgresql-jdbc: update to 9.0.801 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 mbr emulators/open-vm-tools: Bug in open-vm-tools-313025_2 o threa/154893 threads pthread_sigmask don't work if mask and oldmask are pas 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 ports/154834 des [PATCH] www/varnish: update to 2.1.5 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 ports/154809 sergei [PATCH] ports-mgmt/porttools should include PORTREVISI 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 usb [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 openoffice Build of editors/openoffice.org-3 3.0 fails o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which f ports/154644 clsung [PATCH] databases/cassandra: update to 0.7.0 o ports/154632 wen astro/gpsbabel needs update 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 o ports/154548 skreuzer textproc/pootle: Pootle's rc.d script don't take into f ports/154546 update port: games/gemrb to version 0.6.3 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 p kern/154505 [libc] [patch]Buffer underflow in RPC library for non- o docs/154502 doc xdm authorization failure when used with E17 window ma o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o conf/154484 [patch] request for new functionality. jail zfs datase f ports/154475 danfe x11/nvidia-driver-96: X11 error using latest Nvidia-Dr 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 ports/154448 openoffice editors/openoffice.org-3: /usr/local/openoffice.org-3. o kern/154447 fs [zfs] [panic] Occasional panics - solaris assert somew o gnu/154445 [patch] gcc(1): Attempt to "fix" gcc -ftree-vrp 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 o ports/154401 New port: www/jetty7 - newer fork by Eclipse/Codehaus o ports/154352 stas [patch] multimedia/xmms: update using desktop and mime f amd64/154331 yongari [hang] HP DL360 G6 server hang when ssh transmit large o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o arm/154306 warner named crashes with signal 11 o kern/154302 xen [xen] [panic] [patch] xn0: Error 2 parsing device/vif/ 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/154287 [kernel] [patch] Avoid malloc(0) implementation depend o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o ports/154285 [NEW PORT] java/netty: Java NIO client server framewor 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 ports/154217 New port: ports-mgmt/portsreinstall o kern/154214 net [stf] [panic] Panic when creating stf interface o ports/154209 python [PATCH] lang/python: Install symlink for ptags o ports/154202 New port: security/scannedonly - A Samba VFS virus sca 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 f ports/154179 wen Fix goinstall in lang/go port 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 o bin/154042 [patch] fix several rtprio(1) issues o ports/154031 New port: audio/shoutcast2: SHOUTcast Distributed Netw f ports/153999 lme x11/mrxvt-devel port 0.5.4_5 has freetype font support 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 ports/153926 New port net/freeswitch-snapshot o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/153920 multimedia [sound] [patch] Replace the GPL'd sound/maestro3 heade o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin o kern/153901 multimedia [sound] [patch] Replace the GPL'd emu10k1-alsa.h with 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 kern/153847 fs [nfs] [panic] Kernel panic from incorrect m_free in nf o ports/153846 multimedia graphics/libcaca 0.99.beta17 - Hidden dependency on Xl o ports/153845 wen devel/py-mwlib.rl update to 0.12.7 o ports/153844 wen devel/py-mwlib update to 0.12.14 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 ports/153810 [PATCH] Fix usb_interrupt_read() in devel/libusb for f o bin/153801 [patch] btxld(8) produces incorrect ELF binaries o kern/153789 xen [xen] [regression] FreeBSD 8.2-RC1 crashes under Solar 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 f ports/153715 zi net/freeradius: FreeRADIUS exiting with Signal 11 on F 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" f ports/153612 linimon Update devel/arm-elf-binutils to version 2.17 o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o ports/153607 Update devel/djgpp-binutils to version 2.17 o bin/153600 Path length restrictions in mount/umount tools prevent o usb/153599 usb [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/153573 tabthorpe [patch] ports/Mk bsd.license.mk honor pkg_add -p/-P o ports/153567 acm [PATCH] x11/fpc-x11: doesn't respect localbase o ports/153565 ohauer APACHE_PORT needs to be better documented 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 f ports/153470 lme [UPDATE] games/freesynd to v0.4 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 kern/153440 mav [ata] 8.2 doesn't detect ICH8M anymore f ports/153437 rene [patch] emulators/dgen-sdl: mark BROKEN on non-i386 ar 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 ports/153425 [PATCH] www/limesurvey: Added a switch to use PostgreS o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o ports/153409 ache [PATCH] mail/procmail: Port builds shouldn't ask for u o ports/153406 apache www/apache22's SUEXEC_RSRCLIMIT option does not take e f ports/153395 pgollucci [PATCH] misc/ruby18-vpim: update to 0.695 o ports/153386 stas devel/valgrind does not build/include man pages o arm/153380 arm Panic / translation fault with wlan on ARM o 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 girgen databases/postgresql90-server crashes during compilat o bin/153276 [patch] uudecode(1) error message is incorrect o ports/153264 apache www/apache22 and apache13-modssl -- rc.d script improv f ports/153262 pgollucci [exp-run]: Death to FreeBSD 6, Long Live FreeBSD! o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153257 [libc] [patch] regex(3): Add support for \< and \> wor 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 a 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 o bin/153206 [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 f ports/153198 obrien sysutils/pwsafe does not register all of its dependenc 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 [patch][libarchive] fix error handling in mtree parsin f bin/153153 syrinx net-mgmt/bsnmp-ucd build fails 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 f ports/153130 sysutils/k3b: problem with k3b and mounting ntfs with o ports/153128 stas 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 ports/153114 gecko www/firefox 3.6.12_1,1 crash: Assertion failure: prop 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 o kern/153006 [new driver] add 3Ware tws driver 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 ports/152982 [patch] net/nss_ldap, ignore option nss_initgroups_ign 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/152901 mnag [patch] databases/pecl-sqlite Cleanup/Fixes o ports/152899 stas devel/valgrind: unhandled syscall: 506 o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o ports/152890 ashish multimedia/libvpx port not configured for powerpc o ports/152886 python databases/py-bsddb fails to build with databases/db51 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 [patch] Request for exp-run and comment w/rt MACHINE_A 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 f ports/152820 bapt [patch] shells/zsh: correct memory report for time bui o gnu/152808 gdb(1) crash on exit o conf/152807 [periodic] security 900.tcpwrap does not report any re f 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 conf/152784 rc services provide himself instead providing class of se 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 f ports/152537 girgen [patch] database/postgresql90-server no longer needs p p misc/152531 maxim Incorrect sysctl description o bin/152525 ntpd(8) on 8.1 loops on select() with EBADF o ports/152502 girgen databases/postgresql90-server core dumps when built wi o kern/152500 multimedia [hdac] play interrupt timeout, channel dead p kern/152488 fs [tmpfs] [patch] mtime of file updated when only inode o kern/152485 [patch] null(4)/zero(4): /dev/null seek offset is not f ports/152474 mi Upgrading 'gdb-6.6_1' to 'gdb-6.6_2' (devel/gdb6) fail f ports/152468 ashish Update Port: textproc/exmpp to 0.9.5. 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 bin/152385 ee(1) has different keybindings in the livefs environm o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o ports/152376 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 f ports/152304 rea sysutils/fcron: illegal instruction 4 s ports/152296 lev devel/subversion: wrong message when trying to checkou o kern/152293 [libstdc++] SEGV in libstdc++.so.6 p ports/152262 openoffice [patch] editors/openoffice.org-3 o bin/152259 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 s ports/152195 [PATCH] deskutils/pinot update to xapian-core 1.2.3 o ports/152194 brix [PATCH] www/xapian-omega update to 1.2.3 o ports/152193 perl [PATCH] databases/p5-Search-Xapian update to 1.2.3 f ports/152192 [PATCH] databases/xapian-bindings update to 1.2.3 o ports/152191 [PATCH] databases/xapian-core update to 1.2.3 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 f ports/152111 timur databases/tdb: Cannnot install tdb from ports f ports/152109 stephen New port: x11/keylaunch2 A fork of keylaunch that a o docs/152103 chinsan man ipnat is out-dated a ports/152099 glarkin [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/152045 stephen New port: www/links-hacked browser with tricks for tab o kern/152042 [libc] [patch] wrong bufsize of __hdtoa 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/151970 bf New port math/slatec Common Maths libraries, over 1400 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/151940 dhclient(8): Implement multiple options in Domain Sear o bin/151937 [patch] netstat(1) utility lack support of displaying o ports/151930 [PATCH] net-mgmt/netams links to libmysqlclient/libpq 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 openoffice editors/openoffice.org-3-devel port misbehaviour p bin/151866 des [libfetch] [patch] closing the cached FTP connection p kern/151861 [rtld] dlclose() of library causes separately opened l o bin/151850 [patch] style cleanups to newfs_msdosfs(8) o kern/151845 fs [smbfs] [patch] smbfs should be upgraded to support Un f ports/151837 stephen [patch] sysutils/bsdstats : does honor BATCH when inst o ports/151833 amdmi3 sysutils/kiconvtool: I don't know how to load the pair o ports/151830 kde [patch] devel/cmake: install cmake-mode.el o kern/151813 FreeBSD 8.1/amd64: garbage in /var/log/messages o ports/151808 oliver security/courier-authlib: courier-authdaemond doesn't p threa/151767 davidxu pthread_mutex_init returns success with bad attributes o ports/151764 timur security/vuxml update for security vulnerability: port o kern/151758 [panic] tmux kernel panic, with out root privilegies 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 o bin/151736 [patch] mount_nullfs(8) patch to add support for expos f ports/151723 kuriyama x11-clocks/asclock-xlib needs imake to build, mark job 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 f ports/151694 nox emulators/kqemu-kmod: Kernel module kqemu fails to loa 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 swills 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 ports/151645 flo Move mason_handler.fcgi and webmux.pl inside www/rt38 o ports/151643 flo www/rt38: RT38 upgrade directory location o kern/151629 fs [fs] [patch] Skip empty directory entries during name o ports/151614 acm net-p2p/transmisson-remote-gui misspelled o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o ports/151603 vbox Self-built emulators/virtualbox-ose-kmod vboxnetflt.ko 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 ports/151581 mnag misc/compat6x: fix bug with umask set less restrictive 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/151477 girgen [PATCH] databases/postgresql-jdbc: update to 9.0.801 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 amd64/151385 amd64 [boot] Installation hangs on MacBook p bin/151384 jh rs(1) truncates lines longer than 1024 bytes (BUFSIZ) o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O o docs/151367 doc [patch] Update for puc.4 man page o kern/151365 [puc] [patch] Two new Moxa puc(4) devices 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 p bin/151321 jh mount_nfs(8) won't recognize readahead o ports/151318 [repocopy][new port] x11-wm/stumpwm: rename to x11-wm/ o ports/151306 stas devel/libdispatch fails to install static version of t o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o ports/151296 [patch] ports/sysutils/fusefs-kmod build fails: MNT_NF 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 sysinstall sysinstall(8) - shift-tab doesn't work as expected 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 f 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 www/151084 www A major Bulgarian ISP which uses FreeBSD 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 f ports/150940 olgeni [PATCH] lang/clojure-mode.el: update to 1.7.1 o ports/150934 girgen [PATCH] databases/postgresql-jdbc: fix build with java 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 bsam 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 ports/150882 acm Ports games/el won't compile on 64 bit 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/150848 stas sysutils/devcpu-data: cpucontrol microcode update lead o ports/150794 glewis tomcat7's rc.d script wont shutdown tomcat with java/o f ports/150783 mail/qpopper: fails to configure ocasionally o bin/150772 [patch] csup(1) should include limits.h instead of sys o bin/150771 [patch] csup(1) GNUmakefile missing o i386/150766 i386 Dell Vostro 3700 siffle sous FreeBSD / Dell Vostro 370 o conf/150752 rc [rc.subr] [patch] be not needed to eval $_pidcmd on re o bin/150723 syrinx 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 ports/150594 x11 [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 o kern/150514 [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 f ports/150493 stephen Update for: security/openssh-portable port from 5.2p1 o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o ports/150431 girgen DTrace support for databases/postgresql84-server 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 doc [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 f ports/150316 skreuzer new port: net/neatx 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 f kern/150257 yongari [msk] watchdog timeout 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 f ports/150235 sysutils/smartmontools build system bug 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/150207 fs zpool(1): zpool import -d /dev tries to open weird dev o kern/150206 jh [libc] [patch] nmount(2): can't switch root partition o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o ports/150194 There is no startup script for databases/cassandra 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 amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA 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 f 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 standards [libc] [patch] negative value integer to nanosleep(2) o ports/149973 mva [REPOCOPY] graphics/blender -> graphics/blender-devel o bin/149972 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 stas x11-toolkits/ocaml-lablgtk2's varcc should (maybe) be f ports/149949 mbr emulators/open-vm-tools: Problems with DHCP on startup f ports/149947 eadler [NEW PORT] devel/smartCVS, a powerful graphical CVS cl 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 p usb/149934 usb [patch] [usb8] Transcend JetFlash V85 poor performance 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 a ports/149851 jsa multimedia/vlc and mplayer - race conditions? 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 o kern/149800 [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 s kern/149665 imura [PATCH] mount_smbfs the CP932 to UTF-8 mount as not. f kern/149655 [panic] Panic when installing FreeBSD-8.1-RELEASE-amd6 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 o ports/149564 patch for various games/ adding appropriate LICENSEs t 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 docs/149522 doc Russian network article: incorrect translation about n 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 p bin/149403 ed [patch] truss(1) hangs when user input is requested 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 kern/149307 wireless [ath] Doesn't work Atheros 9285 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 o bin/144722 [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 o ports/144598 x11 Makefile / pkg-plist issue with x11-drivers/xf86-video f ports/144597 stephen security/openssh-portable fails to compile with KERBER p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs o kern/144572 net [carp] CARP preemption mode traffic partially goes to 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 docs/144537 doc Missing _mdconfig_list and _mdconfig2_list explanation 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 f 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 docs/144408 doc [patch] update makefs(8) (remove device option) 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 f bin/144377 ed Display of diacritics is mildly broken in ee(1) 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 f kern/144269 ipfw [ipfw] problem with ipfw tables 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 o 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 f ports/143981 bapt [patch] shells/zsh: ZSH_MEM, ZSH_SECURE_FREE, DEBUG o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o bin/143962 fstat(1) doesn't work on UNIX sockets o ports/143949 openoffice editors/openoffice-3: system unzip pickiness unhelpful f ports/143938 stephen [NEW PORTS] textproc/linux-f10-ibus-qt et al.: Linux v o kern/143868 wireless [ath] [patch] [request] allow Atheros watchdog timeout 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 misc/143831 [bsd.own.mk] [patch] Fix missing atm -> bsnmp dependen 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 p ports/143566 crees sysutils/diskcheckd runs constantly when using gmirror 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) f kern/143474 ipfw [ipfw] ipfw table contains the same address 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 kern/143370 [new driver] [patch] New splash_txt module - support f 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 s bin/143351 [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 conf/143137 ed MFC rc.d/jail (pre|post)(start|stop) jail hooks in to 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 conf/143084 rc [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 o 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 kern/142999 [puc] [patch] add support for the I-O DATA RSA-PCI2/R 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 f i386/142934 i386 [boot] Cannot boot FreeBSD 6.4, 7.x on Hint Corp VX Pr 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 top(1) man page does not include information about VCS 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 kern/142766 bschmidt [ipw] [regression] ipw(4) with Intel PRO/wireless 2100 o ports/142743 stas [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 o sparc/142102 sparc64 [nfs] [panic] FreeBSD 8.0 kernel panics on sparc64 whe f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o 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/141934 scsi [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 ports/141853 x11 x11/xorg: X doesn't start with 'intel' (Asus P5QPL-AM 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 ports/141762 danfe net-p2p/linuxdcpp segmentation fault 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 f 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 o ports/141200 mav net/mpd5 asserts on reconnection over tcp 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 amd64/141060 amd64 [install] Can't install 8.0-RELEASE on the server wher o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se o kern/141023 net [carp] CARP arp replays with wrong src mac 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 ports/140935 jpaetzel net/isc-dhcp31-server: FreeBSD patch makes dhclient no 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 f kern/140892 top(1): Incorrect cpu usage of per process under FreeB 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 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/140796 wireless [ath] [panic] Cannot attach (unable to attach hardware 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 amd64/140715 amd64 [boot] Dell M600 Blade fails to boot 7.2+ 64 bit 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 f kern/140461 [vm] Fail to read from swap. The swap_pager.c contains o docs/140457 doc [patch] Grammar fix for isspace(3) o kern/140453 multimedia [sound] No sound inside Virtualbox on 50% volume 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 kern/140416 [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 [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o ports/140273 swills 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 f ports/140157 glarkin New port: www/trac-bitten Continuous integration for T 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/140051 yongari [bce] [arp] ARP not sent through Bridge Firewall with 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 o amd64/139998 amd64 [panic][net] 7.2 amd64 panic in rtrequest1_fib s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o bin/139989 atacontrol(8) freezes the system o gnu/139982 ld(1): BFD internal error o amd64/139924 amd64 [boot] cd or dvd not load o ports/139872 sergei [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 p kern/139723 [rtld] Quagga/zebra abort trap 6, FreeBSD 8.0-RC1 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 o amd64/139614 avg [minidump] minidumps fail when many interrupts fire p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o kern/139604 [patch] [ichwd] watchdog sometimes does not enable o bin/139601 [patch] make(1): variable substitution for $@ in depen a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass 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 p docs/139413 des pam.conf documentation bug o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o ports/139405 jpaetzel net/isc-dhcp30-server: DHCP server with two interfaces 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 ports/139169 bf math/atlas post-build target fails with WKDIRPREFIX de 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 ports/139148 pb multimedia/dvdauthor: progress estimation bug in dvdun 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 o kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked s usb/138570 usb [usb67] [panic] USB mass device panics current 7.2-STA 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 o kern/138526 [null] /dev/null does not support nonblocking operatio o kern/138525 [ppp] [panic] Kernel corruption of pppoe lists 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) p kern/138390 brueffer [gif] [patch] NULL pointer dereference in gif_input() p kern/138388 brueffer [ppbus] [patch] NULL pointer dereference in pcfclock_o p kern/138387 brueffer [ppbus] [patch] NULL pointer dereference in lptopen() p kern/138384 brueffer [ips] [patch] NULL pointer dereference in ipsd_dump() 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 o 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] New opt-in knob to compile ports with SS 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 f i386/137925 i386 [boot] BTX loader hangs when raid volume present [regr o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o 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/137748 x11 x11/xorg: "unprocessed" mouse click results in effecti 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 kern/137436 [puc] [patch] Fix puc driver to support newer Timedia 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 ports/137378 Advisory locks fail with ports/security/cfs on FreeBSD 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 -" o 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/137165 [panic] panic: page fault 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 o bin/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 kern/137014 [panic] vm_page_free_toq: freeing mapped page 0xc34f99 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 s conf/136875 rc [request] _flags appending 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 p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H 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 net [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 o kern/136426 net [panic] spawning several dhclients in parallel panics p bin/136419 portmgr [regression] pkg_add(1) segfault on adding package whe o kern/136363 [panic] panic: vm_fault: fault on nofault entry, addr: o kern/136356 [ata] SATA / ICH7 problems o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o threa/136345 threads Recursive read rwlocks in thread A cause deadlock with o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136327 [boot] Asus M3N78-EM motherboard cannot boot with gene 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 kern/136120 [panic] free: address has not been allocated. 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 o docs/135999 jfv Netgear GS105v3 should be added to list of switches th o 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 o bin/135562 randi sysinstall(8): Filesystem operations should only be pe o bin/135559 randi route table shouldn't automatically be deleted with pr 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 usb/135348 usb [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 amd64/135265 amd64 [mpt] Boot from install cd hangs on HP DL160 G5 with L 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 o usb/135182 usb UMASS quirk - Olympus FE20 camera 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 amd64/135040 amd64 [ata] FreeBSD/amd64 does not (always) detect disk on S p bin/135016 randi [request] sysinstall(8) needs support for USB devices 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/134931 hrs [route] Route messages sent to all socket listeners re 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 p i386/134582 phk merge geode.c from head to releng_7_2 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/134401 yongari [msk] [panic] Kernel Fatal trap 12: page fault while i 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 amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" 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 o 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 f 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 ports/133747 amdmi3 fkiss and gondola not working on amd64 - seg fault 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 amd64/133701 amd64 Recompiling the kernel with k8temp or smbios break GEO 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 f i386/133388 i386 [est] est causes wrong dev.cpu.0.freq_levels values 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 o kern/133218 net [carp] [hang] use of carp(4) causes system to freeze f kern/133213 net arp and sshd errors on 7.1-PRERELEASE o kern/133174 fs [msdosfs] [patch] msdosfs must support multibyte inter 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 f ports/132621 x11 x11/xorg tries to install event when deselected 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 amd64/132574 amd64 [boot] [hang] Freeze on bootstrap loader (CD) using AT 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 rc [rc.d] [patch] add support setfib(1) in rc.d/routing o ports/132403 x11 x11/xorg with Radeon X600 (R370): cannot re-initialize 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 stas [PATCH] lang/ruby18: Add option to build with Profile- o ports/132293 stas [PATCH] lang/ruby19: Add option to build with Profile- o kern/132285 net [carp] alias gives incorrect hash in dmesg o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/132271 [puc] [patch] puc support for a generic card 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/132172 [patch] [panic] Page fault panic in scioctl and consol 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 net [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 f ports/132010 girgen databases/postgresql83-server: PostgreSQL Cluster Init 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 kern/131933 [uart] [patch] add support for Sony Ericsson GC89 EDGE 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 f kern/131602 gavin [libc] sendfile(2) sends corrupted data 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 ports/131554 stas net-mgmt/flow-tools: flow-capture consuming all availa 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 o amd64/131456 amd64 [acpi] [ata] ACPI & ATA problems o 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 o kern/131290 [hang]: How to completely freeze FreeBSD 7.1 under a n p bin/131250 brian [patch] ppp(8) proxyarp does not work s amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o bin/131143 [patch] amd(8) causes annoying "embedded slash in map p usb/131123 usb [patch] [usb67] re-add UQ_ASSUME_CM_OVER_DATA USB quir 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 s 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 [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 o kern/130698 [boot] FreeBSD 8-CURRENT does not start any more since o 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 o amd64/130368 amd64 [hang] Switching from xorg to console locks up compute 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 f ports/130331 danfe games/battletanks is broken on FreeBSD 7.x 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 f kern/130133 fs [panic] [zfs] 'kmem_map too small' caused by make clea 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# o 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 amd64/129889 amd64 [boot] [hang] The booting process stops at the line mo 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 o 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 amd64/129426 amd64 [panic] FreeBSD 7.0 crash after subdiskXX: detached 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 amd64/129315 amd64 [em] amd64 motherboard: Intel DG965WH motherboard comp 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 kern/129098 [panic] vinvalbuf: dirty bufs on 6-STABLE 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 o ports/128783 stas net-mgmt/flow-tools: flow-send Does not work on freebs o amd64/128765 amd64 [install] Install CD loads to Install choices but stop 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 kern/128714 gmtime(3) infine loop o kern/128689 [panic] www/apache22: Fatal trap 12: page fault while 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 mnag 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 bin/128427 [patch] mdfs(8): mount_mfs warns "chmod: Read-only fil 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 p i386/128014 phk [geode] [patch] AMD Geode CS5536 watchdog(9) not disab 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 o kern/127971 [panic] 7.0 RELEASE PANIC 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 doc [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 p kern/127834 rstone [ixgbe] [patch] wrong error counting 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 s ports/127778 brooks lang/llvm-gcc4: llvm can't create shared lib 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 mi 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 kern/127486 [smp] [panic] early SMP panic ("AP #1 (PHY #1) failed! 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 p kern/127411 [ata] [panic] ata panics on bad block o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a f kern/127375 fs [zfs] If vm.kmem_size_max>"1073741823" then write spee 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 threa/127225 threads bug in lib/libthr/thread/thr_init.c f kern/127209 ipfw [ipfw] IPFW table become corrupted after many changes 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 o kern/127050 net [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 o kern/126945 net [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 kern/126861 [panic] 6.2 (SMP) crashes when polling disabled o ports/126853 stas ports-mgmt/portaudit: speed up audit of installed pack o usb/126848 usb [usb]: USB Keyboard hangs during Installation p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s o kern/126821 [panic] Fatal trap 12 (kdeinit) o bin/126819 randi sysinstall(8) During install if initial name look-up f o kern/126788 [boot] Can not boot FreeBSDv7.0.iso from USB formated 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 o kern/126714 net [carp] CARP interface renaming makes system no longer f kern/126703 fs [panic] [zfs] _mtx_lock_sleep: recursed on non-recursi 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 bin/126619 randi sysinstall(8) deletion of routes when reinitializing m o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o bin/126562 rc rcorder(8) fails to run unrelated startup scripts when 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 thierry 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 net [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/125722 [boot] [install] error "BTX halted" at installation Fr 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 o usb/125450 usb [panic] Removing USB flash card while being accessed c o bin/125449 [patch] awk(1): /usr/bin/awk fails mawk's FPE test f kern/125442 net [carp] [lagg] CARP combined with LAGG causes system pa 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/125251 [panic] kernel panic o kern/125239 net [gre] kernel crash when using gre o bin/125185 csh(1) exit on signal 11 o bin/125184 des sshd(8) does not always log IP address for login failu o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani 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 amd64/125002 amd64 [install] amd64, SATA hard disks not detected 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 kern/124667 scsi [amd] [panic] FreeBSD-7 kernel page faults at amd-scsi 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/124452 [install] 7.0-RELEASE amd64 bootonly media fails to us o amd64/124432 amd64 [panic] 7.0-STABLE panic: invalbuf: dirty bufs o misc/124431 bde [build] [patch] minor revision of BDECFLAGS o kern/124412 acpi [acpi] power off error on Toshiba M40 laptop 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 kern/124128 [puc] puc driver doesn't support VScom PCIex-800H 8-po 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 i386/123462 i386 clock is too fast o misc/123452 brd trustedbsd-audit email list not archiving o 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 p bin/123329 phk [patch] usage strings for fifolog_create(1) and fifolo 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 f kern/123045 net [ng_mppc] ng_mppc_decompress - disabling node 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 i386 [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 amd64/122549 amd64 7.0-RELEASE-amd64-bootonly.iso doesn't work w/ serial 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 f ports/122333 net/arping - patch to lookup for interface and src ip, 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/122235 [psm] freebsd-7.0 moused(8) problems with ALPS GlidePo 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 f i386/121903 i386 [ips] [boot] can't boot on IBM x235 ServeRaid 6M [regr 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/121770 [panic] ZFS on i386, large file or heavy I/O leads to 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 usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic 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 ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau 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 bin/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 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 o 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 f kern/121234 [vm] vm_fault: fault on nofault f usb/121232 usb [usb67] [panic] USB CardBus card removal causes reboot 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 p bin/120870 jh [patch] truss(1) shows 'pipe' system call as having 6 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 o 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 f kern/120210 fs [zfs] [panic] reboot after panic: solaris assert: arc_ o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, 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 o kern/120130 net [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. f 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 o kern/119606 [sio] [patch] PCMCIA card not attached to driver o 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 [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 kern/119507 [dri] mach64.o kernel module version is 1.0.0, but ver 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 kern/119356 acpi [acpi]: i386 ACPI wakeup not work due resource exhaust 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 o 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 f kern/118990 yongari [nve] nve + PAE bus_addr_t/void * inconsistencies o kern/118962 x11 [agp] Intel GMA 3000 Video Controller Not Recognized U 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 f kern/118819 [vmware] FreeBSD 6.2 in VMware is unstable and there i 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 s 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 kern/118459 [hang] Freeze under high-load with SMP until keypresse 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 o kern/118399 secteam [tap] local/remote kernel DoS through TAP device 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 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 o kern/117448 net [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 kern/117314 fs [ntfs] Long-filename only NTFS fs'es cause kernel pani o usb/117313 usb [umass] [panic] panic on usb camera insertion f i386/117297 i386 [hang] System hangs up every day o amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A a 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 bin/117256 kgdb(1) cannot read PTD 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 o 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/116939 acpi [acpi] PCI-to-PCI misconfigured for bus three and can o kern/116935 [ata] Intermittent error with Promise PDC40718 o conf/116931 fs lack of fsck_cd9660 prevents mounting iso images with f i386/116844 i386 [boot] [hang] cannot boot from cd when using Dell Vost 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 bin/116782 [geli] geli not updated on migrate from 6.1 to 6.2 rel o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o bin/116722 ntpd(8): ntpd core dumps if hostnames are not specifed 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 o amd64/116620 amd64 [hang] ifconfig spins when creating carp(4) device on 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 f www/116479 www cvsweb+enscript formatting bugfix 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 o kern/116270 [ata] READ_DMA48 UDMA ICRC error 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 kern/115997 scottl [ciss] [panic] [patch?] kernel panics on heavy disk I/ 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 i386/115947 i386 [hang] Dell poweredge 860 hangs when stressed and ACPI o bin/115946 des [libpam] [patch] not thread-safe o ports/115940 python Missed one file in lang/python25 if NO_NIS defined 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 f i386/115854 i386 [boot] [install] Install FreeBSD with USB CDROM causes s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp s docs/115716 jhb remove cue from supported hardware list p kern/115695 [crypto] When "device padlock" defined first ssh to ma f kern/115666 multimedia [sound] Microphone does not work 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/114995 [drm] acpi_video prevents savage drm from loading succ 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 o kern/114667 [umass] UMASS device error log problem p kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o java/114644 java tomcat goes out of PermSpace, jvm crashes 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 o 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 f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references p kern/114237 csjp [lor] kernel lock o kern/114213 [ata] optical drive not detected in the 6.x series of f i386/114208 i386 [boot] Problem booting the FreeBSD CD ISO image f i386/114192 i386 Fail to boot with "error issuing ATA_IDENTIFY command" o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE o kern/114165 acpi [acpi] Dell C810 - ACPI problem o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o kern/114095 pf [carp] carp+pf delay with high state limit a bin/114082 [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 f 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 i386/113853 FreeBSD 6.2-RELEASE Crashes and Reboots on i386 o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o kern/113851 [boot] Unable to boot install cd from USB-CDROM 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 p kern/112707 [panic] 6.2-STABLE panic: spoiling cp->ace = 3 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 f java/112595 java Java appletviewer frequently hangs (kse_release loop) f i386/112580 i386 [boot] BTX Halted on HP DV6255 Notebook 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 f i386/112487 i386 [sio] kernel panic on swi0:sio 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/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/111196 [ata] [hang] SATA drives cause errors and cause system 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. f 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 p 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 kern/110392 scottl [hptmv] [patch] hptmv very old and missing important f 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 f kern/110140 bschmidt [ipw] ipw fails under load 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 kern/109968 [boot] [panic] Panic while booting with PCscsi II AM53 o kern/109936 [smp] SMP kernel performance problem on FSC TX600 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/109813 [ciss] ciss(4) driver API header is not installed o kern/109762 [hang] deadlock in g_down -> ahd_action -> contigmallo o ports/109745 portmgr NO_PACKAGE handling by ports build system 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 f i386/109610 i386 [panic] Fatal trap 12: page fault while in kernel mode a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109569 mail(1) command not parsing sendmail parameters f i386/109568 i386 [panic] Reboot server with "Fatal trap 12" 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] f sparc/108732 sparc64 ping(8) reports 14 digit time on sparc64 o kern/108695 acpi [acpi]: Fatal trap 9: general protection fault when in 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 kern/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed 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/108379 [ata] Secondary SATA drive not detected by FreeBSD 6.2 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) f i386/108185 i386 [panic] freebsd 6.2 fatal kernel trap 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 f i386/107382 i386 [install] "Fatal trap 12" when installing FreeBSD 6.1 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 o 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/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o kern/105579 [libalias] dcc resume over natd in 6.x o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o kern/105539 newly added disk devices don't have slice-devices crea 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 o usb/105361 usb [usb67] [panic] Kernel panic during unmounting mass st 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 f i386/105175 i386 [ipmi] ipmi acpi trouble on supermicro server 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 f i386/105063 i386 [sio] US Robotics (3Com) 3CP5609 PCI 16550 Modem works 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/104850 ppp(8): ppp problem on TCP link 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 f i386/104719 i386 [ata] Seagate ST3802110A errors/delays when using PIO4 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/104292 gavin [usb67] [umass] [hang] system lockup on forced umount 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 kern/103733 x11 [agp] i915 driver on hp dc7100: device not recognized 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 f kern/103532 [irq] Interrupt storm in 6.2-PRERELEASE [regression] 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 p kern/103075 [ata] SATA disk attach/unplug from a MV88SX5041 freeze 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) f i386/102562 i386 [em] no traffic pass through a em card after approx. a 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 f i386/102410 i386 [install] FreeBSD 6.1-RELEASE installation boot freeze o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o 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 [usb67] [ukbd] usb keyboard and multimedia keys don't 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 kern/101926 [ar] 6.1-STABLE crashes under heavy disk I/O and acces 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/101761 usb [usb67] [patch] [request] usb.h: increase maximal size o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f i386/101616 i386 [hang] FreeBSD freeze on bootup, Compaq Proliant (lega s ports/101450 stas multimedia/transcode: tcprobe broken for devfs 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 f i386/101062 i386 [hang] Freeze on detect Intel 900 VGA on boot with ACP 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 f i386/100831 i386 [sio] sio ignores BIOS information about serial ports 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 f ports/100431 dougb port print/hpijs default config interferes with print/ o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o f i386/100420 i386 [boot] boot1/boot2 lba error 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. f i386/100204 i386 FreeBSD reports raid as broken - but it is not 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) f kern/99989 panic when detaching disks 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 kern/99664 mountd and/or nfsd have to sometimes have to be restar 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 f i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o kern/99538 [keyboard] [atkbdc] while using USB keyboard default p f kern/99529 [amr] DELL PowerEdge 2600 with streamer PowerVault 100 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. f kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr 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 o www/98798 murray Our statistics page is out of date o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH f i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) 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 f i386/98215 i386 [geode] [regression] FreeBSD can no longer boot Geode s kern/98162 [request] AcerHK driver port needed for enabling WiFi f i386/98154 i386 6-STABLE crashes when being online via modem (Fujitsu 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 f i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 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 f i386/96357 i386 FreeBSD cannot recognize all the logical partitions 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 stand/96236 standards [patch] [posix] sed(1) incorrectly describes a functio 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 (ATA driver) fails to write in vcd mode 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 bin/95692 gdb(1): GDB in base of both FreeBSD 6 and 5 is ancient 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 f usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen 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 o stand/94729 standards [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 o kern/94227 'no dump device defined' on random occasions 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 f 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 a kern/93685 [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 kern/93128 scottl [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI 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 stas 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 f i386/92193 i386 [boot] Can't boot from 6.0 Installation CD: BTX halted o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o kern/92164 scottl [ips] [lor] SCSI target mode LOR 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/91910 scottl [aac] [regression] aac driver hangs on Dell PE800 with 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 f kern/91847 ipfw [ipfw] ipfw with vlanX as the device 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 s www/91539 www 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 amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 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 o 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 o kern/90837 [sound] PCM - ICH6 - device is busy, but old process d 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 o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement 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 s i386/88755 i386 [install] FreeBSD R6.0 on ThinkPad R40 installation re o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg f misc/88680 [build] !compiling freebsd components 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 s i386/88139 i386 [i386] [request] 53C875 Chipset HP 5064-6016 doesn't w 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 arundel [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 kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 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) o kern/85886 [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 kern/85464 Cannot unmount file-backed disk imported from NFS or S 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 kern/85257 [boot] BTX boot loader fails on USB CDROM (HP DL145 Op 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 phk [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 s i386/77355 i386 [patch] Detect i*86 subarches for uname 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) s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver 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 kern/73313 simokawa [firewire] Maxtor Onetouch drivers hang or corrupt dat o usb/73307 usb [panic] Kernel panics on USB disconnect 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 s 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 bin/72501 cperciva script(1) loops after EOF is read 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 kern/70649 [rtc] system clock slows down when heavily loaded 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 f i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 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 i386/69750 acpi Boot without ACPI failed on ASUS L5 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 f misc/67502 cvsadm cvs-all commit message did not include all files touch 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- o kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does not work for 4. 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 phk [gbde] gbde destroy error o bin/66103 ppp(8) macro HISADDR is not sticky in filters o kern/66029 [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 s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow 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 o 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 p bin/61152 cperciva sysinstall(8): installer refuses to mount USB-floppy o 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 bin/60349 scottl sysinstall(8): 5.2-RC1 cannot do NFS installation 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 o kern/60089 scottl [udf] UDF filesystem appends garbage to files o gnu/59971 peter assertion "strncmp (repository, current_parsed_root->d s kern/59912 alc 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 p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc o bin/58483 [patch] mount(8): allow type special or node relative o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 o bin/58293 vi(1) replace with CR (ASCII 13) doesn't work o kern/58154 mckusick Snapshots prevent disk sync on shutdown o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement a stand/57911 fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) returns FNM_ o kern/57832 scottl [ips] softdep_deallocate_dependencies: dangling deps 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 f misc/57464 [boot] loader(8) seems to confuse files [4.7] 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 blackend [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 o 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 o kern/54884 mckusick FreeBSD -stable and -current free space handling for U 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 s 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/51120 MSGBUF_SIZE doesn't work in makefiles 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) f 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/45226 rc [patch] Fix for rc.network, ppp-user annoyance 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 gnu/44564 peter [patch] Aborted cvs session causes an endless loop in 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/43716 [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 a i386/43366 cy Cannot format media in USB floppy devices 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 f gnu/42726 cvsadm cvs -R pserver & val-tags: story continues 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 phk 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 > f 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 kern/39527 dwmalone getcwd() and unreadable parent directory 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 kern/33464 fs [ufs] soft update inconsistencies after system crash 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/32619 des libfetch does not use RFC 1738's definiton of ftp: URL 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 o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari 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 a docs/30008 doc [patch] French softupdates document should be translat 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 s kern/28840 gibbs [cam] Possible interrupt masking trouble in sys/cam/ca o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28620 ru [patch] install(1) has no way to pass options to strip o bin/28424 remko mtree(8) fails to report directory hierarchy mismatch o bin/28364 [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 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 s bin/26803 des fetch(1) Fix fetch to allow FTP puts in '-o' & allow ' o kern/26787 [patch] sysctl change request o bin/26695 change request: killall(1) -l output 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 f kern/26142 vwe [nfs] Unlink fails on NFS mounted filesystem 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 [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 s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo 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 o kern/21463 emulation [linux] Linux compatability mode should not allow setu o bin/21315 Shells often behave oddly when executing shell scripts 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 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 o gnu/18857 peter Enable GSSAPI in CVS if available 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 o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro o 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 o kern/14646 kern.boottime affected by APM suspend/resume 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 gnu/10670 peter cvs doesn't allow digits in local keywords 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 bin/9868 [patch] date(1) add "date -a" 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 s kern/4184 rwatson [netatalk] [patch] minor nits in sys/netatalk 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) 6126 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 13:40:12 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30BA31065672 for ; Mon, 29 Aug 2011 13:40:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0EC2B8FC14 for ; Mon, 29 Aug 2011 13:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TDeB6A033957 for ; Mon, 29 Aug 2011 13:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TDeBNL033956; Mon, 29 Aug 2011 13:40:11 GMT (envelope-from gnats) Resent-Date: Mon, 29 Aug 2011 13:40:11 GMT Resent-Message-Id: <201108291340.p7TDeBNL033956@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, HIROSHI OOTA Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5974106568A for ; Mon, 29 Aug 2011 13:38:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BCAC38FC18 for ; Mon, 29 Aug 2011 13:38:02 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TDc26F047186 for ; Mon, 29 Aug 2011 13:38:02 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7TDc2kW047185; Mon, 29 Aug 2011 13:38:02 GMT (envelope-from nobody) Message-Id: <201108291338.p7TDc2kW047185@red.freebsd.org> Date: Mon, 29 Aug 2011 13:38:02 GMT From: HIROSHI OOTA To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/160279: sshd truncates the data when `HPNDisabled no' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 13:40:12 -0000 >Number: 160279 >Category: bin >Synopsis: sshd truncates the data when `HPNDisabled no' >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 Aug 29 13:40:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: HIROSHI OOTA >Release: 9--BETA2 (Aug 29 2011) >Organization: >Environment: FreeBSD XXX 9.0-BETA2 FreeBSD 9.0-BETA2 #156 r225239M: Mon Aug 29 10:57:13 JST 2011 root@ amd64 >Description: When HPN is enable, The data transmitted with plink(ssh client for windows) is truncated. When `HPNDisabled yes' is set in sshd_config, the bug doesn't occur. The size of the data is different at every execution. client: OS: Windows XpSP3 ssh-client: plink(SSH-2.0-PuTTY_Release_0.60) server: FreeBSD 9.0-BETA2 >How-To-Repeat: When I send data.dat(5,747,152 bytes), sshd truncates it. Y:\test>plink -v my-server.example.com dd of=/dev/null < data.dat Looking up host "my-server.example.com" Connecting to xxx.xxx.xxx.xxx port 22 Server version: SSH-2.0-OpenSSH_5.8p2_hpn13v11 FreeBSD-20110503 We claim version: SSH-2.0-PuTTY_Release_0.60 Using SSH protocol version 2 Doing Diffie-Hellman group exchange Doing Diffie-Hellman key exchange with hash SHA-256 Host key fingerprint is: ssh-rsa 2048 xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx Initialised AES-256 SDCTR client->server encryption Initialised HMAC-SHA1 client->server MAC algorithm Initialised AES-256 SDCTR server->client encryption Initialised HMAC-SHA1 server->client MAC algorithm Pageant is running. Requesting keys. Pageant has 1 SSH-2 keys Using username "xxx". Trying Pageant key #0 Authenticating with public key "xxxx" from agent Sending Pageant's response Access granted Opened channel for session Started a shell/command Sent EOF message 11155+37 records in 11173+1 records out 5720935 bytes transferred in 25.294115 secs (226177 bytes/sec) <== incorrect size Server sent command exit status 0 Disconnected: All channels closed Y:\test>dir Volume in drive Y has no label. Volume Serial Number is 000A-E626 Directory of Y:\test 2011/08/29 21:52 . 2011/08/29 21:52 .. 2008/08/26 20:37 5,747,152 data.dat 1 File(s) 5,747,152 bytes 2 Dir(s) 440,913,920 bytes free >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 14:00:23 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F724106566C for ; Mon, 29 Aug 2011 14:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 027D38FC0A for ; Mon, 29 Aug 2011 14:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TE0Mg4050873 for ; Mon, 29 Aug 2011 14:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TE0MNl050870; Mon, 29 Aug 2011 14:00:22 GMT (envelope-from gnats) Resent-Date: Mon, 29 Aug 2011 14:00:22 GMT Resent-Message-Id: <201108291400.p7TE0MNl050870@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Yamshanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6C7A1065673 for ; Mon, 29 Aug 2011 13:53:21 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 7DCC88FC15 for ; Mon, 29 Aug 2011 13:53:21 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TDrKWP068539 for ; Mon, 29 Aug 2011 13:53:20 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7TDrKCb068536; Mon, 29 Aug 2011 13:53:20 GMT (envelope-from nobody) Message-Id: <201108291353.p7TDrKCb068536@red.freebsd.org> Date: Mon, 29 Aug 2011 13:53:20 GMT From: Alexander Yamshanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/160280: tcpdump. Segmentation Fault (core dumped) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 14:00:23 -0000 >Number: 160280 >Category: bin >Synopsis: tcpdump. Segmentation Fault (core dumped) >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 Aug 29 14:00:22 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexander Yamshanov >Release: FreeBSD 8.2-RELEASE >Organization: >Environment: FreeBSD tangorodrim.cis.ru 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: tcpdump from a non-superuser user results in an error (segmentation fault). >How-To-Repeat: > tcpdump -i 555 Segmentation fault (core dumped) > >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 16:00:25 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 200FB1065678 for ; Mon, 29 Aug 2011 16:00:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E24228FC1D for ; Mon, 29 Aug 2011 16:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TG0ONq060699 for ; Mon, 29 Aug 2011 16:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TG0OeF060698; Mon, 29 Aug 2011 16:00:24 GMT (envelope-from gnats) Resent-Date: Mon, 29 Aug 2011 16:00:24 GMT Resent-Message-Id: <201108291600.p7TG0OeF060698@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Stef Walter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC0E31065673 for ; Mon, 29 Aug 2011 15:58:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id DBE948FC13 for ; Mon, 29 Aug 2011 15:58:23 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TFwNdQ095434 for ; Mon, 29 Aug 2011 15:58:23 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7TFwNpu095433; Mon, 29 Aug 2011 15:58:23 GMT (envelope-from nobody) Message-Id: <201108291558.p7TFwNpu095433@red.freebsd.org> Date: Mon, 29 Aug 2011 15:58:23 GMT From: Stef Walter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/160283: 'zfs list' does abort in make_dataset_handle X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 16:00:25 -0000 >Number: 160283 >Category: kern >Synopsis: 'zfs list' does abort in make_dataset_handle >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 Aug 29 16:00:24 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Stef Walter >Release: 8.2-RELEASE-p2 >Organization: >Environment: FreeBSD m1.bay.npubs.net 8.2-RELEASE-p2 FreeBSD 8.2-RELEASE-p2 #0: Wed Jul 27 12:49:35 UTC 2011 sam@m1.bay.npubs.net:/usr/obj/usr/src/sys/RACK1 amd64 >Description: After a failed zfs receive, zfs list now aborts in make_dataset_handle() in libzfs.so.2. # zfs list Abort trap: 6 (core dumped) The backtrace is: #0 0x0000000800fe63cc in kill () from /lib/libc.so.7 #1 0x0000000800fe51cb in abort () from /lib/libc.so.7 #2 0x000000080067400f in make_dataset_handle () from /lib/libzfs.so.2 #3 0x0000000800674346 in zfs_iter_filesystems () from /lib/libzfs.so.2 #4 0x000000000040ad51 in ?? () #5 0x0000000800674354 in zfs_iter_filesystems () from /lib/libzfs.so.2 #6 0x000000000040ad51 in ?? () #7 0x000000080066642c in zfs_iter_root () from /lib/libzfs.so.2 Running on: FreeBSD m1.bay.npubs.net 8.2-RELEASE-p2 FreeBSD 8.2-RELEASE-p2 #0: Wed Jul 27 12:49:35 UTC 2011 sam@m1.bay.npubs.net:/usr/obj/usr/src/sys/RACK1 amd64 'zfs scrub' did not fix the error. 'zfs create' and other zfs commands still work, as do access to the various zfs file systems on this system. After poking around a bit, I find that in make_dataset_handle() zhp->zfs_dmustats.dds_type is equal to 0 (and this is the cause of the abort). Additionally zhp->zfs_dmustats.dds_inconsistent is not TRUE. >How-To-Repeat: Hard to repeat. Depends on zfs recv aborting at specific times in specific circumstances, possibly involving prior reboots. >Fix: Will attach a patch which fixes the issue. Patch attached with submission follows: --- cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c.orig 2011-01-10 22:29:45.000000000 +0000 +++ cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c 2011-01-12 01:49:13.000000000 +0000 @@ -404,4 +404,24 @@ } + /* + * We've managed to open the dataset and gather statistics. Determine + * the high-level type. + */ + if (zhp->zfs_dmustats.dds_type == DMU_OST_ZVOL) + zhp->zfs_head_type = ZFS_TYPE_VOLUME; + else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZFS) + zhp->zfs_head_type = ZFS_TYPE_FILESYSTEM; + else + zhp->zfs_dmustats.dds_inconsistent = 1; + + if (zhp->zfs_dmustats.dds_is_snapshot) + zhp->zfs_type = ZFS_TYPE_SNAPSHOT; + else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZVOL) + zhp->zfs_type = ZFS_TYPE_VOLUME; + else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZFS) + zhp->zfs_type = ZFS_TYPE_FILESYSTEM; + else + zhp->zfs_dmustats.dds_inconsistent = 1; + if (zhp->zfs_dmustats.dds_inconsistent) { zfs_cmd_t zc = { 0 }; @@ -446,24 +466,4 @@ } - /* - * We've managed to open the dataset and gather statistics. Determine - * the high-level type. - */ - if (zhp->zfs_dmustats.dds_type == DMU_OST_ZVOL) - zhp->zfs_head_type = ZFS_TYPE_VOLUME; - else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZFS) - zhp->zfs_head_type = ZFS_TYPE_FILESYSTEM; - else - abort(); - - if (zhp->zfs_dmustats.dds_is_snapshot) - zhp->zfs_type = ZFS_TYPE_SNAPSHOT; - else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZVOL) - zhp->zfs_type = ZFS_TYPE_VOLUME; - else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZFS) - zhp->zfs_type = ZFS_TYPE_FILESYSTEM; - else - abort(); /* we should never see any other types */ - zhp->zfs_hdl->libzfs_log_str = logstr; zhp->zpool_hdl = zpool_handle(zhp); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 16:53:31 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D5951065670; Mon, 29 Aug 2011 16:53:31 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 54E888FC0C; Mon, 29 Aug 2011 16:53:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TGrVAw016182; Mon, 29 Aug 2011 16:53:31 GMT (envelope-from adrian@freefall.freebsd.org) Received: (from adrian@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TGrVvs016178; Mon, 29 Aug 2011 16:53:31 GMT (envelope-from adrian) Date: Mon, 29 Aug 2011 16:53:31 GMT Message-Id: <201108291653.p7TGrVvs016178@freefall.freebsd.org> To: adrian@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-wireless@FreeBSD.org From: adrian@FreeBSD.org Cc: Subject: Re: misc/160176: Kernel panic on AR7161 platform with AR9220 (BGN) WIFI card while AH_DEBUG used. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 16:53:31 -0000 Synopsis: Kernel panic on AR7161 platform with AR9220 (BGN) WIFI card while AH_DEBUG used. Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Mon Aug 29 16:53:20 UTC 2011 Responsible-Changed-Why: Bump http://www.freebsd.org/cgi/query-pr.cgi?pr=160176 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 17:00:24 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDA9A106564A for ; Mon, 29 Aug 2011 17:00:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CD1B78FC12 for ; Mon, 29 Aug 2011 17:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TH0OOP016405 for ; Mon, 29 Aug 2011 17:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TH0Oxn016403; Mon, 29 Aug 2011 17:00:24 GMT (envelope-from gnats) Date: Mon, 29 Aug 2011 17:00:24 GMT Message-Id: <201108291700.p7TH0Oxn016403@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Sergey Kandaurov Cc: Subject: Re: bin/160280: tcpdump. Segmentation Fault (core dumped) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergey Kandaurov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 17:00:24 -0000 The following reply was made to PR bin/160280; it has been noted by GNATS. From: Sergey Kandaurov To: bug-followup@FreeBSD.org, alexander@yamshanov.ru Cc: Subject: Re: bin/160280: tcpdump. Segmentation Fault (core dumped) Date: Mon, 29 Aug 2011 20:56:15 +0400 --000e0cd29e6cf620a104aba7c58b Content-Type: text/plain; charset=ISO-8859-1 Hi, can please you try this patch? --000e0cd29e6cf620a104aba7c58b Content-Type: text/plain; charset=US-ASCII; name="tcpdump.fixcrash_nonpriv_devp.txt" Content-Disposition: attachment; filename="tcpdump.fixcrash_nonpriv_devp.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_grxovo270 LS0tIC4uLy4uL1JFTEVOR184XzEvc3JjL2NvbnRyaWIvdGNwZHVtcC90Y3BkdW1wLmMJMjAxMC0w Ni0xNCAwNjowOTowNi4wMDAwMDAwMDAgKzA0MDAKKysrIGNvbnRyaWIvdGNwZHVtcC90Y3BkdW1w LmMJMjAxMS0wOC0yOSAyMDo1MToxNC4wMDAwMDAwMDAgKzA0MDAKQEAgLTY0OCwxMSArNjQ4LDEy IEBAIG1haW4oaW50IGFyZ2MsIGNoYXIgKiphcmd2KQogCQkJCWlmIChwY2FwX2ZpbmRhbGxkZXZz KCZkZXZwb2ludGVyLCBlYnVmKSA8IDApCiAJCQkJCWVycm9yKCIlcyIsIGVidWYpOwogCQkJCWVs c2UgewotCQkJCQlmb3IgKGkgPSAwOyBpIDwgZGV2bnVtLTE7IGkrKyl7Ci0JCQkJCQlkZXZwb2lu dGVyID0gZGV2cG9pbnRlci0+bmV4dDsKLQkJCQkJCWlmIChkZXZwb2ludGVyID09IE5VTEwpCi0J CQkJCQkJZXJyb3IoIkludmFsaWQgYWRhcHRlciBpbmRleCIpOwotCQkJCQl9CisJCQkJCWZvciAo aSA9IDA7CisJCQkJCSAgICBpIDwgZGV2bnVtLTEgJiYgZGV2cG9pbnRlciAhPSBOVUxMOworCQkJ CQkgICAgaSsrLCBkZXZwb2ludGVyID0gZGV2cG9pbnRlci0+bmV4dCkKKwkJCQkJCTsKKwkJCQkJ aWYgKGRldnBvaW50ZXIgPT0gTlVMTCkKKwkJCQkJCWVycm9yKCJJbnZhbGlkIGFkYXB0ZXIgaW5k ZXgiKTsKIAkJCQl9CiAJCQkJZGV2aWNlID0gZGV2cG9pbnRlci0+bmFtZTsKIAkJCQlicmVhazsK --000e0cd29e6cf620a104aba7c58b-- From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 19:10:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 664E9106567F for ; Mon, 29 Aug 2011 19:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2B5B08FC14 for ; Mon, 29 Aug 2011 19:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TJAB09034607 for ; Mon, 29 Aug 2011 19:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TJAB2k034606; Mon, 29 Aug 2011 19:10:11 GMT (envelope-from gnats) Resent-Date: Mon, 29 Aug 2011 19:10:11 GMT Resent-Message-Id: <201108291910.p7TJAB2k034606@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Arne Meyer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9691E106564A for ; Mon, 29 Aug 2011 19:09:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 870A18FC0A for ; Mon, 29 Aug 2011 19:09:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TJ9YD7036600 for ; Mon, 29 Aug 2011 19:09:34 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7TJ9YAA036599; Mon, 29 Aug 2011 19:09:34 GMT (envelope-from nobody) Message-Id: <201108291909.p7TJ9YAA036599@red.freebsd.org> Date: Mon, 29 Aug 2011 19:09:34 GMT From: Arne Meyer To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/160293: kernel panic during network setup at boot X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 19:10:11 -0000 >Number: 160293 >Category: kern >Synopsis: kernel panic during network setup at boot >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 29 19:10:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Arne Meyer >Release: 9.0-BETA1 >Organization: Hochschule Emden/Leer >Environment: FreeBSD partyvan 9.0-BETA1 FreeBSD 9.0-BETA1 #1 r224999: Fri Aug 19 11:20:48 CEST 2011 pk@partyvan:/usr/obj/usr /src/sys/PARTYVAN i386 >Description: FreeBSD will sometimes panic at boot when setting up the network with something like: Sleeping thread (tid 100088, pid 867) owns a non-sleepable lock >How-To-Repeat: I'm not sure. Maybe it's my particular setup. The panics can't be triggered reliably. Sometimes it works, sometimes it doesn't. Maybe it's due to my particular setup, but it looks like the bug is in the ieee80211 subsystem. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 19:20:10 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C07F106566B for ; Mon, 29 Aug 2011 19:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 29CC28FC17 for ; Mon, 29 Aug 2011 19:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TJKAl1044681 for ; Mon, 29 Aug 2011 19:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TJKAJI044680; Mon, 29 Aug 2011 19:20:10 GMT (envelope-from gnats) Resent-Date: Mon, 29 Aug 2011 19:20:10 GMT Resent-Message-Id: <201108291920.p7TJKAJI044680@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Abe Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 259361065670 for ; Mon, 29 Aug 2011 19:10:52 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id F02598FC1B for ; Mon, 29 Aug 2011 19:10:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TJApdl036722 for ; Mon, 29 Aug 2011 19:10:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7TJApQa036721; Mon, 29 Aug 2011 19:10:51 GMT (envelope-from nobody) Message-Id: <201108291910.p7TJApQa036721@red.freebsd.org> Date: Mon, 29 Aug 2011 19:10:51 GMT From: Abe To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/160294: missing cast in "/usr/include/assert.h" v 1.4 2002/03/23 17:24:53 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 19:20:10 -0000 >Number: 160294 >Category: misc >Synopsis: missing cast in "/usr/include/assert.h" v 1.4 2002/03/23 17:24:53 >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 Aug 29 19:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Abe >Release: Mac OS X Server 10.6.5 ;-) >Organization: TAMU >Environment: Darwin [hostname] 10.5.0 Darwin Kernel Version 10.5.0: Fri Nov 5 23:20:39 PDT 2010; root:xnu-1504.9.17~1/RELEASE_I386 i386 i386 >Description: The "/usr/include/assert.h" from FreeBSD causes C++ compilation to fail when an assertion is done and the compiler is non-GCC _and_ does not define "__GNUC__" _and_ "NDEBUG" is not defined. It`s a simple and quick fix. >How-To-Repeat: compile this: ––––––––––––– #include int main() { assert(1); } ––––––––––––– like this [assuming Clang is installed and is on the PATH]: ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– clang++ -U__GNUC__ test.cpp ––––––––––––––––––––––––––– … and one of the errors you get is this: –––––––––––––––––––––––––––––––––––––––– test.cpp:3:3: error: right operand to ? is void, but left operand is of type 'int' assert(1); ^~~~~~~~~ In file included from test.cpp:1: In file included from /usr/include/c++/4.2.1/cassert:48: /usr/include/assert.h:69:18: note: instantiated from: ((void) ((e) ? 0 : __assert (#e, __FILE__, __LINE__))) ^ ~ >Fix: *** /usr/include/assert.h 2009-10-02 01:24:01.000000000 -0500 --- /tmp/assert.h___new 2011-08-28 21:39:12.000000000 -0500 *************** *** 66,72 **** __END_DECLS #define assert(e) \ ! ((void) ((e) ? 0 : __assert (#e, __FILE__, __LINE__))) #define __assert(e, file, line) \ ((void)printf ("%s:%u: failed assertion `%s'\n", file, line, e), abort()) --- 66,72 ---- __END_DECLS #define assert(e) \ ! ((void) ((e) ? ((void)0) : __assert (#e, __FILE__, __LINE__))) #define __assert(e, file, line) \ ((void)printf ("%s:%u: failed assertion `%s'\n", file, line, e), abort()) q Patch attached with submission follows: *** /usr/include/assert.h 2009-10-02 01:24:01.000000000 -0500 --- /tmp/assert.h___new 2011-08-28 21:39:12.000000000 -0500 *************** *** 66,72 **** __END_DECLS #define assert(e) \ ! ((void) ((e) ? 0 : __assert (#e, __FILE__, __LINE__))) #define __assert(e, file, line) \ ((void)printf ("%s:%u: failed assertion `%s'\n", file, line, e), abort()) --- 66,72 ---- __END_DECLS #define assert(e) \ ! ((void) ((e) ? ((void)0) : __assert (#e, __FILE__, __LINE__))) #define __assert(e, file, line) \ ((void)printf ("%s:%u: failed assertion `%s'\n", file, line, e), abort()) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 19:30:16 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDBB0106564A for ; Mon, 29 Aug 2011 19:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CB7A28FC16 for ; Mon, 29 Aug 2011 19:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TJUF0g053039 for ; Mon, 29 Aug 2011 19:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TJUFtq053036; Mon, 29 Aug 2011 19:30:15 GMT (envelope-from gnats) Resent-Date: Mon, 29 Aug 2011 19:30:15 GMT Resent-Message-Id: <201108291930.p7TJUFtq053036@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dylan Simon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B9C9E106564A for ; Mon, 29 Aug 2011 19:28:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 90B818FC14 for ; Mon, 29 Aug 2011 19:28:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TJSpJT072573 for ; Mon, 29 Aug 2011 19:28:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7TJSp5i072572; Mon, 29 Aug 2011 19:28:51 GMT (envelope-from nobody) Message-Id: <201108291928.p7TJSp5i072572@red.freebsd.org> Date: Mon, 29 Aug 2011 19:28:51 GMT From: Dylan Simon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/160295: ypserv -P [bin/109494] breaks tcp X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 19:30:16 -0000 >Number: 160295 >Category: bin >Synopsis: ypserv -P [bin/109494] breaks tcp >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 Aug 29 19:30:15 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Dylan Simon >Release: 7.4 >Organization: NYU >Environment: FreeBSD lust.cns.nyu.edu 7.4-RELEASE-p2 FreeBSD 7.4-RELEASE-p2 #14: Sun Jul 24 18:28:27 EDT 2011 dylan@lust.cns.nyu.edu:/usr/obj/usr/src/sys/SIN amd64 >Description: The -P argument to ypserv breaks NIS over TCP. After starting ypserv -P 666 I see: tcp4 0 0 *.666 *.* CLOSED >From the code ( http://svnweb.freebsd.org/base/stable/7/usr.sbin/ypserv/yp_main.c?r1=172506&r2=177753 ) the problem is rather obvious: the sock variable is used for both the udp and tcp sockets, and so while transp = svcudp_create(sock); works fine (after losing the tcp socket), transp = svctcp_create(sock, 0, 0); doesn't work at all on the already open udp socket. Here are the relevant calls. Notice fd 4 is never touched again: socket(PF_INET,SOCK_STREAM,0) = 4 (0x4) bind(4,{ AF_INET 0.0.0.0:666 },16) = 0 (0x0) socket(PF_INET,SOCK_DGRAM,0) = 5 (0x5) bind(5,{ AF_INET 0.0.0.0:666 },16) = 0 (0x0) getsockopt(0x5,0x0,0x13,0x7fffffffe4ec,0x7fffffffe4e0,0x7fffffffe340) = 0 (0x0) setsockopt(0x5,0x0,0x13,0x7fffffffe4e8,0x4,0x7fffffffe458) = 0 (0x0) bind(5,{ AF_INET 0.0.0.0:0 },16) ERR#22 'Invalid argument' setsockopt(0x5,0x0,0x13,0x7fffffffe4ec,0x4,0x7fffffffe458) = 0 (0x0) listen(0x5,0x80,0x13,0x8007dd42c,0xffffff80ec8b4d40,0x7fffffffe458) ERR#45 'Operation not supported' getsockopt(0x5,0x0,0x13,0x7fffffffe4ec,0x7fffffffe4e0,0x800a00728) = 0 (0x0) setsockopt(0x5,0x0,0x13,0x7fffffffe4e8,0x4,0x7fffffffe458) = 0 (0x0) bind(5,{ AF_INET 0.0.0.0:0 },16) ERR#22 'Invalid argument' setsockopt(0x5,0x0,0x13,0x7fffffffe4ec,0x4,0x7fffffffe458) = 0 (0x0) listen(0x5,0x80,0x13,0x8007dd42c,0xffffff80ec8b4d40,0x7fffffffe458) ERR#45 'Operation not supported' >How-To-Repeat: Run ypserv -P Perform TCP NIS request from client >Fix: Use a different variable for each socket. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 20:51:36 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40A5D1065670; Mon, 29 Aug 2011 20:51:36 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1A0FD8FC0C; Mon, 29 Aug 2011 20:51:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TKpZX1035404; Mon, 29 Aug 2011 20:51:35 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TKpZE3035400; Mon, 29 Aug 2011 20:51:35 GMT (envelope-from delphij) Date: Mon, 29 Aug 2011 20:51:35 GMT Message-Id: <201108292051.p7TKpZE3035400@freefall.freebsd.org> To: delphij@FreeBSD.org, freebsd-bugs@FreeBSD.org, delphij@FreeBSD.org From: delphij@FreeBSD.org Cc: Subject: Re: kern/139604: [patch] [ichwd] watchdog sometimes does not enable X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 20:51:36 -0000 Synopsis: [patch] [ichwd] watchdog sometimes does not enable Responsible-Changed-From-To: freebsd-bugs->delphij Responsible-Changed-By: delphij Responsible-Changed-When: Mon Aug 29 20:51:25 UTC 2011 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=139604 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 21:00:28 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 326801065679 for ; Mon, 29 Aug 2011 21:00:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A28E58FC1B for ; Mon, 29 Aug 2011 21:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TL0LI0035585 for ; Mon, 29 Aug 2011 21:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TL0Lec035584; Mon, 29 Aug 2011 21:00:21 GMT (envelope-from gnats) Resent-Date: Mon, 29 Aug 2011 21:00:21 GMT Resent-Message-Id: <201108292100.p7TL0Lec035584@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Brett Glass Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96251106564A for ; Mon, 29 Aug 2011 20:54:22 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 86A5C8FC0C for ; Mon, 29 Aug 2011 20:54:22 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TKsMkm020176 for ; Mon, 29 Aug 2011 20:54:22 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7TKsMC7020155; Mon, 29 Aug 2011 20:54:22 GMT (envelope-from nobody) Message-Id: <201108292054.p7TKsMC7020155@red.freebsd.org> Date: Mon, 29 Aug 2011 20:54:22 GMT From: Brett Glass To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: conf/160298: sysinstall does not allocate enough space in / for kernel rebuild X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 21:00:28 -0000 >Number: 160298 >Category: conf >Synopsis: sysinstall does not allocate enough space in / for kernel rebuild >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 Aug 29 21:00:21 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Brett Glass >Release: 8.1-RELEASE >Organization: LARIAT >Environment: >Description: Recently installed FreeBSD on a new system. It allocated 384M (the default, apparently) for the / partition. I then rebuilt the kernel. During installation of a new kernel (using "make installkernel" from /usr/src) FreeBSD backs up the old one and then installs the new one. FreeBSD has apparently grown, because installation of the new kernel (including symbols and kernel modules) overflowed the partition. There's no way to adjust partition sizes easily in FreeBSD, so it's not possible to rebuild the kernel unless one foregoes generating symbols (which can make debugging difficult). >How-To-Repeat: Install FreeBSD 8.1. Make a custom kernel. Install it. >Fix: Change sysinstall to allocate enough room in / to allow rebuilding of the kernel with backup of the original (GENERIC) kernel. Before each release, verify that the default size of / does not need to be increased to allow this. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 29 23:00:20 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 663601065673 for ; Mon, 29 Aug 2011 23:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2D6ED8FC13 for ; Mon, 29 Aug 2011 23:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TN0K2B046686 for ; Mon, 29 Aug 2011 23:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TN0KYX046685; Mon, 29 Aug 2011 23:00:20 GMT (envelope-from gnats) Resent-Date: Mon, 29 Aug 2011 23:00:20 GMT Resent-Message-Id: <201108292300.p7TN0KYX046685@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Matthew N. Dodd" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0D68106566C for ; Mon, 29 Aug 2011 22:59:23 +0000 (UTC) (envelope-from mdodd@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B72F68FC18 for ; Mon, 29 Aug 2011 22:59:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7TMxNf2046542 for ; Mon, 29 Aug 2011 22:59:23 GMT (envelope-from mdodd@freefall.freebsd.org) Received: (from mdodd@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7TMxN0n046541; Mon, 29 Aug 2011 22:59:23 GMT (envelope-from mdodd) Message-Id: <201108292259.p7TMxN0n046541@freefall.freebsd.org> Date: Mon, 29 Aug 2011 22:59:23 GMT From: "Matthew N. Dodd" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/160300: bridge(4) should attempt to use a static MAC address. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Matthew N. Dodd" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2011 23:00:20 -0000 >Number: 160300 >Category: kern >Synopsis: bridge(4) should attempt to use a static MAC address. >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 Aug 29 23:00:19 UTC 2011 >Closed-Date: >Last-Modified: >Originator: >Release: >Organization: >Environment: System: FreeBSD neo-sasami.jurai.net 8.2-STABLE FreeBSD 8.2-STABLE #5 r224868M: Mon Aug 15 21:36:11 EDT 2011 root@neo-sasami.jurai.net:/vol/raid/svn/stable8/sys/i386/compile/DL380G3 i386 Description: bridge(4) uses a random number function to generate it's MAC address. This causes issues with IPv6. >Description: Submitter-Id: current-users Originator: Matthew N. Dodd Release: FreeBSD 8.2-STABLE i386 >How-To-Repeat: >Fix: Use the Hostid and interface unit number to generate a MAC address and fall-back to the random number generator on conflict. Index: if_bridge.c =================================================================== --- if_bridge.c (revision 224868) +++ if_bridge.c (working copy) @@ -85,6 +85,7 @@ #include #include #include +#include #include #include /* for net/if.h */ #include @@ -560,7 +561,7 @@ { struct bridge_softc *sc, *sc2; struct ifnet *bifp, *ifp; - int retry; + int fb, retry; sc = malloc(sizeof(*sc), M_DEVBUF, M_WAITOK|M_ZERO); ifp = sc->sc_ifp = if_alloc(IFT_ETHER); @@ -600,10 +601,24 @@ * possible that we might have address collisions, so make sure that * this hardware address isn't already in use on another bridge. */ + fb = 0; for (retry = 1; retry != 0;) { - arc4rand(sc->sc_defaddr, ETHER_ADDR_LEN, 1); - sc->sc_defaddr[0] &= ~1; /* clear multicast bit */ - sc->sc_defaddr[0] |= 2; /* set the LAA bit */ + if (fb) { + arc4rand(sc->sc_defaddr, ETHER_ADDR_LEN, 1); + sc->sc_defaddr[0] &= ~1;/* clear multicast bit */ + sc->sc_defaddr[0] |= 2; /* set the LAA bit */ + } else { + unsigned long hostid; + getcredhostid(curthread->td_ucred, &hostid); + sc->sc_defaddr[0] = 0x2; + sc->sc_defaddr[1] = (hostid >> 24) & 0xff; + sc->sc_defaddr[2] = (hostid >> 16) & 0xff; + sc->sc_defaddr[3] = (hostid >> 8 ) & 0xff; + sc->sc_defaddr[4] = hostid & 0xff; + sc->sc_defaddr[5] = ifp->if_dunit & 0xff; + } + + fb = 1; retry = 0; mtx_lock(&bridge_list_mtx); LIST_FOREACH(sc2, &bridge_list, sc_list) { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 01:47:40 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B263F106564A; Tue, 30 Aug 2011 01:47:40 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8A0B18FC08; Tue, 30 Aug 2011 01:47:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7U1levT007196; Tue, 30 Aug 2011 01:47:40 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7U1leoF007192; Tue, 30 Aug 2011 01:47:40 GMT (envelope-from linimon) Date: Tue, 30 Aug 2011 01:47:40 GMT Message-Id: <201108300147.p7U1leoF007192@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/160300: [if_bridge] [patch] bridge(4) should attempt to use a static MAC address. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 01:47:40 -0000 Old Synopsis: bridge(4) should attempt to use a static MAC address. New Synopsis: [if_bridge] [patch] bridge(4) should attempt to use a static MAC address. Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Tue Aug 30 01:46:51 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=160300 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 01:56:24 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B15471065674; Tue, 30 Aug 2011 01:56:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 899618FC19; Tue, 30 Aug 2011 01:56:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7U1uObf015808; Tue, 30 Aug 2011 01:56:24 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7U1uOut015804; Tue, 30 Aug 2011 01:56:24 GMT (envelope-from linimon) Date: Tue, 30 Aug 2011 01:56:24 GMT Message-Id: <201108300156.p7U1uOut015804@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: usb/160192: [install] Installation from USB-Stick doesn't find the USB-Stick X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 01:56:24 -0000 Old Synopsis: Installation from USB-Stick doesn't find the USB-Stick New Synopsis: [install] Installation from USB-Stick doesn't find the USB-Stick Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Tue Aug 30 01:54:16 UTC 2011 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=160192 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 02:00:24 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F033106564A for ; Tue, 30 Aug 2011 02:00:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6D2248FC1A for ; Tue, 30 Aug 2011 02:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7U20OuI015935 for ; Tue, 30 Aug 2011 02:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7U20Och015933; Tue, 30 Aug 2011 02:00:24 GMT (envelope-from gnats) Date: Tue, 30 Aug 2011 02:00:24 GMT Message-Id: <201108300200.p7U20Och015933@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Mark Linimon Cc: Subject: Re: misc/160011: Installer Disk will not boot X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mark Linimon List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 02:00:24 -0000 The following reply was made to PR misc/160011; it has been noted by GNATS. From: Mark Linimon To: Grant Derhofer Cc: bug-followup@FreeBSD.org Subject: Re: misc/160011: Installer Disk will not boot Date: Mon, 29 Aug 2011 20:50:39 -0500 are you trying to boot up in amd64 mode or in i386 mode? A dmesg of a successful boot might be useful. mcl From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 02:10:28 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9BD0E106566B; Tue, 30 Aug 2011 02:10:28 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 73CAD8FC12; Tue, 30 Aug 2011 02:10:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7U2AS1d026805; Tue, 30 Aug 2011 02:10:28 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7U2ASDY026795; Tue, 30 Aug 2011 02:10:28 GMT (envelope-from linimon) Date: Tue, 30 Aug 2011 02:10:28 GMT Message-Id: <201108300210.p7U2ASDY026795@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/160283: [zfs] [patch] 'zfs list' does abort in make_dataset_handle X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 02:10:28 -0000 Old Synopsis: 'zfs list' does abort in make_dataset_handle New Synopsis: [zfs] [patch] 'zfs list' does abort in make_dataset_handle Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Aug 30 02:09:45 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=160283 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 02:16:35 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C70C8106566B; Tue, 30 Aug 2011 02:16:35 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9F2FA8FC17; Tue, 30 Aug 2011 02:16:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7U2GZ1u034816; Tue, 30 Aug 2011 02:16:35 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7U2GZIu034812; Tue, 30 Aug 2011 02:16:35 GMT (envelope-from linimon) Date: Tue, 30 Aug 2011 02:16:35 GMT Message-Id: <201108300216.p7U2GZIu034812@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/160293: [ieee80211] ppanic] kernel panic during network setup at boot X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 02:16:35 -0000 Old Synopsis: kernel panic during network setup at boot New Synopsis: [ieee80211] ppanic] kernel panic during network setup at boot Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Tue Aug 30 02:15:06 UTC 2011 Responsible-Changed-Why: Attempt to reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=160293 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 04:40:13 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7462C106566C for ; Tue, 30 Aug 2011 04:40:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4AA318FC0A for ; Tue, 30 Aug 2011 04:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7U4eCRi064442 for ; Tue, 30 Aug 2011 04:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7U4eCW5064437; Tue, 30 Aug 2011 04:40:12 GMT (envelope-from gnats) Date: Tue, 30 Aug 2011 04:40:12 GMT Message-Id: <201108300440.p7U4eCW5064437@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Alexander Yamshanov Cc: Subject: Re: bin/160280: tcpdump. Segmentation Fault (core dumped) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander Yamshanov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 04:40:13 -0000 The following reply was made to PR bin/160280; it has been noted by GNATS. From: Alexander Yamshanov To: Sergey Kandaurov Cc: bug-followup@freebsd.org Subject: Re: bin/160280: tcpdump. Segmentation Fault (core dumped) Date: Tue, 30 Aug 2011 11:04:55 +0700 --0015175cff364a6b1804abb11d4b Content-Type: text/plain; charset=ISO-8859-1 Hi, Yes, this patch fixes the problem! > tcpdump -i 234 tcpdump: Invalid adapter index > Thank you. 2011/8/29 Sergey Kandaurov > Hi, can please you try this patch? > --0015175cff364a6b1804abb11d4b Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Hi,=

=
Yes, this patch fixes the problem!

> tcpdump -i 234
tcpdump: Invalid adapter index=A0
>

Thank you.

2011/8/29 Sergey = Kandaurov <pluk= net@freebsd.org>
Hi, can please you try this patch?

--0015175cff364a6b1804abb11d4b-- From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 09:28:15 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D20081065672; Tue, 30 Aug 2011 09:28:15 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AA54C8FC13; Tue, 30 Aug 2011 09:28:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7U9SFmi070461; Tue, 30 Aug 2011 09:28:15 GMT (envelope-from rwatson@freefall.freebsd.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7U9SFPq070457; Tue, 30 Aug 2011 09:28:15 GMT (envelope-from rwatson) Date: Tue, 30 Aug 2011 09:28:15 GMT Message-Id: <201108300928.p7U9SFPq070457@freefall.freebsd.org> To: rwatson@FreeBSD.org, freebsd-bugs@FreeBSD.org, kib@FreeBSD.org From: rwatson@FreeBSD.org Cc: Subject: Re: kern/150514: [drm] [request] Reorganize DRM Directory to Support Driver Updates X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 09:28:15 -0000 Synopsis: [drm] [request] Reorganize DRM Directory to Support Driver Updates Responsible-Changed-From-To: freebsd-bugs->kib Responsible-Changed-By: rwatson Responsible-Changed-When: Tue Aug 30 09:27:00 UTC 2011 Responsible-Changed-Why: Assign ownership of this PR to Kostik; he's recently been working with DRM support and this may overlap with his in-progress changes. More generally, it would make sense to coordinate potential additional hands in this area. http://www.freebsd.org/cgi/query-pr.cgi?pr=150514 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 13:20:12 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E67D01065672 for ; Tue, 30 Aug 2011 13:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 883D78FC19 for ; Tue, 30 Aug 2011 13:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7UDKBMS089269 for ; Tue, 30 Aug 2011 13:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7UDKBNe089268; Tue, 30 Aug 2011 13:20:11 GMT (envelope-from gnats) Resent-Date: Tue, 30 Aug 2011 13:20:11 GMT Resent-Message-Id: <201108301320.p7UDKBNe089268@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Paul Ambrose Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C09CE1065672 for ; Tue, 30 Aug 2011 13:10:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B07138FC14 for ; Tue, 30 Aug 2011 13:10:19 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7UDAJQW087060 for ; Tue, 30 Aug 2011 13:10:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7UDAJg4087059; Tue, 30 Aug 2011 13:10:19 GMT (envelope-from nobody) Message-Id: <201108301310.p7UDAJg4087059@red.freebsd.org> Date: Tue, 30 Aug 2011 13:10:19 GMT From: Paul Ambrose To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/160307: [dtrace] dtrace -lv can not identify the args of the probe function X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 13:20:12 -0000 >Number: 160307 >Category: kern >Synopsis: [dtrace] dtrace -lv can not identify the args of the probe function >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 Aug 30 13:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Paul Ambrose >Release: 9.0-beta2 >Organization: >Environment: FreeBSD lateaxfreebsd 9.0-BETA2 FreeBSD 9.0-BETA2 #0 r+c45c70e: Mon Aug 29 21:17:01 CST 2011 root@lateaxfreebsd:/usr/obj/usr/src/sys/MYKERNEL amd64 >Description: [root@lateaxfreebsd ~]# dtrace -lv | grep -C 15 '(unknown)' 17894 vfs namecache fullpath hit Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: struct vnode * args[1]: (unknown) args[2]: (unknown) the addon is the list of all the probe functions that can not identify args type, commit 209358 by marcel@freebsd.org seems to fix a similar problem but that fix DOES NOT work on this one. >How-To-Repeat: run [root@lateaxfreebsd ~]# dtrace -lv | grep -C 15 '(unknown)' with dtrace enabled >Fix: Patch attached with submission follows: 17894 vfs namecache fullpath hit Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: struct vnode * args[1]: (unknown) args[2]: (unknown) 17895 vfs namecache fullpath miss Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: struct vnode * -- 17896 vfs namecache fullpath return Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: struct vnode * args[2]: (unknown) 17897 vfs namecache lookup hit Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: (unknown) args[1]: char * args[2]: struct vnode * 17898 vfs namecache lookup hit-negative Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA -- 18021 mac kernel policy modevent Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: (unknown) 18022 mac kernel policy register Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: struct mac_policy_conf * -- args[0]: struct mac_policy_conf * 18024 mac_framework kernel priv_grant mac-grant-ok Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: (unknown) args[1]: struct ucred * args[2]: int 18025 mac_framework kernel proc_check_debug mac-check-err Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA -- Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: struct ucred * args[2]: struct vnode * args[3]: (unknown) args[4]: struct acl * 18146 mac_framework kernel vnode_check_setextattr mac-check-ok Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types -- Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: caddr_t args[2]: size_t args[3]: int args[4]: (unknown) args[5]: (unknown) 18300 syscall freebsd recvfrom return Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: caddr_t args[2]: size_t args[3]: int args[4]: (unknown) args[5]: (unknown) 18301 syscall freebsd accept entry Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: (unknown) args[2]: (unknown) 18302 syscall freebsd accept return Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: (unknown) args[2]: (unknown) 18303 syscall freebsd getpeername entry Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: (unknown) args[2]: (unknown) 18304 syscall freebsd getpeername return Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: (unknown) args[2]: (unknown) 18305 syscall freebsd getsockname entry Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: (unknown) args[2]: (unknown) 18306 syscall freebsd getsockname return Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: (unknown) args[2]: (unknown) 18307 syscall freebsd access entry Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: char * >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 14:10:10 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5A4F1065674 for ; Tue, 30 Aug 2011 14:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 79F098FC18 for ; Tue, 30 Aug 2011 14:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7UEAAsN034608 for ; Tue, 30 Aug 2011 14:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7UEAAoV034607; Tue, 30 Aug 2011 14:10:10 GMT (envelope-from gnats) Resent-Date: Tue, 30 Aug 2011 14:10:10 GMT Resent-Message-Id: <201108301410.p7UEAAoV034607@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pavel Timofeev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3CFFB1065670 for ; Tue, 30 Aug 2011 14:03:42 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2D9C78FC13 for ; Tue, 30 Aug 2011 14:03:42 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7UE3fv8040603 for ; Tue, 30 Aug 2011 14:03:41 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7UE3fXV040602; Tue, 30 Aug 2011 14:03:41 GMT (envelope-from nobody) Message-Id: <201108301403.p7UE3fXV040602@red.freebsd.org> Date: Tue, 30 Aug 2011 14:03:41 GMT From: Pavel Timofeev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/160312: Can't compile devel/glib20 with gcc 4.6 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 14:10:10 -0000 >Number: 160312 >Category: misc >Synopsis: Can't compile devel/glib20 with gcc 4.6 >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 Aug 30 14:10:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Pavel Timofeev >Release: FreeBSD 8.2 RELEASE amd64 >Organization: >Environment: >Description: /usr/bin/ld: unrecognized option '-Bsymbolic-functions' /usr/bin/ld: use the --help option for usage information gmake[4]: *** [libglib-2.0.la] Error 1 gmake[4]: Leaving directory `/usr/ports/devel/glib20/work/glib-2.28.8/glib' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/usr/ports/devel/glib20/work/glib-2.28.8/glib' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/usr/ports/devel/glib20/work/glib-2.28.8/glib' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/devel/glib20/work/glib-2.28.8' gmake: *** [all] Error 2 *** Error code 1 Stop in /usr/ports/devel/glib20. *** Error code 1 Stop in /usr/ports/devel/glib20. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 16:50:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC36D1065674 for ; Tue, 30 Aug 2011 16:50:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 913EF8FC0A for ; Tue, 30 Aug 2011 16:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7UGoBZp085092 for ; Tue, 30 Aug 2011 16:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7UGoBbh085091; Tue, 30 Aug 2011 16:50:11 GMT (envelope-from gnats) Date: Tue, 30 Aug 2011 16:50:11 GMT Message-Id: <201108301650.p7UGoBbh085091@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Dylan Alex Simon Cc: Subject: Re: bin/160295: ypserv -P [bin/109494] breaks tcp X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dylan Alex Simon List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 16:50:11 -0000 The following reply was made to PR bin/160295; it has been noted by GNATS. From: Dylan Alex Simon To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/160295: ypserv -P [bin/109494] breaks tcp Date: Tue, 30 Aug 2011 12:15:19 -0400 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Attached is a patch that seems to work. However, there seems to be another bug using ypserv -d where it exits ypproc_all_2_svc at the end even though it hasn't forked (PR #10970 collateral?), so I can't test completely. (I'm trying to get automount maps in linux to pull from FreeBSD NIS, which still isn't working.) --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="yp_main.c.diff" --- yp_main.c.orig 2011-08-30 11:15:33.595224119 -0400 +++ yp_main.c 2011-08-30 11:15:21.375092957 -0400 @@ -84,16 +84,6 @@ int do_dns = 0; int resfd; -struct socktype { - const char *st_name; - int st_type; -}; -static struct socktype stlist[] = { - { "tcp", SOCK_STREAM }, - { "udp", SOCK_DGRAM }, - { NULL, 0 } -}; - static void _msgout(char* msg) { @@ -235,14 +225,13 @@ main(int argc, char *argv[]) { register SVCXPRT *transp = NULL; - int sock; + int sock_udp = -1, sock_tcp = -1; int proto = 0; struct sockaddr_in saddr; socklen_t asize = sizeof (saddr); int ch; in_port_t yp_port = 0; char *errstr; - struct socktype *st; while ((ch = getopt(argc, argv, "hdnp:P:")) != -1) { switch (ch) { @@ -282,7 +271,10 @@ if (getsockopt(0, SOL_SOCKET, SO_TYPE, (char *)&_rpcfdtype, &ssize) == -1) exit(1); - sock = 0; + if (_rpcfdtype == SOCK_DGRAM) + sock_udp = 0; + else if (_rpcfdtype == SOCK_STREAM) + sock_tcp = 0; _rpcpmstart = 1; proto = 0; openlog("ypserv", LOG_PID, LOG_DAEMON); @@ -293,46 +285,49 @@ } openlog("ypserv", LOG_PID, LOG_DAEMON); } - sock = RPC_ANYSOCK; + sock_udp = sock_tcp = RPC_ANYSOCK; (void) pmap_unset(YPPROG, YPVERS); (void) pmap_unset(YPPROG, 1); } /* * Initialize TCP/UDP sockets. + * Really should only do this if !_rpcpmstart. */ - memset((char *)&saddr, 0, sizeof(saddr)); - saddr.sin_family = AF_INET; - saddr.sin_addr.s_addr = htonl(INADDR_ANY); - saddr.sin_port = htons(yp_port); - for (st = stlist; st->st_name != NULL; st++) { - /* Do not bind the socket if the user didn't specify a port */ - if (yp_port == 0) - break; + if (yp_port) + { + memset((char *)&saddr, 0, sizeof(saddr)); + saddr.sin_family = AF_INET; + saddr.sin_addr.s_addr = htonl(INADDR_ANY); + saddr.sin_port = htons(yp_port); + + sock_udp = socket(AF_INET, SOCK_DGRAM, 0); + if (sock_udp == -1) { + _msgout("cannot create a udp socket"); + exit(1); + } - sock = socket(AF_INET, st->st_type, 0); - if (sock == -1) { - if ((asprintf(&errstr, "cannot create a %s socket", - st->st_name)) == -1) - err(1, "unexpected failure in asprintf()"); - _msgout(errstr); - free((void *)errstr); + if (bind(sock_udp, (struct sockaddr *) &saddr, sizeof(saddr)) + == -1) { + _msgout("cannot bind udp socket"); exit(1); } - if (bind(sock, (struct sockaddr *) &saddr, sizeof(saddr)) + + sock_tcp = socket(AF_INET, SOCK_STREAM, 0); + if (sock_tcp == -1) { + _msgout("cannot create a tcp socket"); + exit(1); + } + + if (bind(sock_tcp, (struct sockaddr *) &saddr, sizeof(saddr)) == -1) { - if ((asprintf(&errstr, "cannot bind %s socket", - st->st_name)) == -1) - err(1, "unexpected failure in asprintf()"); - _msgout(errstr); - free((void *)errstr); + _msgout("cannot bind tcp socket"); exit(1); } - errstr = NULL; } if ((_rpcfdtype == 0) || (_rpcfdtype == SOCK_DGRAM)) { - transp = svcudp_create(sock); + transp = svcudp_create(sock_udp); if (transp == NULL) { _msgout("cannot create udp service"); exit(1); @@ -350,7 +345,7 @@ } if ((_rpcfdtype == 0) || (_rpcfdtype == SOCK_STREAM)) { - transp = svctcp_create(sock, 0, 0); + transp = svctcp_create(sock_tcp, 0, 0); if (transp == NULL) { _msgout("cannot create tcp service"); exit(1); --6TrnltStXW4iwmi0-- From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 17:20:20 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AAD461065674; Tue, 30 Aug 2011 17:20:20 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 826FA8FC14; Tue, 30 Aug 2011 17:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7UHKK93012580; Tue, 30 Aug 2011 17:20:20 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7UHKKf5012576; Tue, 30 Aug 2011 17:20:20 GMT (envelope-from linimon) Date: Tue, 30 Aug 2011 17:20:20 GMT Message-Id: <201108301720.p7UHKKf5012576@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, gnome@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/160312: Can't compile devel/glib20 with gcc 4.6 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 17:20:20 -0000 Synopsis: Can't compile devel/glib20 with gcc 4.6 Responsible-Changed-From-To: freebsd-bugs->gnome Responsible-Changed-By: linimon Responsible-Changed-When: Tue Aug 30 17:19:47 UTC 2011 Responsible-Changed-Why: Fix category and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=160312 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 19:30:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95376106566C for ; Tue, 30 Aug 2011 19:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6A72A8FC0A for ; Tue, 30 Aug 2011 19:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7UJUBFb030533 for ; Tue, 30 Aug 2011 19:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7UJUBgC030532; Tue, 30 Aug 2011 19:30:11 GMT (envelope-from gnats) Resent-Date: Tue, 30 Aug 2011 19:30:11 GMT Resent-Message-Id: <201108301930.p7UJUBgC030532@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thiago Damas Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C23321065670 for ; Tue, 30 Aug 2011 19:27:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 990718FC17 for ; Tue, 30 Aug 2011 19:27:44 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p7UJRiEd042811 for ; Tue, 30 Aug 2011 19:27:44 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p7UJRiFG042810; Tue, 30 Aug 2011 19:27:44 GMT (envelope-from nobody) Message-Id: <201108301927.p7UJRiFG042810@red.freebsd.org> Date: Tue, 30 Aug 2011 19:27:44 GMT From: Thiago Damas To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/160320: netstat -f inet6 does not output properly columns X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 19:30:11 -0000 >Number: 160320 >Category: misc >Synopsis: netstat -f inet6 does not output properly columns >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 Aug 30 19:30:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Thiago Damas >Release: FreeBSD 8.2 >Organization: >Environment: FreeBSD jpop01.vetorial.net 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: When using netstat -f inet6, it doesnt output columns properly, if not using '-n' together jpop01# netstat -f inet6 -r Routing tables Internet6: Destination Gateway Flags Netif Expire :: localhost UGRS lo0 => default fe80::20c:42ff:fe5 UG em0 localhost localhost UH lo0 ::ffff:0.0.0.0 localhost UGRS lo0 fe80:: localhost UGRS lo0 fe80::%em0 link#1 U em0 fe80::230:48ff:fee link#1 UHS lo0 fe80::%lo0 link#3 U lo0 fe80::1%lo0 link#3 UHS lo0 ff01:1:: fe80::230:48ff:fee U em0 ff01:3:: localhost U lo0 ff02:: localhost UGRS lo0 ff02::%em0 fe80::230:48ff:fee U em0 ff02::%lo0 localhost U lo0 jpop01# netstat -f inet6 -rn Routing tables Internet6: Destination Gateway Flags Netif Expire ::/96 ::1 UGRS lo0 => default fe80::20c:42ff:fe54:78ee%em0 UG em0 ::1 ::1 UH lo0 ::ffff:0.0.0.0/96 ::1 UGRS lo0 fe80::/10 ::1 UGRS lo0 fe80::%em0/64 link#1 U em0 fe80::230:48ff:fee4:2425%em0 link#1 UHS lo0 fe80::%lo0/64 link#3 U lo0 fe80::1%lo0 link#3 UHS lo0 ff01:1::/32 fe80::230:48ff:fee4:2425%em0 U em0 ff01:3::/32 ::1 U lo0 ff02::/16 ::1 UGRS lo0 ff02::%em0/32 fe80::230:48ff:fee4:2425%em0 U em0 ff02::%lo0/32 ::1 U lo0 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 30 21:40:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FFFA106564A for ; Tue, 30 Aug 2011 21:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 60DA88FC08 for ; Tue, 30 Aug 2011 21:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7ULeBM0050461 for ; Tue, 30 Aug 2011 21:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7ULeBcj050460; Tue, 30 Aug 2011 21:40:11 GMT (envelope-from gnats) Date: Tue, 30 Aug 2011 21:40:11 GMT Message-Id: <201108302140.p7ULeBcj050460@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: register Cc: Subject: Re: misc/160011: Installer Disk will not boot X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: register List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 21:40:11 -0000 The following reply was made to PR misc/160011; it has been noted by GNATS. From: register To: bug-followup@freebsd.org Cc: Subject: Re: misc/160011: Installer Disk will not boot Date: Tue, 30 Aug 2011 17:08:05 -0400 --20cf30427198c3987904abbf6a78 Content-Type: text/plain; charset=ISO-8859-1 Hi Mark, Well, this happens on both 32-bit and 64-bit, and I can't actually boot into the environment to run dmesg. Kris over at PC-BSD suggested trying the 9.0-beta builds and maybe trying the USB PC-BSD installers to get a better understanding of what is going on. I will post back when I have tested the beta and usb installers. Grant On Mon, Aug 29, 2011 at 9:50 PM, Mark Linimon wrote: > are you trying to boot up in amd64 mode or in i386 mode? > > A dmesg of a successful boot might be useful. > > mcl > --20cf30427198c3987904abbf6a78 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi Mark,
Well, this happens on both 32-bit and 64-bit, and I can't = actually boot into the=A0environment=A0to run dmesg. =A0Kris over at PC-BSD= suggested trying the 9.0-beta builds and maybe trying the USB PC-BSD insta= llers to get a better understanding of what is going on. =A0I will post bac= k when I have tested the beta and usb installers.

Grant


On M= on, Aug 29, 2011 at 9:50 PM, Mark Linimon <linimon@lonesome.com> wrote:
=
are you trying to boot up in amd64 mode or in i386 mode?

A dmesg of a successful boot might be useful.

mcl

--20cf30427198c3987904abbf6a78-- From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 31 16:50:07 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 663841065672 for ; Wed, 31 Aug 2011 16:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3A0C98FC0A for ; Wed, 31 Aug 2011 16:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7VGo7F5048589 for ; Wed, 31 Aug 2011 16:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7VGo75t048588; Wed, 31 Aug 2011 16:50:07 GMT (envelope-from gnats) Resent-Date: Wed, 31 Aug 2011 16:50:07 GMT Resent-Message-Id: <201108311650.p7VGo75t048588@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eugene Grosbein Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B2EF106567B for ; Wed, 31 Aug 2011 16:45:18 +0000 (UTC) (envelope-from eugen@grosbein.pp.ru) Received: from eg.sd.rdtc.ru (unknown [IPv6:2a03:3100:c:13::5]) by mx1.freebsd.org (Postfix) with ESMTP id 7F6118FC19 for ; Wed, 31 Aug 2011 16:45:17 +0000 (UTC) Received: from grosbein.pp.ru (188-123-32-240.rdtc.ru [188.123.32.240] (may be forged)) by eg.sd.rdtc.ru (8.14.5/8.14.5) with ESMTP id p7VGjGIc046199 for ; Wed, 31 Aug 2011 23:45:16 +0700 (NOVST) (envelope-from eugen@grosbein.pp.ru) Received: from grosbein.pp.ru (localhost [127.0.0.1]) by grosbein.pp.ru (8.14.4/8.14.4) with ESMTP id p7VGjCjY002536 for ; Wed, 31 Aug 2011 23:45:12 +0700 (NOVST) (envelope-from eugen@grosbein.pp.ru) Received: (from eugen@localhost) by grosbein.pp.ru (8.14.4/8.14.4/Submit) id p7VGjCtd002535; Wed, 31 Aug 2011 23:45:12 +0700 (NOVST) (envelope-from eugen) Message-Id: <201108311645.p7VGjCtd002535@grosbein.pp.ru> Date: Wed, 31 Aug 2011 23:45:12 +0700 (NOVST) From: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/160339: [patch] fsck_ffs needs to check d_namlen for zero X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eugene Grosbein List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2011 16:50:07 -0000 >Number: 160339 >Category: bin >Synopsis: [patch] fsck_ffs needs to check d_namlen for zero >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 Aug 31 16:50:06 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 8.2-STABLE amd64 >Organization: RDTC JSC >Environment: System: FreeBSD grosbein.pp.ru 8.2-STABLE FreeBSD 8.2-STABLE #1: Fri Jul 1 18:08:55 NOVST 2011 root@grosbein.pp.ru:/usr/local/obj/usr/local/src/sys/DADV amd64 >Description: fsck_ffs checks for directory entry is incomplete: it does not check if d_namlen is zero. OTOH, it checks if namlen > MAXNAMLEN while MAXNAMLEN is 255 and namlen is 8-bit quantity so this check is always false. This check is commented out in NetBSD's fsck_ffs and does not exists in OpenBSD's. But they both do not check for zero value. >How-To-Repeat: My /usr/local filesystem somehow got corrupted, one of subdirectories has a file with zero name length and fsck -y did not find this error. I was forced to apply the following patch and only then the error was corrected: ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames DIRECTORY CORRUPTED I=1531227 OWNER=root MODE=40755 SIZE=4608 MTIME=Aug 30 01:28 2011 DIR=/obj/usr/local/src/secure/lib/libssh SALVAGE? [yn] ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts LINK COUNT FILE I=24 OWNER=root MODE=100644 SIZE=892 MTIME=Sep 17 11:10 2010 COUNT 2 SHOULD BE 1 ADJUST? [yn] ** Phase 5 - Check Cyl groups 459580 files, 7411823 used, 7819495 free (105503 frags, 964249 blocks, 0.7% fragmentation) ***** FILE SYSTEM IS CLEAN ***** ***** FILE SYSTEM WAS MODIFIED ***** >Fix: --- sbin/fsck_ffs/dir.c.orig 2011-08-31 22:54:23.000000000 +0700 +++ sbin/fsck_ffs/dir.c 2011-08-31 23:38:33.000000000 +0700 @@ -225,7 +225,7 @@ type = dp->d_type; if (dp->d_reclen < size || idesc->id_filesize < size || - namlen > MAXNAMLEN || + namlen == 0 || type > 15) goto bad; for (cp = dp->d_name, size = 0; size < namlen; size++) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 31 23:27:31 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08AD31065675; Wed, 31 Aug 2011 23:27:31 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D48EC8FC1E; Wed, 31 Aug 2011 23:27:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7VNRU21017066; Wed, 31 Aug 2011 23:27:30 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7VNRUI7017062; Wed, 31 Aug 2011 23:27:30 GMT (envelope-from delphij) Date: Wed, 31 Aug 2011 23:27:30 GMT Message-Id: <201108312327.p7VNRUI7017062@freefall.freebsd.org> To: delphij@FreeBSD.org, freebsd-bugs@FreeBSD.org, delphij@FreeBSD.org From: delphij@FreeBSD.org Cc: Subject: Re: bin/160339: [patch] fsck_ffs needs to check d_namlen for zero X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2011 23:27:31 -0000 Synopsis: [patch] fsck_ffs needs to check d_namlen for zero Responsible-Changed-From-To: freebsd-bugs->delphij Responsible-Changed-By: delphij Responsible-Changed-When: Wed Aug 31 23:27:14 UTC 2011 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=160339 From owner-freebsd-bugs@FreeBSD.ORG Thu Sep 1 05:00:22 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A58A6106564A for ; Thu, 1 Sep 2011 05:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 919878FC08 for ; Thu, 1 Sep 2011 05:00:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p8150MuN021163 for ; Thu, 1 Sep 2011 05:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p8150M2r021162; Thu, 1 Sep 2011 05:00:22 GMT (envelope-from gnats) Date: Thu, 1 Sep 2011 05:00:22 GMT Message-Id: <201109010500.p8150M2r021162@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "deeptech71@gmail.com" Cc: Subject: Re: bin/138858: patch(1) assumes that a file appears only once in the patch in check-only mode X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "deeptech71@gmail.com" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2011 05:00:22 -0000 The following reply was made to PR bin/138858; it has been noted by GNATS. From: "deeptech71@gmail.com" To: bug-followup@freebsd.org Cc: Subject: Re: bin/138858: patch(1) assumes that a file appears only once in the patch in check-only mode Date: Thu, 1 Sep 2011 06:50:36 +0200 i've just noticed that in my 2nd message i've screwed up the command flags. restating everything: put words.txt and con.patch in one directory, cd to that directory, and then do: $ cat con.patch | patch -sp1 --check the --check flag means "do not actually edit files, just check to see what would happen". the above test run says that the patch applies cleanly. now do: $ cat con.patch | patch -sp1 notice that now the patch actually fails, so the test run lied. From owner-freebsd-bugs@FreeBSD.ORG Thu Sep 1 10:57:26 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA9E5106564A; Thu, 1 Sep 2011 10:57:26 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail04.syd.optusnet.com.au (mail04.syd.optusnet.com.au [211.29.132.185]) by mx1.freebsd.org (Postfix) with ESMTP id 18CA48FC0A; Thu, 1 Sep 2011 10:57:25 +0000 (UTC) Received: from c122-106-165-191.carlnfd1.nsw.optusnet.com.au (c122-106-165-191.carlnfd1.nsw.optusnet.com.au [122.106.165.191]) by mail04.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id p81Av7cd006057 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 1 Sep 2011 20:57:09 +1000 Date: Thu, 1 Sep 2011 20:57:07 +1000 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Kostik Belousov In-Reply-To: <20110828163516.GS17489@deviant.kiev.zoral.com.ua> Message-ID: <20110901192547.R892@besplex.bde.org> References: <201108101917.p7AJHin7006109@red.freebsd.org> <20110811103923.F926@besplex.bde.org> <20110828163516.GS17489@deviant.kiev.zoral.com.ua> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Robert Millan , freebsd-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org, Bruce Evans Subject: Re: misc/159654: 46 kernel headers use register_t but don't #include X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2011 10:57:26 -0000 On Sun, 28 Aug 2011, Kostik Belousov wrote: > On Thu, Aug 11, 2011 at 12:57:33PM +1000, Bruce Evans wrote: >> is not a kernel header, but it is not a user >> header either. It is an error to include this header directly. The >> only supported includes of it are indirectly via in >> applications and via in the kernel ( >> is just a copy or symlink of ). >> >> [... mainly about out of date comments] >> >> kib@ should look at this. He did :-). > I suspect that struct sigcontext is unused at all. I understand that > it is a user-mode interface, but the kernel uses mcontext_t almost > exclusively, except for the compat layouts. This made especially > confusing by packing sigmask into sigcontext as the first member, > but using a separate field in ucontext_t right before uc_mcontext > (I hope this can be deciphered). Yes, sigcontext is the old BSD interface for signal handlers, and -current only supports it by making it essentially the same as mcontext via type puns. > And, the driving force beyond the layout is struct trapframe, that > is well-known but not obvious until you start to remember sigsend() > code. I thought that this was more obvious in old versions, since the interface between the trap frame and the signal frame was rawer, but history shows otherwise. The i386 sigcontext in 4.4BSD-Lite is amusingly simple: % struct sigcontext { % int sc_onstack; /* sigstack state to restore */ % int sc_mask; /* signal mask to restore */ % int sc_sp; /* sp to restore */ % int sc_fp; /* fp to restore */ % int sc_ap; /* ap to restore */ % int sc_pc; /* pc to restore */ % int sc_ps; /* psl to restore */ % }; This is almost useless in userland (not enough registers), and is just enough for simple signal handling to work. 386BSD was weirdly different according to what is left of it in FreeBSD-1. Apparently it had to flesh out the above. It added (or obtained from Net/2) the following layering violations and weirdness: - struct sigcontext is declared in with an i386 ifdef for the registers. It looks more like it is today. - doesn't exist. Only exists. This declares a mess of frames: different ones for syscalls, traps, interrupts and signals. Translating between these was painful (especially for the syscall and trap frames in ptrace and gdb). FreeBSD-1 removed the special syscall frame by making it the same as the trap frame. The others still exist in some form. - the painful translations include copyng registers 1 at a time from the trap frame to the sigcontext in sendsig(), because the struct layouts are only vaguely related. There is now too much copying to make the layouts of other things match, so having to rearrange all the registers wouldn't take much longer or cost much more, at least on arches with only a few registers like i386. (sendsig() and sigreturn() touch memory 2-3 times as much as they need to. This starts with copying all the registers from the trap frame to the signal frame so that only 1 copyout() is needed. With a better organization, there would be a few more copyout()s and no copying within the kernel. Also, large areas of the mcontext like unused FP registers should be sparsely mapped and not copied out when they are inactive. Currently, copying the FP state on amd64 and i386 is always done 3-4 times per signal. This mostly defeats the optimizations to avoid copying the FP state between the FPU and memory when it is not used. The optimizations prevent copying by FPU, but there are 2-4 copies by software instead. sendsig() copies out the unused state, and then to avoid a security hole it has to bzero() the unused state first. That gives 1 and a half copies. Then sigreturn() copies in the unused state. I think it manages to not unbzero() the unused state or copy it to the FPU (the optimizations avoid always restoring what is in the mcontext to the FPU). kib is working on AVX support on amd64 and i386. AVX needs changing the mcontext layout yet again, although we thought we left space for expansion of SSE structures. AVX has a much larger context, so optimizing away copying of it is a more important unpessimization.) > I tried to do some minimal comment cleanup. > > diff --git a/sys/amd64/include/signal.h b/sys/amd64/include/signal.h > index 228e2d9..9e9c9ad 100644 > --- a/sys/amd64/include/signal.h > +++ b/sys/amd64/include/signal.h > @@ -57,8 +57,8 @@ typedef long sig_atomic_t; > * a non-standard exit is performed. > */ > /* > - * The sequence of the fields/registers in struct sigcontext should match > - * those in mcontext_t. > + * The sequence of the fields/registers after sc_mask in struct > + * sigcontext should match those in mcontext_t and struct trapframe. > */ I could clean this up a bit more if you want. Mainly English fixes. Some of the "should"s should be "must"s since not matching is not an option... > struct sigcontext { > struct __sigset sc_mask; /* signal mask to restore */ > @@ -93,8 +93,8 @@ struct sigcontext { > long sc_ss; > long sc_len; /* sizeof(mcontext_t) */ > /* > - * XXX - See and for > - * the following fields. > + * See and for > + * the following fields. > */ The formatting could be further improved by joining the lines. > diff --git a/sys/amd64/include/ucontext.h b/sys/amd64/include/ucontext.h > index c5bbd65..0341527 100644 > --- a/sys/amd64/include/ucontext.h > +++ b/sys/amd64/include/ucontext.h > @@ -41,12 +41,12 @@ > > typedef struct __mcontext { > /* > - * The first 24 fields must match the definition of > - * sigcontext. So that we can support sigcontext > - * and ucontext_t at the same time. > + * The definition of mcontext_t shall match the layout of > + * struct sigcontext after the sc_mask member. So that we can > + * support sigcontext and ucontext_t at the same time. > */ I prefer "must" to "shall". It sounds stricter to me, while "shall" sounds too formal and/or Englishman-English. I like the rules about must/may/ should used in network RFCs. The second sentence is still non-grammatical here. It should be a clause in the first sentence (just change ". So" to ", so"), or start with something like "This is so". There are even larger bugs in the organization of the comments in i386/include/signal.h: % /* % * Only the kernel should need these old type definitions. % */ This comment only applies to osigcontext, but is outside the scope of the ifdef for that. It applies to 1 declararion but claims to appy to (multiple) definitions (sic). If it applied to multiple ones, then it would be normal to separate it from the first one with a blank line, but this is not done. So the scope of this comment is hard to see. % #if defined(_KERNEL) && defined(COMPAT_43) % /* % * Information pushed on stack when a signal is delivered. % * This is used by the kernel to restore state following % * execution of the signal handler. It is also made available % * to the handler to allow it to restore state properly if % * a non-standard exit is performed. % */ % struct osigcontext { All of this comment is the same as in 4.4BSD-Lite. It now only applies to osigcontext so its placement within the ifdef is almost correct, but this leaves no similar comment about ordinary sigcontext. % ... % % /* % * The sequence of the fields/registers in struct sigcontext should match % * those in mcontext_t. % */ % struct sigcontext { This comment is correct, but doesn't say anything about what sigcontext actually is. It is of course just an alias for parts of mcontext, and may be used by userland, but isn't used directly by the kernel. This contrasts with osigcontext, which is used by both the kernel and userland if userland requests an "old" signal context. Bruce From owner-freebsd-bugs@FreeBSD.ORG Thu Sep 1 11:00:21 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 626D9106566B for ; Thu, 1 Sep 2011 11:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 504958FC15 for ; Thu, 1 Sep 2011 11:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p81B0KwF091540 for ; Thu, 1 Sep 2011 11:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p81B0KO9091539; Thu, 1 Sep 2011 11:00:20 GMT (envelope-from gnats) Date: Thu, 1 Sep 2011 11:00:20 GMT Message-Id: <201109011100.p81B0KO9091539@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bruce Evans Cc: Subject: Re: misc/159654: 46 kernel headers use register_t but don't #include X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bruce Evans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2011 11:00:21 -0000 The following reply was made to PR misc/159654; it has been noted by GNATS. From: Bruce Evans To: Kostik Belousov Cc: Bruce Evans , Robert Millan , freebsd-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/159654: 46 kernel headers use register_t but don't #include Date: Thu, 1 Sep 2011 20:57:07 +1000 (EST) On Sun, 28 Aug 2011, Kostik Belousov wrote: > On Thu, Aug 11, 2011 at 12:57:33PM +1000, Bruce Evans wrote: >> is not a kernel header, but it is not a user >> header either. It is an error to include this header directly. The >> only supported includes of it are indirectly via in >> applications and via in the kernel ( >> is just a copy or symlink of ). >> >> [... mainly about out of date comments] >> >> kib@ should look at this. He did :-). > I suspect that struct sigcontext is unused at all. I understand that > it is a user-mode interface, but the kernel uses mcontext_t almost > exclusively, except for the compat layouts. This made especially > confusing by packing sigmask into sigcontext as the first member, > but using a separate field in ucontext_t right before uc_mcontext > (I hope this can be deciphered). Yes, sigcontext is the old BSD interface for signal handlers, and -current only supports it by making it essentially the same as mcontext via type puns. > And, the driving force beyond the layout is struct trapframe, that > is well-known but not obvious until you start to remember sigsend() > code. I thought that this was more obvious in old versions, since the interface between the trap frame and the signal frame was rawer, but history shows otherwise. The i386 sigcontext in 4.4BSD-Lite is amusingly simple: % struct sigcontext { % int sc_onstack; /* sigstack state to restore */ % int sc_mask; /* signal mask to restore */ % int sc_sp; /* sp to restore */ % int sc_fp; /* fp to restore */ % int sc_ap; /* ap to restore */ % int sc_pc; /* pc to restore */ % int sc_ps; /* psl to restore */ % }; This is almost useless in userland (not enough registers), and is just enough for simple signal handling to work. 386BSD was weirdly different according to what is left of it in FreeBSD-1. Apparently it had to flesh out the above. It added (or obtained from Net/2) the following layering violations and weirdness: - struct sigcontext is declared in with an i386 ifdef for the registers. It looks more like it is today. - doesn't exist. Only exists. This declares a mess of frames: different ones for syscalls, traps, interrupts and signals. Translating between these was painful (especially for the syscall and trap frames in ptrace and gdb). FreeBSD-1 removed the special syscall frame by making it the same as the trap frame. The others still exist in some form. - the painful translations include copyng registers 1 at a time from the trap frame to the sigcontext in sendsig(), because the struct layouts are only vaguely related. There is now too much copying to make the layouts of other things match, so having to rearrange all the registers wouldn't take much longer or cost much more, at least on arches with only a few registers like i386. (sendsig() and sigreturn() touch memory 2-3 times as much as they need to. This starts with copying all the registers from the trap frame to the signal frame so that only 1 copyout() is needed. With a better organization, there would be a few more copyout()s and no copying within the kernel. Also, large areas of the mcontext like unused FP registers should be sparsely mapped and not copied out when they are inactive. Currently, copying the FP state on amd64 and i386 is always done 3-4 times per signal. This mostly defeats the optimizations to avoid copying the FP state between the FPU and memory when it is not used. The optimizations prevent copying by FPU, but there are 2-4 copies by software instead. sendsig() copies out the unused state, and then to avoid a security hole it has to bzero() the unused state first. That gives 1 and a half copies. Then sigreturn() copies in the unused state. I think it manages to not unbzero() the unused state or copy it to the FPU (the optimizations avoid always restoring what is in the mcontext to the FPU). kib is working on AVX support on amd64 and i386. AVX needs changing the mcontext layout yet again, although we thought we left space for expansion of SSE structures. AVX has a much larger context, so optimizing away copying of it is a more important unpessimization.) > I tried to do some minimal comment cleanup. > > diff --git a/sys/amd64/include/signal.h b/sys/amd64/include/signal.h > index 228e2d9..9e9c9ad 100644 > --- a/sys/amd64/include/signal.h > +++ b/sys/amd64/include/signal.h > @@ -57,8 +57,8 @@ typedef long sig_atomic_t; > * a non-standard exit is performed. > */ > /* > - * The sequence of the fields/registers in struct sigcontext should match > - * those in mcontext_t. > + * The sequence of the fields/registers after sc_mask in struct > + * sigcontext should match those in mcontext_t and struct trapframe. > */ I could clean this up a bit more if you want. Mainly English fixes. Some of the "should"s should be "must"s since not matching is not an option... > struct sigcontext { > struct __sigset sc_mask; /* signal mask to restore */ > @@ -93,8 +93,8 @@ struct sigcontext { > long sc_ss; > long sc_len; /* sizeof(mcontext_t) */ > /* > - * XXX - See and for > - * the following fields. > + * See and for > + * the following fields. > */ The formatting could be further improved by joining the lines. > diff --git a/sys/amd64/include/ucontext.h b/sys/amd64/include/ucontext.h > index c5bbd65..0341527 100644 > --- a/sys/amd64/include/ucontext.h > +++ b/sys/amd64/include/ucontext.h > @@ -41,12 +41,12 @@ > > typedef struct __mcontext { > /* > - * The first 24 fields must match the definition of > - * sigcontext. So that we can support sigcontext > - * and ucontext_t at the same time. > + * The definition of mcontext_t shall match the layout of > + * struct sigcontext after the sc_mask member. So that we can > + * support sigcontext and ucontext_t at the same time. > */ I prefer "must" to "shall". It sounds stricter to me, while "shall" sounds too formal and/or Englishman-English. I like the rules about must/may/ should used in network RFCs. The second sentence is still non-grammatical here. It should be a clause in the first sentence (just change ". So" to ", so"), or start with something like "This is so". There are even larger bugs in the organization of the comments in i386/include/signal.h: % /* % * Only the kernel should need these old type definitions. % */ This comment only applies to osigcontext, but is outside the scope of the ifdef for that. It applies to 1 declararion but claims to appy to (multiple) definitions (sic). If it applied to multiple ones, then it would be normal to separate it from the first one with a blank line, but this is not done. So the scope of this comment is hard to see. % #if defined(_KERNEL) && defined(COMPAT_43) % /* % * Information pushed on stack when a signal is delivered. % * This is used by the kernel to restore state following % * execution of the signal handler. It is also made available % * to the handler to allow it to restore state properly if % * a non-standard exit is performed. % */ % struct osigcontext { All of this comment is the same as in 4.4BSD-Lite. It now only applies to osigcontext so its placement within the ifdef is almost correct, but this leaves no similar comment about ordinary sigcontext. % ... % % /* % * The sequence of the fields/registers in struct sigcontext should match % * those in mcontext_t. % */ % struct sigcontext { This comment is correct, but doesn't say anything about what sigcontext actually is. It is of course just an alias for parts of mcontext, and may be used by userland, but isn't used directly by the kernel. This contrasts with osigcontext, which is used by both the kernel and userland if userland requests an "old" signal context. Bruce From owner-freebsd-bugs@FreeBSD.ORG Thu Sep 1 11:52:35 2011 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBA8C106566B; Thu, 1 Sep 2011 11:52:35 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.zoral.com.ua (mx0.zoral.com.ua [91.193.166.200]) by mx1.freebsd.org (Postfix) with ESMTP id 1F0008FC17; Thu, 1 Sep 2011 11:52:34 +0000 (UTC) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id p81BqPtD003515 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 1 Sep 2011 14:52:25 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.4/8.14.4) with ESMTP id p81BqPCu006029; Thu, 1 Sep 2011 14:52:25 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.4/8.14.4/Submit) id p81BqPVc006028; Thu, 1 Sep 2011 14:52:25 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Thu, 1 Sep 2011 14:52:25 +0300 From: Kostik Belousov To: Bruce Evans Message-ID: <20110901115224.GM17489@deviant.kiev.zoral.com.ua> References: <201108101917.p7AJHin7006109@red.freebsd.org> <20110811103923.F926@besplex.bde.org> <20110828163516.GS17489@deviant.kiev.zoral.com.ua> <20110901192547.R892@besplex.bde.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mE6eiWAW7MIqbbCC" Content-Disposition: inline In-Reply-To: <20110901192547.R892@besplex.bde.org> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: clamav-milter 0.95.2 at skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-3.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DNS_FROM_OPENWHOIS autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua Cc: Robert Millan , freebsd-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: misc/159654: 46 kernel headers use register_t but don't #include X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2011 11:52:36 -0000 --mE6eiWAW7MIqbbCC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 01, 2011 at 08:57:07PM +1000, Bruce Evans wrote: > On Sun, 28 Aug 2011, Kostik Belousov wrote: > kib is working on AVX support on amd64 and i386. AVX needs changing > the mcontext layout yet again, although we thought we left space > for expansion of SSE structures. AVX has a much larger context, > so optimizing away copying of it is a more important unpessimization.) I intend to work, but cannot buy Intel motherboard for LGA 1155 with the serial port. >=20 > >I tried to do some minimal comment cleanup. > > > >diff --git a/sys/amd64/include/signal.h b/sys/amd64/include/signal.h > >index 228e2d9..9e9c9ad 100644 > >--- a/sys/amd64/include/signal.h > >+++ b/sys/amd64/include/signal.h > >@@ -57,8 +57,8 @@ typedef long sig_atomic_t; > > * a non-standard exit is performed. > > */ > >/* > >- * The sequence of the fields/registers in struct sigcontext should mat= ch > >- * those in mcontext_t. > >+ * The sequence of the fields/registers after sc_mask in struct > >+ * sigcontext should match those in mcontext_t and struct trapframe. > > */ >=20 > I could clean this up a bit more if you want. Mainly English fixes. > Some of the "should"s should be "must"s since not matching is not an > option... >=20 > >struct sigcontext { > > struct __sigset sc_mask; /* signal mask to restore */ > >@@ -93,8 +93,8 @@ struct sigcontext { > > long sc_ss; > > long sc_len; /* sizeof(mcontext_t) */ > > /* > >- * XXX - See and for > >- * the following fields. > >+ * See and for > >+ * the following fields. > > */ >=20 > The formatting could be further improved by joining the lines. >=20 > >diff --git a/sys/amd64/include/ucontext.h b/sys/amd64/include/ucontext.h > >index c5bbd65..0341527 100644 > >--- a/sys/amd64/include/ucontext.h > >+++ b/sys/amd64/include/ucontext.h > >@@ -41,12 +41,12 @@ > > > >typedef struct __mcontext { > > /* > >- * The first 24 fields must match the definition of > >- * sigcontext. So that we can support sigcontext > >- * and ucontext_t at the same time. > >+ * The definition of mcontext_t shall match the layout of > >+ * struct sigcontext after the sc_mask member. So that we can > >+ * support sigcontext and ucontext_t at the same time. > > */ >=20 > I prefer "must" to "shall". It sounds stricter to me, while "shall" soun= ds > too formal and/or Englishman-English. I like the rules about must/may/ > should used in network RFCs. >=20 > The second sentence is still non-grammatical here. It should be a > clause in the first sentence (just change ". So" to ", so"), or start > with something like "This is so". >=20 > There are even larger bugs in the organization of the comments in > i386/include/signal.h: >=20 > % /* > % * Only the kernel should need these old type definitions. > % */ >=20 > This comment only applies to osigcontext, but is outside the scope > of the ifdef for that. It applies to 1 declararion but claims to > appy to (multiple) definitions (sic). If it applied to multiple > ones, then it would be normal to separate it from the first one > with a blank line, but this is not done. So the scope of this > comment is hard to see. >=20 > % #if defined(_KERNEL) && defined(COMPAT_43) > % /* > % * Information pushed on stack when a signal is delivered. > % * This is used by the kernel to restore state following > % * execution of the signal handler. It is also made available > % * to the handler to allow it to restore state properly if > % * a non-standard exit is performed. > % */ > % struct osigcontext { >=20 > All of this comment is the same as in 4.4BSD-Lite. It now only > applies to osigcontext so its placement within the ifdef is > almost correct, but this leaves no similar comment about ordinary > sigcontext. On 386, I moved the 'Only the kernel should need' near the osigcontext declaration. On amd64, the sentence is removed at all, there is currently no osigcontext for 64bit. >=20 > % ... > %=20 > % /* > % * The sequence of the fields/registers in struct sigcontext should mat= ch > % * those in mcontext_t. > % */ > % struct sigcontext { >=20 > This comment is correct, but doesn't say anything about what sigcontext > actually is. It is of course just an alias for parts of mcontext, and > may be used by userland, but isn't used directly by the kernel. This > contrasts with osigcontext, which is used by both the kernel and > userland if userland requests an "old" signal context. The 'Information pushed on stack' is now the header for the whole file. diff --git a/sys/amd64/include/signal.h b/sys/amd64/include/signal.h index 228e2d9..0374339 100644 --- a/sys/amd64/include/signal.h +++ b/sys/amd64/include/signal.h @@ -47,18 +47,14 @@ typedef long sig_atomic_t; #include /* codes for SIGILL, SIGFPE */ =20 /* - * Only the kernel should need these old type definitions. - */ -/* * Information pushed on stack when a signal is delivered. * This is used by the kernel to restore state following * execution of the signal handler. It is also made available * to the handler to allow it to restore state properly if * a non-standard exit is performed. - */ -/* - * The sequence of the fields/registers in struct sigcontext should match - * those in mcontext_t. + * + * The sequence of the fields/registers after sc_mask in struct + * sigcontext must match those in mcontext_t and struct trapframe. */ struct sigcontext { struct __sigset sc_mask; /* signal mask to restore */ @@ -93,8 +89,8 @@ struct sigcontext { long sc_ss; long sc_len; /* sizeof(mcontext_t) */ /* - * XXX - See and for - * the following fields. + * See and for the following + * fields. */ long sc_fpformat; long sc_ownedfp; diff --git a/sys/amd64/include/ucontext.h b/sys/amd64/include/ucontext.h index c5bbd65..75b7bd2 100644 --- a/sys/amd64/include/ucontext.h +++ b/sys/amd64/include/ucontext.h @@ -41,12 +41,13 @@ =20 typedef struct __mcontext { /* - * The first 24 fields must match the definition of - * sigcontext. So that we can support sigcontext - * and ucontext_t at the same time. + * The definition of mcontext_t must match the layout of + * struct sigcontext after the sc_mask member. This is so + * that we can support sigcontext and ucontext_t at the same + * time. */ - __register_t mc_onstack; /* XXX - sigcontext compat. */ - __register_t mc_rdi; /* machine state (struct trapframe) */ + __register_t mc_onstack; /* XXX - sigcontext compat. */ + __register_t mc_rdi; /* machine state (struct trapframe) */ __register_t mc_rsi; __register_t mc_rdx; __register_t mc_rcx; diff --git a/sys/i386/include/signal.h b/sys/i386/include/signal.h index 7a5f876..c636c2c 100644 --- a/sys/i386/include/signal.h +++ b/sys/i386/include/signal.h @@ -46,16 +46,17 @@ typedef int sig_atomic_t; #include /* codes for SIGILL, SIGFPE */ =20 /* - * Only the kernel should need these old type definitions. - */ -#if defined(_KERNEL) && defined(COMPAT_43) -/* * Information pushed on stack when a signal is delivered. * This is used by the kernel to restore state following * execution of the signal handler. It is also made available * to the handler to allow it to restore state properly if * a non-standard exit is performed. */ + +#if defined(_KERNEL) && defined(COMPAT_43) +/* + * Only the kernel should need these old type definitions. + */ struct osigcontext { int sc_onstack; /* sigstack state to restore */ osigset_t sc_mask; /* signal mask to restore */ @@ -83,7 +84,7 @@ struct osigcontext { =20 /* * The sequence of the fields/registers in struct sigcontext should match - * those in mcontext_t. + * those in mcontext_t and struct trapframe. */ struct sigcontext { struct __sigset sc_mask; /* signal mask to restore */ @@ -109,8 +110,8 @@ struct sigcontext { int sc_ss; int sc_len; /* sizeof(mcontext_t) */ /* - * XXX - See and for - * the following fields. + * See and for + * the following fields. */ int sc_fpformat; int sc_ownedfp; diff --git a/sys/i386/include/ucontext.h b/sys/i386/include/ucontext.h index d8657d3..d9f8344 100644 --- a/sys/i386/include/ucontext.h +++ b/sys/i386/include/ucontext.h @@ -33,9 +33,9 @@ =20 typedef struct __mcontext { /* - * The first 20 fields must match the definition of - * sigcontext. So that we can support sigcontext - * and ucontext_t at the same time. + * The definition of mcontext_t shall match the layout of + * struct sigcontext after the sc_mask member. So that we can + * support sigcontext and ucontext_t at the same time. */ __register_t mc_onstack; /* XXX - sigcontext compat. */ __register_t mc_gs; /* machine state (struct trapframe) */ --mE6eiWAW7MIqbbCC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEARECAAYFAk5fcfgACgkQC3+MBN1Mb4hutwCgvjNunjTUKcfZ1058T52wPFU4 8UMAoKWdfaUNnVeMpT9o1I5sHCHyn2Dc =XXqF -----END PGP SIGNATURE----- --mE6eiWAW7MIqbbCC-- From owner-freebsd-bugs@FreeBSD.ORG Thu Sep 1 12:00:24 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A3C31065696 for ; Thu, 1 Sep 2011 12:00:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 783EE8FC18 for ; Thu, 1 Sep 2011 12:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p81C0Opf049236 for ; Thu, 1 Sep 2011 12:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p81C0OqX049235; Thu, 1 Sep 2011 12:00:24 GMT (envelope-from gnats) Date: Thu, 1 Sep 2011 12:00:24 GMT Message-Id: <201109011200.p81C0OqX049235@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Kostik Belousov Cc: Subject: Re: misc/159654: 46 kernel headers use register_t but don't #include X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kostik Belousov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2011 12:00:24 -0000 The following reply was made to PR misc/159654; it has been noted by GNATS. From: Kostik Belousov To: Bruce Evans Cc: Robert Millan , freebsd-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: misc/159654: 46 kernel headers use register_t but don't #include Date: Thu, 1 Sep 2011 14:52:25 +0300 --mE6eiWAW7MIqbbCC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 01, 2011 at 08:57:07PM +1000, Bruce Evans wrote: > On Sun, 28 Aug 2011, Kostik Belousov wrote: > kib is working on AVX support on amd64 and i386. AVX needs changing > the mcontext layout yet again, although we thought we left space > for expansion of SSE structures. AVX has a much larger context, > so optimizing away copying of it is a more important unpessimization.) I intend to work, but cannot buy Intel motherboard for LGA 1155 with the serial port. >=20 > >I tried to do some minimal comment cleanup. > > > >diff --git a/sys/amd64/include/signal.h b/sys/amd64/include/signal.h > >index 228e2d9..9e9c9ad 100644 > >--- a/sys/amd64/include/signal.h > >+++ b/sys/amd64/include/signal.h > >@@ -57,8 +57,8 @@ typedef long sig_atomic_t; > > * a non-standard exit is performed. > > */ > >/* > >- * The sequence of the fields/registers in struct sigcontext should mat= ch > >- * those in mcontext_t. > >+ * The sequence of the fields/registers after sc_mask in struct > >+ * sigcontext should match those in mcontext_t and struct trapframe. > > */ >=20 > I could clean this up a bit more if you want. Mainly English fixes. > Some of the "should"s should be "must"s since not matching is not an > option... >=20 > >struct sigcontext { > > struct __sigset sc_mask; /* signal mask to restore */ > >@@ -93,8 +93,8 @@ struct sigcontext { > > long sc_ss; > > long sc_len; /* sizeof(mcontext_t) */ > > /* > >- * XXX - See and for > >- * the following fields. > >+ * See and for > >+ * the following fields. > > */ >=20 > The formatting could be further improved by joining the lines. >=20 > >diff --git a/sys/amd64/include/ucontext.h b/sys/amd64/include/ucontext.h > >index c5bbd65..0341527 100644 > >--- a/sys/amd64/include/ucontext.h > >+++ b/sys/amd64/include/ucontext.h > >@@ -41,12 +41,12 @@ > > > >typedef struct __mcontext { > > /* > >- * The first 24 fields must match the definition of > >- * sigcontext. So that we can support sigcontext > >- * and ucontext_t at the same time. > >+ * The definition of mcontext_t shall match the layout of > >+ * struct sigcontext after the sc_mask member. So that we can > >+ * support sigcontext and ucontext_t at the same time. > > */ >=20 > I prefer "must" to "shall". It sounds stricter to me, while "shall" soun= ds > too formal and/or Englishman-English. I like the rules about must/may/ > should used in network RFCs. >=20 > The second sentence is still non-grammatical here. It should be a > clause in the first sentence (just change ". So" to ", so"), or start > with something like "This is so". >=20 > There are even larger bugs in the organization of the comments in > i386/include/signal.h: >=20 > % /* > % * Only the kernel should need these old type definitions. > % */ >=20 > This comment only applies to osigcontext, but is outside the scope > of the ifdef for that. It applies to 1 declararion but claims to > appy to (multiple) definitions (sic). If it applied to multiple > ones, then it would be normal to separate it from the first one > with a blank line, but this is not done. So the scope of this > comment is hard to see. >=20 > % #if defined(_KERNEL) && defined(COMPAT_43) > % /* > % * Information pushed on stack when a signal is delivered. > % * This is used by the kernel to restore state following > % * execution of the signal handler. It is also made available > % * to the handler to allow it to restore state properly if > % * a non-standard exit is performed. > % */ > % struct osigcontext { >=20 > All of this comment is the same as in 4.4BSD-Lite. It now only > applies to osigcontext so its placement within the ifdef is > almost correct, but this leaves no similar comment about ordinary > sigcontext. On 386, I moved the 'Only the kernel should need' near the osigcontext declaration. On amd64, the sentence is removed at all, there is currently no osigcontext for 64bit. >=20 > % ... > %=20 > % /* > % * The sequence of the fields/registers in struct sigcontext should mat= ch > % * those in mcontext_t. > % */ > % struct sigcontext { >=20 > This comment is correct, but doesn't say anything about what sigcontext > actually is. It is of course just an alias for parts of mcontext, and > may be used by userland, but isn't used directly by the kernel. This > contrasts with osigcontext, which is used by both the kernel and > userland if userland requests an "old" signal context. The 'Information pushed on stack' is now the header for the whole file. diff --git a/sys/amd64/include/signal.h b/sys/amd64/include/signal.h index 228e2d9..0374339 100644 --- a/sys/amd64/include/signal.h +++ b/sys/amd64/include/signal.h @@ -47,18 +47,14 @@ typedef long sig_atomic_t; #include /* codes for SIGILL, SIGFPE */ =20 /* - * Only the kernel should need these old type definitions. - */ -/* * Information pushed on stack when a signal is delivered. * This is used by the kernel to restore state following * execution of the signal handler. It is also made available * to the handler to allow it to restore state properly if * a non-standard exit is performed. - */ -/* - * The sequence of the fields/registers in struct sigcontext should match - * those in mcontext_t. + * + * The sequence of the fields/registers after sc_mask in struct + * sigcontext must match those in mcontext_t and struct trapframe. */ struct sigcontext { struct __sigset sc_mask; /* signal mask to restore */ @@ -93,8 +89,8 @@ struct sigcontext { long sc_ss; long sc_len; /* sizeof(mcontext_t) */ /* - * XXX - See and for - * the following fields. + * See and for the following + * fields. */ long sc_fpformat; long sc_ownedfp; diff --git a/sys/amd64/include/ucontext.h b/sys/amd64/include/ucontext.h index c5bbd65..75b7bd2 100644 --- a/sys/amd64/include/ucontext.h +++ b/sys/amd64/include/ucontext.h @@ -41,12 +41,13 @@ =20 typedef struct __mcontext { /* - * The first 24 fields must match the definition of - * sigcontext. So that we can support sigcontext - * and ucontext_t at the same time. + * The definition of mcontext_t must match the layout of + * struct sigcontext after the sc_mask member. This is so + * that we can support sigcontext and ucontext_t at the same + * time. */ - __register_t mc_onstack; /* XXX - sigcontext compat. */ - __register_t mc_rdi; /* machine state (struct trapframe) */ + __register_t mc_onstack; /* XXX - sigcontext compat. */ + __register_t mc_rdi; /* machine state (struct trapframe) */ __register_t mc_rsi; __register_t mc_rdx; __register_t mc_rcx; diff --git a/sys/i386/include/signal.h b/sys/i386/include/signal.h index 7a5f876..c636c2c 100644 --- a/sys/i386/include/signal.h +++ b/sys/i386/include/signal.h @@ -46,16 +46,17 @@ typedef int sig_atomic_t; #include /* codes for SIGILL, SIGFPE */ =20 /* - * Only the kernel should need these old type definitions. - */ -#if defined(_KERNEL) && defined(COMPAT_43) -/* * Information pushed on stack when a signal is delivered. * This is used by the kernel to restore state following * execution of the signal handler. It is also made available * to the handler to allow it to restore state properly if * a non-standard exit is performed. */ + +#if defined(_KERNEL) && defined(COMPAT_43) +/* + * Only the kernel should need these old type definitions. + */ struct osigcontext { int sc_onstack; /* sigstack state to restore */ osigset_t sc_mask; /* signal mask to restore */ @@ -83,7 +84,7 @@ struct osigcontext { =20 /* * The sequence of the fields/registers in struct sigcontext should match - * those in mcontext_t. + * those in mcontext_t and struct trapframe. */ struct sigcontext { struct __sigset sc_mask; /* signal mask to restore */ @@ -109,8 +110,8 @@ struct sigcontext { int sc_ss; int sc_len; /* sizeof(mcontext_t) */ /* - * XXX - See and for - * the following fields. + * See and for + * the following fields. */ int sc_fpformat; int sc_ownedfp; diff --git a/sys/i386/include/ucontext.h b/sys/i386/include/ucontext.h index d8657d3..d9f8344 100644 --- a/sys/i386/include/ucontext.h +++ b/sys/i386/include/ucontext.h @@ -33,9 +33,9 @@ =20 typedef struct __mcontext { /* - * The first 20 fields must match the definition of - * sigcontext. So that we can support sigcontext - * and ucontext_t at the same time. + * The definition of mcontext_t shall match the layout of + * struct sigcontext after the sc_mask member. So that we can + * support sigcontext and ucontext_t at the same time. */ __register_t mc_onstack; /* XXX - sigcontext compat. */ __register_t mc_gs; /* machine state (struct trapframe) */ --mE6eiWAW7MIqbbCC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEARECAAYFAk5fcfgACgkQC3+MBN1Mb4hutwCgvjNunjTUKcfZ1058T52wPFU4 8UMAoKWdfaUNnVeMpT9o1I5sHCHyn2Dc =XXqF -----END PGP SIGNATURE----- --mE6eiWAW7MIqbbCC-- From owner-freebsd-bugs@FreeBSD.ORG Thu Sep 1 17:20:08 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF5241065670 for ; Thu, 1 Sep 2011 17:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 94C868FC0C for ; Thu, 1 Sep 2011 17:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p81HK85M045779 for ; Thu, 1 Sep 2011 17:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p81HK8ti045778; Thu, 1 Sep 2011 17:20:08 GMT (envelope-from gnats) Resent-Date: Thu, 1 Sep 2011 17:20:08 GMT Resent-Message-Id: <201109011720.p81HK8ti045778@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vitalic Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD4D6106566B for ; Thu, 1 Sep 2011 17:14:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9DDED8FC0A for ; Thu, 1 Sep 2011 17:14:54 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p81HEsHM084323 for ; Thu, 1 Sep 2011 17:14:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p81HEsIo084322; Thu, 1 Sep 2011 17:14:54 GMT (envelope-from nobody) Message-Id: <201109011714.p81HEsIo084322@red.freebsd.org> Date: Thu, 1 Sep 2011 17:14:54 GMT From: Vitalic To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/160370: Incorrect pfctl check of pf.conf X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2011 17:20:08 -0000 >Number: 160370 >Category: misc >Synopsis: Incorrect pfctl check of pf.conf >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 Sep 01 17:20:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Vitalic >Release: FreeBSD 9.0-BETA1 #0 >Organization: >Environment: xxxxxxxx# uname -a FreeBSD xxxxxxxxx.xxxxxx.org 9.0-BETA1 FreeBSD 9.0-BETA1 #0: Thu Aug 25 20:41:58 EEST 2011 wishmaster@xxxxxxxx.xxxxxxx.org:/usr/obj/usr/src/sys/MY i386 >Description: I am using FreeBSD as firewall and router for LAN. Inet works via NAT. Here is the small part (macros) of my pf.conf: ext_if=tun0 int_if="bridge0" ...... and so on ...... With pfctl -n -f /etc/pf.conf no errors occur (but exactly should). pfctl -sr and pfctl -sn shows loaded nat and firewall rules, but Inet (via NAT) no working for LAN. When I corrected my mistake and add quotes to ext_if="tun0" all works fine. >How-To-Repeat: Miss quotes in macros definitions. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Sep 1 17:24:47 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0672A106566C; Thu, 1 Sep 2011 17:24:47 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D2F898FC16; Thu, 1 Sep 2011 17:24:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p81HOkgU054096; Thu, 1 Sep 2011 17:24:46 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p81HOk8h054092; Thu, 1 Sep 2011 17:24:46 GMT (envelope-from linimon) Date: Thu, 1 Sep 2011 17:24:46 GMT Message-Id: <201109011724.p81HOk8h054092@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-pf@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/160370: [pf] Incorrect pfctl check of pf.conf X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2011 17:24:47 -0000 Old Synopsis: Incorrect pfctl check of pf.conf New Synopsis: [pf] Incorrect pfctl check of pf.conf Responsible-Changed-From-To: freebsd-bugs->freebsd-pf Responsible-Changed-By: linimon Responsible-Changed-When: Thu Sep 1 17:23:59 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=160370 From owner-freebsd-bugs@FreeBSD.ORG Thu Sep 1 18:20:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B95C1065679 for ; Thu, 1 Sep 2011 18:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5FF7D8FC12 for ; Thu, 1 Sep 2011 18:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p81IK9Ip001452 for ; Thu, 1 Sep 2011 18:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p81IK9XZ001451; Thu, 1 Sep 2011 18:20:09 GMT (envelope-from gnats) Resent-Date: Thu, 1 Sep 2011 18:20:09 GMT Resent-Message-Id: <201109011820.p81IK9XZ001451@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Nick Hibma Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87E45106564A for ; Thu, 1 Sep 2011 18:13:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 779278FC0A for ; Thu, 1 Sep 2011 18:13:05 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p81ID5mr077790 for ; Thu, 1 Sep 2011 18:13:05 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p81ID5R7077786; Thu, 1 Sep 2011 18:13:05 GMT (envelope-from nobody) Message-Id: <201109011813.p81ID5R7077786@red.freebsd.org> Date: Thu, 1 Sep 2011 18:13:05 GMT From: Nick Hibma To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: conf/160373: pccard_ether does not take settings in /etc/rc.conf.d/network into account X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2011 18:20:09 -0000 >Number: 160373 >Category: conf >Synopsis: pccard_ether does not take settings in /etc/rc.conf.d/network into account >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 Sep 01 18:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Nick Hibma >Release: FreeBSD 8-STABLE (old) >Organization: AnyWi Technologies >Environment: FreeBSD uitsmijter.van-laarhoven.org 8.2-STABLE FreeBSD 8.2-STABLE #13: Mon Mar 28 10:06:02 CEST 2011 nick@uitsmijter.van-laarhoven.org:/usr/src/sys/i386/compile/UITSMIJTER i386 >Description: In our configuration system we use /etc/rc.conf.d/ files extensively (instead of sticking everything into /etc/rc.conf and rc.conf.local). But pccard_ether does not take /etc/rc.conf.d/network into account when deciding whether an interface is NOAUTO or not. >How-To-Repeat: Define a wlan interface in /etc/rc.conf.d/network wlans_ath0="wlan0" ifconfig_wlan0="DHCP NOAUTO" Execute /etc/rc.conf.d/pccard_ether wlan0 restart and notice that it will configure the interface. Add . /etc/rc.conf.d/network to /etc/rc.conf.d/pccard_ether and execute the command above again. Notice that the interface is no longer configured. >Fix: --- pccard_ether.old 2011-09-01 18:10:43.000000000 +0000 +++ pccard_ether 2011-09-01 17:20:26.000000000 +0000 @@ -123,6 +123,7 @@ args=$* fi -load_rc_config pccard_ether +load_rc_config $name +load_rc_config network run_rc_command $args >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Sep 1 22:19:02 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E86E510657EE; Thu, 1 Sep 2011 22:19:02 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C09ED8FC1D; Thu, 1 Sep 2011 22:19:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p81MJ2US021384; Thu, 1 Sep 2011 22:19:02 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p81MJ25h021379; Thu, 1 Sep 2011 22:19:02 GMT (envelope-from eadler) Date: Thu, 1 Sep 2011 22:19:02 GMT Message-Id: <201109012219.p81MJ25h021379@freefall.freebsd.org> To: spock@techfour.net, eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: kern/17425: [ppbus] [patch] fix two small printing errors in ppbus X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2011 22:19:03 -0000 Synopsis: [ppbus] [patch] fix two small printing errors in ppbus State-Changed-From-To: open->feedback State-Changed-By: eadler State-Changed-When: Thu Sep 1 22:19:02 UTC 2011 State-Changed-Why: Hunk #2 of this patch no longer applies, is this still a bug and if so can you please provide an updated patch? http://www.freebsd.org/cgi/query-pr.cgi?pr=17425 From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 08:50:05 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EBA17106567E for ; Fri, 2 Sep 2011 08:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BD5DB8FC2B for ; Fri, 2 Sep 2011 08:50:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p828o46v038475 for ; Fri, 2 Sep 2011 08:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p828o4cp038474; Fri, 2 Sep 2011 08:50:04 GMT (envelope-from gnats) Resent-Date: Fri, 2 Sep 2011 08:50:04 GMT Resent-Message-Id: <201109020850.p828o4cp038474@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, h h Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8493D106566B for ; Fri, 2 Sep 2011 08:44:27 +0000 (UTC) (envelope-from aakuusta@gmail.com) Received: from mail-pz0-f45.google.com (mail-pz0-f45.google.com [209.85.210.45]) by mx1.freebsd.org (Postfix) with ESMTP id 5F9738FC15 for ; Fri, 2 Sep 2011 08:44:27 +0000 (UTC) Received: by pzk33 with SMTP id 33so8092316pzk.18 for ; Fri, 02 Sep 2011 01:44:27 -0700 (PDT) Received: by 10.68.71.167 with SMTP id w7mr1594665pbu.386.1314951661421; Fri, 02 Sep 2011 01:21:01 -0700 (PDT) Received: from localhost (tor-exit-router35-readme.formlessnetworking.net. [199.48.147.35]) by mx.google.com with ESMTPS id t7sm8587787pbn.11.2011.09.02.01.20.58 (version=SSLv3 cipher=OTHER); Fri, 02 Sep 2011 01:21:00 -0700 (PDT) Message-Id: <86liu7jqxm.fsf@gmail.com> Date: Fri, 02 Sep 2011 12:20:53 +0400 From: h h To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: bin/160386: [patch] invert Z axis movement via moused(8) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 08:50:05 -0000 >Number: 160386 >Category: bin >Synopsis: [patch] invert Z axis movement via moused(8) >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 Sep 02 08:50:04 UTC 2011 >Closed-Date: >Last-Modified: >Originator: h h >Release: FreeBSD 9.0-BETA2 amd64 >Organization: >Environment: moused_flags="-a -1 -z -z" # invert X,Y,Z axes >Description: Provide a more predictable way to invert Z axis. cf. http://forums.freebsd.org/showthread.php?t=2377 >How-To-Repeat: >Fix: --- a.diff begins here --- Index: usr.sbin/moused/moused.8 =================================================================== --- usr.sbin/moused/moused.8 (revision 225315) +++ usr.sbin/moused/moused.8 (working copy) @@ -491,6 +491,8 @@ maybe: .It Ar x .It Ar y X or Y axis movement will be reported when the Z axis movement is detected. +.It Ar -z +Invert Z axis movement. .It Ar N Report down events for the virtual buttons .Ar N Index: usr.sbin/moused/moused.c =================================================================== --- usr.sbin/moused/moused.c (revision 225315) +++ usr.sbin/moused/moused.c (working copy) @@ -88,6 +88,7 @@ __FBSDID("$FreeBSD$"); #define MOUSE_XAXIS (-1) #define MOUSE_YAXIS (-2) +#define MOUSE_IZAXIS (-3) /* Logitech PS2++ protocol */ #define MOUSE_PS2PLUS_CHECKBITS(b) \ @@ -705,6 +706,8 @@ main(int argc, char *argv[]) rodent.zmap[0] = MOUSE_XAXIS; else if (strcmp(optarg, "y") == 0) rodent.zmap[0] = MOUSE_YAXIS; + else if (strcmp(optarg, "-z") == 0) + rodent.zmap[0] = MOUSE_IZAXIS; else { i = atoi(optarg); /* @@ -2522,6 +2525,10 @@ r_map(mousestatus_t *act1, mousestatus_t *act2) act2->dz = 0; } break; + case MOUSE_IZAXIS: + if (act1->dz != 0) + act2->dz = -act1->dz; + break; default: /* buttons */ pbuttons &= ~(rodent.zmap[0] | rodent.zmap[1] | rodent.zmap[2] | rodent.zmap[3]); --- a.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 11:10:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0BDE106566C for ; Fri, 2 Sep 2011 11:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 955008FC19 for ; Fri, 2 Sep 2011 11:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82BABeR067428 for ; Fri, 2 Sep 2011 11:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82BABj6067427; Fri, 2 Sep 2011 11:10:11 GMT (envelope-from gnats) Resent-Date: Fri, 2 Sep 2011 11:10:11 GMT Resent-Message-Id: <201109021110.p82BABj6067427@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Edgar Martinez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36E6C106566B for ; Fri, 2 Sep 2011 11:09:59 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2774A8FC08 for ; Fri, 2 Sep 2011 11:09:59 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p82B9wus096533 for ; Fri, 2 Sep 2011 11:09:58 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p82B9wR5096532; Fri, 2 Sep 2011 11:09:58 GMT (envelope-from nobody) Message-Id: <201109021109.p82B9wR5096532@red.freebsd.org> Date: Fri, 2 Sep 2011 11:09:58 GMT From: Edgar Martinez To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/160391: Panic in mesh mode X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 11:10:11 -0000 >Number: 160391 >Category: kern >Synopsis: Panic in mesh 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 Sep 02 11:10:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Edgar Martinez >Release: 9.0-BETA2 >Organization: >Environment: FreeBSD chuckles.local 9.0-BETA2 FreeBSD 9.0-BETA2 #0: Mon Aug 29 09:38:20 PDT 2011 root@chuckles.local:/usr/obj/usr/src/sys/GENERIC i386 >Description: Kernel Panic when in mesh mode >How-To-Repeat: create two mesh nodes, pass traffic >Fix: *** ieee80211_mesh.c Tue May 3 19:23:59 2011 --- ieee80211_mesh.c.mod Fri Sep 2 04:05:20 2011 *************** *** 1460,1470 **** meshid = frm; break; } frm += frm[1] + 2; } ! IEEE80211_VERIFY_ELEMENT(ssid, IEEE80211_NWID_LEN, return); IEEE80211_VERIFY_ELEMENT(rates, IEEE80211_RATE_MAXSIZE, return); if (xrates != NULL) IEEE80211_VERIFY_ELEMENT(xrates, IEEE80211_RATE_MAXSIZE - rates[1], return); if (meshid != NULL) { --- 1460,1470 ---- meshid = frm; break; } frm += frm[1] + 2; } ! IEEE80211_VERIFY_ELEMENT(meshid, IEEE80211_NWID_LEN, return); IEEE80211_VERIFY_ELEMENT(rates, IEEE80211_RATE_MAXSIZE, return); if (xrates != NULL) IEEE80211_VERIFY_ELEMENT(xrates, IEEE80211_RATE_MAXSIZE - rates[1], return); if (meshid != NULL) { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 12:00:30 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EAFDD10656A9 for ; Fri, 2 Sep 2011 12:00:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 319E28FC1B for ; Fri, 2 Sep 2011 12:00:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82C0OuY016255 for ; Fri, 2 Sep 2011 12:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82C0OQ3016254; Fri, 2 Sep 2011 12:00:24 GMT (envelope-from gnats) Resent-Date: Fri, 2 Sep 2011 12:00:24 GMT Resent-Message-Id: <201109021200.p82C0OQ3016254@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vadim Denisov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D01A3106564A for ; Fri, 2 Sep 2011 11:58:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id C087C8FC0A for ; Fri, 2 Sep 2011 11:58:37 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p82Bwb0o084609 for ; Fri, 2 Sep 2011 11:58:37 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p82BwaCl084608; Fri, 2 Sep 2011 11:58:36 GMT (envelope-from nobody) Message-Id: <201109021158.p82BwaCl084608@red.freebsd.org> Date: Fri, 2 Sep 2011 11:58:36 GMT From: Vadim Denisov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/160392: double fault on configuring for php5-filter-5.3.8 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 12:00:31 -0000 >Number: 160392 >Category: misc >Synopsis: double fault on configuring for php5-filter-5.3.8 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 02 12:00:24 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Vadim Denisov >Release: FreeBSD 9.0-Beta2 i386 >Organization: MUPP Saratovodokanal >Environment: FreeBSD srv02 9.0-BETA2 FreeBSD 9.0-BETA2 #0: Thu Aug 31 15:13:07 UTC 2011 denisov@:/usr/obj/usr/src/sys/SRV02 i386 >Description: I get message on console: Fatal double fault: eip - 0xc0ab55e8 esp = 0xc7322000 ebp = 0xc732bac cpuid = 1; apic id = 01 panic: double fault cpuid = 1 KDB: enter: panic [thread pid 11 tid 100004] Stopped at kdb_aenter+0x3a: mov [$0, kdb_why] What additional info I must attach? Now this machine is waiting for input for 'db>' >How-To-Repeat: I'm don't restart paniced machine/ So I'm not sure that can repeat this panic. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 17:00:28 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EF8C1065677 for ; Fri, 2 Sep 2011 17:00:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7A0328FC14 for ; Fri, 2 Sep 2011 17:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82H0Osm091721 for ; Fri, 2 Sep 2011 17:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82H0OkO091720; Fri, 2 Sep 2011 17:00:24 GMT (envelope-from gnats) Resent-Date: Fri, 2 Sep 2011 17:00:24 GMT Resent-Message-Id: <201109021700.p82H0OkO091720@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Nikolai Lifanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 839A51065673 for ; Fri, 2 Sep 2011 16:52:20 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 734C78FC15 for ; Fri, 2 Sep 2011 16:52:20 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p82GqKij058886 for ; Fri, 2 Sep 2011 16:52:20 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p82GqKth058885; Fri, 2 Sep 2011 16:52:20 GMT (envelope-from nobody) Message-Id: <201109021652.p82GqKth058885@red.freebsd.org> Date: Fri, 2 Sep 2011 16:52:20 GMT From: Nikolai Lifanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/160400: zfs rename dumps core X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 17:00:28 -0000 >Number: 160400 >Category: kern >Synopsis: zfs rename dumps core >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 Sep 02 17:00:24 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Nikolai Lifanov >Release: 9.0 beta 2 >Organization: >Environment: FreeBSD lifanovbsd2 9.0-BETA2 FreeBSD 9.0-BETA2 #0: Fri Sep 2 03:47:59 EDT 2011 root@lifanovbsd2:/usr/obj/usr/src/sys/LIFANOV_FAST amd64 >Description: After creating a full boot environment and trying to boot into it, renaming the dataset containing the environment fails with a coredump. [CODE] lifanovbsd2# zfs list NAME USED AVAIL REFER MOUNTPOINT rpool 7.22G 891G 393M none rpool/ROOT 3.84G 891G 31K none rpool/ROOT/be-base 3.84G 891G 399M legacy rpool/ROOT/be-base/tmp 76K 891G 44K /tmp rpool/ROOT/be-base/usr 3.37G 891G 2.17G /usr rpool/ROOT/be-base/usr/home 88K 891G 67K /usr/home rpool/ROOT/be-base/usr/jail 31K 891G 31K /usr/jail rpool/ROOT/be-base/usr/ports 539M 891G 426M /usr/ports rpool/ROOT/be-base/usr/ports/distfiles 113M 891G 113M /usr/ports/distfiles rpool/ROOT/be-base/usr/ports/packages 31K 891G 31K /usr/ports/packages rpool/ROOT/be-base/usr/src 684M 891G 684M /usr/src rpool/ROOT/be-base/var 84.0M 891G 136K /var rpool/ROOT/be-base/var/crash 31.5K 891G 31.5K /var/crash rpool/ROOT/be-base/var/db 82.9M 891G 80.3M /var/db rpool/ROOT/be-base/var/db/pkg 2.57M 891G 2.57M /var/db/pkg rpool/ROOT/be-base/var/empty 31K 891G 31K /var/empty rpool/ROOT/be-base/var/log 629K 891G 397K /var/log rpool/ROOT/be-base/var/mail 64K 891G 38K /var/mail rpool/ROOT/be-base/var/run 106K 891G 61.5K /var/run rpool/ROOT/be-base/var/tmp 52K 891G 32K /var/tmp rpool/tmp 45K 891G 44K none rpool/usr 2.85G 891G 2.17G none rpool/usr/home 69K 891G 68K none rpool/usr/jail 31K 891G 31K none rpool/usr/ports 345M 891G 232M none rpool/usr/ports/distfiles 113M 891G 113M none rpool/usr/ports/packages 32K 891G 31K none rpool/usr/src 348M 891G 348M none rpool/var 81.9M 891G 133K none rpool/var/crash 32.5K 891G 31.5K none rpool/var/db 81.4M 891G 80.5M none rpool/var/db/pkg 890K 891G 889K none rpool/var/empty 31K 891G 31K none rpool/var/log 146K 891G 112K none rpool/var/mail 33.5K 891G 32.5K none rpool/var/run 83.5K 891G 61.5K none rpool/var/tmp 33K 891G 32K none lifanovbsd2# zfs rename rpool/ROOT/be-base rpool/ROOT/be-current Assertion failed: (!clp->cl_alldependents), file /usr/src/cddl/lib/libzfs/../../../cddl/contrib/opensolaris/lib/libzfs/common/libzfs_changelist.c, line 470. Abort (core dumped) lifanovbsd2# [/CODE] >How-To-Repeat: Do roughly the following: [CODE] zfs snapshot -r rpool@snap0 zfs create -o dedup=on rpool/ROOT zfs send rpool@snap0 | zfs recv rpool/ROOT/be-base zfs destroy rpool/ROOT/be-base@snap0 for i in `zfs list -t snapshot | grep snap0 | cut -d@ -f1 | cut -c6-`; do (zfs send rpool${i}@snap0 | zfs recv rpool/ROOT/be-base${i}); done for i in `mount | grep -v /mnt/ | grep rpool/ | cut -d' ' -f1 | cut -c6-`; do zfs set mountpoint=none rpool${i}; zfs set mountpoint=${i} rpool/ROOT/be-base${i}; done #Check your mountpoints and fiddle to get everything right. #Running previous command twice to start off might help. #'zfs list' can lie zfs set freebsd:boot-environment=1 rpool/ROOT/be-base zfs set mountpoint=/mnt rpool/ROOT/be-base sed -i 's/zfs:rpool/zfs:rpool\/ROOT\/be-base/g' /rpool/ROOT/be-base/boot/loader.conf zfs set mountpoint=legacy rpool/ROOT/be-base zpool set bootfs=rpool/ROOT/be-base rpool reboot [/CODE] After this, do a 'zfs rename' on be-base. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 18:50:07 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F036A106564A for ; Fri, 2 Sep 2011 18:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C6AF08FC13 for ; Fri, 2 Sep 2011 18:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82Io7LZ093007 for ; Fri, 2 Sep 2011 18:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82Io7Pb093006; Fri, 2 Sep 2011 18:50:07 GMT (envelope-from gnats) Resent-Date: Fri, 2 Sep 2011 18:50:07 GMT Resent-Message-Id: <201109021850.p82Io7Pb093006@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kilian Klimek Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F6BD106567C for ; Fri, 2 Sep 2011 18:45:01 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 6A0FA8FC13 for ; Fri, 2 Sep 2011 18:45:01 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p82Ij1pV070853 for ; Fri, 2 Sep 2011 18:45:01 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p82Ij0jP070852; Fri, 2 Sep 2011 18:45:00 GMT (envelope-from nobody) Message-Id: <201109021845.p82Ij0jP070852@red.freebsd.org> Date: Fri, 2 Sep 2011 18:45:00 GMT From: Kilian Klimek To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/160403: concurrently running rc-scripts during boot X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 18:50:08 -0000 >Number: 160403 >Category: bin >Synopsis: concurrently running rc-scripts during boot >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 Sep 02 18:50:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kilian Klimek >Release: >Organization: >Environment: >Description: Attached in a patch against current that modifies rcorder to allow it to run rc-scripts concurrently during boot. The purpose is, of course, to speedup the boot process. The speedup can be quite substantial. I measured a speedup of up to 30% (some numbers to support this can be found at https://github.com/kil/rcorder in the README). A few notes about the patch: - The modifications in /etc/rc.d/ are required to make sure cleartmp doesn't run at the same time as the scripts modified (they create temporary files in /tmp). - To ensure compatibility, the modifications to rcorder don't affect the default invocation of it in /etc/rc. The ordering of the rc-scripts that is generated is identical to the ordering that is generated now. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: etc/rc =================================================================== --- etc/rc (revision 225227) +++ etc/rc (working copy) @@ -82,17 +82,21 @@ # Do a first pass to get everything up to $early_late_divider so that # we can do a second pass that includes $local_startup directories # -files=`rcorder ${skip} /etc/rc.d/* 2>/dev/null` +if checkyesno rc_concurrent; then + rcorder -r ${skip} -a ${_boot} -l ${early_late_divider} /etc/rc.d/* +else + files=`rcorder ${skip} /etc/rc.d/* 2>/dev/null` -_rc_elem_done=' ' -for _rc_elem in ${files}; do - run_rc_script ${_rc_elem} ${_boot} - _rc_elem_done="${_rc_elem_done}${_rc_elem} " + _rc_elem_done=' ' + for _rc_elem in ${files}; do + run_rc_script ${_rc_elem} ${_boot} + _rc_elem_done="${_rc_elem_done}${_rc_elem} " - case "$_rc_elem" in - */${early_late_divider}) break ;; - esac -done + case "$_rc_elem" in + */${early_late_divider}) break ;; + esac + done +fi unset files local_rc @@ -104,15 +108,20 @@ *) find_local_scripts_new ;; esac -files=`rcorder ${skip} /etc/rc.d/* ${local_rc} 2>/dev/null` -for _rc_elem in ${files}; do - case "$_rc_elem_done" in - *" $_rc_elem "*) continue ;; - esac +if checkyesno rc_concurrent; then + rcorder -r ${skip} -a ${_boot} -f ${early_late_divider} /etc/rc.d/* \ + ${local_rc} + echo "rc_concurrent finished" +else + files=`rcorder ${skip} /etc/rc.d/* ${local_rc} 2>/dev/null` + for _rc_elem in ${files}; do + case "$_rc_elem_done" in + *" $_rc_elem "*) continue ;; + esac - run_rc_script ${_rc_elem} ${_boot} -done - + run_rc_script ${_rc_elem} ${_boot} + done +fi echo '' date exit 0 Index: etc/Makefile =================================================================== --- etc/Makefile (revision 225227) +++ etc/Makefile (working copy) @@ -102,7 +102,7 @@ .endif # -rwxr-xr-x root:wheel, for the new cron root:wheel -BIN2= netstart pccard_ether rc.suspend rc.resume +BIN2= netstart pccard_ether rc.suspend rc.resume rc.trampoline MTREE= BSD.include.dist BSD.root.dist BSD.usr.dist BSD.var.dist .if ${MK_SENDMAIL} != "no" Index: etc/rc.d/abi =================================================================== --- etc/rc.d/abi (revision 225227) +++ etc/rc.d/abi (working copy) @@ -6,6 +6,7 @@ # PROVIDE: abi # REQUIRE: archdep # KEYWORD: nojail +# BEFORE: cleartmp . /etc/rc.subr Index: etc/rc.d/jail =================================================================== --- etc/rc.d/jail (revision 225227) +++ etc/rc.d/jail (working copy) @@ -4,7 +4,7 @@ # # PROVIDE: jail -# REQUIRE: LOGIN cleanvar +# REQUIRE: LOGIN cleanvar cleartmp # BEFORE: securelevel # KEYWORD: nojail shutdown Index: etc/rc.d/motd =================================================================== --- etc/rc.d/motd (revision 225227) +++ etc/rc.d/motd (working copy) @@ -5,7 +5,7 @@ # PROVIDE: motd # REQUIRE: mountcritremote -# BEFORE: LOGIN +# BEFORE: LOGIN cleartmp . /etc/rc.subr Index: etc/defaults/rc.conf =================================================================== --- etc/defaults/rc.conf (revision 225227) +++ etc/defaults/rc.conf (working copy) @@ -25,6 +25,7 @@ rc_info="NO" # Enables display of informational messages at boot. rc_startmsgs="YES" # Show "Starting foo:" messages at boot rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown +rc_concurrent="NO" # start rc scripts concurrently. early_late_divider="FILESYSTEMS" # Script that separates early/late # stages of the boot process. Make sure you know # the ramifications if you change this. Index: etc/rc.trampoline =================================================================== --- etc/rc.trampoline (revision 0) +++ etc/rc.trampoline (revision 0) @@ -0,0 +1,11 @@ +#!/bin/sh +. /etc/rc.subr +load_rc_config 'XXX' + +if test -n "$_RCORDER_RUN_DEBUG"; then + echo '_RCORDER_RUN_DEBUG' $1 $2 + sleep 0.02 + exit 0 +fi + +run_rc_script $1 $2 Property changes on: etc/rc.trampoline ___________________________________________________________________ Added: svn:executable + * Index: sbin/rcorder/rcorder.c =================================================================== --- sbin/rcorder/rcorder.c (revision 225227) +++ sbin/rcorder/rcorder.c (working copy) @@ -3,6 +3,7 @@ #endif /* + * Copyright (c) 2011 Kilian Klimek * Copyright (c) 1998, 1999 Matthew R. Green * All rights reserved. * Copyright (c) 1998 @@ -46,6 +47,12 @@ #include #include #include +#include +#include +#include +#include +#include +#include #include "ealloc.h" #include "sprite.h" @@ -76,6 +83,14 @@ int exit_code; int file_count; char **file_list; +int kq; +int childs = 0; +char d_script_arg[] = "faststart"; +char d_trampoline[] = "/etc/rc.trampoline"; +char *trampoline = d_trampoline; +char *script_arg = d_script_arg; +char *rc_first = NULL; +char *rc_last = NULL; typedef int bool; #define TRUE 1 @@ -83,6 +98,9 @@ typedef bool flag; #define SET TRUE #define RESET FALSE +#define RUNNING 2 +#define FIRST 3 +#define LAST 4 Hash_Table provide_hash_s, *provide_hash; @@ -90,6 +108,7 @@ typedef struct filenode filenode; typedef struct f_provnode f_provnode; typedef struct f_reqnode f_reqnode; +typedef struct f_neednode f_neednode; typedef struct strnodelist strnodelist; struct provnode { @@ -109,6 +128,11 @@ f_reqnode *next; }; +struct f_neednode { + filenode *entry; + f_neednode *next; +}; + struct strnodelist { filenode *node; strnodelist *next; @@ -122,6 +146,7 @@ f_reqnode *req_list; f_provnode *prov_list; strnodelist *keyword_list; + f_neednode *need_list; }; filenode fn_head_s, *fn_head; @@ -151,17 +176,31 @@ void initialize(void); void generate_ordering(void); int main(int, char *[]); +static pid_t spawn(filenode *); +static int wait_child(void); +static void run_scripts(void); +static void filenode_unlink(filenode *); +static int can_run(filenode *); +static void check_start(filenode *); +static void generate_needs(void); int main(int argc, char *argv[]) { int ch; + int run = 0; + struct stat st; - while ((ch = getopt(argc, argv, "dk:s:")) != -1) + while ((ch = getopt(argc, argv, "a:df:k:l:rs:T:")) != -1) switch (ch) { + case 'a': + script_arg = optarg; + break; case 'd': #ifdef DEBUG debug = 1; + /* inherited by the trampoline script */ + setenv("_RCORDER_RUN_DEBUG", "yes", 1); #else warnx("debugging not compiled in, -d ignored"); #endif @@ -169,9 +208,21 @@ case 'k': strnode_add(&keep_list, optarg, 0); break; + case 'r': + run = 1; + break; case 's': strnode_add(&skip_list, optarg, 0); break; + case 'T': + trampoline = optarg; + break; + case 'f': + rc_first = optarg; + break; + case 'l': + rc_last = optarg; + break; default: /* XXX should crunch it? */ break; @@ -187,9 +238,27 @@ DPRINTF((stderr, "initialize\n")); crunch_all_files(); DPRINTF((stderr, "crunch_all_files\n")); - generate_ordering(); - DPRINTF((stderr, "generate_ordering\n")); + if (run) { + /* do some sanity checking on the trampoline script */ + if (stat(trampoline, &st) == -1) + err(1, "failed to stat %s", trampoline); + if (!S_ISREG(st.st_mode)) + errx(1, "not a regular file: %s", trampoline); + + if ((st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0) + errx(1, "not executable: %s", trampoline); + + if ((kq = kqueue()) == -1) + err(1, "kqueue failed"); + + run_scripts(); + DPRINTF((stderr, "run_scripts\n")); + } else { + generate_ordering(); + DPRINTF((stderr, "generate_ordering\n")); + } + exit(exit_code); } @@ -240,7 +309,16 @@ temp->req_list = NULL; temp->prov_list = NULL; temp->keyword_list = NULL; - temp->in_progress = RESET; + temp->need_list = NULL; + + if (rc_first != NULL && strncmp(rc_first, basename(filename), strlen(rc_first)) == 0) { + temp->in_progress = FIRST; + } else if (rc_last != NULL && strncmp(rc_last, basename(filename), strlen(rc_last)) == 0) { + temp->in_progress = LAST; + } else { + temp->in_progress = RESET; + } + /* * link the filenode into the list of filenodes. * note that the double linking means we can delete a @@ -720,9 +798,6 @@ } else was_set = 0; - /* mark fnode */ - fnode->in_progress = SET; - /* * for each requirement of fnode -> r * satisfy_req(r, filename) @@ -739,6 +814,10 @@ } fnode->req_list = NULL; + /* mark fnode */ + if (fnode->in_progress != FIRST && fnode->in_progress != LAST) + fnode->in_progress = SET; + /* * for each provision of fnode -> p * remove fnode from provision list for p in hash table @@ -763,8 +842,14 @@ DPRINTF((stderr, "next do: ")); /* if we were already in progress, don't print again */ - if (was_set == 0 && skip_ok(fnode) && keep_ok(fnode)) - printf("%s\n", fnode->filename); + if (was_set == 0 && skip_ok(fnode) && keep_ok(fnode)) { + if (rc_first == NULL) + printf("%s\n", fnode->filename); + if (fnode->in_progress == FIRST) + rc_first = NULL; + else if (fnode->in_progress == LAST) + exit(0); + } if (fnode->next != NULL) { fnode->next->last = fnode->last; @@ -805,3 +890,299 @@ do_file(fn_head->next); } } + +/* + * Check if fn_this can be started by checking its requirements and status. + */ +static int +can_run(filenode *fn_this) { + provnode *p; + Hash_Entry *entry; + f_reqnode *r; + int all_set; + + if (fn_this->in_progress == RUNNING + || fn_this->in_progress == LAST + || fn_this->in_progress == SET) + return (0); + + all_set = 1; + + if (fn_this->req_list != NULL) { + r = fn_this->req_list; + + /* check if all requirements are satisfied */ + while (r != NULL) { + entry = r->entry; + p = Hash_GetValue(entry); + + if (p != NULL && p->head == SET) + p = p->next; + + if (p != NULL) { + all_set = 0; + break; + } + + r = r->next; + } + } + return (all_set); +} + +/* + * Generate the need_list for all nodes. This has to happen after all + * dependencies have been resolved. + */ +static void +generate_needs(void) +{ + provnode *p; + Hash_Entry *entry; + f_reqnode *r; + filenode *fn_this; + f_neednode *n; + + for(fn_this = fn_head->next; fn_this != NULL; fn_this = fn_this->next) { + if (fn_this->req_list != NULL) { + r = fn_this->req_list; + + while (r != NULL) { + entry = r->entry; + p = Hash_GetValue(entry); + + if (p != NULL && p->head == SET) + p = p->next; + + while (p != NULL) { + if(p->fnode == NULL) { + p = p->next; + continue; + } + + n = emalloc(sizeof(f_neednode)); + n->next = NULL; + n->entry = fn_this; + n->next = p->fnode->need_list; + p->fnode->need_list = n; + p = p->next; + } + r = r->next; + } + } + } +} + +/* + * fill the need lists and start everything that has no requirements. + */ +static void +run_scripts(void) +{ + filenode *fn_this, + *t = NULL; + + generate_needs(); + + DPRINTF((stderr, "init...\n")); + fn_this = fn_head->next; + while (fn_this != NULL) { + if (fn_this->in_progress == FIRST) { + t = fn_this; + } else { + if (can_run(fn_this)) + spawn(fn_this); + } + fn_this = fn_this->next; + } + + /* + * If rc_first was set, we have to skip the dependecies before + * rc_first. We can't unset rc_first in the loop above because + * that would allow scripts, that should not started, to run. + */ + if (t) { + rc_first = NULL; + t->in_progress = RESET; + spawn(t); + fn_this = fn_head->next; + while (fn_this != NULL) { + if (can_run(fn_this)) + spawn(fn_this); + fn_this = fn_this->next; + } + } + + DPRINTF((stderr, "wait ...\n")); + while (childs > 0) + wait_child(); + exit(0); +} + + +/* + * Start a rc script for a filenode. + */ +static pid_t +spawn(filenode *fn) +{ + struct kevent event; + pid_t p; + char *args[] = {trampoline, fn->filename, script_arg, NULL}; + + if (fn->in_progress == SET || fn->in_progress == RUNNING) + return (0); + + if (fn->in_progress == FIRST) + return (0); + + if (fn->in_progress == LAST) + return (0); + + if (rc_first != NULL) { + filenode_unlink(fn); + check_start(fn); + return (1); + } + + if (!(skip_ok(fn) && keep_ok(fn))) { + filenode_unlink(fn); + check_start(fn); + return (1); + } + + DPRINTF((stderr, "spawn: %s\n", fn->filename)); + childs++; + p = fork(); + + if (p == -1) { + if (errno == EAGAIN) + return (0); + err(1, "fork"); + } + + /* parent */ + if (p > 0) { + EV_SET(&event, p, EVFILT_PROC, + EV_ADD | EV_ENABLE | EV_ONESHOT, + NOTE_EXIT, 0, fn); + + if (kevent(kq, &event, 1, NULL, 0, NULL) == -1) { + if (errno == EINTR) + return (0); + err(1, "kevent"); + } + + fn->in_progress = RUNNING; + return (p); + } + + /* child */ + execv(args[0], args); + exit(1); +} + +/* + * Wait for at least one child process to exit. We block for a maximum + * of 20 seconds. After that, collect what is available. + */ +static int +wait_child(void) +{ + struct kevent event; + filenode *f; + int ret; + struct timespec ts; + + ts.tv_sec = 20; + ts.tv_nsec = 0; + + while (1) { + ret = kevent(kq, NULL, 0, &event, 1, &ts); + + if (ret == 0) + break; + + ts.tv_sec = 0; + + if (ret == -1) { + if (errno == EINTR) + break; + err(1, "kevent"); + } + + /* + * ignore waitpid errors and exit status; nothing we can do. + * just collect childs. + */ + waitpid(event.ident, NULL, WNOHANG); + childs--; + + f = (filenode *) event.udata; + + if (event.fflags & NOTE_EXIT) { + DPRINTF((stderr, "exit: %s (%d)\n", f->filename, event.ident)); + filenode_unlink(f); + check_start(f); + } + } + + return (0); +} + +/* + * For f check which nodes that require it can be started. and start them. + */ +static void +check_start(filenode *f) +{ + filenode *fn; + f_neednode *n; + + if (f->need_list == NULL) + return; + + n = f->need_list; + while (n != NULL) { + fn = n->entry; + if(can_run(fn)) + spawn(fn); + n = n->next; + } +} + +/* + * Remove filenode from list. + */ +static void +filenode_unlink(filenode *f) +{ + f_provnode *p, + *p_tmp; + provnode *pnode; + + f->in_progress = SET; + if (f->next != NULL) + f->next->last = f->last; + if (f->last != NULL) + f->last->next = f->next; + f->req_list = NULL; + + /* + * for each provision of fnode -> p + * remove fnode from provision list for p in hash table + */ + p = f->prov_list; + while (p != NULL) { + p_tmp = p; + pnode = p->pnode; + if (pnode->next != NULL) + pnode->next->last = pnode->last; + if (pnode->last != NULL) + pnode->last->next = pnode->next; + free(pnode); + p = p->next; + free(p_tmp); + } + f->prov_list = NULL; +} Index: sbin/rcorder/rcorder.8 =================================================================== --- sbin/rcorder/rcorder.8 (revision 225227) +++ sbin/rcorder/rcorder.8 (working copy) @@ -39,8 +39,13 @@ .Nd print a dependency ordering of interdependent files .Sh SYNOPSIS .Nm +.Op Fl a Ar action +.Op Fl f Ar first .Op Fl k Ar keep +.Op Fl l Ar last +.Op Fl r .Op Fl s Ar skip +.Op Fl T Ar trampoline_script .Ar .Sh DESCRIPTION The @@ -95,18 +100,44 @@ .Pp The options are as follows: .Bl -tag -width indent +.It Fl a Ar action +Argument passed to rc scripts by the trampoline script. +.It Fl f Ar first +Act as if the requirement +.Ar first, +and requirements leading up to it, have already been satisfied (see +.Sx CAVEATS +sections). .It Fl k Add the specified keyword to the .Dq "keep list" . If any .Fl k option is given, only those files containing the matching keyword are listed. +.It Fl l Ar last +Stop when the requirement +.Ar last +has been satisfied (see +.Sx CAVEATS +sections). +.It Fl r +Instead of printing the ordered list of rc scripts, execute them concurrently +as +.Nm +sees fit. .It Fl s Add the specified keyword to the .Dq "skip list" . If any .Fl s option is given, files containing the matching keyword are not listed. +.It Fl T Ar trampoline_script +When running with the +.Fl r +flag, use the specified argument as the +.Ar trampoline_script. +It is called with the rc script to start as the first argument and the action +(e.g. faststart) to take as the second argument. .El .Pp An example block follows: @@ -155,6 +186,48 @@ A set of files has a circular dependency which was detected while processing the stated file. .El +.Sh CAVEATS +When running with the +.Fl r +flag, the arguments passed to +.Fl f +or +.Fl l +must be one of the check-points (or "placeholders") mentioned in +.Xr rc 8 . +.Pp +The ordering generated when running with or without the +.Fl r +flag is different. Without the +.Fl r +flag, and with the +.Fl l +flag, +.Nm +produces an ordering that only guarantees that the check-point will +be satisfied. With the +.Fl r +flag, +.Nm +will guarantee that all and only the requirements leading up to the +check-point will be satisfied. +.Pp +Likewise, with the +.Fl f +flag and the +.Fl r +flag set, +.Nm +will assume all and only the requirements before the check-point are +satisfied. Without the +.Fl r +flag, the ordering will complement the ordering generated of the same +.Nm +run with the +.Fl f +replaced with +.Fl l +flag. .Sh SEE ALSO .Xr rc 8 .Sh HISTORY Index: share/man/man5/rc.conf.5 =================================================================== --- share/man/man5/rc.conf.5 (revision 225227) +++ share/man/man5/rc.conf.5 (working copy) @@ -114,6 +114,11 @@ show .Dq Starting foo: when faststart is used (e.g., at boot time). +.It Va rc_concurrent +.Pq Vt bool +If set to +.Dq Li YES , +start rc scripts concurrently. .It Va early_late_divider .Pq Vt str The name of the script that should be used as the >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 19:30:17 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C0CF106568C for ; Fri, 2 Sep 2011 19:30:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E61758FC1B for ; Fri, 2 Sep 2011 19:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82JUGjl028671 for ; Fri, 2 Sep 2011 19:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82JUG0K028668; Fri, 2 Sep 2011 19:30:16 GMT (envelope-from gnats) Date: Fri, 2 Sep 2011 19:30:16 GMT Message-Id: <201109021930.p82JUG0K028668@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: conf/159775: commit references a PR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 19:30:17 -0000 The following reply was made to PR conf/159775; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: conf/159775: commit references a PR Date: Fri, 2 Sep 2011 19:29:48 +0000 (UTC) Author: jh Date: Fri Sep 2 19:29:37 2011 New Revision: 225353 URL: http://svn.freebsd.org/changeset/base/225353 Log: Restore behavior of the autoboot_delay="-1" boot menu setting to the pre-r222417 state. The behavior was essentially reversed in r222417 which can cause confusion. PR: 159775 Submitted by: Devin Teske Approved by: re (kib) Modified: head/sys/boot/forth/menu.4th head/sys/boot/forth/menu.4th.8 Modified: head/sys/boot/forth/menu.4th ============================================================================== --- head/sys/boot/forth/menu.4th Fri Sep 2 18:52:28 2011 (r225352) +++ head/sys/boot/forth/menu.4th Fri Sep 2 19:29:37 2011 (r225353) @@ -742,11 +742,12 @@ create init_text8 255 allot else -rot 2drop - \ disable timeout if less than zero + \ boot immediately if less than zero dup 0< if drop - 0 menu_timeout_enabled ! - 0 ( assigned to menu_timeout below ) + menu-create + 0 25 at-xy + 0 boot then then then Modified: head/sys/boot/forth/menu.4th.8 ============================================================================== --- head/sys/boot/forth/menu.4th.8 Fri Sep 2 18:52:28 2011 (r225352) +++ head/sys/boot/forth/menu.4th.8 Fri Sep 2 19:29:37 2011 (r225353) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd May 18, 2011 +.Dd Aug 29, 2011 .Dt MENU.4TH 8 .Os .Sh NAME @@ -96,11 +96,15 @@ will wait before executing by default) unless a key is pressed. If set to .Dq Li NO -(case-insensitive) or -.Dq Li -1 , +(case-insensitive) .Ic menu-display will wait for user input and never execute .Ic menu_timeout_command . +If set to +.Dq Li -1 , +.Ic menu-display +will boot immediately, preventing both interruption of the autoboot process and +escaping to the loader prompt. Default is .Dq Li 10 . See _______________________________________________ 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 owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 19:38:54 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64175106566B; Fri, 2 Sep 2011 19:38:54 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3C3978FC12; Fri, 2 Sep 2011 19:38:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82JcsUF039280; Fri, 2 Sep 2011 19:38:54 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82Jcsax039276; Fri, 2 Sep 2011 19:38:54 GMT (envelope-from jh) Date: Fri, 2 Sep 2011 19:38:54 GMT Message-Id: <201109021938.p82Jcsax039276@freefall.freebsd.org> To: cperciva@FreeBSD.org, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: conf/159775: [boot] handling of autoboot_delay="-1" has changed in 9.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 19:38:54 -0000 Synopsis: [boot] handling of autoboot_delay="-1" has changed in 9.0 State-Changed-From-To: open->closed State-Changed-By: jh State-Changed-When: Fri Sep 2 19:38:53 UTC 2011 State-Changed-Why: Fixed in r225353. http://www.freebsd.org/cgi/query-pr.cgi?pr=159775 From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 19:42:05 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 687FF106566B; Fri, 2 Sep 2011 19:42:05 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3FB7B8FC13; Fri, 2 Sep 2011 19:42:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82Jg5Vh047448; Fri, 2 Sep 2011 19:42:05 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82Jg5rR047444; Fri, 2 Sep 2011 19:42:05 GMT (envelope-from jh) Date: Fri, 2 Sep 2011 19:42:05 GMT Message-Id: <201109021942.p82Jg5rR047444@freefall.freebsd.org> To: 666.root@gmail.com, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/121234: [vm] vm_fault: fault on nofault X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 19:42:05 -0000 Synopsis: [vm] vm_fault: fault on nofault State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Sep 2 19:42:04 UTC 2011 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=121234 From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 19:42:53 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 504411065672; Fri, 2 Sep 2011 19:42:53 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 27DD98FC12; Fri, 2 Sep 2011 19:42:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82Jgre6047587; Fri, 2 Sep 2011 19:42:53 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82JgqoF047583; Fri, 2 Sep 2011 19:42:52 GMT (envelope-from jh) Date: Fri, 2 Sep 2011 19:42:52 GMT Message-Id: <201109021942.p82JgqoF047583@freefall.freebsd.org> To: noname@nospam.org, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: bin/156840: man(1): shell prompt doesn't show up when suspending a manpage X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 19:42:53 -0000 Synopsis: man(1): shell prompt doesn't show up when suspending a manpage State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Sep 2 19:42:52 UTC 2011 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=156840 From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 19:54:44 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BAEC41065672; Fri, 2 Sep 2011 19:54:44 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 92F488FC18; Fri, 2 Sep 2011 19:54:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82Jsism056595; Fri, 2 Sep 2011 19:54:44 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82Jsiap056591; Fri, 2 Sep 2011 19:54:44 GMT (envelope-from linimon) Date: Fri, 2 Sep 2011 19:54:44 GMT Message-Id: <201109021954.p82Jsiap056591@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/160391: [ieee80211] [patch] Panic in mesh mode X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 19:54:44 -0000 Old Synopsis: Panic in mesh mode New Synopsis: [ieee80211] [patch] Panic in mesh mode Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Fri Sep 2 19:54:11 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=160391 From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 19:59:06 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3191A106567D; Fri, 2 Sep 2011 19:59:06 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 098098FC20; Fri, 2 Sep 2011 19:59:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82Jx5dw056793; Fri, 2 Sep 2011 19:59:05 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82Jx5AY056789; Fri, 2 Sep 2011 19:59:05 GMT (envelope-from linimon) Date: Fri, 2 Sep 2011 19:59:05 GMT Message-Id: <201109021959.p82Jx5AY056789@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: conf/160403: [rc] [patch] concurrently running rc-scripts during boot X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 19:59:06 -0000 Old Synopsis: concurrently running rc-scripts during boot New Synopsis: [rc] [patch] concurrently running rc-scripts during boot Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Fri Sep 2 19:58:20 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=160403 From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 22:30:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75184106566C for ; Fri, 2 Sep 2011 22:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3908B8FC15 for ; Fri, 2 Sep 2011 22:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82MUBap094810 for ; Fri, 2 Sep 2011 22:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82MUBeL094808; Fri, 2 Sep 2011 22:30:11 GMT (envelope-from gnats) Resent-Date: Fri, 2 Sep 2011 22:30:11 GMT Resent-Message-Id: <201109022230.p82MUBeL094808@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Pinter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B128A1065678 for ; Fri, 2 Sep 2011 22:29:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A11628FC13 for ; Fri, 2 Sep 2011 22:29:35 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p82MTZDD071003 for ; Fri, 2 Sep 2011 22:29:35 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p82MTZiM071002; Fri, 2 Sep 2011 22:29:35 GMT (envelope-from nobody) Message-Id: <201109022229.p82MTZiM071002@red.freebsd.org> Date: Fri, 2 Sep 2011 22:29:35 GMT From: Oliver Pinter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/160409: geli: failed to attach provider X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 22:30:11 -0000 >Number: 160409 >Category: kern >Synopsis: geli: failed to attach provider >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 Sep 02 22:30:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Oliver Pinter >Release: 9.0-BETA2 >Organization: >Environment: FreeBSD opn 9.0-BETA2 FreeBSD 9.0-BETA2 #0: Fri Sep 2 10:04:06 CEST 2011 root@:/usr/obj/usr/src/sys/stable amd64 >Description: When using the _alias_ (ad4*) of ata disc with ahci(ada0*) dirver, then geli failed to attach the crypted storage. root@opn ~# geli attach ad4s2g Enter passphrase: geli: Provider ad4s2g is invalid. root@opn ~# geli attach ada0s2g Enter passphrase: root@opn ~# uname -a FreeBSD opn 9.0-BETA2 FreeBSD 9.0-BETA2 #0: Fri Sep 2 10:04:06 CEST 2011 root@:/usr/obj/usr/src/sys/stable amd64 root@opn ~# >How-To-Repeat: geli init -e aes-xts -l 256 geli attach ad4s2g geli attach ada0s2g >Fix: use the original name of device, not the alias >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 22:50:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3ED531065673 for ; Fri, 2 Sep 2011 22:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 023538FC12 for ; Fri, 2 Sep 2011 22:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82Mo876014171 for ; Fri, 2 Sep 2011 22:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82Mo8Wv014170; Fri, 2 Sep 2011 22:50:08 GMT (envelope-from gnats) Resent-Date: Fri, 2 Sep 2011 22:50:08 GMT Resent-Message-Id: <201109022250.p82Mo8Wv014170@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Frank Haynes Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFEA3106564A for ; Fri, 2 Sep 2011 22:46:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CFC448FC16 for ; Fri, 2 Sep 2011 22:46:13 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p82MkDoU005643 for ; Fri, 2 Sep 2011 22:46:13 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p82MkDU4005642; Fri, 2 Sep 2011 22:46:13 GMT (envelope-from nobody) Message-Id: <201109022246.p82MkDU4005642@red.freebsd.org> Date: Fri, 2 Sep 2011 22:46:13 GMT From: Frank Haynes To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/160410: smbfs hangs when transferring large files X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 22:50:09 -0000 >Number: 160410 >Category: kern >Synopsis: smbfs hangs when transferring large files >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 Sep 02 22:50:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Frank Haynes >Release: 8.2-RELEASE >Organization: >Environment: FreeBSD tester 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: I have several NTFS partitions mounted with smbfs. When transferring large amounts of data to them (such as with rsync) the connection hangs. When this happens, it is not possible to unmount the partition. The only solution is to reboot. This has been a problem for several years. Please consider fixing it. >How-To-Repeat: Mount remote NTFS partitions with mount_smbfs. Transfer large amounts of data to and from those mounted partitions using rsync. Mount will hang and require a system reboot to clear. When this happens, the mounted partition is still accessible from other machines. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 23:00:24 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1531A1065670 for ; Fri, 2 Sep 2011 23:00:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BF9418FC16 for ; Fri, 2 Sep 2011 23:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82N0N3j022345 for ; Fri, 2 Sep 2011 23:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82N0NRe022344; Fri, 2 Sep 2011 23:00:23 GMT (envelope-from gnats) Resent-Date: Fri, 2 Sep 2011 23:00:23 GMT Resent-Message-Id: <201109022300.p82N0NRe022344@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Pinter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A50A0106566B for ; Fri, 2 Sep 2011 22:52:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 94F848FC0C for ; Fri, 2 Sep 2011 22:52:32 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p82MqWqo006177 for ; Fri, 2 Sep 2011 22:52:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p82MqWgj006176; Fri, 2 Sep 2011 22:52:32 GMT (envelope-from nobody) Message-Id: <201109022252.p82MqWgj006176@red.freebsd.org> Date: Fri, 2 Sep 2011 22:52:32 GMT From: Oliver Pinter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/160412: wrong value in systat X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 23:00:24 -0000 >Number: 160412 >Category: bin >Synopsis: wrong value in systat >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 Sep 02 23:00:23 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Oliver Pinter >Release: 9.0-BETA2 >Organization: >Environment: FreeBSD opn 9.0-BETA2 FreeBSD 9.0-BETA2 #0: Fri Sep 2 10:04:06 CEST 2011 root@:/usr/obj/usr/src/sys/stable amd64 >Description: As you can see the Peak is TB/s but the link is only GB/s /0 /1 /2 /3 /4 /5 /6 /7 /8 /9 /10 Load Average |||||||||||||| Interface Traffic Peak Total lo0 in 0.000 KB/s 0.145 KB/s 1.961 KB out 0.000 KB/s 0.145 KB/s 1.961 KB msk0 in 0.688 KB/s 16777216.000 TB/s 387.800 MB out 0.000 KB/s 33.695 KB/s 11.077 MB mskc0@pci0:3:0:0: class=0x020000 card=0x3634103c chip=0x436c11ab rev=0x10 hdr=0x00 vendor = 'Marvell Technology Group Ltd.' device = '88E8072 PCI-E Gigabit Ethernet Controller' class = network subclass = ethernet >How-To-Repeat: - >Fix: - >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 23:40:31 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E78071065674; Fri, 2 Sep 2011 23:40:31 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BEF5B8FC13; Fri, 2 Sep 2011 23:40:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82NeV7v061962; Fri, 2 Sep 2011 23:40:31 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82NeVm8061952; Fri, 2 Sep 2011 23:40:31 GMT (envelope-from linimon) Date: Fri, 2 Sep 2011 23:40:31 GMT Message-Id: <201109022340.p82NeVm8061952@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/160410: [smbfs] [hang] smbfs hangs when transferring large files X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 23:40:32 -0000 Old Synopsis: smbfs hangs when transferring large files New Synopsis: [smbfs] [hang] smbfs hangs when transferring large files Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Sep 2 23:40:19 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=160410 From owner-freebsd-bugs@FreeBSD.ORG Fri Sep 2 23:41:08 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 851281065670; Fri, 2 Sep 2011 23:41:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5D1968FC0C; Fri, 2 Sep 2011 23:41:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p82Nf8Cj067685; Fri, 2 Sep 2011 23:41:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p82Nf8xd067674; Fri, 2 Sep 2011 23:41:08 GMT (envelope-from linimon) Date: Fri, 2 Sep 2011 23:41:08 GMT Message-Id: <201109022341.p82Nf8xd067674@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-geom@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/160409: [geli] failed to attach provider X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 23:41:08 -0000 Old Synopsis: geli: failed to attach provider New Synopsis: [geli] failed to attach provider Responsible-Changed-From-To: freebsd-bugs->freebsd-geom Responsible-Changed-By: linimon Responsible-Changed-When: Fri Sep 2 23:40:50 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=160409 From owner-freebsd-bugs@FreeBSD.ORG Sat Sep 3 08:10:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A1B8106567B for ; Sat, 3 Sep 2011 08:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4EDE88FC20 for ; Sat, 3 Sep 2011 08:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p838A6h2063430 for ; Sat, 3 Sep 2011 08:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p838A6JV063429; Sat, 3 Sep 2011 08:10:06 GMT (envelope-from gnats) Resent-Date: Sat, 3 Sep 2011 08:10:06 GMT Resent-Message-Id: <201109030810.p838A6JV063429@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hartmann@FreeBSD.org, "O." Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEC24106566C for ; Sat, 3 Sep 2011 08:00:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CC3E88FC12 for ; Sat, 3 Sep 2011 08:00:27 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p8380RsB005504 for ; Sat, 3 Sep 2011 08:00:27 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p8380Rrb005503; Sat, 3 Sep 2011 08:00:27 GMT (envelope-from nobody) Message-Id: <201109030800.p8380Rrb005503@red.freebsd.org> Date: Sat, 3 Sep 2011 08:00:27 GMT From: Hartmann@FreeBSD.org, "O." To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/160417: x11-fm/asfiles: Main.c:394:1: error: 'main' must return 'int' void main(int argc, char *argv[]) ^ 1 error generated. *** Error code 1. Compilation error while compiling with CLANG X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2011 08:10:11 -0000 >Number: 160417 >Category: misc >Synopsis: x11-fm/asfiles: Main.c:394:1: error: 'main' must return 'int' void main(int argc, char *argv[]) ^ 1 error generated. *** Error code 1. Compilation error while compiling with CLANG >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 Sep 03 08:10:05 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Hartmann, O. >Release: FreeBSD 9.0-BETA2/amd2 clang compiled and coalng system's compiler activated >Organization: FU Berlin >Environment: >Description: Building the port with CLANG fails due to a "void main()" declarartion which seems to piss off CLANG. [...] 6 warnings generated. clang -DPACKAGE=\"Files\" -DVERSION=\"2.4e\" -DSTDC_HEADERS=1 -DHAVE_DIRENT_H=1 -DHAVE_ALLOCA=1 -DXPM=1 -DHAVE_GETWD=1 -DMAGIC_HEADERS=1 -I. -I. -I.. -I/usr/local/include -DROOTDROP_DEFAULT_ICON=\"linux_make.xpm\" -DRCFILE=\"/usr/local/share/OffiX/Filesrc\" -DMAGICFILE=\"/usr/local/share/OffiX/FilesMagic\" -DPIXDIR=\"/usr/local/include/pixmaps\" -I/usr/local/include -O3 -fno-strict-aliasing -pipe -march=native -c Errors.c Errors.c:179:3: warning: implicitly declaring C library function 'exit' with type 'void (int) __attribute__((noreturn))' exit(1); ^ Errors.c:179:3: note: please include the header or explicitly provide a declaration for 'exit' 1 warning generated. clang -DPACKAGE=\"Files\" -DVERSION=\"2.4e\" -DSTDC_HEADERS=1 -DHAVE_DIRENT_H=1 -DHAVE_ALLOCA=1 -DXPM=1 -DHAVE_GETWD=1 -DMAGIC_HEADERS=1 -I. -I. -I.. -I/usr/local/include -DROOTDROP_DEFAULT_ICON=\"linux_make.xpm\" -DRCFILE=\"/usr/local/share/OffiX/Filesrc\" -DMAGICFILE=\"/usr/local/share/OffiX/FilesMagic\" -DPIXDIR=\"/usr/local/include/pixmaps\" -I/usr/local/include -O3 -fno-strict-aliasing -pipe -march=native -c Exec.c Exec.c:95:7: warning: implicitly declaring C library function 'exit' with type 'void (int) __attribute__((noreturn))' exit(1); ^ Exec.c:95:7: note: please include the header or explicitly provide a declaration for 'exit' 1 warning generated. clang -DPACKAGE=\"Files\" -DVERSION=\"2.4e\" -DSTDC_HEADERS=1 -DHAVE_DIRENT_H=1 -DHAVE_ALLOCA=1 -DXPM=1 -DHAVE_GETWD=1 -DMAGIC_HEADERS=1 -I. -I. -I.. -I/usr/local/include -DROOTDROP_DEFAULT_ICON=\"linux_make.xpm\" -DRCFILE=\"/usr/local/share/OffiX/Filesrc\" -DMAGICFILE=\"/usr/local/share/OffiX/FilesMagic\" -DPIXDIR=\"/usr/local/include/pixmaps\" -I/usr/local/include -O3 -fno-strict-aliasing -pipe -march=native -c Fw.c Fw.c:366:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ Fw.c:657:5: warning: implicitly declaring C library function 'exit' with type 'void (int) __attribute__((noreturn))' exit(1); ^ Fw.c:657:5: note: please include the header or explicitly provide a declaration for 'exit' Fw.c:1303:20: warning: missing sentinel in function call XtVaSetValues(fw->shell,XtNinitialState,IconicState,0); ^ /usr/local/include/X11/Intrinsic.h:1598:13: note: function has been explicitly marked sentinel here extern void XtVaSetValues( ^ Fw.c:1305:20: warning: missing sentinel in function call XtVaSetValues(fw->shell,XtNinitialState,NormalState,0); ^ /usr/local/include/X11/Intrinsic.h:1598:13: note: function has been explicitly marked sentinel here extern void XtVaSetValues( ^ 4 warnings generated. clang -DPACKAGE=\"Files\" -DVERSION=\"2.4e\" -DSTDC_HEADERS=1 -DHAVE_DIRENT_H=1 -DHAVE_ALLOCA=1 -DXPM=1 -DHAVE_GETWD=1 -DMAGIC_HEADERS=1 -I. -I. -I.. -I/usr/local/include -DROOTDROP_DEFAULT_ICON=\"linux_make.xpm\" -DRCFILE=\"/usr/local/share/OffiX/Filesrc\" -DMAGICFILE=\"/usr/local/share/OffiX/FilesMagic\" -DPIXDIR=\"/usr/local/include/pixmaps\" -I/usr/local/include -O3 -fno-strict-aliasing -pipe -march=native -c FwActions.c clang -DPACKAGE=\"Files\" -DVERSION=\"2.4e\" -DSTDC_HEADERS=1 -DHAVE_DIRENT_H=1 -DHAVE_ALLOCA=1 -DXPM=1 -DHAVE_GETWD=1 -DMAGIC_HEADERS=1 -I. -I. -I.. -I/usr/local/include -DROOTDROP_DEFAULT_ICON=\"linux_make.xpm\" -DRCFILE=\"/usr/local/share/OffiX/Filesrc\" -DMAGICFILE=\"/usr/local/share/OffiX/FilesMagic\" -DPIXDIR=\"/usr/local/include/pixmaps\" -I/usr/local/include -O3 -fno-strict-aliasing -pipe -march=native -c FwCb.c clang -DPACKAGE=\"Files\" -DVERSION=\"2.4e\" -DSTDC_HEADERS=1 -DHAVE_DIRENT_H=1 -DHAVE_ALLOCA=1 -DXPM=1 -DHAVE_GETWD=1 -DMAGIC_HEADERS=1 -I. -I. -I.. -I/usr/local/include -DROOTDROP_DEFAULT_ICON=\"linux_make.xpm\" -DRCFILE=\"/usr/local/share/OffiX/Filesrc\" -DMAGICFILE=\"/usr/local/share/OffiX/FilesMagic\" -DPIXDIR=\"/usr/local/include/pixmaps\" -I/usr/local/include -O3 -fno-strict-aliasing -pipe -march=native -c Info.c clang -DPACKAGE=\"Files\" -DVERSION=\"2.4e\" -DSTDC_HEADERS=1 -DHAVE_DIRENT_H=1 -DHAVE_ALLOCA=1 -DXPM=1 -DHAVE_GETWD=1 -DMAGIC_HEADERS=1 -I. -I. -I.. -I/usr/local/include -DROOTDROP_DEFAULT_ICON=\"linux_make.xpm\" -DRCFILE=\"/usr/local/share/OffiX/Filesrc\" -DMAGICFILE=\"/usr/local/share/OffiX/FilesMagic\" -DPIXDIR=\"/usr/local/include/pixmaps\" -I/usr/local/include -O3 -fno-strict-aliasing -pipe -march=native -c Main.c Main.c:394:1: error: 'main' must return 'int' void main(int argc, char *argv[]) ^ 1 error generated. *** Error code 1 Stop in /usr/ports/x11-fm/asfiles/work/ASFiles-1.0/src. *** Error code 1 Stop in /usr/ports/x11-fm/asfiles/work/ASFiles-1.0. *** Error code 1 Stop in /usr/ports/x11-fm/asfiles. ===>>> make failed for x11-fm/asfiles ===>>> Aborting update >How-To-Repeat: try build x11-fm/asfiles with CLANG >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Sep 3 12:00:28 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8C6D1065680 for ; Sat, 3 Sep 2011 12:00:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 314908FC1F for ; Sat, 3 Sep 2011 12:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p83C0QWf081816 for ; Sat, 3 Sep 2011 12:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p83C0QCC081812; Sat, 3 Sep 2011 12:00:26 GMT (envelope-from gnats) Resent-Date: Sat, 3 Sep 2011 12:00:26 GMT Resent-Message-Id: <201109031200.p83C0QCC081812@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Pinter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56069106564A for ; Sat, 3 Sep 2011 11:53:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 46F5E8FC15 for ; Sat, 3 Sep 2011 11:53:32 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p83BrW4D016063 for ; Sat, 3 Sep 2011 11:53:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p83BrV8X016050; Sat, 3 Sep 2011 11:53:31 GMT (envelope-from nobody) Message-Id: <201109031153.p83BrV8X016050@red.freebsd.org> Date: Sat, 3 Sep 2011 11:53:31 GMT From: Oliver Pinter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/160420: msk0: phy write timeout on HP 5310m X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2011 12:00:29 -0000 >Number: 160420 >Category: kern >Synopsis: msk0: phy write timeout on HP 5310m >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 Sep 03 12:00:26 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Oliver Pinter >Release: 9.0-BETA2 >Organization: >Environment: FreeBSD opn 9.0-BETA2 FreeBSD 9.0-BETA2 #0: Fri Sep 2 10:04:06 CEST 2011 root@:/usr/obj/usr/src/sys/stable amd64 >Description: when unplug the power cord from HP ProBook 5310m, then timed out the ethernet interface (msk0) [...] mskc0: port 0x2000-0x20ff mem 0xd060000 0-0xd0603fff irq 17 at device 0.0 on pci3 mskc0: MSI count : 1 mskc0: attempting to allocate 1 MSI vectors (1 supported) msi: routing MSI IRQ 258 to local APIC 0 vector 56 mskc0: using IRQ 258 for MSI mskc0: RAM buffer size : 0KB msk0: on mskc0 msk0: bpf attached msk0: Ethernet address: 70:5a:b6:XX:XX:XX miibus0: on msk0 e1000phy0: PHY 0 on miibus0 e1000phy0: OUI 0x000ac2, model 0x000b, rev. 1 e1000phy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 100 0baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow [...] msk0: link state changed to DOWN msk0: link state changed to UP system power profile changed to 'economy' acpi_acad0: Off Line msk0: phy write timeout msk0: phy write timeout msk0: phy write timeout msk0: phy write timeout msk0: phy write timeout msk0: phy write timeout msk0: phy write timeout msk0: phy write timeout msk0: phy write timeout msk0: phy write timeout msk0: phy write timeout msk0: phy write timeout msk0: phy write timeout >How-To-Repeat: 1) plug in the power cord 2) boot 3) after interface come up 4) unplug the power cord >Fix: Patch attached with submission follows: hostb0@pci0:0:0:0: class=0x060000 card=0x3634103c chip=0x2a408086 rev=0x07 hdr=0x00 vendor = 'Intel Corporation' device = 'Mobile 4 Series Chipset Memory Controller Hub' class = bridge subclass = HOST-PCI vgapci0@pci0:0:2:0: class=0x030000 card=0x3634103c chip=0x2a428086 rev=0x07 hdr=0x00 vendor = 'Intel Corporation' device = 'Mobile 4 Series Chipset Integrated Graphics Controller' class = display subclass = VGA vgapci1@pci0:0:2:1: class=0x038000 card=0x3634103c chip=0x2a438086 rev=0x07 hdr=0x00 vendor = 'Intel Corporation' device = 'Mobile 4 Series Chipset Integrated Graphics Controller' class = display uhci0@pci0:0:26:0: class=0x0c0300 card=0x3634103c chip=0x29378086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) USB UHCI Controller' class = serial bus subclass = USB uhci1@pci0:0:26:1: class=0x0c0300 card=0x3634103c chip=0x29388086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) USB UHCI Controller' class = serial bus subclass = USB uhci2@pci0:0:26:2: class=0x0c0300 card=0x3634103c chip=0x29398086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) USB UHCI Controller' class = serial bus subclass = USB ehci0@pci0:0:26:7: class=0x0c0320 card=0x3634103c chip=0x293c8086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) USB2 EHCI Controller' class = serial bus subclass = USB hdac0@pci0:0:27:0: class=0x040300 card=0x3634103c chip=0x293e8086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) HD Audio Controller' class = multimedia subclass = HDA pcib1@pci0:0:28:0: class=0x060400 card=0x00000000 chip=0x29408086 rev=0x03 hdr=0x01 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) PCI Express Port 1' class = bridge subclass = PCI-PCI pcib2@pci0:0:28:1: class=0x060400 card=0x00000000 chip=0x29428086 rev=0x03 hdr=0x01 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) PCI Express Port 2' class = bridge subclass = PCI-PCI pcib3@pci0:0:28:5: class=0x060400 card=0x00000000 chip=0x294a8086 rev=0x03 hdr=0x01 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) PCI Express Port 6' class = bridge subclass = PCI-PCI uhci3@pci0:0:29:0: class=0x0c0300 card=0x3634103c chip=0x29348086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) USB UHCI Controller' class = serial bus subclass = USB uhci4@pci0:0:29:1: class=0x0c0300 card=0x3634103c chip=0x29358086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) USB UHCI Controller' class = serial bus subclass = USB uhci5@pci0:0:29:2: class=0x0c0300 card=0x3634103c chip=0x29368086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) USB UHCI Controller' class = serial bus subclass = USB ehci1@pci0:0:29:7: class=0x0c0320 card=0x3634103c chip=0x293a8086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801I (ICH9 Family) USB2 EHCI Controller' class = serial bus subclass = USB pcib4@pci0:0:30:0: class=0x060401 card=0x00000000 chip=0x24488086 rev=0x93 hdr=0x01 vendor = 'Intel Corporation' device = '82801 Mobile PCI Bridge' class = bridge subclass = PCI-PCI isab0@pci0:0:31:0: class=0x060100 card=0x3634103c chip=0x29178086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = 'ICH9M-E LPC Interface Controller' class = bridge subclass = PCI-ISA ahci0@pci0:0:31:2: class=0x010601 card=0x3634103c chip=0x29298086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = 'ICH9M/M-E SATA AHCI Controller' class = mass storage subclass = SATA iwn0@pci0:2:0:0: class=0x028000 card=0x13158086 chip=0x00848086 rev=0x00 hdr=0x00 vendor = 'Intel Corporation' device = 'Centrino Wireless-N 1000' class = network mskc0@pci0:3:0:0: class=0x020000 card=0x3634103c chip=0x436c11ab rev=0x10 hdr=0x00 vendor = 'Marvell Technology Group Ltd.' device = '88E8072 PCI-E Gigabit Ethernet Controller' class = network subclass = ethernet >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Sep 3 12:44:08 2011 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95B5A106566C; Sat, 3 Sep 2011 12:44:08 +0000 (UTC) (envelope-from oliver.pntr@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 444A38FC0C; Sat, 3 Sep 2011 12:44:08 +0000 (UTC) Received: by yxn22 with SMTP id 22so2025846yxn.13 for ; Sat, 03 Sep 2011 05:44:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=H36ya9rxpPDRA6sww66gqFHAppIPMA1a/xdcneHyu8I=; b=WHIwm7eqOUdkSGSbsRIcyeT1i1Kp2UNP5D4ukPXsejmfDwiplMULMIeeTenlGWvyqR lWVpLMArm4qbfaxXyJGSwwxEmgu6ipcdt37QhT+HvQIr1Sqzvc6sm7x/q9S8EffMuA6D GujsoQxjZwwBF6gLTrdsqbuPcJ8jEnbeYJK3g= MIME-Version: 1.0 Received: by 10.150.53.17 with SMTP id b17mr1879494yba.169.1315052263368; Sat, 03 Sep 2011 05:17:43 -0700 (PDT) Received: by 10.150.192.4 with HTTP; Sat, 3 Sep 2011 05:17:43 -0700 (PDT) In-Reply-To: <201109031200.p83C0Q5I081786@freefall.freebsd.org> References: <201109031153.p83BrV8X016050@red.freebsd.org> <201109031200.p83C0Q5I081786@freefall.freebsd.org> Date: Sat, 3 Sep 2011 14:17:43 +0200 Message-ID: From: Oliver Pinter To: FreeBSD-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: Re: kern/160420: msk0: phy write timeout on HP 5310m X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2011 12:44:08 -0000 and when booting from battary without power cord, then timed out too On 9/3/11, FreeBSD-gnats-submit@freebsd.org wrote: > Thank you very much for your problem report. > It has the internal identification `kern/160420'. > 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=160420 > >>Category: kern >>Responsible: freebsd-bugs >>Synopsis: msk0: phy write timeout on HP 5310m >>Arrival-Date: Sat Sep 03 12:00:26 UTC 2011 > From owner-freebsd-bugs@FreeBSD.ORG Sat Sep 3 12:50:12 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48C17106564A for ; Sat, 3 Sep 2011 12:50:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 397198FC16 for ; Sat, 3 Sep 2011 12:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p83CoCQg028476 for ; Sat, 3 Sep 2011 12:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p83CoBVo028475; Sat, 3 Sep 2011 12:50:11 GMT (envelope-from gnats) Date: Sat, 3 Sep 2011 12:50:11 GMT Message-Id: <201109031250.p83CoBVo028475@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Oliver Pinter Cc: Subject: Re: kern/160420: msk0: phy write timeout on HP 5310m X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Oliver Pinter List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2011 12:50:12 -0000 The following reply was made to PR kern/160420; it has been noted by GNATS. From: Oliver Pinter To: FreeBSD-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Cc: Subject: Re: kern/160420: msk0: phy write timeout on HP 5310m Date: Sat, 3 Sep 2011 14:17:43 +0200 and when booting from battary without power cord, then timed out too On 9/3/11, FreeBSD-gnats-submit@freebsd.org wrote: > Thank you very much for your problem report. > It has the internal identification `kern/160420'. > 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=160420 > >>Category: kern >>Responsible: freebsd-bugs >>Synopsis: msk0: phy write timeout on HP 5310m >>Arrival-Date: Sat Sep 03 12:00:26 UTC 2011 > From owner-freebsd-bugs@FreeBSD.ORG Sat Sep 3 16:00:20 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C817D106566C for ; Sat, 3 Sep 2011 16:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A83438FC0C for ; Sat, 3 Sep 2011 16:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p83G0Kl1001854 for ; Sat, 3 Sep 2011 16:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p83G0KAh001852; Sat, 3 Sep 2011 16:00:20 GMT (envelope-from gnats) Date: Sat, 3 Sep 2011 16:00:20 GMT Message-Id: <201109031600.p83G0KAh001852@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: =?ISO-2022-JP?B?GyRCMCRJdDkoTEAbKEI=?= Cc: Subject: Re: conf/160225: [periodic] /etc/periodic/weekly/310.locate doesn't see /etc/locate.rc. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?ISO-2022-JP?B?GyRCMCRJdDkoTEAbKEI=?= List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2011 16:00:20 -0000 The following reply was made to PR conf/160225; it has been noted by GNATS. From: =?ISO-2022-JP?B?GyRCMCRJdDkoTEAbKEI=?= To: bug-followup@FreeBSD.org, hiroaki0404@gmail.com Cc: Subject: Re: conf/160225: [periodic] /etc/periodic/weekly/310.locate doesn't see /etc/locate.rc. Date: Sun, 4 Sep 2011 00:32:19 +0900 Hello, all. Followings works fine for me. Regards, --- /usr/src/etc/periodic/weekly/310.locate 2011-02-26 19:30:50.000000000 +0900 +++ /etc/periodic/weekly/310.locate 2011-09-03 16:37:29.000000000 +0900 @@ -16,7 +16,12 @@ echo "" echo "Rebuilding locate database:" - locdb=/var/db/locate.database + . /etc/locate.rc + if [ 'x' = "x$FCODES" ]; then + locdb=/var/db/locate.database + else + locdb="$FCODES" + fi touch $locdb && rc=0 || rc=3 chown nobody $locdb || rc=3 From owner-freebsd-bugs@FreeBSD.ORG Sat Sep 3 16:30:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2927A106566C for ; Sat, 3 Sep 2011 16:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F22978FC16 for ; Sat, 3 Sep 2011 16:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p83GUAJo028949 for ; Sat, 3 Sep 2011 16:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p83GUAKA028946; Sat, 3 Sep 2011 16:30:10 GMT (envelope-from gnats) Resent-Date: Sat, 3 Sep 2011 16:30:10 GMT Resent-Message-Id: <201109031630.p83GUAKA028946@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ian Lepore Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D71E1065678 for ; Sat, 3 Sep 2011 16:23:46 +0000 (UTC) (envelope-from ilepore@damnhippie.dyndns.org) Received: from qmta07.emeryville.ca.mail.comcast.net (qmta07.emeryville.ca.mail.comcast.net [76.96.30.64]) by mx1.freebsd.org (Postfix) with ESMTP id 03D648FC0A for ; Sat, 3 Sep 2011 16:23:45 +0000 (UTC) Received: from omta14.emeryville.ca.mail.comcast.net ([76.96.30.60]) by qmta07.emeryville.ca.mail.comcast.net with comcast id UG4d1h0081HpZEsA7GAX2v; Sat, 03 Sep 2011 16:10:31 +0000 Received: from damnhippie.dyndns.org ([24.8.232.202]) by omta14.emeryville.ca.mail.comcast.net with comcast id UGAQ1h0034NgCEG8aGAQBo; Sat, 03 Sep 2011 16:10:24 +0000 Received: from revolution.hippie.lan (revolution.hippie.lan [172.22.42.240]) by damnhippie.dyndns.org (8.14.3/8.14.3) with ESMTP id p83GAYes033930 for ; Sat, 3 Sep 2011 10:10:34 -0600 (MDT) (envelope-from ilepore@damnhippie.dyndns.org) Received: (from ilepore@localhost) by revolution.hippie.lan (8.14.4/8.14.4/Submit) id p83GAYXB098629; Sat, 3 Sep 2011 10:10:34 -0600 (MDT) (envelope-from ilepore) Message-Id: <201109031610.p83GAYXB098629@revolution.hippie.lan> Date: Sat, 3 Sep 2011 10:10:34 -0600 (MDT) From: Ian Lepore To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/160430: [patch] Add __packed to libarchive cpio metadata structs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ian Lepore List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2011 16:30:11 -0000 >Number: 160430 >Category: kern >Synopsis: [patch] Add __packed to libarchive cpio metadata structs >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 Sep 03 16:30:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ian Lepore >Release: FreeBSD 8.2-RC3 arm >Organization: none >Environment: FreeBSD dvb 8.2-RC3 FreeBSD 8.2-RC3 #49: Tue Feb 15 22:52:14 UTC 2011 root@revolution.hippie.lan:/usr/obj/arm/usr/src/sys/DVB arm >Description: Some platforms (such as ARM) pad structures to a multiple of the platform's "natural alignment". This causes libarchive to go into an endless loop when processing a cpio archive on such a platform. Adding the __packed attribute fixes the problem. >How-To-Repeat: Create a cpio archive ('newc' format) and attempt to list or extract it on ARM. >Fix: Patch attached. This patch is well-tested; it has been in use at Symmetricom since 2007 for our products that run on both ARM and x86 (32-bit) platforms. --- diff.tmp begins here --- --- archive_read_support_format_cpio.c.orig 2009-12-28 22:50:34.000000000 -0700 +++ archive_read_support_format_cpio.c 2011-09-03 09:50:07.000000000 -0600 @@ -54,7 +54,7 @@ struct cpio_bin_header { unsigned char c_mtime[4]; unsigned char c_namesize[2]; unsigned char c_filesize[4]; -}; +} __packed; /* prevent struct size padding on arm */ struct cpio_odc_header { char c_magic[6]; @@ -68,7 +68,7 @@ struct cpio_odc_header { char c_mtime[11]; char c_namesize[6]; char c_filesize[11]; -}; +} __packed; /* prevent struct size padding on arm */ struct cpio_newc_header { char c_magic[6]; @@ -85,7 +85,7 @@ struct cpio_newc_header { char c_rdevminor[8]; char c_namesize[8]; char c_crc[8]; -}; +} __packed; /* prevent struct size padding on arm */ struct links_entry { struct links_entry *next; --- diff.tmp ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Sep 3 17:50:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E93F106566B for ; Sat, 3 Sep 2011 17:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 336818FC15 for ; Sat, 3 Sep 2011 17:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p83Ho94A003776 for ; Sat, 3 Sep 2011 17:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p83Ho984003775; Sat, 3 Sep 2011 17:50:09 GMT (envelope-from gnats) Resent-Date: Sat, 3 Sep 2011 17:50:09 GMT Resent-Message-Id: <201109031750.p83Ho984003775@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ian Lepore Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 367BC106566B for ; Sat, 3 Sep 2011 17:40:34 +0000 (UTC) (envelope-from ilepore@damnhippie.dyndns.org) Received: from qmta12.emeryville.ca.mail.comcast.net (qmta12.emeryville.ca.mail.comcast.net [76.96.27.227]) by mx1.freebsd.org (Postfix) with ESMTP id 1BA6F8FC0C for ; Sat, 3 Sep 2011 17:40:33 +0000 (UTC) Received: from omta16.emeryville.ca.mail.comcast.net ([76.96.30.72]) by qmta12.emeryville.ca.mail.comcast.net with comcast id UHe91h0041ZMdJ4ACHgUVa; Sat, 03 Sep 2011 17:40:28 +0000 Received: from damnhippie.dyndns.org ([24.8.232.202]) by omta16.emeryville.ca.mail.comcast.net with comcast id UHg61h00L4NgCEG8cHg6rp; Sat, 03 Sep 2011 17:40:07 +0000 Received: from revolution.hippie.lan (revolution.hippie.lan [172.22.42.240]) by damnhippie.dyndns.org (8.14.3/8.14.3) with ESMTP id p83HeVOl034008 for ; Sat, 3 Sep 2011 11:40:31 -0600 (MDT) (envelope-from ilepore@damnhippie.dyndns.org) Received: (from ilepore@localhost) by revolution.hippie.lan (8.14.4/8.14.4/Submit) id p83HeVWS098843; Sat, 3 Sep 2011 11:40:31 -0600 (MDT) (envelope-from ilepore) Message-Id: <201109031740.p83HeVWS098843@revolution.hippie.lan> Date: Sat, 3 Sep 2011 11:40:31 -0600 (MDT) From: Ian Lepore To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/160432: [patch] Allow both size and at-time specifications for log rotation. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ian Lepore List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2011 17:50:09 -0000 >Number: 160432 >Category: kern >Synopsis: [patch] Allow both size and at-time specifications for log rotation. >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 Sep 03 17:50:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ian Lepore >Release: FreeBSD 8.2-RC3 arm >Organization: none >Environment: FreeBSD dvb 8.2-RC3 FreeBSD 8.2-RC3 #49: Tue Feb 15 22:52:14 UTC 2011 root@revolution.hippie.lan:/usr/obj/arm/usr/src/sys/DVB arm >Description: If both size-based and time-based rotation parameters are specified for the same log file in newsyslog.conf, the size specification is effectively ignored because the rotation-decision logic returns early if the at-time test isn't satisfied. >How-To-Repeat: Specify both a size limit and a time specification for the same file. The log will not be rotated until the designated time regardless of how large it becomes before then. >Fix: This patch allows both size and time to be specified in a useful way. The log file will be rotated when either the size is exceeded or the designated time arrives. --- diff.tmp begins here --- --- newsyslog.c.orig 2011-09-03 11:26:46.000000000 -0600 +++ newsyslog.c 2011-08-31 16:06:09.000000000 -0600 @@ -516,7 +516,12 @@ do_entry(struct conf_entry * ent) printf("does not exist, skipped%s.\n", temp_reason); } } else { - if (ent->flags & CE_TRIMAT && !force && !rotatereq) { + if (ent->trsize > 0 && ent->fsize >= ent->trsize) { + if (verbose) { + printf("(size overrides at-time) "); + } + /* not returning here is how size overrides at-time */ + } else if (ent->flags & CE_TRIMAT && !force && !rotatereq) { diffsecs = ptimeget_diff(timenow, ent->trim_at); if (diffsecs < 0.0) { /* trim_at is some time in the future. */ --- diff.tmp ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Sep 3 19:10:07 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E3C91106566B for ; Sat, 3 Sep 2011 19:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B8E458FC16 for ; Sat, 3 Sep 2011 19:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p83JA7tU075187 for ; Sat, 3 Sep 2011 19:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p83JA7As075186; Sat, 3 Sep 2011 19:10:07 GMT (envelope-from gnats) Resent-Date: Sat, 3 Sep 2011 19:10:07 GMT Resent-Message-Id: <201109031910.p83JA7As075186@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ian Lepore Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFBC4106566C for ; Sat, 3 Sep 2011 19:00:51 +0000 (UTC) (envelope-from ilepore@damnhippie.dyndns.org) Received: from qmta03.emeryville.ca.mail.comcast.net (qmta03.emeryville.ca.mail.comcast.net [76.96.30.32]) by mx1.freebsd.org (Postfix) with ESMTP id 964718FC0C for ; Sat, 3 Sep 2011 19:00:51 +0000 (UTC) Received: from omta18.emeryville.ca.mail.comcast.net ([76.96.30.74]) by qmta03.emeryville.ca.mail.comcast.net with comcast id UJzY1h0021bwxycA3K0mek; Sat, 03 Sep 2011 19:00:46 +0000 Received: from damnhippie.dyndns.org ([24.8.232.202]) by omta18.emeryville.ca.mail.comcast.net with comcast id UK2C1h00M4NgCEG8eK2D90; Sat, 03 Sep 2011 19:02:13 +0000 Received: from revolution.hippie.lan (revolution.hippie.lan [172.22.42.240]) by damnhippie.dyndns.org (8.14.3/8.14.3) with ESMTP id p83J0nJP034074 for ; Sat, 3 Sep 2011 13:00:49 -0600 (MDT) (envelope-from ilepore@damnhippie.dyndns.org) Received: (from ilepore@localhost) by revolution.hippie.lan (8.14.4/8.14.4/Submit) id p83J0n36099006; Sat, 3 Sep 2011 13:00:49 -0600 (MDT) (envelope-from ilepore) Message-Id: <201109031900.p83J0n36099006@revolution.hippie.lan> Date: Sat, 3 Sep 2011 13:00:49 -0600 (MDT) From: Ian Lepore To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/160433: [patch] syslogd receiver buffer sizes set incorrectly X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ian Lepore List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2011 19:10:08 -0000 >Number: 160433 >Category: kern >Synopsis: [patch] syslogd receiver buffer sizes set incorrectly >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 Sep 03 19:10:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ian Lepore >Release: FreeBSD 8.2-RC3 arm >Organization: none >Environment: FreeBSD dvb 8.2-RC3 FreeBSD 8.2-RC3 #49: Tue Feb 15 22:52:14 UTC 2011 root@revolution.hippie.lan:/usr/obj/arm/usr/src/sys/DVB arm >Description: This change fixes 3 problems in syslogd related to sizing receive buffers. - A call was misplaced at the wrong level of nested if blocks, so that the buffers for unix domain sockets (/dev/log, /dev/klog) were never increased at all; they remained at a way-too-small default size of 4096. - The function that was supposed to double the size of the buffer sometimes did nothing, and sometimes installed a wildly-wrong buffer size (either too large or too small) due to an unitialized arglen variable passed to getsockopt(). Most often it doubled the UDP buffers from 40k to 80k because accidentally there would be harmless stack garbage in the unitialized variables. - The whole concept of blindly doubling a socket's buffer size without knowing what size it started at seems like a design flaw. If the double_rbuf() function had worked at all (I.E., if the other two bugs didn't exist) this would lead to UDP sockets having an 80k buffer while unix dgram sockets get an 8k buffer. There's nothing about the problem being solved that requires larger buffers for UDP than for unix dgram sockets -- the buffering requirements are the same regardless of socket type. This change renames the double_rbuf() function to increase_rbuf() and increases the buffer size on all types of sockets to 80k. 80k was chosen only because it appears to be the size the original change was shooting for, and it certainly seems to be reasonably large (I might have picked 64k in the absence of any historical guidance). This change also fixes a problem where syslogd is too quick to close sockets on errors. Add a couple more error codes to ignore from sendto(), so that transient errors (such as would occur when restarting a network interface, for example) get recovered. >How-To-Repeat: Log lots of messages from an app running on a heavily-loaded underpowered system such as a 200mhz ARM; without the larger buffers for the unix-domain sockets many messages get dropped in such an environment. >Fix: This problem was discovered in the 8.2 environment, but this diff/patch is to -current. --- diff.tmp begins here --- Index: syslogd.c =================================================================== RCS file: /local/base/FreeBSD-CVS/src/usr.sbin/syslogd/syslogd.c,v retrieving revision 1.169 diff -u -p -r1.169 syslogd.c --- syslogd.c 14 Jul 2011 07:33:53 -0000 1.169 +++ syslogd.c 3 Sep 2011 18:41:55 -0000 @@ -74,6 +74,7 @@ __FBSDID("$FreeBSD: src/usr.sbin/syslogd #define DEFSPRI (LOG_KERN|LOG_CRIT) #define TIMERINTVL 30 /* interval for checking flush, mark */ #define TTYMSGTIME 1 /* timeout passed to ttymsg */ +#define RCVBUF_MINSIZE (80 * 1024) /* minimum size of dgram rcv buffer */ #include #include @@ -336,7 +337,7 @@ static void unmapped(struct sockaddr *); static void wallmsg(struct filed *, struct iovec *, const int iovlen); static int waitdaemon(int, int, int); static void timedout(int); -static void double_rbuf(int); +static void increase_rcvbuf(int); int main(int argc, char *argv[]) @@ -547,8 +548,8 @@ main(int argc, char *argv[]) STAILQ_REMOVE(&funixes, fx, funix, next); continue; } - double_rbuf(fx->s); } + increase_rcvbuf(fx->s); } if (SecureMode <= 1) finet = socksetup(family, bindhostname); @@ -1241,8 +1242,10 @@ fprintlog(struct filed *f, int flags, co switch (errno) { case ENOBUFS: case ENETDOWN: + case ENETUNREACH: case EHOSTUNREACH: case EHOSTDOWN: + case EADDRNOTAVAIL: break; /* case EBADF: */ /* case EACCES: */ @@ -1253,7 +1256,7 @@ fprintlog(struct filed *f, int flags, co /* case ENOBUFS: */ /* case ECONNREFUSED: */ default: - dprintf("removing entry\n"); + dprintf("removing entry: errno=%d\n", e); f->f_type = F_UNUSED; break; } @@ -2697,6 +2700,9 @@ socksetup(int af, char *bindhostname) * If the system administrator choose not to obey * this, we can skip the bind() step so that the * system will choose a port for us. + * + * In SecureMode we will shutdown() the receive side of + * the socket, so no need for a bigger receiver buffer. */ if (!NoBind) { if (bind(*s, r->ai_addr, r->ai_addrlen) < 0) { @@ -2704,9 +2710,8 @@ socksetup(int af, char *bindhostname) logerror("bind"); continue; } - if (!SecureMode) - double_rbuf(*s); + increase_rcvbuf(*s); } (*socks)++; @@ -2727,12 +2732,15 @@ socksetup(int af, char *bindhostname) } static void -double_rbuf(int fd) +increase_rcvbuf(int fd) { - socklen_t slen, len; + socklen_t len; + socklen_t slen = sizeof(len); if (getsockopt(fd, SOL_SOCKET, SO_RCVBUF, &len, &slen) == 0) { - len *= 2; - setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &len, slen); + if (len < RCVBUF_MINSIZE) { + len = RCVBUF_MINSIZE; + setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &len, sizeof(len)); + } } } --- diff.tmp ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Sep 3 19:28:32 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4E48106566C; Sat, 3 Sep 2011 19:28:32 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BAEEB8FC1C; Sat, 3 Sep 2011 19:28:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p83JSWIL093456; Sat, 3 Sep 2011 19:28:32 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p83JSWY7093452; Sat, 3 Sep 2011 19:28:32 GMT (envelope-from linimon) Date: Sat, 3 Sep 2011 19:28:32 GMT Message-Id: <201109031928.p83JSWY7093452@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/160417: x11-fm/asfiles: Main.c:394:1: error: 'main' must return 'int' void main(int argc, char *argv[]) ^ 1 error generated. *** Error code 1. Compilation error while compiling with CLANG X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2011 19:28:33 -0000 Synopsis: x11-fm/asfiles: Main.c:394:1: error: 'main' must return 'int' void main(int argc, char *argv[]) ^ 1 error generated. *** Error code 1. Compilation error while compiling with CLANG Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sat Sep 3 19:27:38 UTC 2011 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=160417 From owner-freebsd-bugs@FreeBSD.ORG Sat Sep 3 23:40:01 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E422106566C for ; Sat, 3 Sep 2011 23:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 47BBB8FC15 for ; Sat, 3 Sep 2011 23:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p83Ne1aX022766 for ; Sat, 3 Sep 2011 23:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p83Ne1GQ022765; Sat, 3 Sep 2011 23:40:01 GMT (envelope-from gnats) Resent-Date: Sat, 3 Sep 2011 23:40:01 GMT Resent-Message-Id: <201109032340.p83Ne1GQ022765@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ian Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72C551065672 for ; Sat, 3 Sep 2011 23:36:28 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 587368FC0A for ; Sat, 3 Sep 2011 23:36:28 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p83NaSfM015232 for ; Sat, 3 Sep 2011 23:36:28 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p83NaSdG015231; Sat, 3 Sep 2011 23:36:28 GMT (envelope-from nobody) Message-Id: <201109032336.p83NaSdG015231@red.freebsd.org> Date: Sat, 3 Sep 2011 23:36:28 GMT From: Ian To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/160442: Packets transmitted on vlan(4) interfaces with a parent vge(4) vanish. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2011 23:40:01 -0000 >Number: 160442 >Category: kern >Synopsis: Packets transmitted on vlan(4) interfaces with a parent vge(4) vanish. >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 Sep 03 23:40:00 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ian >Release: 8.2-RELEASE-p2 >Organization: - >Environment: FreeBSD 8.2-RELEASE-p2 i386 >Description: When using a vge(4) physical interface for an 802.1Q trunk, packets sent via the vlan(4) interfaces tied to it seem to disappear. When debugging this, I came across a few curious things. The physical interface receives the packet, as reported by tcpdump. Then, the tagging is stripped off, and it's handed to the vlan interface, where tcpdump again sees the packet, unencapsulated, as one would suspect. Replies sent back out can be seen on the vlan interface, but tcpdump never sees any packets being sent back out the parent interface, and they never are! To illustrate, here's a DHCP request, as it appears on the physical interface: 07:57:13.147576 00:11:43:f6:00:28 > ff:ff:ff:ff:ff:ff, ethertype 802.1Q (0x8100), length 410: vlan 3, p 0, ethertype IPv4, (tos 0x0, ttl 128, id 35779, offset 0, flags [none], proto UDP (17), length 306) 0.0.0.0.68 > 255.255.255.255.67: [no cksum] BOOTP/DHCP, Request from 00:11:43:f6:00:28, length 278, xid 0x52525230, secs 2868, Flags [Broadcast] (0x8000) Client-Ethernet-Address 00:11:43:f6:00:28 [|bootp] This is then received on the vlan interface, and a reply is sent back out on the vlan interface: 07:58:25.142617 00:11:43:f6:00:28 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 406: (tos 0x0, ttl 128, id 13346, offset 0, flags [none], proto UDP (17), length 306) 0.0.0.0.68 > 255.255.255.255.67: [no cksum] BOOTP/DHCP, Request from 00:11:43:f6:00:28, length 278, xid 0x52525230, secs 2940, Flags [Broadcast] (0x8000) Client-Ethernet-Address 00:11:43:f6:00:28 [|bootp] 07:58:25.146633 00:40:63:e6:8d:a5 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) 192.168.0.221.67 > 255.255.255.255.68: BOOTP/DHCP, Reply, length 300, xid 0x52525230, secs 2940, Flags [Broadcast] (0x8000) Your-IP 192.168.0.193 Client-Ethernet-Address 00:11:43:f6:00:28 [|bootp] ..but no reply is ever seen on the physical interface dump, and nothing hits the wire. This happens with all packets sent, including ARP replies. Without any vlans configured, the interface itself works well. I have not yet tested configuring vlans on it and then attempting to just use the native vlan on the interface itself, but I'm willing to if it would help. Strangely, if I disable HW VLAN tagging, the incoming packet can still be seen with tcpdump on the vge and vlan interfaces. However, I don't then see a reply on either interface, vlan or vge. Also, even though polling is being used in my case, disabling/enabling it seems to have no effect on the situation. >How-To-Repeat: Configure a vge interface with one or more vlan like so: vge0: flags=8843 metric 0 mtu 1500 options=38db ether 00:40:63:e6:8d:a5 media: Ethernet autoselect (1000baseT ) status: active vlan3: flags=8843 metric 0 mtu 1500 options=3 ether 00:40:63:e6:8d:a5 inet 192.168.0.222 netmask 0xffffffe0 broadcast 192.168.0.223 inet 192.168.0.221 netmask 0xffffffff broadcast 192.168.0.221 [...] media: Ethernet autoselect (1000baseT ) status: active vlan: 3 parent interface: vge0 Attempt to ARP any of the addresses on the vlan interface, and you will see no reply. Check for the odd behavior with tcpdump in the full description of the problem. >Fix: None known. >Release-Note: >Audit-Trail: >Unformatted: