From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 00:50:08 2012 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 6F12A106566B for ; Sun, 29 Jan 2012 00:50: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 5A47A8FC13 for ; Sun, 29 Jan 2012 00:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0T0o8bb035975 for ; Sun, 29 Jan 2012 00:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0T0o8id035974; Sun, 29 Jan 2012 00:50:08 GMT (envelope-from gnats) Date: Sun, 29 Jan 2012 00:50:08 GMT Message-Id: <201201290050.q0T0o8id035974@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/154287: 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: Sun, 29 Jan 2012 00:50:08 -0000 The following reply was made to PR kern/154287; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/154287: commit references a PR Date: Sun, 29 Jan 2012 00:40:59 +0000 (UTC) Author: marius Date: Sun Jan 29 00:40:39 2012 New Revision: 230695 URL: http://svn.freebsd.org/changeset/base/230695 Log: MFC: r226175 In device_get_children() avoid malloc(0) in order to increase portability to other operating systems. PR: 154287 Modified: stable/9/sys/kern/subr_bus.c Directory Properties: stable/9/sys/ (props changed) stable/9/sys/amd64/include/xen/ (props changed) stable/9/sys/boot/ (props changed) stable/9/sys/boot/i386/efi/ (props changed) stable/9/sys/boot/ia64/efi/ (props changed) stable/9/sys/boot/ia64/ski/ (props changed) stable/9/sys/boot/powerpc/boot1.chrp/ (props changed) stable/9/sys/boot/powerpc/ofw/ (props changed) stable/9/sys/cddl/contrib/opensolaris/ (props changed) stable/9/sys/conf/ (props changed) stable/9/sys/contrib/dev/acpica/ (props changed) stable/9/sys/contrib/octeon-sdk/ (props changed) stable/9/sys/contrib/pf/ (props changed) stable/9/sys/contrib/x86emu/ (props changed) Modified: stable/9/sys/kern/subr_bus.c ============================================================================== --- stable/9/sys/kern/subr_bus.c Sun Jan 29 00:35:22 2012 (r230694) +++ stable/9/sys/kern/subr_bus.c Sun Jan 29 00:40:39 2012 (r230695) @@ -2173,6 +2173,11 @@ device_get_children(device_t dev, device TAILQ_FOREACH(child, &dev->children, link) { count++; } + if (count == 0) { + *devlistp = NULL; + *devcountp = 0; + return (0); + } list = malloc(count * sizeof(device_t), M_TEMP, M_NOWAIT|M_ZERO); if (!list) _______________________________________________ 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 Sun Jan 29 00:50:10 2012 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 2D5591065673 for ; Sun, 29 Jan 2012 00:50: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 189638FC1D for ; Sun, 29 Jan 2012 00:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0T0o9iA035987 for ; Sun, 29 Jan 2012 00:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0T0o9B1035986; Sun, 29 Jan 2012 00:50:09 GMT (envelope-from gnats) Date: Sun, 29 Jan 2012 00:50:09 GMT Message-Id: <201201290050.q0T0o9B1035986@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/154287: 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: Sun, 29 Jan 2012 00:50:10 -0000 The following reply was made to PR kern/154287; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/154287: commit references a PR Date: Sun, 29 Jan 2012 00:41:18 +0000 (UTC) Author: marius Date: Sun Jan 29 00:41:08 2012 New Revision: 230696 URL: http://svn.freebsd.org/changeset/base/230696 Log: MFC: r226175 In device_get_children() avoid malloc(0) in order to increase portability to other operating systems. PR: 154287 Modified: stable/8/sys/kern/subr_bus.c Directory Properties: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) Modified: stable/8/sys/kern/subr_bus.c ============================================================================== --- stable/8/sys/kern/subr_bus.c Sun Jan 29 00:40:39 2012 (r230695) +++ stable/8/sys/kern/subr_bus.c Sun Jan 29 00:41:08 2012 (r230696) @@ -2176,6 +2176,11 @@ device_get_children(device_t dev, device TAILQ_FOREACH(child, &dev->children, link) { count++; } + if (count == 0) { + *devlistp = NULL; + *devcountp = 0; + return (0); + } list = malloc(count * sizeof(device_t), M_TEMP, M_NOWAIT|M_ZERO); if (!list) _______________________________________________ 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 Sun Jan 29 01:26:09 2012 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 D6F24106566C; Sun, 29 Jan 2012 01:26:09 +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 A9E588FC12; Sun, 29 Jan 2012 01:26:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0T1Q9fu071537; Sun, 29 Jan 2012 01:26:09 GMT (envelope-from marius@freefall.freebsd.org) Received: (from marius@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0T1Q9Ol071533; Sun, 29 Jan 2012 01:26:09 GMT (envelope-from marius) Date: Sun, 29 Jan 2012 01:26:09 GMT Message-Id: <201201290126.q0T1Q9Ol071533@freefall.freebsd.org> To: sebastian.huber@embedded-brains.de, marius@FreeBSD.org, freebsd-bugs@FreeBSD.org From: marius@FreeBSD.org Cc: Subject: Re: kern/154287: [kernel] [patch] Avoid malloc(0) implementation dependency in device_get_children() 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, 29 Jan 2012 01:26:09 -0000 Synopsis: [kernel] [patch] Avoid malloc(0) implementation dependency in device_get_children() State-Changed-From-To: open->closed State-Changed-By: marius State-Changed-When: Sun Jan 29 01:25:05 UTC 2012 State-Changed-Why: close http://www.freebsd.org/cgi/query-pr.cgi?pr=154287 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 03:26:54 2012 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 13A41106564A; Sun, 29 Jan 2012 03:26:54 +0000 (UTC) (envelope-from osho@pcc-software.org) Received: from d203141144045.ddo.jp (mail.pcc-software.org [203.141.144.45]) by mx1.freebsd.org (Postfix) with ESMTP id C9E018FC0C; Sun, 29 Jan 2012 03:26:53 +0000 (UTC) Received: from d203141144045.ddo.jp (mami [10.1.0.2]) by d203141144045.ddo.jp (Postfix) with ESMTP id 28C68B2A; Sun, 29 Jan 2012 12:07:31 +0900 (JST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pcc-software.org; h= message-id:date:from:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; s=s1024; bh=83CubFDvVAuG1wuOkPAwFIzvM7s=; b=fn4m9v8kfWPE0A9buzePHKvH4ssh 24/KB6p/4oga6/HFH7p8l2zPpyTAAAtS6noxpQi7nAQC2mNjfvwX2qdXYels96R3 IxknBZEvcPqNxmsdBD1Wq9NqtoOOU9+aaFn1ImkDxCUXSQLVX8oXiKMMiOjGYaJN dca4lUoCrqinf/A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pcc-software.org; h= message-id:date:from:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; q=dns; s= s1024; b=NNGYAywZPbCmYpExLz3C071AyfEdfa0byzYj3oyr0GlhAxIafzV0DQz 82GV9qpnHfh4tFNiwtVInu31e1zcOdvk0nKOchXdcQ28o4LSoa6C/bUzyWUMAEQC bBCBISDwugm9MJlY3tQzhFIkmDNsUe6bVDXFP52w4h5eBk2znL18= Received: from [192.168.0.17] (egg.pcc-software.org [192.168.0.17]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by d203141144045.ddo.jp (Postfix) with ESMTPSA id 8716EB29; Sun, 29 Jan 2012 12:07:30 +0900 (JST) Message-ID: <4F24B7ED.5070705@pcc-software.org> Date: Sun, 29 Jan 2012 12:07:25 +0900 From: Yoshisato YANAGISAWA User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org References: <201112021550.pB2Fo3hp039496@freefall.freebsd.org> In-Reply-To: <201112021550.pB2Fo3hp039496@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: Subject: Re: kern/163020: [patch] enable the Camellia-XTS on GEOM ELI (geli). 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, 29 Jan 2012 03:26:54 -0000 I tried to apply the same patch to the latest FreeBSD current, and confirm it still works. I can apply the patch and all the test has passed. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 09:10:15 2012 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 924C9106566C for ; Sun, 29 Jan 2012 09:10: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 77D4A8FC0A for ; Sun, 29 Jan 2012 09:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0T9AFAF015073 for ; Sun, 29 Jan 2012 09:10:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0T9AFL6015072; Sun, 29 Jan 2012 09:10:15 GMT (envelope-from gnats) Date: Sun, 29 Jan 2012 09:10:15 GMT Message-Id: <201201290910.q0T9AFL6015072@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: James Mansion Cc: Subject: Re: kern/164258: [mfi] mfi does not work with PERC5/i in AMD M350 motherboard X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: James Mansion List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Jan 2012 09:10:15 -0000 The following reply was made to PR kern/164258; it has been noted by GNATS. From: James Mansion To: bug-followup@FreeBSD.org, james@mansionfamily.plus.com Cc: Subject: Re: kern/164258: [mfi] mfi does not work with PERC5/i in AMD M350 motherboard Date: Sun, 29 Jan 2012 08:55:20 +0000 The machine doesn't have a serial port. Oddly, the BIOS goes through PERC BIOS setup and then sits and doesn't autoboot: F7 to get the boot list gives me a sane list and then I can just pres return to boot from sata0 (which happens to be an SSD). Then the Beastie menu starts up etc - but at this point the USB keyboard ISN'T working. The countdown timeout triggers OK, and then we boot up OK from the SATA drives. Can I get the boot -v dmesg captured by editing loader.4th (or similar)? James From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 14:32:04 2012 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 B93821065673; Sun, 29 Jan 2012 14:32:04 +0000 (UTC) (envelope-from antonio.trindade@gmail.com) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id E58F78FC0C; Sun, 29 Jan 2012 14:32:03 +0000 (UTC) Received: by wibhn14 with SMTP id hn14so4009226wib.13 for ; Sun, 29 Jan 2012 06:32:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:mime-version:content-type:subject:date:in-reply-to:to :references:message-id:x-mailer:x-virus-scanned; bh=X8a/gZMLKViN+V3Eqz+0tsNNzlHOS5W3OOVwgQoPouc=; b=CdDsU9neXVgy3NkkaPfMcuR0EWGe9pvrpDITitUPzWuRwn/tgnLl8ERkbtpxkH92R6 8iPftJ7+6Kb7+2iQ167Lt/oDJOMBsqgaezdN8St6B3JgDAS5W2gfgcBDNq3sGp7wqjHN 1SIOstRr97BXZsPAhYKqF5vqmNVm6EY/PlAxg= Received: by 10.180.86.105 with SMTP id o9mr22130947wiz.4.1327847523007; Sun, 29 Jan 2012 06:32:03 -0800 (PST) Received: from gatekeeper.darklair.homeunix.net (a89-153-149-64.cpe.netcabo.pt. [89.153.149.64]) by mx.google.com with ESMTPS id fv6sm42905017wib.8.2012.01.29.06.32.00 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 29 Jan 2012 06:32:01 -0800 (PST) Received: from gatekeeper.darklair.homeunix.net (localhost [127.0.0.1]) by gatekeeper.darklair.homeunix.net (Postfix) with ESMTP id 6096CCF01A; Sun, 29 Jan 2012 14:31:59 +0000 (WET) Received: from altair-wifi.darklair.homeunix.net (altair-wifi.darklair.homeunix.net [10.0.0.11]) by gatekeeper.darklair.homeunix.net (Postfix) with ESMTPA id C3814CF018; Sun, 29 Jan 2012 14:31:58 +0000 (WET) From: =?iso-8859-1?Q?Ant=F3nio_Trindade?= Mime-Version: 1.0 (Apple Message framework v1084) Date: Sun, 29 Jan 2012 14:31:56 +0000 In-Reply-To: <201201290809.q0T89xrA070840@chez.mckusick.com> To: freebsd-fs@freebsd.org, freebsd-stable@freebsd.org, freebsd-bugs@freebsd.org References: <201201290809.q0T89xrA070840@chez.mckusick.com> Message-Id: <5CDF3EE0-2FC6-4445-9BC4-502CA95BE70C@gmail.com> X-Mailer: Apple Mail (2.1084) X-Virus-Scanned: ClamAV using ClamSMTP Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: kernel: panic: softdep_sync_buf: Unknown type jnewblk 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, 29 Jan 2012 14:32:04 -0000 Hi. I'm pretty sure this will be considered almost as spam, but I = reactivated SU+J a day and half ago and it still did not panic. However, I also activated dumpdev, so I'll be prepared to provide = additional information in case of a panic. Cumprimentos/Best regards/Mit freundlichen Gr=FC=DFen, Ant=F3nio Trindade Antonio Trindade gmail.com S=EDtios pessoais: Galeria Fotogr=E1fica: http://trindade.myphotos.cc/fotos/ Blog de fotografia: http://trindade.myphotos.cc/fotografia/ Blog de not=EDcias: http://trindade.myphotos.cc/noticiasavulsas/ Blog pessoal: http://trindade.myphotos.cc/pensamentosnoar/ On 2012/01/29, at 08:09, Kirk McKusick wrote: >> Date: Fri, 27 Jan 2012 09:39:34 +0100 >> From: Yamagi Burmeister >> To: freebsd@jdc.parodius.com >> Cc: antonio.trindade@gmail.com, freebsd-fs@freebsd.org, = dougb@freebsd.org, >> freebsd-stable@freebsd.org >> Subject: Re: kernel: panic: softdep_sync_buf: Unknown type jnewblk >>=20 >> Hi :) >>=20 >> On Thu, 26 Jan 2012 17:54:30 -0800 >> Jeremy Chadwick wrote: >>=20 >>> I'll also point out, though the OP isn't using snapshots, that it's >>> confirmed use of snapshots on SU+J can result in a full filesystem = hang. >>> Confirmation is from Kirk McKusick (author of SU and designer of = SU+J): >>>=20 >>> = http://lists.freebsd.org/pipermail/freebsd-fs/2012-January/013429.html >>>=20 >>> Something really needs to be done about this combination of = problems. >>>=20 >>> Since SU+J is the default choice for all UFS filesystems on = 9.0-RELEASE, >>> the only solution I can think of is to send a massive announcement = to >>> relevant mailing lists, AND put something on the freebsd.org home = page >>> about these issues. >>=20 >> The problem was analyzed but no immediate solution found. Therefor >> snapshots on filesystems with SU+J (but not SU alone) were disabled >> by Kirk McKusick in SVN r230250. The MFC to 9-STABLE has still to >> be done. Maybe this fix is a candidate for an errata notice / patch, >> distributed by freebsd-update? >=20 > With revision 230725 I have MFC'ed to 9 the above change to disable > snapshots when running SU+J. Hopefully Jeff and I will manage to get > a fix for snapshots so as to be able to run them reliably with SU+J. > The above change is not relevant to 8 or earlier systems, so this MFC > will not be applied to them. >=20 > Kirk McKusick From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 15:40:12 2012 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 2ABD0106566B for ; Sun, 29 Jan 2012 15: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 075588FC0C for ; Sun, 29 Jan 2012 15:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0TFe9BL090804 for ; Sun, 29 Jan 2012 15:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0TFe9Qi090803; Sun, 29 Jan 2012 15:40:09 GMT (envelope-from gnats) Resent-Date: Sun, 29 Jan 2012 15:40:09 GMT Resent-Message-Id: <201201291540.q0TFe9Qi090803@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, Floris Bos Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE33D106566B for ; Sun, 29 Jan 2012 15:40:03 +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 D73AD8FC13 for ; Sun, 29 Jan 2012 15:40:03 +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 q0TFe2sT061781 for ; Sun, 29 Jan 2012 15:40:02 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q0TFe26k061780; Sun, 29 Jan 2012 15:40:02 GMT (envelope-from nobody) Message-Id: <201201291540.q0TFe26k061780@red.freebsd.org> Date: Sun, 29 Jan 2012 15:40:02 GMT From: Floris Bos To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/164604: TFTP pxeboot: should use root-path provided by DHCP 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, 29 Jan 2012 15:40:12 -0000 >Number: 164604 >Category: misc >Synopsis: TFTP pxeboot: should use root-path provided by DHCP >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jan 29 15:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Floris Bos >Release: 9.0 >Organization: >Environment: 9.0-RELEASE >Description: When pxeboot is compiled with LOADER_TFTP_SUPPORT it always expects to find the boot files in the /boot folder on the TFTP server. This hardcoded value is inflexible and does not allow the network booting of more than one version of FreeBSD. Instead it should fetch the files from the path specified by the root-path value supplied by DHCP, like other operating systems do. >How-To-Repeat: - >Fix: Attached a patch that uses the root-path parameter if present. If the parameter is not present it reverts to the old behavior, so does not break existing setups. Patch attached with submission follows: --- /usr/src/lib/libstand/tftp.c.orig 2012-01-28 21:07:55.000000000 +0100 +++ /usr/src/lib/libstand/tftp.c 2012-01-28 21:41:24.000000000 +0100 @@ -413,12 +413,22 @@ io->destip = servip; tftpfile->off = 0; - tftpfile->path = strdup(path); - if (tftpfile->path == NULL) { + + if (path == NULL) { free(tftpfile); return(ENOMEM); } + if (rootpath != NULL) { + tftpfile->path = malloc(strlen(rootpath)+strlen(path)+1); + strcpy(tftpfile->path, rootpath); + strcat(tftpfile->path, path); + } + else + { + tftpfile->path = strdup(path); + } + res = tftp_makereq(tftpfile); if (res) { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 19:30:15 2012 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 570B4106564A for ; Sun, 29 Jan 2012 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 427C08FC0A for ; Sun, 29 Jan 2012 19:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0TJUFeQ001261 for ; Sun, 29 Jan 2012 19:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0TJUFhN001256; Sun, 29 Jan 2012 19:30:15 GMT (envelope-from gnats) Date: Sun, 29 Jan 2012 19:30:15 GMT Message-Id: <201201291930.q0TJUFhN001256@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Stefan Krueger Cc: Subject: Re: misc/164565: kernel crash when kldunload'ing padlock X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stefan Krueger List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Jan 2012 19:30:15 -0000 The following reply was made to PR kern/164565; it has been noted by GNATS. From: Stefan Krueger To: bug-followup@FreeBSD.org Cc: Patrick Lamaiziere Subject: Re: misc/164565: kernel crash when kldunload'ing padlock Date: Sun, 29 Jan 2012 20:23:20 +0100 > > Unloading the padlock kernel module makes the kernel crash. > Do you have a panic or there is just a crash without information? > If it panics, a back trace would be helpful, see > http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug.html > Are you using padlock (ipsec?) when unloading? > Regards. Hi Patrick, thanks for fast reply. I get a backtrace indeed: # kldunload padlock panic: rw lock 0xfffffe00019a2698 not unlocked cpuid = 0 KDB: stack backtrace: #0 0xffffffff8049822e at kdb_backtrace+0x5e #1 0xffffffff80460d57 at panic+0x187 #2 0xffffffff8045fa84 at rw_destroy+0x34 #3 0xffffffff80baa848 at padlock_detach+0x108 #4 0xffffffff804919e4 at device_detach+0x94 #5 0xffffffff80491c80 at devclass_driver_deleted+0x70 #6 0xffffffff80491da1 at devclass_delete_driver+0x51 #7 0xffffffff80491fad at driver_module_handler+0x14d #8 0xffffffff8044fc05 at module_unload+0x35 #9 0xffffffff8044592b at linker_file_unload+0x16b #10 0xffffffff80446513 at kern_kldunload+0xf3 #11 0xffffffff8063eea3 at amd64_syscall+0x313 #12 0xffffffff80629f07 at Xfast_syscall+0xf7 Uptime: 31s Automatic reboot in 15 seconds - press a key on the console to abort Padlock is not in use (i.e. I netbooted a freebsd 9.0 kernel into single-user, so no IPSEC, no GELI, no nothing at that point) I'm pretty sure I could get a crashdump if you need one. Regards From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 20:20:14 2012 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 787E91065672 for ; Sun, 29 Jan 2012 20:20: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 624548FC08 for ; Sun, 29 Jan 2012 20:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0TKKE57047643 for ; Sun, 29 Jan 2012 20:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0TKKEUk047642; Sun, 29 Jan 2012 20:20:14 GMT (envelope-from gnats) Date: Sun, 29 Jan 2012 20:20:14 GMT Message-Id: <201201292020.q0TKKEUk047642@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Patrick Lamaiziere Cc: Subject: Re: misc/164565: kernel crash when kldunload'ing padlock X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Patrick Lamaiziere List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Jan 2012 20:20:14 -0000 The following reply was made to PR kern/164565; it has been noted by GNATS. From: Patrick Lamaiziere To: bug-followup@freebsd.org Cc: Stefan Krueger , pjd@freebsd.org Subject: Re: misc/164565: kernel crash when kldunload'ing padlock Date: Sun, 29 Jan 2012 21:17:02 +0100 --MP_/G4rR5p6WaSeS.e5_cqECYO. Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Content-Disposition: inline Le Sun, 29 Jan 2012 19:30:15 GMT, Stefan Krueger a écrit : > The following reply was made to PR kern/164565; it has been noted by > GNATS. > > From: Stefan Krueger > To: bug-followup@FreeBSD.org > Cc: Patrick Lamaiziere > Subject: Re: misc/164565: kernel crash when kldunload'ing padlock > Date: Sun, 29 Jan 2012 20:23:20 +0100 > > > > Unloading the padlock kernel module makes the kernel crash. > I get a backtrace indeed: > > # kldunload padlock > panic: rw lock 0xfffffe00019a2698 not unlocked > cpuid = 0 > KDB: stack backtrace: > #0 0xffffffff8049822e at kdb_backtrace+0x5e > #1 0xffffffff80460d57 at panic+0x187 > #2 0xffffffff8045fa84 at rw_destroy+0x34 > #3 0xffffffff80baa848 at padlock_detach+0x108 > #4 0xffffffff804919e4 at device_detach+0x94 > #5 0xffffffff80491c80 at devclass_driver_deleted+0x70 > #6 0xffffffff80491da1 at devclass_delete_driver+0x51 > #7 0xffffffff80491fad at driver_module_handler+0x14d > #8 0xffffffff8044fc05 at module_unload+0x35 > #9 0xffffffff8044592b at linker_file_unload+0x16b > #10 0xffffffff80446513 at kern_kldunload+0xf3 > #11 0xffffffff8063eea3 at amd64_syscall+0x313 > #12 0xffffffff80629f07 at Xfast_syscall+0xf7 > Uptime: 31s > Automatic reboot in 15 seconds - press a key on the console to abort > > Padlock is not in use (i.e. I netbooted a freebsd 9.0 kernel into > single-user, so no IPSEC, no GELI, no nothing at that point) Please try the attached patch. The rw_wlock at the beginning of padlock_detach() is not unlocked before it is destroyed. I think I've spotted this but forget to report when I did glxsb(4) (it is ok in glxsb_detach() and it detachs properly). I put Pawel Jakub Dawidek in copy. Thanks, regards. --MP_/G4rR5p6WaSeS.e5_cqECYO. Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=patch.txt --- /usr/src/sys/crypto/via/padlock.c~ 2011-09-23 02:51:37.000000000 +0200 +++ /usr/src/sys/crypto/via/padlock.c 2012-01-29 20:56:05.238878471 +0100 @@ -158,6 +158,7 @@ padlock_detach(device_t dev) TAILQ_REMOVE(&sc->sc_sessions, ses, ses_next); free(ses, M_PADLOCK); } + rw_wunlock(&sc->sc_sessions_lock); rw_destroy(&sc->sc_sessions_lock); crypto_unregister_all(sc->sc_cid); return (0); --MP_/G4rR5p6WaSeS.e5_cqECYO.-- From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 21:50:09 2012 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 EA47B1065670 for ; Sun, 29 Jan 2012 21: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 B9FFB8FC19 for ; Sun, 29 Jan 2012 21:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0TLo9TL031753 for ; Sun, 29 Jan 2012 21:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0TLo9IX031752; Sun, 29 Jan 2012 21:50:09 GMT (envelope-from gnats) Resent-Date: Sun, 29 Jan 2012 21:50:09 GMT Resent-Message-Id: <201201292150.q0TLo9IX031752@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, Tassilo Philipp Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 206AD106566C for ; Sun, 29 Jan 2012 21:49: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 0AC598FC19 for ; Sun, 29 Jan 2012 21:49: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 q0TLnVw1017665 for ; Sun, 29 Jan 2012 21:49:31 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q0TLnVsJ017664; Sun, 29 Jan 2012 21:49:31 GMT (envelope-from nobody) Message-Id: <201201292149.q0TLnVsJ017664@red.freebsd.org> Date: Sun, 29 Jan 2012 21:49:31 GMT From: Tassilo Philipp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/164611: [maintainer update] devel/dyncall 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, 29 Jan 2012 21:50:10 -0000 >Number: 164611 >Category: misc >Synopsis: [maintainer update] devel/dyncall >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Jan 29 21:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Tassilo Philipp >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN dyncall.orig/Makefile dyncall/Makefile --- dyncall.orig/Makefile 2012-01-26 00:04:14.000000000 +0000 +++ dyncall/Makefile 2012-01-26 00:22:11.000000000 +0000 @@ -6,7 +6,7 @@ # PORTNAME= dyncall -PORTVERSION= 0.6 +PORTVERSION= 0.7 CATEGORIES= devel MASTER_SITES= http://www.dyncall.org/r${PORTVERSION}/ \ http://www.potion-studios.com/ @@ -24,39 +24,53 @@ .include -.if ${ARCH} == "sparc64" || ${ARCH} == "ia64" +.if ${ARCH} == "ia64" BROKEN= Does not install (unsupported architecture) .endif do-install: - ${INSTALL_DATA} ${WRKSRC}/dyncall/dyncall.h \ - ${WRKSRC}/dyncall/dyncall_alloc.h \ - ${WRKSRC}/dyncall/dyncall_vector.h \ - ${WRKSRC}/dyncall/dyncall_types.h \ + ${INSTALL_DATA} \ ${WRKSRC}/dyncall/dyncall_value.h \ - ${WRKSRC}/dyncall/dyncall_callf.h \ - ${WRKSRC}/dyncall/dyncall_callvm.h \ - ${WRKSRC}/dyncall/dyncall_config.h \ ${WRKSRC}/dyncall/dyncall_macros.h \ + ${WRKSRC}/dyncall/dyncall_callf.h \ + ${WRKSRC}/dyncall/dyncall_types.h \ ${WRKSRC}/dyncall/dyncall_signature.h \ + ${WRKSRC}/dyncall/dyncall_config.h \ + ${WRKSRC}/dyncall/dyncall.h \ ${WRKSRC}/dyncallback/dyncall_alloc_wx.h \ - ${WRKSRC}/dyncallback/dyncall_args.h \ - ${WRKSRC}/dyncallback/dyncall_callback.h \ - ${WRKSRC}/dyncallback/dyncall_thunk.h \ - ${WRKSRC}/dyncallback/dyncall_thunk_arm32_arm.h \ - ${WRKSRC}/dyncallback/dyncall_thunk_arm32_thumb.h \ - ${WRKSRC}/dyncallback/dyncall_thunk_ppc32.h \ ${WRKSRC}/dyncallback/dyncall_thunk_x86.h \ ${WRKSRC}/dyncallback/dyncall_thunk_x64.h \ + ${WRKSRC}/dyncallback/dyncall_thunk_sparc64.h \ + ${WRKSRC}/dyncallback/dyncall_thunk_sparc32.h \ + ${WRKSRC}/dyncallback/dyncall_thunk_ppc32.h \ + ${WRKSRC}/dyncallback/dyncall_thunk_arm32_thumb.h \ + ${WRKSRC}/dyncallback/dyncall_thunk_arm32_arm.h \ + ${WRKSRC}/dyncallback/dyncall_thunk.h \ + ${WRKSRC}/dyncallback/dyncall_callback_x86.h \ + ${WRKSRC}/dyncallback/dyncall_callback_x64.h \ + ${WRKSRC}/dyncallback/dyncall_callback_sparc32.h \ + ${WRKSRC}/dyncallback/dyncall_callback_ppc32.h \ + ${WRKSRC}/dyncallback/dyncall_callback_arm32_thumb.h \ + ${WRKSRC}/dyncallback/dyncall_callback_arm32_arm.h \ + ${WRKSRC}/dyncallback/dyncall_callback.h \ + ${WRKSRC}/dyncallback/dyncall_args_x86.h \ + ${WRKSRC}/dyncallback/dyncall_args_x64.h \ + ${WRKSRC}/dyncallback/dyncall_args_sparc64.h \ + ${WRKSRC}/dyncallback/dyncall_args_sparc32.h \ + ${WRKSRC}/dyncallback/dyncall_args_ppc32.h \ + ${WRKSRC}/dyncallback/dyncall_args_arm32_thumb.h \ + ${WRKSRC}/dyncallback/dyncall_args_arm32_arm.h \ + ${WRKSRC}/dyncallback/dyncall_args.h \ ${WRKSRC}/dynload/dynload.h \ ${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/dyncall/libdyncall_s.a \ + ${INSTALL_DATA} \ + ${WRKSRC}/dyncall/libdyncall_s.a \ ${WRKSRC}/dyncallback/libdyncallback_s.a \ ${WRKSRC}/dynload/libdynload_s.a \ ${PREFIX}/lib .for f3 in ${MAN3} - ${INSTALL_MAN} ${WRKSRC}/doc/${f3} ${MAN3PREFIX}/man/man3 + ${INSTALL_MAN} ${WRKSRC}/dyncall/${f3} ${MAN3PREFIX}/man/man3 .endfor .include diff -ruN dyncall.orig/distinfo dyncall/distinfo --- dyncall.orig/distinfo 2012-01-26 00:04:15.000000000 +0000 +++ dyncall/distinfo 2012-01-26 00:05:45.000000000 +0000 @@ -1,2 +1,2 @@ -SHA256 (dyncall-0.6.tar.gz) = c99414abb8ebda2c83b345ec90c3f79ee4daaaaf2a0a29d4a1cc589ed43d0dc7 -SIZE (dyncall-0.6.tar.gz) = 302634 +SHA256 (dyncall-0.7.tar.gz) = d2aedea55478ec4b1519b379027719b47eddd3f4a2f7bc514f7cb0333bced5d0 +SIZE (dyncall-0.7.tar.gz) = 370848 diff -ruN dyncall.orig/pkg-plist dyncall/pkg-plist --- dyncall.orig/pkg-plist 2012-01-26 00:04:15.000000000 +0000 +++ dyncall/pkg-plist 2012-01-26 00:16:12.000000000 +0000 @@ -1,23 +1,35 @@ -include/dyncall.h -include/dyncall_alloc.h -include/dyncall_vector.h -include/dyncall_types.h +include/dynload.h include/dyncall_value.h -include/dyncall_callf.h -include/dyncall_callvm.h -include/dyncall_config.h include/dyncall_macros.h +include/dyncall_callf.h +include/dyncall_types.h include/dyncall_signature.h +include/dyncall_config.h +include/dyncall.h include/dyncall_alloc_wx.h -include/dyncall_args.h -include/dyncall_callback.h -include/dyncall_thunk.h -include/dyncall_thunk_arm32_arm.h -include/dyncall_thunk_arm32_thumb.h +include/dyncall_thunk_x64.h +include/dyncall_thunk_sparc64.h +include/dyncall_thunk_sparc32.h include/dyncall_thunk_ppc32.h +include/dyncall_thunk_arm32_thumb.h +include/dyncall_thunk_arm32_arm.h +include/dyncall_thunk.h +include/dyncall_callback_x86.h +include/dyncall_callback_x64.h +include/dyncall_callback_sparc32.h +include/dyncall_callback_ppc32.h +include/dyncall_callback_arm32_thumb.h +include/dyncall_callback_arm32_arm.h +include/dyncall_callback.h +include/dyncall_args_x86.h +include/dyncall_args_x64.h +include/dyncall_args_sparc64.h +include/dyncall_args_sparc32.h +include/dyncall_args_ppc32.h +include/dyncall_args_arm32_thumb.h +include/dyncall_args_arm32_arm.h +include/dyncall_args.h include/dyncall_thunk_x86.h -include/dyncall_thunk_x64.h -include/dynload.h lib/libdyncall_s.a lib/libdyncallback_s.a lib/libdynload_s.a >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 22:48:49 2012 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 BB8B0106564A; Sun, 29 Jan 2012 22:48:49 +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 8E0AF8FC15; Sun, 29 Jan 2012 22:48:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0TMmnUi086319; Sun, 29 Jan 2012 22:48:49 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0TMmnEl086315; Sun, 29 Jan 2012 22:48:49 GMT (envelope-from linimon) Date: Sun, 29 Jan 2012 22:48:49 GMT Message-Id: <201201292248.q0TMmnEl086315@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/164611: [maintainer update] devel/dyncall 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, 29 Jan 2012 22:48:49 -0000 Synopsis: [maintainer update] devel/dyncall Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jan 29 22:48:39 UTC 2012 Responsible-Changed-Why: Ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=164611 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 23:49:56 2012 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 E378A106566C; Sun, 29 Jan 2012 23:49:56 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B61538FC12; Sun, 29 Jan 2012 23:49:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0TNnuvS042154; Sun, 29 Jan 2012 23:49:56 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0TNnubZ042150; Sun, 29 Jan 2012 23:49:56 GMT (envelope-from gavin) Date: Sun, 29 Jan 2012 23:49:56 GMT Message-Id: <201201292349.q0TNnubZ042150@freefall.freebsd.org> To: gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, bugmeister@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: misc/164394: [GNATS] Change some fields to 'unset' to prevent miscategorization 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, 29 Jan 2012 23:49:57 -0000 Synopsis: [GNATS] Change some fields to 'unset' to prevent miscategorization Responsible-Changed-From-To: freebsd-bugs->bugmeister Responsible-Changed-By: gavin Responsible-Changed-When: Sun Jan 29 23:49:32 UTC 2012 Responsible-Changed-Why: Bugmeister territory http://www.freebsd.org/cgi/query-pr.cgi?pr=164394 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 23:50:38 2012 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 7B4EA106564A; Sun, 29 Jan 2012 23:50:38 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4D2758FC14; Sun, 29 Jan 2012 23:50:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0TNoc92044388; Sun, 29 Jan 2012 23:50:38 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0TNoceY044379; Sun, 29 Jan 2012 23:50:38 GMT (envelope-from gavin) Date: Sun, 29 Jan 2012 23:50:38 GMT Message-Id: <201201292350.q0TNoceY044379@freefall.freebsd.org> To: gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, bugmeister@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: misc/164395: [GNATs] add support for .patch attachments 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, 29 Jan 2012 23:50:38 -0000 Synopsis: [GNATs] add support for .patch attachments Responsible-Changed-From-To: freebsd-bugs->bugmeister Responsible-Changed-By: gavin Responsible-Changed-When: Sun Jan 29 23:49:59 UTC 2012 Responsible-Changed-Why: bugmeister territory (at least initially) http://www.freebsd.org/cgi/query-pr.cgi?pr=164395 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 29 23:52:09 2012 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 808B01065670; Sun, 29 Jan 2012 23:52:09 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 52FD78FC12; Sun, 29 Jan 2012 23:52:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0TNq96V050300; Sun, 29 Jan 2012 23:52:09 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0TNq9OB050296; Sun, 29 Jan 2012 23:52:09 GMT (envelope-from gavin) Date: Sun, 29 Jan 2012 23:52:09 GMT Message-Id: <201201292352.q0TNq9OB050296@freefall.freebsd.org> To: gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, bugmeister@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: misc/164396: [GNATs] add 'enhancement' class 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, 29 Jan 2012 23:52:09 -0000 Synopsis: [GNATs] add 'enhancement' class Responsible-Changed-From-To: freebsd-bugs->bugmeister Responsible-Changed-By: gavin Responsible-Changed-When: Sun Jan 29 23:50:43 UTC 2012 Responsible-Changed-Why: Bugmeister territory. We probably need to consider whether this is desired - until now we've tried to go a good job of keeping "enhancement" requests out of the bug database - instead trying to only keep bug reports in it. http://www.freebsd.org/cgi/query-pr.cgi?pr=164396 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 30 00:00:39 2012 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 A983A1065672 for ; Mon, 30 Jan 2012 00:00:39 +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 79F2B8FC0A for ; Mon, 30 Jan 2012 00:00:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0U00dmu050734 for ; Mon, 30 Jan 2012 00:00:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0U00d3B050725; Mon, 30 Jan 2012 00:00:39 GMT (envelope-from gnats) Date: Mon, 30 Jan 2012 00:00:39 GMT Message-Id: <201201300000.q0U00d3B050725@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: George Kontostanos Cc: Subject: Re: kern/162160: 9-RC1 over IPMI Virtual CD causes unexpected behaviur X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: George Kontostanos List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 00:00:39 -0000 The following reply was made to PR kern/162160; it has been noted by GNATS. From: George Kontostanos To: bug-followup@freebsd.org Cc: Subject: Re: kern/162160: 9-RC1 over IPMI Virtual CD causes unexpected behaviur Date: Mon, 30 Jan 2012 01:26:43 +0200 I am facing the same issues whenever I try to install FreeBSD 9.0-RELEASE from an external USB DRIVE. The only way for to boot is to specify cd9660:/dev/iso9660/FREEBSD_INSTALL From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 30 04:13:19 2012 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 DDEB61065678; Mon, 30 Jan 2012 04:13:19 +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 AFAFC8FC24; Mon, 30 Jan 2012 04:13:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0U4DJbE092053; Mon, 30 Jan 2012 04:13:19 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0U4DJIh092049; Mon, 30 Jan 2012 04:13:19 GMT (envelope-from linimon) Date: Mon, 30 Jan 2012 04:13:19 GMT Message-Id: <201201300413.q0U4DJIh092049@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/164472: [ufs] fsck -B panics on particular data inconsistency 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, 30 Jan 2012 04:13:20 -0000 Old Synopsis: fsck -B panics on particular data inconsistency New Synopsis: [ufs] fsck -B panics on particular data inconsistency Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Jan 30 04:13:00 UTC 2012 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=164472 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 30 07:00:21 2012 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 7D133106564A for ; Mon, 30 Jan 2012 07: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 4AE908FC1A for ; Mon, 30 Jan 2012 07:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0U70KIg043700 for ; Mon, 30 Jan 2012 07:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0U70Kdr043699; Mon, 30 Jan 2012 07:00:20 GMT (envelope-from gnats) Resent-Date: Mon, 30 Jan 2012 07:00:20 GMT Resent-Message-Id: <201201300700.q0U70Kdr043699@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 03B6D1065673 for ; Mon, 30 Jan 2012 06:50:49 +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 CDC068FC1A for ; Mon, 30 Jan 2012 06:50:48 +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 q0U6ompq099308 for ; Mon, 30 Jan 2012 06:50:48 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q0U6omoZ099307; Mon, 30 Jan 2012 06:50:48 GMT (envelope-from nobody) Message-Id: <201201300650.q0U6omoZ099307@red.freebsd.org> Date: Mon, 30 Jan 2012 06:50:48 GMT From: Pavel Timofeev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/164621: [vulnerable] please, update samba36 to 3.6.3 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, 30 Jan 2012 07:00:21 -0000 >Number: 164621 >Category: misc >Synopsis: [vulnerable] please, update samba36 to 3.6.3 >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 Jan 30 07:00:19 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Pavel Timofeev >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: >Description: Samba36 < 3.6.3 is vulnerable http://permalink.gmane.org/gmane.network.samba.announce/242 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 30 07:17:18 2012 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 4443E106564A; Mon, 30 Jan 2012 07:17:18 +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 1AA778FC0C; Mon, 30 Jan 2012 07:17:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0U7HHrc063571; Mon, 30 Jan 2012 07:17:17 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0U7HHw5063567; Mon, 30 Jan 2012 07:17:17 GMT (envelope-from linimon) Date: Mon, 30 Jan 2012 07:17:17 GMT Message-Id: <201201300717.q0U7HHw5063567@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, timur@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/164621: please, update net/samba36 to 3.6.3 (vulnerable) 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, 30 Jan 2012 07:17:18 -0000 Old Synopsis: [vulnerable] please, update samba36 to 3.6.3 New Synopsis: please, update net/samba36 to 3.6.3 (vulnerable) Responsible-Changed-From-To: freebsd-bugs->timur Responsible-Changed-By: linimon Responsible-Changed-When: Mon Jan 30 07:16:28 UTC 2012 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=164621 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 30 10:28:28 2012 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 C7DFE106566C; Mon, 30 Jan 2012 10:28:28 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 52CE28FC0A; Mon, 30 Jan 2012 10:28:28 +0000 (UTC) Received: from [192.168.2.102] (host86-182-206-142.range86-182.btcentralplus.com [86.182.206.142]) by cyrus.watson.org (Postfix) with ESMTPSA id 42A3F46B0D; Mon, 30 Jan 2012 05:28:27 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v1251.1) Content-Type: text/plain; charset=windows-1251 From: "Robert N. M. Watson" X-Priority: 3 (Normal) In-Reply-To: <154594163.20120117194113@yandex.ru> Date: Mon, 30 Jan 2012 10:28:24 +0000 Content-Transfer-Encoding: quoted-printable Message-Id: References: <201201142126.q0ELQVbZ087496@freefall.freebsd.org> <68477246.20120115000025@yandex.ru> <737885D7-5DC2-4A0D-A5DF-4A380D035648@FreeBSD.org> <154594163.20120117194113@yandex.ru> To: =?utf-8?B?0JrQvtC90YzQutC+0LIg0JXQstCz0LXQvdC40Lk=?= X-Mailer: Apple Mail (2.1251.1) Cc: freebsd-bugs@FreeBSD.org, bz@FreeBSD.org Subject: Re: misc/164130: broken netisr initialization 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, 30 Jan 2012 10:28:28 -0000 On 17 Jan 2012, at 17:41, =CA=EE=ED=FC=EA=EE=E2 =C5=E2=E3=E5=ED=E8=E9 = wrote: > Loads only netisr3. > and question: ip works over ethernet. How you can distinguish ip and = ether??? netstat -Q is showing you per-protocol (layer) processing statistics. An = IP packet arriving via ethernet will typically be counted twice: once = for ethernet input/decapsulation, and once for IP-layer processing. = Netisr dispatch serves a number of purposes, not least preventing = excessive stack depth/recursion and load balancing. There has been a historic tension between deferred (queued) dispatch to = a separate worker and direct dispatch ("process to completion"). The = former offers more opportunities for parallelism and reduces latency = during interrupt-layer processing. However, the latter reduces overhead = and overall packet latency for higher-level parallelism by avoiding = queueing/scheduling overheads, as well as avoiding packets migration = between caches, reducing cache coherency traffic. Our general experience = is that many common configurations, especially lower-end systems *and* = systems with multi-queue 10gbps cards, prefer direct dispatch. However, = there are forwarding scenarios or ones in which CPU count significantly = outnumbers NIC input queue count, where queuing to additional workers = can markedly improve performance. In FreeBSD 9.0 we've attempted to improve the vocabulary of expressible = policies in netisr so that we can explore which work best in various = scenarios, giving users more flexibility but also attempting to = determine a better longer-term model. Ideally, as with the VM system, = these features would be to some extent self-tuning, but we don't have = enough information and experience to decide how best to do that yet. > NETISR_POLICY_FLOW netisr should maintain flow ordering as = defined by > the mbuf header flow ID field. If the = protocol > implements nh_m2flow, then netisr will query = the > protocol in the event that the mbuf doesn't = have a > flow ID, falling back on source ordering. >=20 > NETISR_POLICY_CPU netisr will entirely delegate all work = placement > decisions to the protocol, querying = nh_m2cpuid for > each packet. >=20 > _FLOW: description says that cpuid discovered by flow. > _CPU: here decision to choose CPU is deligated to protocol. maybe it > will be clear to name it as: NETISR_POLICY_PROTO ??? The name has to do with the nature of the information returned by the = netisr protocol handler -- in the former case, the protocol returns a = flow identifier, which is used by netisr to calculate an affinity. In = the latter case, the protocol returns a CPU affinity directly. > and BIG QUESTION: why you allow to somebody (flow, proto) to make any > decisions??? That is wrong: because of bad their > implementation/decision may cause to schedule packets only to some = CPU. > So one CPU will overloaded (0%idle) other will be free. (100%idle) I think you're confusing policy and mechanism. The above KPIs are about = providing the mechanism to implement a variety of policies. Many of the = policies we are interested in are not yet implemented, or available only = as patches. Keep in mind that workloads and systems are highly variable, = with variable costs for work dispatch, etc. We run on high-end Intel = servers, where individual CPUs tend to be very powerful but not all that = plentiful, but also embedded multi-threadd MIPS devices with many = threads, each individually quite weak. Deferred dispatch is a better = choice for the latter, where there are optimised handoff primitives to = help avoid queueing overhead, whereas in the former case you really want = NIC-backed work dispatch, which will generally mean you want direct = dispatch with multiple ithreads (one per queue) rather than multiple = netisr threads. Using deferred dispatch in Intel-style environments is = generally unproductive, since high-end configurations will support = multi-queue input already, and CPUs are quite powerful. >> * Enforcing ordering limits the opportunity for concurrency, but = maintains >> * the strong ordering requirements found in some protocols, such as = TCP. > TCP do not require strong ordering requiremets!!! Maybe you mean UDP? I think most people would disagree with this. Reordering TCP segments = leads to extremely poor TCP behaviour -- there is an extensive research = literature on this, and maintaining ordering for TCP flows is a critical = network stack design goal. > To get full concurency you must put new flowid to free CPU and > remember cpuid for that flow. Stateful assignment of flows to CPUs is of significant interest to use, = although currently we only support hash-based assignment without state. = In large part, that decision is a good one, as multi-queue network cards = are highly variable in terms of the size of their state tables for = offloading flow-specific affinity policies. For example, lower-end = 10gbps cards may support state tables with 32 entries. High-end cards = may support state tables with tens of thousands of entries. > Just hash packetflow to then number of thrreads: net.isr.numthreads > nws_array[flowid]=3D hash( flowid, sourceid, ifp->if_index, source ) > if( cpuload( nws_array[flowid] )>99 ) > nws_array[flowid]++; //queue packet to other CPU >=20 > that will be just ten lines of conde instead of 50 in your case. We support a more complex KPI because we need to support future policies = that are more complex. For example, there are out-of-tree changes that = align TCP-level and netisr-level per-CPU data structures and affinity = with NIC RSS support. The algorithm you've suggested above explicitly = introduces reordering, which would significant damage network = performance, even though it appears to balance CPU load better. > Also nitice you have: > /* > * Utility routines for protocols that implement their own mapping of = flows > * to CPUs. > */ > u_int > netisr_get_cpucount(void) > { >=20 > return (nws_count); > } >=20 > but you do not use it! that break incapsulation. This is a public symbol for use outside of the netisr framework -- for = example, in the uncommitted RSS code. > Also I want to ask you: help me please where I can find documention > about scheduling netisr and full packetflow through kernel: > packetinput->kernel->packetoutput > but more description what is going on with packet while it is passing > router. Unfortunately, this code is currently largely self-documenting. The = Stevens' books are getting quite outdated, as are McKusick/Neville-Neil = -- however, they at least offer structural guides which may be of use to = you. Refreshes of these books would be extremely helpful. Robert= From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 30 11:10:10 2012 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 9A718106567A for ; Mon, 30 Jan 2012 11:10:10 +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 7377E8FC19 for ; Mon, 30 Jan 2012 11:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0UBAArF007346 for ; Mon, 30 Jan 2012 11:10:10 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0UBA94O007344 for freebsd-bugs@FreeBSD.org; Mon, 30 Jan 2012 11:10:09 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 30 Jan 2012 11:10:09 GMT Message-Id: <201201301110.q0UBA94O007344@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, 30 Jan 2012 11:10:10 -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/164618 lx [patch] textproc/scim: building with clang failed o ports/164609 sylvio [patch] print/scribus: update to version 1.4.0 o ports/164605 crees [patch] audio/madfufw upgrade o bin/164604 [patch] tftp(1): TFTP pxeboot: should use root-path pr f ports/164597 [patch] security/py-pycrypto: update to 2.5 o ports/164588 tobez [PATCH] databases/p5-Text-Query-SQL: add TEST_DEPENDS f ports/164586 [PATCH] www/trac-gitplugin: [tarball refreshed from gi o ports/164583 lev [PATCH] devel/subversion: chown: /home/svn/repos/dav: f ports/164577 rm [PATCH] x11/terminator: update WWW p bin/164570 maxim [patch] pom(6) wrong usage message f ports/164568 crees [PATCH] sysutils/bacula-server shouldn't use pkg-insta o ports/164567 jkim [PATCH] Fix port: audio/oss panics on 9+ if sound buil o ports/164566 skv [patch] databases/pgbouncer: update to latest version o bin/164561 portmgr [patch] pkg_version(1): update references to INDEX-8 f f ports/164550 sunpoet [PATCH] graphics/p5-Image-ExifTool: update to 8.77 f ports/164548 crees [PATCH] sysutils/bacula2-server should use USERS o ports/164546 clsung [PATCH] databases/p5-SQL-Interp: add missing BUILD_DEP o ports/164544 x11 [patch] x11-servers/xorg-server: prune unused deps o ports/164543 jkim [PATCH] www/nspluginwrapper: Fix build on 10.x o ports/164542 bf [patch] lang/sbcl: enable SB-CONCURRENCY-TEST::MAILBOX f ports/164540 [PATCH] x11-themes/icons-tango: Fix fetching o ports/164539 [patch] Update for audio/libmtp (from 1.0.6 to 1.1.1) o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP o bin/164535 [patch] ps(1) truncates command to screen size even wh f ports/164529 scheidell [PATCH] security/swatch doesn't always find running pr f ports/164522 sunpoet [PATCH] net/p5-XML-RPC-Fast: update to 0.8 f ports/164520 sunpoet [PATCH] www/p5-Mojolicious: update to 2.46 o ports/164519 swills [PATCH] graphics/p5-Cairo: update to 1.090 o ports/164518 swills [PATCH] x11-toolkits/p5-Gtk2: update to 1.242 o ports/164517 swills [PATCH] x11-toolkits/p5-Pango: update to 1.223 f ports/164515 sunpoet [PATCH] net/p5-Net-SFTP-Foreign: update to 1.69 f ports/164512 sunpoet [PATCH] devel/p5-App-Cmd: update to 0.314 o ports/164508 lev [patch] port devel/subversion Book URLs are invalid o ports/164504 gnome [patch] net/opal3: patch configure to recognize amd64 o ports/164502 [patch] news/sabnzbdplus not starting on boot o ports/164500 gnome [patch] Build x11-toolkits/libwnck without startup_not o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu o ports/164496 demon [PATCH] sysutils/p5-File-Which: add TEST_DEPENDS to en f ports/164491 swills [PATCH] databases/p5-Dancer-Plugin-DBIC: add TEST_DEPE o ports/164488 timur [patch] devel/talloc,devel/tdb: fix compile with MAKE_ f ports/164486 swills [PATCH] databases/p5-DBM-Deep: add TEST_DEPENDS, move o ports/164477 clsung [PATCH] net/py-kombu: update to 2.0.0 f ports/164463 [PATCH] mail/qpopper: fix RC_SUBR o ports/164458 clsung [PATCH] databases/p5-DBIx-Sunny: adding missing TEST_D o ports/164449 gnome [PATCH] finance/gnucash update to 2.4.9 f ports/164430 tabthorpe [PATCH] www/phpsysinfo: Add dom to USE_PHP o ports/164428 lev [PATCH] www/neon29: CLANG build fails o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164418 miwi [PATCH] shells/mksh doesn't build with Clang. o ports/164416 kuriyama [PATCH] textproc/iso8879: Fix on 9 and 10 o ports/164414 demon [PATCH] databases/p5-DBIx-SearchBuilder: add TEST_DEPE o ports/164413 rafan [PATCH] converters/p5-Encode: add patch to fix tests o ports/164405 gahr [PATCH] sysutils/tmux - install bash completions into o ports/164403 [patch] Mk/bsd.licenses.mk: bring back --hline o ports/164384 lme [patch] games/scummvm update to 1.4.1 o bin/164378 [patch] improvement of pkg_info(1) warning o ports/164373 [patch] lang/sdcc-devel: update to 3.1.2.2012.01.22 o kern/164369 adrian [if_bridge] [patch] two STP bridges have the same id o ports/164357 skv [PATCH] databases/p5-DBIx-ContextualFetch: add TEST_DE o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak o ports/164349 x11 [PATCH] x11/libXinerama :1 LeftOf or Above :0 mouse is o ports/164341 lev [patch] sysutils/graid5: remove post-deinstall target o ports/164321 timur [PATCH] devel/p5-DateTime-Format-Natural: Add TEST_DEP o ports/164320 skv [PATCH] devel/p5-Context-Preserve: Add TEST_DEPENDS to o bin/164317 [patch] write(1): add multibyte character support p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method f ports/164311 dumbbell [PATCH] Update security/pam_google_authenticator to 20 o bin/164302 [patch] mail(1) expands aliases beyond # o ports/164298 acm [PATCH] Make print/foomatic-filters not eat PS files o ports/164282 chinsan [PATCH] net-mgmt/icinga: update to 1.6.1 o usb/164275 usb [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2 o ports/164269 pgollucci [patch] update www/redmine to 1.3.0 o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o ports/164259 skv [PATCH] textproc/p5-PPIx-Utilities: Add TEST_DEPENDS t f ports/164253 lwhsu [PATCH] databases/cassandra: update to 1.0.7 f ports/164243 miwi [PATCH] emulators/dosbox: Fix build with clang o ports/164239 gecko [PATCH] mail/thunderbird: crash with nss_ldap o kern/164238 eadler [patch] NULL pointer dereference in setusercontext (li f ports/164237 wxs [PATCH] security/suricata: overwrite files from libhtp o ports/164235 vd [patch] graphics/vigra: update to 1.8.0 o docs/164228 doc [handbook] [patch] Adding raid3 to handbook o ports/164219 wen [PATCH] databases/p5-DBIx-NoSQL: Add missing BUILD_DEP f ports/164218 jh [patch] sysutils/fusefs-kmod: update mount_fusefs for o docs/164217 doc [patch] correct synchronize flag in setfacl(1) manpage o kern/164210 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164209 [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164208 [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164207 portmgr [PATCH] bsd.port.mk includes top-level Makefile.inc fr o misc/164206 [PATCH] buildworld WITHOUT_OPENSSL stops at lib/libarc p bin/164192 emaste [patch] wpa_supplicant(8): Fix typo intr-by SVN r21473 o ports/164190 mm [PATCH] devel/liboil: Fix build with clang o ports/164187 gnome [PATCH] net/avahi etc should use USERS f ports/164181 [PATCH] www/xxxterm: Fix ssl_ca_file path and style p bin/164139 eadler [patch] bsdgrep(1): remove duplicate line from usage o ports/164112 clsung [PATCH] archivers/p5-Archive-Any: add TEST_DEPENDS and o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number f ports/164079 sunpoet [PATCH] graphics/p5-SVG-Graph: update to 0.04 f ports/164065 kuriyama [PATCH] databases/p5-AnyEvent-DBD-Pg: Add missing BUIL f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i f ports/164046 bapt [PATCH] sysutils/kkbswitch: %%DOCSDIR%%/common is syml f ports/164045 bapt [PATCH] java/dbvis: prevent dirrm beginning with a / p bin/164042 emaste [PATCH] tzsetup(8): Fix VERBOSE to work with new UTC m p bin/164041 emaste [PATCH] tzsetup(8): Remove unnecessary code duplicatio p bin/164039 emaste [PATCH] tzsetup(8): Don't write /var/db/zoneinfo eithe p bin/164038 wollman [PATCH] tzsetup(8): Increase buffer size to hold error o ports/164033 lev [patch] port devel/subversion ports change pkg-install f ports/164029 [PATCH] graphics/bmeps fix build with databases/gdbm f ports/164012 [patch] x11/dmenu version upgrade 4.5 and Xft support o ports/164010 timur [patch] net/samba36: Split up samba scripts into more o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/163978 [hwpmc] [patch] Loading hwpmc with an unknown cpuid ca o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de f ports/163924 miwi [PATCH] archivers/xarchiver, warning when delete deskt o ports/163909 bf [MAINTAINER-UPDATE][PATCH] please update math/lapacke o ports/163908 fluffy [patch] filesystem based race condition in multimedia/ f ports/163896 sunpoet [PATCH] devel/p5-Capture-Tiny: update to 0.15 o ports/163884 nivit [Patch]databases/py-sqlalchemy:strict depend on py-MyS o ports/163864 yzlin [PATCH]sysutils/pciutils: update to 3.1.8 o bin/163863 [patch] adduser(8): confusing usr.sbin/adduser output f ports/163860 sunpoet [PATCH] archivers/unrar-iconv: fix 'make patch' o bin/163847 [PATCH] German filename conversion scheme for mount_nw f ports/163829 gahr [patch] graphics/freeglut -- update to 2.8.0 o conf/163828 [patch] /etc/periodic/daily/110.clean-tmps tries to un o ports/163826 mnag [Patch]databases/py-MySQLdb:strict python version o conf/163789 eadler [patch] Make etc/Makefile more conflict resistant o conf/163778 imp [patch] Conditionalize tools in the source tree o bin/163775 [patch] sfxge(4) explitly sets -g -DDEBUG=1; infects k o bin/163773 eadler [patch] pc-sysinstall(8): pc-sysinstall/backend.sh - c o bin/163772 [patch] nvi(1) - don't mask O_DIRECTORY symbol o bin/163769 [patch] fix zpool(8) compile time warnings o misc/163768 [patch] [boot] fix non-ficl compile time warnings o ports/163762 decke [PATCH] multimedia/mythtv still thinks it's 0.24.0 o ports/163751 lme [PATCH] games/scummvm: chase audio/fluidsynth shlib ve o docs/163742 doc [patch] document failok mount(8) option o ports/163738 clsung [PATCH] security/zxid: update to 1.02 o ports/163725 swills [PATCH] emulators/open-vm-tools: Update to latest vers o kern/163724 wireless [mwl] [patch] NULL check before dereference f ports/163718 dinoex [PATCH] graphics/jasper: security updates for CVE-2011 o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c f ports/163704 gnome [PATCH] devel/ptlib26: disable ODBC by default f ports/163684 olgeni [PATCH] lang/clojure-mode.el: update to 1.11.5 o ports/163675 clsung [PATCH] devel/buildbot: update to 0.8.5 o ports/163674 clsung [PATCH] devel/buildbot-slave: update to 0.8.5 p conf/163668 jh [patch] fstab[5] 'failok' option has no effect on miss o ports/163666 jgh [PATCH] Add user "gerrit" to UIDs and GIDs f ports/163655 miwi [PATCH] games/odamex update to 0.5.6 o ports/163647 clsung [patch] sysutils/xosview: does not build on 10-CURRENT o ports/163643 xride [patch] astro/wmspaceweather: URL changed + two minor f ports/163605 olgeni [PATCH] net-im/ttytter: update to 1.2.05 a ports/163601 eadler [maintainer] [patch] science/hdf-java f ports/163599 wen [patch] science/szip Distfile rerolled f ports/163595 eadler [patch] science/hdf5-18 Update to 1.8.8 a ports/163592 dinoex [PATCH] graphics/libungif: mark conflict with giflib a ports/163591 dinoex [PATCH] graphics/giflib: mark conflicts with libungif o ports/163590 sylvio [PATCH] devel/cdialog: update to 1.1.20111020 o ports/163583 [patch] x11/kdelibs3 conflicts with openssl-1 f ports/163555 danfe [PATCH] irc/bitchx is out of date and BitchX 1.2 does a ports/163550 dinoex [patch] ftp/vsftpd{,-ext}: respect CC/CFLAGS/STRIP uni p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi o ports/163519 gnome [patch] graphics/gimp-app: unbreak build with clang=20 o ports/163518 gnome [patch] x11/babl: unbreak SSE build with clang o bin/163515 [patch] b64encode(1)/uuencode(1) create files with no o ports/163514 itetcu [PATCH] ports-mgmt/tinderbox-devel: Report the proper o ports/163511 portmgr [PATCH] bsd.port.mk: Allow existing users on system to o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands a java/163456 java [patch] java/openjdk6: build and distribute open timez o ports/163454 gecko [patch] www/firefox-beta: unbreak with libc++ o kern/163450 [puc] [patch] new pci quad serial card supported by pu o ports/163443 gnome [patch] graphics/poppler: unbreak with libc++ o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o ports/163306 itetcu [patch] upgrade sysutils/nut to 2.6.2 and fix misc por o ports/163291 doceng [PATCH] print/ghostscript9: Automatically disable X11 f ports/163267 scf [PATCH] security/pidgin-encryption: update to 3.1 o ports/163248 xride [patch] audio/py-ao: respect CC o ports/163234 sem [patch] devel/ptypes: unbreak build with clang o ports/163232 bf [patch] math/metis: respect CC o ports/163226 obrien [patch] vietnamese/libviet: respect CC/CFLAGS o bin/163219 gtetlow [patch] man: fix 'zcat: standard input is a terminal - o ports/163218 sbz [PATCH] security/cracklib: update to 2.8.18 o ports/163215 acm [PATCH] devel/bullet: fix build on some configurations o ports/163202 lippe [PATCH] devel/p5-ExtUtils-Manifest: update to 1.60 f ports/163201 sunpoet [PATCH] mail/p5-SES: update to release of 2011-11-14 o ports/163194 lev [PATCH] devel/subversion: Get the SVN book from the 1. o docs/163177 doc [patch] man page for gnats(7) incorrectly lists gnatsd o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o ports/163129 clsung [PATCH] net/p5-Net-GitHub: update to 0.40_04 a ports/163066 eadler [patch] bsd.database.mk: Allow db5 to be selected by U o ports/163063 python [PATCH] fix for ports-mgmt/portbuilder o ports/163056 miwi [patch] audio/xmms2: update to 0.8 o ports/163055 mm [patch] multimedia/ffmpeg: broken without /usr/bin/per o bin/163053 [patch] camcontrol(8): 'camcontrol nego -D' is ignored o docs/163043 doc [patch] gsched.8: remove reference to gsched_as a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob a ports/162992 swills [maintainer] [patch] devel/rubygem-sprockets: update t o ports/162983 miwi [PATCH] databases/unixODBC update to 2.3.1 p bin/162930 gabor [patch] bsdgrep(1): match gnugrep(1) in exit code when o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ o ports/162920 miwi [patch] respect STRIP/LDFLAGS consistently across untr o ports/162912 mm [patch] lang/tcl86: unbreak build with clang p bin/162908 eadler [patch] zdump(8) doesn't know progname o misc/162866 [build] [patch] extract revision from hg in newvers.sh p kern/162789 glebius [PATCH] if_clone may create multiple interfaces with t o ports/162768 mm [PATCH] ftp/proftpd port update which fixes mod_sql_my o docs/162765 doc [patch] lseek(2) may return successful although no see o ports/162755 gnome [PATCH] graphics/evince: segfault on showing propertie o ports/162726 miwi [PATCH] update graphics/box to 0.3.0 and graphics/boxe o ports/162721 portmgr [PATCH] bsd.port.mk: config target should complain if o ports/162694 kwm [patch] [update] multimedia/pitivi to 0.15.0 o ports/162686 bf atlas build tries to use 64 bit fortran compiler on AM o bin/162670 gabor [patch] libkiconv doesn't work with iconv() in libc o bin/162661 bz [patch] ftp(8) is giving up on IPv6 o ports/162595 xride [patch] audio/py-ogg: respect CC f ports/162529 edwin [patch] lang/tolua{,50}: respect CXX f ports/162514 clsung [PATCH] www/p5-HTML-Selector-XPath: update to 0.11 o ports/162510 nork [patch] Upgrade graphics/OpenEXR to version 1.7.0 p bin/162486 delphij [patch] Cannot mount filesystem formatted by newfs_msd f ports/162439 olgeni [PATCH] lang/abcl: update to 1.0.0 and update WWW o ports/162414 cy [PATCH] sysutils/syslog-ng: misc. fixes o ports/162397 portmgr [patch] Mk/bsd.port.mk: add new target add-plist-build o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen f ports/162386 eadler [PATCH] Bring back games/tome o ports/162381 sunpoet [PATCH] audio/icecast2 upgrade to kh development branc o kern/162352 net [patch] Enhancement: add SO_PROTO to socket.h o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib p docs/162265 doc [Patch] ipfw.8: Documentation clarity a ports/162264 cy [patch] unbreak net/tridiavnc for non-i386 p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 o kern/162201 zec [ip] [patch] multicast forwarding cache hash always al o ports/162191 ashish [PATCH] editor/emacs: VC doesn't work with subversion f ports/162188 mm [PATCH] mail/postgrey: add rc script options o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o kern/162174 [kernel] [patch] rman_manage_region() error return pat f ports/162080 apache [PATCH] devel/apr1: Improved decision IPv6 o bin/162064 [patch] Loop in fetch(1) when sending SIGINFO after th f ports/162050 sumikawa [patch] misc/lv directory opening problem fix o ports/162042 bapt [patch] multimedia/libass: add HARFBUZZ option o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o bin/161986 [patch] netstat(1): Interface auto-width in "netstat - o ports/161984 autotools [patch] devel/libtool: don't split INFO doc (install) o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o ports/161875 roam [PATCH] www/p5-WWW-Curl: update to 4.15 o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup p conf/161847 gavin [patch] reaper of the dead: remove ancient devfs examp o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o bin/161807 fs [patch] add option for explicitly specifying metadata p usb/161798 hselasky [patch] usbdevs / if_run.c modification o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico p bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks o www/161672 gavin [patch] add support for 10.x to query-pr o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/161421 gecko [patch] www/firefox: use libevent2 o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li f ports/161406 [PATCH] net-mgmt/netdisco: update to 1.1 o bin/161401 [patch] have service(8) run scripts with the same reso o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161185 kwm [patch] Remove unnecessary graphics/cairo dependency f p misc/161175 eadler [tools] [patch] uninitialized variables on some regres o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 lippe [patch] misc/ttyrec: don't depend on pty(4), use openp o bin/161048 sysinstall [patch] bsdinstall(8): should run a concurrent shell o o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o bin/161028 [PATCH] service(8) -- Minor improvements o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO f ports/161002 philip [patch] devel/lua-alien: update to 0.5.1 o ports/160969 [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 x11 [patch] ports/x11/libXi broken manpages o ports/160963 x11 [patch] x11/bigreqsproto: disable specs a ports/160941 swills [PATCH] emulators/open-vm-tools: upgrade to release 20 o ports/160930 [PATCH] devel/gdb: HW watchpoint support for amd64 o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o conf/160892 eadler [network.subr] [patch] add vboxnet[0-9]* to noafif lis o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o bin/160834 [patch] grep(1): fixes for POSIX conformance p misc/160818 pluknet [patch] boot menu (/boot/menu.rc) clarity and readabil a ports/160816 roam [PATCH] security/stunnel: update to 4.44 o ports/160798 philip [PATCH] games/wesnoth-devel: update to latest version p docs/160775 delphij [patch] provide a better example for passwordless gues o ports/160686 skv [PATCH] www/p5-HTTP-BrowserDetect: update to 1.28 o ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 f ports/160657 eadler [patch] devel/distcc: adding pump mode support to dist o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 o bin/160596 eadler [patch] tzsetup(8): Use libodialog when doing tzsetup o ports/160593 mm [PATCH]devel/libevent2: respect USE/WITH_OPENSSL_PORT o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x f ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o ports/160492 bf [patch] lang/ocaml: respect CC o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries p ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn o misc/160463 eadler [build] [patch] fix build dependency for dtrace module o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo f ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i s docs/160369 gjb [patch] update sample simple makefile with new convent o bin/160295 [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o ports/160205 skv [PATCH] sysutils/hyperic-sigar: update to 1.6.4 o ports/160189 lippe [PATCH] textproc/p5-Excel-Template: update to 0.33 f ports/160034 delphij [PATCH] net/istgt: Don't enforce run before mountcritr o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159947 vd [patch] databases/gnats4 set default index type to pla o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 p usb/159836 hselasky [patch] [uhso] Add support for Option GlobeTrotter Max o bin/159833 camcontrol(8): [patch] add ATA security options to cam o ports/159812 apache [PATCH] www/apache20,www/apache22 Strip Binaries o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l a bin/159665 rik [patch] ctm(1) does not work with bzip2 or xz compress o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator f ports/159636 [patch] net/freevrrpd: RC script for freevrrpd that co 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 miwi [PATCH] USB stick extrememory Snippy needs quirks o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re o docs/159551 doc [patch] ports(7) makes no mention of LOCALBASE o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() o docs/159307 doc [patch] lpd smm chapter unconditionally installed o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/159279 [headers] [patch] __FreeBSD_cc_version in includes o kern/158376 [udf] [patch] The UDF file system under counts the num o bin/158363 [patch] partial restore problem in restore(8) o ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/158351 [cam] [patch] missing #includes in p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o ports/158054 matusita [PATCH] japanese/ja-skk-jisyo: update to 201106 o kern/157946 [patch] 'BSM conversion requested for unknown event' g o conf/157903 [devd.conf] [patch] automated kldload for USB class de f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o conf/157466 [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157337 doc [handbook] [patch] Indentation changes to network serv o docs/157316 doc [patch] update devstat(9) man page o docs/157234 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin o ports/157207 skv [PATCH] textproc/p5-XML-LibXML: package scripts should a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o ports/157045 skv [patch] devel/p5-Devel-Leak: sv_dump() fix o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces f ports/156897 edwin [PATCH] net/freenet6: update pkg-message o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o bin/156768 [patch] sockstat(1): missing spaces between long field o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156637 [headers] [patch] sys/types.h can't be included when _ o kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156423 [kqueue] [patch] Please add kqueue support for /dev/kl o kern/156358 jkim [patch] make amdtemp.c compatible with Llano/Brazos pl o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o ports/156015 sem [PATCH] dns/unbound add MUNIN-plugin o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o ports/155896 adrian [PATCH] sysutils/mkfwimage: use LOCAL as MASTER_SITES o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o ports/155890 tabthorpe [patch] Mk/bsd.licenses.mk: don't leave temporary file o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o usb/155663 miwi [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an o bin/155567 [patch] cvs(1): add -r tag:date to CVS o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk a ports/155404 dinoex [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 kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o ports/155329 skv [PATCH] net-im/p5-DJabberd: update to 0.84 o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o kern/154915 [libc] [patch] Force stdio output streams to line-buff o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o usb/154753 miwi [usbdevs] [patch] Support for Qualcomm USB modem/stora o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o bin/154570 [patch] gvinum(8) can't be built as part of the kernel o conf/154554 rc [rc.d] [patch] statd and lockd fail to start f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o conf/154484 [patch] request for new functionality. jail zfs datase o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy a ports/154455 roam [patch] security/stunnel: add aloha sendproxy support f ports/154431 sobomax [patch] ports/Tools/scripts: python scripts use bad sh p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o ports/154352 bsam [patch] multimedia/xmms: update using desktop and mime f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l f ports/154254 rene [patch] asmail imap login broken with gmail at al. o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o ports/154241 philip [patch] games/wesnoth: move USE_* under bsd.port.optio f ports/154209 python [PATCH] lang/python: Install symlink for ptags o conf/154062 net [vlan] [patch] change to way of auto-generatation of v p bin/154042 delphij [patch] fix several rtprio(1) issues o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o kern/153920 multimedia [sound] [patch] Replace the GPL'd sound/maestro3 heade p kern/153901 pfg [sound] [patch] Replace the GPL'd emu10k1-alsa.h with f ports/153810 [PATCH] Fix usb_interrupt_read() in devel/libusb for f o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o usb/153599 miwi [usbdevs] [patch] Feiya Elango USB MicroSD reader sync o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153567 acm [PATCH] x11/fpc-x11: doesn't respect localbase o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o bin/153527 [patch] wake(8) should use sysexits.h o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o ports/153429 [patch] Fix explicite uses of unzip in ports o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out f ports/153231 ohauer [PATCH] net-mgmt/nrpe2 enable ssl by default p bin/153206 maxim [patch] netstat(1): "netstat -sz" doesn't reset any IP o misc/153157 [build] [patch] Add support for generating userland de o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error a docs/153012 doc [patch] iostat(8) requires an argument to -c option o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o ports/152901 mnag [patch] databases/pecl-sqlite Cleanup/Fixes o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o ports/152847 clsung [patch] port/buildbot-slave could use a startup script o ports/152838 yzlin [PATCH] www/suphp: Add support for lighttpd 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 crees [patch] database/postgresql90-server no longer needs p o kern/152485 arundel [patch] seek offset for /dev/null(4) and /dev/zero(4) o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o ports/152224 python [patch] fix installed permissions for lang/python27 o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152131 script(1): [patch] Useless code in script.c (part 1) o bin/152084 [patch] pw(8) does not allow @ or ! in gecos f ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o bin/151937 [patch] netstat(1) utility lack support of displaying o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr p bin/151866 des [libfetch] [patch] closing the cached FTP connection o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/151600 [patch] route(8) does not always flush stdout o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o bin/151186 [patch] routed(8) turns RIP off if just one network ca o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl p bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o bin/150771 [patch] csup(1) GNUmakefile missing p conf/150752 dougb [rc.subr] [patch] be not needed to eval $_pidcmd on re o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of f ports/150594 eadler [patch] graphics/dri: add support for ATI Radeon HD 42 o www/150553 www [patch] update Russian "FreeBSD Community" page o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the o kern/150251 net [patch] [ixgbe] Late cable insertion broken o bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o kern/150206 [patch] nmount(2): can't switch root partition to rw u o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a a stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) o bin/149972 [patch] pw(8): usermod -u should error o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 itetcu [PATCH] mail/dspam: important cleanup p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label p kern/149800 eadler [fdc] [patch] "driver bug: Unable to set devclass (dev p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o www/149446 www [patch] improve misleading title of "report a bug" o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o kern/149173 fs [patch] [zfs] make OpenSolaris installa o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o gnu/143254 [patch] groff(1) build in base system does not honor P p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances p conf/143084 brooks [jail] [patch]: fix rc.d/jail creating stray softlinks o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip p kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o docs/142917 arundel [patch] top(1) man page does not include information a o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o ports/142743 [PATCH] devel/cross-binutils: installed by *-rtems-gcc a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) p docs/142367 roam [patch] wlan(4) does not document requirement for kern o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- p kern/141934 eadler [cam] [patch] add support for SEAGATE DAT Scopion 130 o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o kern/141682 [libc] [patch] Faster version of strncpy(3) o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o kern/141655 [sio] [patch] Serial Console failure on Dell servers o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot f ports/140939 rea [patch] security/vuxml: fix and extend files/newentry. o kern/140728 jfv [em] [patch] Fast irq registration in em driver a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- p conf/140650 cperciva [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p docs/140457 doc [patch] Grammar fix for isspace(3) o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum p kern/140416 delphij [mfi] [patch] mfi driver stuck in timeout o ports/140364 ruby [patch] ports-mgmt/portupgrade-devel: #! line substitu o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n a bin/140309 bapt [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/140185 [patch] expand_number(3) does not detect overflow in n o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o ports/139872 [PATCH] ports-mgmt/porttools: improve port's directory o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o bin/139389 pluknet [patch] Change top(1) to display thread IDs o bin/139346 net [patch] arp(8) add option to remove static entries lis a bin/139314 [patch] install(1): install -d reports success on fail p kern/139312 delphij [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o kern/139080 [libc] [patch] closelog() can close negative file desc a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o ports/137958 ruby [patch] ports-mgmt/portupgrade fails with recursive de o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow p bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o conf/137671 [patch][request] enhance beastie.4th: possibility to d s gnu/137665 [patch] dialog(1) goes into tight loop on encountering p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct o bin/136994 net [patch] ifconfig(8) print carp mac address o ports/136917 python [patch] lang/python26: gettext detection o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa p gnu/136705 emaste [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136669 [libc] [patch] setmode(3) should always set errno on e o bin/136661 melifaro [patch] ndp(8) ignores -f option o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE o kern/135608 [patch] sysctl(8) should be able to handle byte values o docs/135516 doc [patch] pax(1) manual not mentioning chflags unawarene o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem f usb/135348 eadler [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2 o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o kern/134249 [libiconv] [patch] ignore case for character set names o kern/134225 [libexec] [patch] Reduce disk write load from save-ent p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article o bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o ports/132294 ruby [PATCH] lang/ruby18: Add option to build with Profile- o ports/132293 ruby [PATCH] lang/ruby19: Add option to build with Profile- o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o bin/131427 [patch] Add to fetch(1) an ability to limit a number o p bin/131250 brian [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o kern/130657 bz [ip6] [patch] ipv6 class option o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a f ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o kern/130286 [patch] hifn(4) changes o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El p bin/130159 brian [patch] ppp(8) fails to correctly set routes p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o bin/129814 [patch] support of per script nice(1) value in periodi o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di o bin/129405 [patch] tcsh(1) vfork bugs p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o kern/129352 yongari [xl] [patch] xl0 watchdog timeout o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o docs/129024 keramida [patch] ipfw(8) improvements o usb/128977 usb [usb67] [patch] uaudio is not full duplex p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct p kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o conf/128433 [patch] Add option to allow a full login when doing 's o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to p bin/127986 [patch] ee(1): fix compiler warnings caused by use of p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t s bin/127918 [ata] [request] [patch] ATA Security support for ataco o docs/127908 eadler [patch] readdir(3) error documentation o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o bin/127633 edwin [patch] Update top(1) to 3.8b1 o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127276 [patch] ldd(1) invokes linux yes o bin/127265 [patch] ddb(4): Adding the ddb command set from module o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o bin/126433 [patch] some missing checks in rm(1) o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o kern/126075 net [inet] [patch] internet control accesses beyond end of o bin/125922 net [patch] Deadlock in arp(8) o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc a kern/125613 trasz [ufs] [patch] ACL problems with special files o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o conf/125041 [patch] periodic(8) new file: /etc/periodic/security/8 o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/124963 alc [vm] [patch] old pagezero fixes for alc o kern/124881 [devfs] [patch] [request] Add possibility to check whi o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o conf/124747 rc [patch] savecore can't create dump from encrypted swap a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o misc/124431 bde [build] [patch] minor revision of BDECFLAGS p bin/124392 [patch] bootparamd(8) does not work on arm p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net p misc/124164 markm [patch] Add SHA-256/512 hash algorithm to crypt(3) p bin/124052 [patch] adduser(8) throws errors when -f input file in o kern/123892 net [tap] [patch] No buffer space available o kern/123858 net [stf] [patch] stf not usable behind a NAT o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 f bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o conf/123119 rc [patch] rc script for ipfw does not handle IPv6 f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o conf/122883 [patch] login class for ukrainian users accounts o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o conf/122170 rc [patch] [request] New feature: notify admin via page o p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab o bin/122043 [patch] du(1) does not support byte-count-based report o conf/122037 [patch] add rsync example for inetd.conf o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user o conf/121064 [patch] Use ASCII characters for box/line characters i o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o conf/120263 [patch] 800.loginfail misses relevant security informa p bin/120256 gavin [patch] ftp(1): ftp -u URL/ returns a -1 p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o bin/118325 rc [patch] [request] new periodic script to test statuses p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/118126 fs [nfs] [patch] Poor NFS server write performance o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o bin/118069 [patch] camcontrol(8) should be able to leave device s o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing s bin/117830 [patch] who(1) no longer displays entries for folk log f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o bin/117687 [patch] fstab(5) format cannot handle spaces o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o bin/117520 [patch] csup(1) not-really-equivalent to cvsup o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117339 net [patch] route(8): loading routing management commands p bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th p stand/116826 jilles [patch] sh(1) support for POSIX character classes o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c p bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's p docs/115065 doc [patch] sync ps.1 with p_flag and keywords o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala p kern/114714 bz [gre] [patch] gre(4) is not MPSAFE and does not suppor f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which o bin/113518 [patch] make(1): Prevent execution when command is a c o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o bin/113074 [patch] ppp(8): include for strcasecmp(3) s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112477 marius [ofw] [patch] Add support to set the node and type on o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112336 [patch] install(1): install -S (safe copy) with -C or s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111537 net [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110995 [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110146 joerg [patch] [request] Allow arbitrary gdb(1) options to by o bin/110068 [patch] rewrite of mdmfs(8) in shell o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit p docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105456 keramida [patch] overhaul of the security chapter (14) o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w p stand/104743 jilles [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive a bin/104092 keramida [patch] iostat(8): missing blanks in iostat output o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o ports/102946 secteam [patch] ports-mgmt/portaudit a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o bin/102162 [patch] tftpd(8): Limit port range for tftpd o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o conf/100616 [patch] syslog.conf: lines after exclamation point ign a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o bin/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/99328 [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/96999 [procfs] [patch] procfs reports incorrect information a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o bin/95698 philip [patch] moused(8): Software control of sysmouse o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind s www/94423 danger [patch] XML'ified release todo list o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work p kern/93331 [kernel] [patch] broken asm in kernel o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o conf/92523 rc [patch] allow rc scripts to kill process after a timeo s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o conf/91732 [patch] 800.loginfail: fix log message grep expression o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command o kern/91134 fs [smbfs] [patch] Preserve access and modification time f bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o bin/90311 [patch] add "eject" to mt(1) o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco o conf/88913 rc [patch] wrapper support for rc.subr o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 fs [patch] newfs(8): introduce -A flag for newfs to enabl o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so o www/87119 hrs [patch] encode copyright and such symbolically o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. a bin/86485 eadler [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou f i386/85656 jhb [i386] [patch] expose more i386 specific CPU informati f i386/85655 jhb [i386] [patch] expose cpu info for i386 systems o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( a bin/77651 [patch] init(8) can lose shutdown related signals s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o bin/76362 [patch] sys directory link points to wrong location o gnu/76169 [patch] Add PAM support to cvs pserver o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o conf/74004 [patch] add fam support to inetd.conf o conf/73786 [patch] added WARNING in spanish to stable-supfile o conf/73677 rc [patch] add support for powernow states to power_profi o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o conf/72901 [patch]: dot.profile: prevent printing when doing an s o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o conf/72277 [patch] update for /usr/share/skel o conf/71994 [patch] dot.login: login shell may unnecessarily print o bin/71749 [patch] truss -f causes circular wait when traced proc o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71602 [patch] uninitialized "len" used instead of "slen" wit s bin/71290 des [patch] passwd(1) cannot change passwords other than N o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters o bin/70476 [patch] reboot(8) change, -p behavior default for halt o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports a kern/68905 secteam [patch] core dumps are assigned wrong ownership o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) f kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE a bin/63197 [patch] tftp(1) Bus error, core dumped a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s i386/61481 [patch] a mechanism to wire io-channel-check to userla o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o bin/58483 [patch] mount(8): allow type special or node relative o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement o bin/57715 [patch] tcopy(1) enhancement o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s bin/57407 [patch] Better NTP support for dhclient(8) and friends o docs/57298 doc [patch] add using compact flash cards info to handbook s bin/57255 usb [patch] usbd(8) and multi-function devices o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR o bin/55546 [patch] cdcontrol(1) play tr m:s.f interface is partia o bin/55539 [patch] Parse fstab(5) with spaces in path names f misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o conf/54170 [patch] error from weekly periodic script 330.catman s stand/53682 [feature request] [patch] add fuser(1) utility o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 [request] [patch] New functionality for mail(1) s usb/51958 usb [urio] [patch] update for urio driver o kern/51583 fs [nullfs] [patch] allow to work with devices and socket s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee o bin/51137 [patch] config(8) should check if a scheduler is selec o kern/51009 [aue] [patch] buggy aue driver fixed. s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48183 [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] Add documentation on the fixit disk o bin/47815 [patch] stty(1) -all should work. o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit a kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals o bin/46758 [patch] moused(8) enhancements o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o conf/45222 [patch] daily rejected mail hosts report too long o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44202 [rp] [patch] -stable rp driver does not work with mult o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls f kern/43716 eadler [puc] [patch] puc driver does not recognize Lava Dual- o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl a bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login a bin/41583 [patch] mtree(8) assorted mtree bugs o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41271 [patch] non-suid crontab(1) o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o conf/40777 [patch] disktab does not support 2.88MB floppies o bin/40597 [patch] add fdisk(8) ability of showing extended parti o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix a bin/38727 [patch] mptable(1) should complain about garbage argum a kern/38554 net [patch] changing interface ipaddress doesn't seem to w s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o bin/37083 [patch] [request] small improvement to talk(1): add cl o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36902 [libc] [patch] proposed new format code %N for strftim o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce o bin/35886 [patch] pax(1) enhancement: custom time format for lis o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md o bin/34412 [patch] tftp(1) will still try and receive traffic eve o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o bin/33809 [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31890 [syscons] [patch] new syscons font o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o bin/30542 [patch] add -q option to shut up killall(1) s threa/30464 threads [patch] pthread mutex attributes -- pshared o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite 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/28364 bapt [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u o docs/27605 doc [patch] Cross-document references () o bin/27306 [patch] hw watchpoints work unreliable under gdb(1) o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password f kern/24959 net [patch] proper TCP_NOPUSH/TCP_CORK compatibility o bin/24485 [patch] to make cron(8) handle clock jumps o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23254 bapt [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network o kern/21998 net [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o kern/19756 [patch] Inability to use linux extended partition (typ s kern/19535 [procfs] [patch] procfs_rlimit tidyup o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16422 [patch] [request] newfs(8) always make root's / direct o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15168 [patch] Adding tracklist support to fdformat(1) p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai s kern/13326 [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts a kern/11024 mtm [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry o bin/4116 [patch] [kerberos] Kerberized login as .root fai s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 1936 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 30 11:16:57 2012 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 F1F011065670 for ; Mon, 30 Jan 2012 11:16:57 +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 DCBF98FC12 for ; Mon, 30 Jan 2012 11:16:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0UBGv1e017704 for ; Mon, 30 Jan 2012 11:16:57 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0UBAA84007350 for freebsd-bugs@FreeBSD.org; Mon, 30 Jan 2012 11:10:10 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 30 Jan 2012 11:10:10 GMT Message-Id: <201201301110.q0UBAA84007350@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, 30 Jan 2012 11:16:58 -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 -------------------------------------------------------------------------------- o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/118912 fs [2tb] disk sizing/geometry problem with large array s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t 7 problems total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148083 scsi [aac] Strange device reporting o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg 2 problems total. Problem reports for tag 'acd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/150628 [acd] [ata] burncd(1) can't write to optical drive 1 problem total. Problem reports for tag 'acl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p 2 problems total. Problem reports for tag 'acpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164329 acpi [acpi] hw.acpi.thermal.tz0.temperature shows strange v o kern/162859 acpi [acpi] ACPI battery/acline monitoring partialy working o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o kern/160838 acpi [acpi] ACPI Battery Monitor Non-Functional o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne o kern/154955 acpi [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3 o kern/152438 acpi [acpi]: patch to acpi_asus(4) to add extra sysctls for o kern/152098 acpi [acpi] Lenovo T61p does not resume o i386/146715 acpi [acpi] Suspend works, resume not on a HP Probook 4510s o kern/145306 acpi [acpi]: Can't change brightness on HP ProBook 4510s f i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A o kern/143420 acpi [acpi] ACPI issues with Toshiba o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve f kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? f i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H f i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f f kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o kern/91594 acpi [acpi] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/ 33 problems total. Problem reports for tag 'acpi_hp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163268 acpi [acpi_hp] fix driver detach in absence of CMI 1 problem total. Problem reports for tag 'acpi_ibm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164538 miwi [acpi_ibm] [patch] add support for newer Lenovo ThinkP 1 problem total. Problem reports for tag 'acpi_thermal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa 1 problem total. Problem reports for tag 'acpica': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152792 [acpica] [patch] move temperature conversion macros to 1 problem total. Problem reports for tag 'ada': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157397 [ada] ahci/ada/cam NCQ timeouts on Samsung and non-dis 1 problem total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets 2 problems total. Problem reports for tag 'aha': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/83765 [aha] Adaptec 1542-CP requires plug-and-play switch se 1 problem total. Problem reports for tag 'ahc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123674 scsi [ahc] ahc driver dumping o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 s kern/45568 gibbs [ahc] ahc(A19160) pci parity error s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S 6 problems total. Problem reports for tag 'ahci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/161768 [ahci] [panic] Panics after AHCI timeouts o kern/161248 [ahci] Time out, extremly slow response while copying o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar f kern/158569 gavin [ahci] ROOT MOUNT ERROR (caused by AHCI module) o kern/155628 [ahci] ahci disables dvd device o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume 8 problems total. Problem reports for tag 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o kern/123520 scsi [ahd] unable to boot from net while using ahd o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system 6 problems total. Problem reports for tag 'aic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with 1 problem total. Problem reports for tag 'aic7xxx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163713 scsi [aic7xxx] [patch] Add Adaptec29329LPE to aic79xx_pci.c o kern/156513 scottl [aic7xxx] [patch] missing check of scb. 2 problems total. Problem reports for tag 'altq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue s kern/94182 [altq] [request] altq support for vlan driver 4 problems total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag 3 problems total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o kern/153303 [amr] amr device driver dont detect logical drive amrd o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/113098 [amr] Cannot read from amrd while under heavy load o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a 6 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) p kern/85886 jhb [an] [patch] an0: timeouts with Cisco 350 minipci s kern/75407 net [an] an(4): no carrier after short time o kern/36170 [an] [patch] an(4) does an_init() even if interface is 4 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup 1 problem total. Problem reports for tag 'apm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in 1 problem total. Problem reports for tag 'ar': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o kern/94393 [ar] PseudoRAID loses track of the master disk o kern/93771 [ar] [panic] atacontrol status ar1 causes panic 8 problems total. Problem reports for tag 'arcmsr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154299 [arcmsr] arcmsr fails to detect all attached drives o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 2 problems total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/145300 qingli [arp] ARP table mapping is not refreshed on a MAC addr o kern/144777 qingli [arp] proxyarp broken in 8.0 [regression] o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/119432 net [arp] route add -host -iface causes arp e o conf/23063 net [arp] [patch] for static ARP tables in rc.network 10 problems total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 2 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162620 [ata] SATA device lost when changing brightness on Len o kern/162609 [ata] Cannot write to Sony DRU-835A DVD drive o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar o kern/159511 [ata] ad0 disappear after upgrading to 8.2-STABLE, roo o kern/159326 [ata] [panic] kernel panics when accessing spindowned o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o kern/149201 [ata] DVD/CD Drive Error o kern/148675 [ata] [panic] kernel panics - reboots o kern/148361 [ata] [panic] Kernel Panic, With Faulty Drives o kern/147227 [ata] SSD preformance issues o kern/146661 [ata] damage files on ufs on ata pseudo raid when runn o kern/146270 [ata] Divide by zero in ata driver o kern/144930 [ata] SATA DVD Drive is not detected s kern/144770 [ata] hard drive spindown functionality broken? o bin/144641 [ata] burncd(8) freezes whole system while trying to b o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o kern/143126 [ata] Data loss on read timeout o kern/142802 [ata] [panic] on removing drive: recursed on non-recur o i386/142421 i386 [ata] optical drives not found o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141653 [ata] [panic] Panic in ata? o kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o kern/138537 [ata] [panic] Memory modified after free o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/136356 [ata] SATA / ICH7 problems o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/132252 [ata] No CD/DVD devices found! o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130726 [ata] DMA errors accessing multiple SATA channels f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o kern/130171 [ata] UDMA CF cards do not work with FreeBSD o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/128035 [ata] unexpexted detach of external SATA drive s bin/127918 [ata] [request] [patch] ATA Security support for ataco o kern/127717 scsi [ata] [patch] [request] - support write cache toggling o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o kern/126142 [ata] M5281: READ DMA faults, device detaching o kern/125859 [ata] [patch] sata access failure [regression] a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already f kern/120717 [ata] boot problem when recognizing ata1 o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o kern/120177 [ata] ATA DMA modes don't work on CF cards o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o kern/117972 [ata] SATA DLT V4 not recognized properly o kern/117443 [ata] [hang] system hang with ataidle o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/116935 [ata] Intermittent error with Promise PDC40718 o kern/115479 [ata] [request] ASUS P5K SE need more support o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 o kern/114213 [ata] optical drive not detected in the 6.x series of s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/106432 [ata] Record of disks (DVD-R) through the k3b program s kern/104950 [ata] [request] no support for SATA controller Initio o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96171 [ata] burncd(8): (ATA driver) fails to write in vcd mo o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m s bin/81692 [patch] [ata] atacontrol(8) support for disk APM and a o kern/79783 [ata] hw.ata.atapi_dma=1 reduces HDD writing transfer o kern/78758 [ata] [patch] Add support for re-sizing ATA disks o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 100 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/118161 [atapicam] failure message from ATAPI CDROM in the boo o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi a kern/78929 [atapicam] atapicam prevents boot, system hangs o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong 6 problems total. Problem reports for tag 'ataraid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159271 [ataraid] [patch] "pseudo-raid" controllers does not w o kern/148748 [ataraid] Metadata Read Write Inconsistency o kern/134887 [ataraid] source consistency problem o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr 6 problems total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode o kern/163719 wireless [ath] ath interface do not receive multicast o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin o kern/163573 wireless [ath] hostap mode TX buffer hang o kern/163559 wireless [ath] kernel panic AH_DEBUG o bin/163455 [ath] "bssid" in wlanN create_args does not change wla o kern/163318 wireless [ath] ath(4) stops working o kern/163082 wireless [ath] ar9285 diversity fixes o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang p kern/162475 bschmidt [ath] functions with return type HAL_BOOL (might) retu o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o kern/156884 wireless [ath] ath instablity o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154567 wireless [ath] ath(4) lot of bad series(0) o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/153448 wireless [ath] ath networking device loses association after a o kern/152750 wireless [ath] ath0 lot of bad series hwrate o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o kern/148322 wireless [ath] Triggering atheros wifi beacon misses in hostap o kern/148317 wireless [ath] FreeBSD 7.x hostap memory leak in net80211 or At o kern/148078 wireless [ath] wireless networking stops functioning o kern/145826 wireless [panic] [ath] Unable to configure adhoc mode on ath0/w p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 wireless [ath] [panic] ath(4) related panic o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach f kern/105348 wireless [ath] ath device stopps TX 48 problems total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data o kern/91311 net [aue] aue interface hanging o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o kern/51009 [aue] [patch] buggy aue driver fixed. 6 problems total. Problem reports for tag 'axe': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack o usb/88408 usb [axe] axe0 read PHY failed 2 problems total. Problem reports for tag 'bce': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155004 yongari [bce] [panic] kernel panic in bce0 driver o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 3 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/155442 jhb [bge] bge driver is seen but does not respond to netwo o kern/136876 yongari [bge] bge will not resume properly after suspend 2 problems total. Problem reports for tag 'binutils': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD 2 problems total. Problem reports for tag 'bktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/104675 [bktr] METEORSINPUT seemingly not setting input o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/56245 [bktr] Distorted and choppy video with bktr-driver on s kern/48279 [bktr] Brooktre878 may cause freeze o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. 18 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163985 [boot0] Incorrect operand size in boot0 o kern/159222 [boot0] unusual behavior writing boot0 from single use p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive 3 problems total. Problem reports for tag 'bootinst': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/22914 [bootinst] bootinst messages are not updated 1 problem total. Problem reports for tag 'bpf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164534 csjp [bpf] net.bpf.zerocopy_enable=1 makes pflogd eat cpu a o kern/163370 csjp [bpf] [request] enable zero-copy BPF by default o kern/158930 net [bpf] BPF element leak in ifp->bpf_if->bif_dlist p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents f kern/138029 net [bpf] [panic] periodically kernel panic and reboot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. 8 problems total. Problem reports for tag 'bsd.commands.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/159725 portmgr [bsd.commands.mk] Add new command: JOT 1 problem total. Problem reports for tag 'bsd.gnome.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/162260 gnome [bsd.gnome.mk] don't add useless dependency for INSTAL 1 problem total. Problem reports for tag 'bsd.java.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo 1 problem total. Problem reports for tag 'bsd.port.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164422 portmgr [bsd.port.mk] [patch] Force removal of OPTIONS file di o ports/164390 portmgr [bsd.port.mk] make package-recursive fails with noise o ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak f ports/164050 portmgr [bsd.port.mk] [patch] Ports fail to compile if unzip i o ports/162995 portmgr [bsd.port.mk] [patch] Add USE_READLINE knob o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ s ports/162178 portmgr [bsd.port.mk] Add bsd.clang.mk with Clang/LLVM support o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/158962 portmgr [bsd.port.mk] Make EXTRACT_CMD more flexible-- support o ports/158936 portmgr [bsd.port.mk] Add a filename field to DESKTOP_ENTRIES o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to s ports/148695 portmgr [bsd.port.mk] [patch] Easier / automatic regression-te s ports/148637 portmgr [bsd.port.mk] Options are ignored for any port that de o ports/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend f ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe 23 problems total. Problem reports for tag 'bsd.python.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken 1 problem total. Problem reports for tag 'busdma': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/160431 arm [busdma] [patch] Disable interrupts during busdma cach 1 problem total. Problem reports for tag 'bwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) 1 problem total. Problem reports for tag 'bwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall 2 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163932 [PATCH] [cam] Fix detection of LUN 1 for Garmin GPS de o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o kern/158351 [cam] [patch] missing #includes in o kern/153514 scsi [cam] [panic] CAM related panic s kern/149927 scsi [cam] hard drive not stopped before removing power dur o kern/148070 [cam] [panic] panic: _mtx_lock_sleep: recursed on non- a usb/143790 usb [boot] [cam] can not boot from usb hdd p kern/141934 eadler [cam] [patch] add support for SEAGATE DAT Scopion 130 f kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB s kern/85975 [cam] devfs does not create entries when removable med s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo 23 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad 6 problems total. Problem reports for tag 'carp': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/153848 bz [carp] [ipv6] backup host can't connect to master host a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash p kern/132285 glebius [carp] alias gives incorrect hash in dmesg o kern/132107 glebius [carp] carp(4) advskew setting ignored when carp IP us f kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat p kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi p kern/126945 glebius [carp] CARP interface destruction with ifconfig destro p kern/126714 glebius [carp] CARP interface renaming makes system no longer o kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg p kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste p kern/117448 glebius [carp] 6.2 kernel crash [regression] p kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) 12 problems total. Problem reports for tag 'cas': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/157932 gavin [cas] loading CAS4 at boot hangs system 1 problem total. Problem reports for tag 'cbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114550 [cbb] Cardbus WiFi card activation problem 1 problem total. Problem reports for tag 'cd': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from 1 problem total. Problem reports for tag 'cd9660': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored 3 problems total. Problem reports for tag 'cdce': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op 1 problem total. Problem reports for tag 'ciss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159412 scsi [ciss] 7.3 RELEASE: ciss0 ADAPTER HEARTBEAT FAILED err o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o kern/149219 [ciss] DL380 G6 P212 trouble o kern/146287 scsi [ciss] ciss(4) cannot see more than one SmartArray con o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125647 [ciss] [panic] System randomly crashes - ciss driver 10 problems total. Problem reports for tag 'coda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162944 fs [coda] Coda file system module looks broken in 9.0 1 problem total. Problem reports for tag 'conf': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/160276 brueffer [conf] Spelling Mistake in comments in configure-files 1 problem total. Problem reports for tag 'coretemp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158160 [coretemp] coretemp reports incorrect CPU temperature 1 problem total. Problem reports for tag 'cpufreq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146436 [cpufreq] [panic] Panic when changing profile to econo o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf f kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de 7 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac p kern/115695 [crypto] When "device padlock" defined first ssh to ma o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o kern/66029 secteam [crypto] [patch] MD5 alignment problem on a TriMedia p 6 problems total. Problem reports for tag 'cue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75710 [cue] cue0 device configuration causes kernel panic 1 problem total. Problem reports for tag 'cxgb': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/163545 np [cxgb] [patch] Return of uninitialized value in Chelsi p kern/146759 np [cxgb] [patch] cxgb panic calling cxgb_set_lro() witho o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/125806 np [cxgb] cxgb packet counters do not work 4 problems total. Problem reports for tag 'cy': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom 1 problem total. Problem reports for tag 'dc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/82070 [dc] Not all dc(4) devices can be used: MII without an o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite 7 problems total. Problem reports for tag 'de': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133495 [de] interface not properly initialized on boot o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern 2 problems total. Problem reports for tag 'devctl': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use 1 problem total. Problem reports for tag 'devd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. 1 problem total. Problem reports for tag 'devd.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/157903 [devd.conf] [patch] automated kldload for USB class de 1 problem total. Problem reports for tag 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124881 [devfs] [patch] [request] Add possibility to check whi o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ p kern/114057 jh [devfs] devfs symlink over device doesn't work o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media 4 problems total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo o kern/83254 [digi] driver can't init Digiboard PC/4e o kern/82227 [digi] Xem: chained concentrators not recognised o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection 6 problems total. Problem reports for tag 'diskless': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i 1 problem total. Problem reports for tag 'dri': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 1 problem total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 s kern/150514 kib [drm] [request] Reorganize DRM Directory to Support Dr p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel 5 problems total. Problem reports for tag 'dtrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160307 [dtrace] dtrace -lv can not identify the args of the o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr o kern/159612 [dtrace] walltimestamp and timestamp functions incompl p kern/159046 rwatson [dtrace] [patch] dtrace library is linked with a wrong o kern/159013 rwatson [dtrace] kldunload dtraceall crashing if userland dtra o bin/158431 [dtrace] crash in dt_proc_lookup when attaching to PID o kern/130998 [dtrace] DTrace stops tracing because of struct thread 7 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162558 net [dummynet] [panic] seldom dummynet panics f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same 12 problems total. Problem reports for tag 'e1000': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c 1 problem total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement 1 problem total. Problem reports for tag 'editline': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi 1 problem total. Problem reports for tag 'ef': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le 1 problem total. Problem reports for tag 'ehci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/156596 usb [ehci] Extremely high interrupt rate on ehci/uhci IRQ1 o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci 9 problems total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162153 net [em] intel em driver 7.2.4 don't compile o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/159294 net [em] em watchdog timeouts o kern/158635 net [em] TSO breaks BPF packet captures with em driver o kern/157418 net [em] em driver lockup during boot on Supermicro X9SCM- o kern/156667 net [em] em0 fails to init on CURRENT after March 17 o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o kern/153308 net [em] em interface use 100% cpu o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o kern/150516 jfv [em] e1000 receive queue handling problem o kern/148004 jfv [em] Inconsistent networking with em driver on FreeBSD o kern/147989 jfv [em] em Receive errors / CRC Errors / Alignment Errors o kern/146263 jfv [em] [panic] Panic in em(4) SIOCADDMULTI/em_set_multi/ p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/143573 jfv [em] em(4) NIC crashes intermittently o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140778 jfv [em] randomly panic in vlan/em o kern/140728 jfv [em] [patch] Fast irq registration in em driver o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122058 jfv [em] [panic] Panic on em1: taskq o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o kern/121298 jfv [em] [panic] Fatal trap 12: page fault while in kernel o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o kern/117043 jfv [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM o kern/115930 jfv [em] Dell nic enumeration problem o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/101226 jfv [em] Access to IPMI module is lost when the em driver 50 problems total. Problem reports for tag 'endian': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA 1 problem total. Problem reports for tag 'ep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151690 net [ep] network connectivity won't work until dhclient is 1 problem total. Problem reports for tag 'est': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/145718 i386 [est] [patch] fix freq calculation from MSR for CPUs w 1 problem total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx 1 problem total. Problem reports for tag 'exp-run': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/164599 portmgr [exp-run]: SDL ports update o ports/163878 portmgr [exp-run] add -pthread to all perl language builds f ports/163524 linimon [exp-run] estimate number of ports utilizing old inter o ports/162948 portmgr [exp-run] 10.0 exp-run without libreadline in base sys o ports/160624 portmgr [exp-run] Process USE_ flags in both parts of bsd.port a ports/159117 linimon [exp-run] Clang exp-run request. o ports/157769 johans [exp-run] devel/bison update to 2.5 o ports/156253 bapt [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o conf/155738 portmgr [exp-run] [patch] reaper of the dead: time to BURN_BRI o conf/155737 portmgr [exp-run] [patch] reaper of the dead: remove OBJFORMAT o ports/152871 portmgr [exp-run] [patch] Request for exp-run and comment w/rt o ports/138228 portmgr [bsd.port.mk] [exp-run] New opt-in knob to compile por 12 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155199 fs [ext2fs] ext3fs mounted as ext2fs gives I/O errors o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems 3 problems total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/149800 eadler [fdc] [patch] "driver bug: Unable to set devclass (dev o kern/119618 [fdc] Double Density Disks do not work correctly o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o kern/79944 [fdc] virtual floppy controller of Virtual PC does not s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o kern/74827 [fdc] Problem writing data to floppies o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/66960 [fdc] [patch] filesystems not unmounted during reboot 11 problems total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159971 fs [ffs] [panic] panic with soft updates journaling durin o kern/158711 fs [ffs] [panic] panic in ffs_blkfree and ffs_valloc o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/116583 fs [ffs] [hang] System freezes for short time when using o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna 8 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 2 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan p kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/113785 firewire [firewire] dropouts when playing DV on firewire o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w 14 problems total. Problem reports for tag 'flowtable': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155604 kmacy [flowtable] Flowtable excessively caches dest MAC addr o kern/148018 net [flowtable] flowtable crashes on ia64 f kern/146792 net [flowtable] flowcleaner 100% cpu's core load f kern/144917 net [flowtable] [panic] flowtable crashes system [regressi 4 problems total. Problem reports for tag 'fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, 2 problems total. Problem reports for tag 'fusefs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE 1 problem total. Problem reports for tag 'fusefs-ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/159191 usb [fusefs-ntfs] write on fusefs-ntfs mounted partition r 1 problem total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139162 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir 1 problem total. Problem reports for tag 'fwohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re 1 problem total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC 2 problems total. Problem reports for tag 'gbde': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo o kern/66162 [gbde] gbde destroy error 3 problems total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o kern/162010 geom [geli] panic: Provider's error should be set (error=0) f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during o kern/160409 geom [geli] failed to attach provider o kern/157863 geom [geli] kbdmux prevents geli passwords from being enter o kern/157722 fs [geli] unable to newfs a geli encrypted partition o arm/154227 arm [geli] using GELI leads to panic on ARM p kern/152609 pjd [geli] geli onetime on gzero panics o kern/146429 pjd [geli][panic][patch] kernel panic if geli autodetach i o kern/134113 geom [geli] Problem setting secondary GELI key o kern/133931 geom [geli] [request] intentionally wrong password to destr o bin/131415 geom [geli] keystrokes are unregulary sent to Geli when typ o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120066 [geli] geli boot password input fail when using serial o kern/117188 [geli] System crashes/reboots on access to file on GEL o kern/115856 geom [geli] ZFS thought it was degraded when it should have f kern/111967 [geli] glabel - label is seemingly not written to disk o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE 19 problems total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164254 geom [geom] gjournal not stopping on GPT partitions o kern/164252 geom [geom] gjournal overflow o kern/164143 geom [geom] Partition table not recognized after upgrade R8 o kern/162036 [geom] Fatal trap 12: page fault while in kernel mode o kern/161979 geom [geom] glabel doesn't update after newfs, and glabel s o kern/161752 geom [geom] glabel(8) doesn't get gpt label change o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra f kern/159595 geom [geom] [panic] panic on gmirror unload in vbox [regres o kern/158197 geom [geom] geom_cache with size>1000 leads to panics o kern/157739 geom [geom] GPT labels with geom_multipath o kern/157724 geom [geom] gpart(8) 'add' command must preserve gap for sc o kern/157723 geom [geom] GEOM should not process 'c' (raw) partitions fo o kern/155994 geom [geom] Long "Suspend time" when reading large files fr o kern/154226 geom [geom] GEOM label does not change when you modify them o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/150555 geom [geom] gjournal unusable on GPT partitions o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/145818 geom [geom] geom_stat_open showing cached information for n o kern/145042 geom [geom] System stops booting after printing message "GE o kern/142563 geom [geom] [hang] ioctl freeze in zpool o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o kern/140352 geom [geom] gjournal + glabel not working f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/135898 geom [geom] Severe filesystem corruption - large files or l o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o kern/131353 geom [geom] gjournal(8) kernel lock f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/129674 geom [geom] gjournal root did not mount on boot o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/123122 geom [geom] GEOM / gjournal kernel lock o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122067 geom [geom] [panic] Geom crashed during boot o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/113837 geom [geom] unable to access 1024 sector size storage o kern/113419 geom [geom] geom fox multipathing not failing back o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o kern/94632 geom [geom] Kernel output resets input while GELI asks for o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa o kern/84556 geom [geom] [panic] GBDE-encrypted swap causes panic at shu o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( 45 problems total. Problem reports for tag 'geom_part': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa 5 problems total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o kern/154943 net [gif] ifconfig gifX create on existing gifX clears IP o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o conf/97014 net [gif] gifconfig_gif? in rc.conf does not recognize IPv o conf/96094 [gif] startup scripts do not configure gif interfaces o kern/95532 [gif] if_gif has artificial limitations 12 problems total. Problem reports for tag 'gjournal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass 6 problems total. Problem reports for tag 'glxsb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec 1 problem total. Problem reports for tag 'gmirror': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147667 geom [gmirror] Booting with one component of a gmirror, the o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk f kern/128276 geom [gmirror] machine lock up when gmirror module is used o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad 5 problems total. Problem reports for tag 'gnats': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/164396 bugmeister [GNATs] add 'enhancement' class o misc/164395 bugmeister [GNATs] add support for .patch attachments o misc/164394 bugmeister [GNATS] Change some fields to 'unset' to prevent misca 3 problems total. Problem reports for tag 'gpio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m 1 problem total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164475 net [gre] gre misses RUNNING flag after a reboot o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/125239 net [gre] kernel crash when using gre f kern/122065 bz [ipsec] [gre] gre over ipsec not working p kern/114714 bz [gre] [patch] gre(4) is not MPSAFE and does not suppor o conf/111557 [gre] link1 flag doesn't work as intended when specifi p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with 9 problems total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/164334 doc [handbook] Sections 2.13 and 2.3.7 don't use the new U o docs/164228 doc [handbook] [patch] Adding raid3 to handbook o docs/163879 doc [handbook] handbook does not say about how to force to o docs/162433 doc [handbook] QEMU instructions for FreeBSD guests o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 o docs/161057 doc [handbook] Error in section 18.17.4 of the handbook o docs/160460 doc [handbook] Network setup guide suggestion o docs/160447 doc [handbook] Developer's Handbook contains some outdated o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/160445 doc [handbook] Handbook does not mention ACL o docs/159374 brd [handbook] Difficulty following guide on configuring l o docs/159298 doc [handbook] document Konqueror with Webkit support to i o docs/157908 doc [handbook] Description of post-install should include o docs/157337 doc [handbook] [patch] Indentation changes to network serv f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145631 blackend [handbook] References to ttyd0 serial devices in handb o docs/144543 chinsan [handbook] IPFW doc change o docs/144515 doc [handbook] Expand handbook Table of contents o docs/143416 doc [handbook] IPFW handbook page issues a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev o docs/140082 bland [handbook] handbook/jails: russian translation is miss o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/132718 doc [handbook] Information about adding a new mirror is ou o docs/121585 doc [handbook] Wrong multicast specification o docs/59240 blackend [patch] [handbook] update: linux MATLAB 30 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/162952 [headers] Problems including netinet/tcp_var.h o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c o kern/159279 [headers] [patch] __FreeBSD_cc_version in includes o kern/156637 [headers] [patch] sys/types.h can't be included when _ o kern/155429 [headers] including malloc.h should not abort compile. o kern/149960 [headers] syntax error /usr/include/machine/endian.h a kern/149012 gavin [headers] [patch] please replace '#include -interfac s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o kern/83778 [ip6] [patch] JPv6 cannot use Jumbo Frames o kern/77341 net [ip6] problems with IPV6 implementation 32 problems total. Problem reports for tag 'ipf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/77273 net [ipf] ipfilter breaks ipv6 statefull filtering on 5.3 s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 13 problems total. Problem reports for tag 'ipfilter': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162926 net [ipfilter] Infinite loop in ipfilter with fragmented I o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o kern/131601 net [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp 6 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163873 ipfw [ipfw] ipfw fwd does not work with 'via interface' in o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156279 net [if_bridge][divert][ipfw] unable to correctly re-injec f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo o kern/148928 hrs [ipfw] Problem with loading of ipfw NAT rules during s o kern/148827 ipfw [ipfw] divert broken with in-kernel ipfw o kern/148689 ipfw [ipfw] antispoof wrongly triggers on link local IPv6 a o kern/148430 ipfw [ipfw] IPFW schedule delete broken. o conf/148137 hrs [ipfw] call order of natd and ipfw startup scripts o kern/148091 ipfw [ipfw] ipfw ipv6 handling broken. p kern/145733 bz [ipfw] [patch] ipfw flaws with ipv6 fragments f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o kern/137232 ipfw [ipfw] parser troubles o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/130109 net [ipfw] Can not set fib for packets originated from loc f kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o bin/83046 ipfw [ipfw] ipfw2 error: "setup" is allowed for icmp, but s o kern/82724 ipfw [ipfw] [patch] [request] Add setnexthop and defaultrou o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/56031 luigi [ipfw] ipfw hangs on every invocation s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau 48 problems total. Problem reports for tag 'ipl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 2 problems total. Problem reports for tag 'ipmi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147855 [ipmi] [patch] kernel panic when IPMI enabled on some o kern/125389 [ipmi] [bce] IPMI problem with bce a kern/123904 [ipmi] ipmi(4) reports negative temperature values on a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/79143 [ipmi] Broadcom NIC driver do not work for IPMI 5 problems total. Problem reports for tag 'ipnat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt 3 problems total. Problem reports for tag 'ips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may 1 problem total. Problem reports for tag 'ipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164400 net [ipsec] immediate crash after the start of ipsec proce o kern/159629 net [ipsec] [panic] kernel panic with IPsec in transport m o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o kern/147894 net [ipsec] IPv6-in-IPv4 does not work inside an ESP-only o kern/146190 vanhu [ipsec][patch] NAT traversal does not work in transpor o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/129517 net [ipsec] [panic] double fault / stack overflow s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs 27 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131087 bschmidt [ipw] [panic] ipw / iwi - no sent/received packets; iw o kern/126339 net [ipw] ipw driver drops the connection o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o kern/84861 thompsa [ipw] [patch] still can't get working ipw(4) with adho a kern/82926 thompsa [ipw] ipw(4) doesn't seem to do WPA, also leaves entri 5 problems total. Problem reports for tag 'ipx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi 1 problem total. Problem reports for tag 'irq': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o kern/143837 [irq] [panic] nmi_calltrap in irq257: bce1 o kern/143521 [irq] [panic] nmi_calltrap in siopoll() o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/119696 [irq] [ral] ral device causes massive interrupt storm o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o 9 problems total. Problem reports for tag 'isa': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/37441 davidxu [isa] [patch] ISA PNP parse problem 1 problem total. Problem reports for tag 'iscsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157770 scsi [iscsi] [panic] iscsi_initiator panic o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc 2 problems total. Problem reports for tag 'isp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159414 mjacob [isp] isp(4)+gmultipath(8) : removing active fiber pat o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up 3 problems total. Problem reports for tag 'iwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164365 wireless [iwi] iwi0: UP/DOWN in f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o kern/123559 net [iwi] iwi periodically disassociates/associates [regre a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/116185 net [iwi] if_iwi driver leads system to reboot 9 problems total. Problem reports for tag 'iwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163154 [iwn] fatal firmware error on 9.0-RC3 o kern/161407 bschmidt [iwn] iwn panic on 9.0-BETA3 o kern/161293 wireless [iwn] hang at startup when starting network o kern/154826 bschmidt [iwn] iwn driver fails to power on adapter after resum f kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif 5 problems total. Problem reports for tag 'ix': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) 1 problem total. Problem reports for tag 'ixgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and 10 problems total. Problem reports for tag 'jail': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159918 jail [jail] inter-jail communication failure o kern/156584 bz [jail] ipv4 packet is not forward to v4-mapped binding o kern/156111 jail [jail] procstat -b not supported in jail o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o kern/145444 secteam [jail] sysinstall and sade can access host's disks fro p conf/143084 brooks [jail] [patch]: fix rc.d/jail creating stray softlinks o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o kern/133265 jail [jail] is there a solution how to run nfs client in ja o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o bin/78763 pjd [patch] [jail] Added jail support to ps(1) o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai 18 problems total. Problem reports for tag 'joy': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/64588 [joy] [request] Extend joystick driver architecture to 1 problem total. Problem reports for tag 'kbdmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/146793 gavin [kbdmap] [patch] Danish kbdmap for MacBook o conf/72465 [kbdmap] [patch] United States International keyboard 2 problems total. Problem reports for tag 'kbdmux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153459 [kbdmux][patch] add option to specify built-in keymap p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c 2 problems total. Problem reports for tag 'kerberos': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o kern/161888 [kerberos] nfs -sec=krb5x/ldap/krb5-heimdal fix/upgrad o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup o kern/151444 [kerberos] Kerberos5 is broken in the base system from o bin/147175 [kerberos] [patch] libhx509.so containes references to o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o bin/4116 [patch] [kerberos] Kerberized login as .root fai 8 problems total. Problem reports for tag 'kern.post.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE 1 problem total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/163623 eadler [kernel] sysctl net.inet.icmp.icmplim_output descripti o kern/162347 secteam [kernel] [patch] remove the extra variable in /sys/lib o kern/162174 [kernel] [patch] rman_manage_region() error return pat o kern/161949 [kernel] 64-bit structures are used even with 32-bit c o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/146588 [kernel] [patch] sys/kern/kern_uuid.c has a le16dec be p kern/145865 [kernel] [panic] kernel memory leak with disabled devd o kern/145590 [kernel] [patch] SIG_ATOMIC_{MIN,MAX} does not match s o kern/145434 [kernel] [patch] Kernel messages about processes don't o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/138117 [kernel] [panic] spin lock held too long o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o kern/129164 [kernel] Wrong priority value for normal processes o kern/121073 [kernel] [patch] run chroot as an unprivileged user o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o kern/119202 [kernel] [patch] Add generic support for disabling dev o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c p kern/93331 [kernel] [patch] broken asm in kernel o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o kern/85651 [kernel] [patch] debugging code to show entries in eve o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o kern/81588 [kernel] [patch] Devices with SI_CHEAPCLONE flag don't s kern/79339 [kernel] [patch] Kernel time code sync with improvemen s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX s kern/50827 [kernel] [patch] [request] add sane record locking o kern/50526 [kernel] [patch] update to #! line termination o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o kern/37555 [kernel] [patch] vnode flags appear to be changed in n f kern/29355 [kernel] [patch] add lchflags support 56 problems total. Problem reports for tag 'keyboard': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o conf/160227 [keyboard] Please include new keyboard mapping: French o usb/156898 usb [keyboard] usb keyboard does not work while boot (ps2 o i386/153851 usb [keyboard] keyboard issues on new Intel Mother boards. o usb/153703 usb [keyboard] My USB keyboard can not be used in 8-STABLE o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER f kern/144938 usb [keyboard] [boot] Boot Failure with Apple (MB869LL/A) o kern/142390 [keyboard] 30th console switch hangs computer complete o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o kern/135164 [keyboard] UK currency key inactive o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o kern/115253 [keyboard] Wireless keyboard not working at boot o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, f kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p o kern/80694 [keyboard] [patch] atkbd looped on Acer TravelMate 270 o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( 24 problems total. Problem reports for tag 'kld': S Tracker Resp. Description -------------------------------------------------------------------------------- p docs/142938 wkoszek [kld] share/examples: fix warnings 1 problem total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge 12 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115526 [libalias] libalias doesn't free memory o kern/105579 [libalias] dcc resume over natd in 6.x o kern/74450 [libalias] [patch] enable libalias/natd to create skip o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/41307 [libalias] [patch] logging of links lifecycle (add/del 6 problems total. Problem reports for tag 'libarchive': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport 4 problems total. Problem reports for tag 'libbsdxml': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157446 [libbsdxml] base expat needs minor fixes from vendor c 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164445 [libc] lseek(2) always returns ENXIO with SEEK_DATA/SE s kern/164425 [libc] stat(2) doesn't work in 32bit mode on amd64 o kern/162976 [libc] cron fails unnecessarily via setlogin(2) with s o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159179 [libc] close(2) emitting ECONNRESET is not POSIX compl o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o kern/156684 [libc] getaddrinfo(3) returns improper error o kern/154915 [libc] [patch] Force stdio output streams to line-buff o bin/153502 [libc] regex(3) bug with UTF-8 locale p bin/152551 gavin [libc] Remove unused variables. o kern/152036 net [libc] getifaddrs(3) returns truncated sockaddrs for n o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc a stand/149980 eadler [libc] [patch] negative value integer to nanosleep(2) p bin/149464 jh [libc] [rtld] dlclose(3) can access freed memory and c o kern/149323 [libc] Applications with large memory footprint failin o kern/148581 [libc] fopen(3) fails with EMFILE if there are more th o kern/148179 [libc] Possible Memory Leak in getaddrinfo(3) o kern/147839 [libc] [patch] syscall(2) with wrong argument causing o kern/147756 [libc] open_socket_in: Protocol not supported - after o kern/147647 [libc] select(2) wakes after 24 hours even if timeout o kern/147226 [libc] read(fd, buffer, len) returns -1 immediately, o kern/146889 [libc] [patch] Not having NET_RT_IFLIST #defined cause o kern/146845 net [libc] close(2) returns error 54 (connection reset by o kern/142772 net [libc] lla_lookup: new lle malloc failed o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep s stand/141705 standards [libc] [request] libc lacks cexp (and friends) o kern/141682 [libc] [patch] Faster version of strncpy(3) a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139080 [libc] [patch] closelog() can close negative file desc o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o kern/136669 [libc] [patch] setmode(3) should always set errno on e o kern/134391 [libc] dladdr(3) does effectively not work on main pro o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error a bin/130504 [libc] Serious bug in regular expression library (rege o kern/128933 kib [libc] realpath(3) does not follow SUS specification f o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/126230 [libc] select(2) causing weird process cpu usage and l o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o kern/124160 net [libc] connect(2) function loops indefinitely o kern/121656 [libc] [patch] telldir(3) issues o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware s kern/114578 [libc] wide character printing using swprintf(dst, n, o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o bin/108118 [libc] files should not cache their EOF status p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o bin/102515 [libc] fsck_ufs crashes if no console at all o kern/100709 net [libc] getaddrinfo(3) should return TTL info o bin/99800 [libc] [patch] Add support for profiling multiple exec a bin/96840 [libc] [patch] getgrent() does not return large groups o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o bin/95002 [libc] hash db source code has a bug which prevents us p stand/94729 gnn [libc] fcntl() throws undocumented ENOTTY o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o kern/82980 [libc] realpath(3) treats regular files as directories s kern/79048 [libc] realloc() copies data even when the size of all o kern/78787 [libc] [patch] sysconf(_SC_CLK_TCK) may return incorre o kern/76398 [libc] stdio can lose data in the presence of signals o kern/75855 [libc] getpwent(3) functions on 5.3 with large passwor s bin/75767 [libc] [request] "fdclose" function in libc o kern/70511 [libc] When fread(3)ing with buffering turned off, man o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/68690 [libc] write(2) returns wrong value when EFAULT s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI s kern/56720 [libc] [request] UNICODE support in Resolver o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31647 net [libc] socket calls can return undocumented EINVAL o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d 86 problems total. Problem reports for tag 'libc++': Problem reports for tag 'libcrypt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/75934 [libcrypt] [patch] missing blowfish functionality in p 2 problems total. Problem reports for tag 'libcrypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O 1 problem total. Problem reports for tag 'libdialog': S Tracker Resp. Description -------------------------------------------------------------------------------- p gnu/148609 imp [libdialog] [patch] printing to a checklist window on 1 problem total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/148881 [libdisk] [patch] libdisk emits errors w/ disks that c o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk 6 problems total. Problem reports for tag 'libedit': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159226 [libedit] [patch] libedit does not always restore its p bin/145528 gavin [libedit] ftp(1) crashes in libedit when cancelling a o kern/117348 [libedit] Loading history file sometimes fails in libe 3 problems total. Problem reports for tag 'libexec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/110017 [libexec] [patch] serial port console output garbled o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/45729 [libexec] [patch] make rbootd transfer the default fil 5 problems total. Problem reports for tag 'libfetch': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature p bin/151866 des [libfetch] [patch] closing the cached FTP connection o kern/140835 des [libfetch] fetchParseURL(3) returns success with inval o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o kern/116005 des [libfetch] libfetch accepts invalid URLs o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip 6 problems total. Problem reports for tag 'libgcc': S Tracker Resp. Description -------------------------------------------------------------------------------- s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi 2 problems total. Problem reports for tag 'libgeom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157879 geom [libgeom] [regression] ABI change without version bump 1 problem total. Problem reports for tag 'libgssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147454 [libgssapi] libgssapi (heimdal) broken in head/, stabl o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free 2 problems total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134249 [libiconv] [patch] ignore case for character set names 1 problem total. Problem reports for tag 'libipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in 1 problem total. Problem reports for tag 'libkrb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol 1 problem total. Problem reports for tag 'libkvm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163926 eadler [libkvm] libkvm.so.5 exports private symbols o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free 4 problems total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o stand/152415 kargl [libm] implementation of expl() o kern/147599 [libm] [patch] Import netbsd complex functions into ou 2 problems total. Problem reports for tag 'libmagic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149936 [libmagic] [patch] wrong handling of decompression uti 1 problem total. Problem reports for tag 'libmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78646 [libmap] [patch] libmap should canonicalize pathnames 1 problem total. Problem reports for tag 'libmd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file 1 problem total. Problem reports for tag 'libpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161456 [libpam] on a system bound to an LDAP server, top trie o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o bin/141016 [libpam] PAM checks in sshd too few? o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o bin/115946 des [libpam] [patch] not thread-safe o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc s kern/20333 des [libpam] ftp login fails on unix password when s/key a 13 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155370 [libpcap] [patch] description string is broken o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o bin/146592 [libpcap] [patch] libpcap 1.0.0 doesn't have error mes o kern/144325 [libpcap] tcpdump compiles complex expression to incor o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n 5 problems total. Problem reports for tag 'librpcsvc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa 1 problem total. Problem reports for tag 'libssh': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159745 [libssh] [patch] Fix improperly specified dependency l 1 problem total. Problem reports for tag 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/83424 [libstand] [patch] improper handling of malloc failure 3 problems total. Problem reports for tag 'libstdc++': Problem reports for tag 'libtacplus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will 1 problem total. Problem reports for tag 'libteken': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144743 [libteken] mouse positioning partialy working o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod 3 problems total. Problem reports for tag 'libusb': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker 2 problems total. Problem reports for tag 'libusbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83451 [libusbhid] [patch] improper handling of malloc failur 1 problem total. Problem reports for tag 'libutil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/84797 [libutil] [patch] State engine in the libutils propert s kern/38347 [libutil] [patch] [request] new library function abs2r o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f 3 problems total. Problem reports for tag 'libvgl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83426 [libvgl] [patch] improper handling of malloc failures 1 problem total. Problem reports for tag 'libwrap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all 1 problem total. Problem reports for tag 'libz': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/154073 delphij [libz] libz causes perl to exit on signal 11 1 problem total. Problem reports for tag 'linprocfs': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w 3 problems total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp p kern/148076 dchagin [linux] linux_sys_futex: unknown op 265 o kern/146237 emulation [linux] Linux binaries not reading directories mounted o kern/140156 emulation [linux] cdparanoia fails to read drive data o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails s kern/118230 acm [linux] games/linux-quake4 fails to start o kern/86619 emulation [linux] linux emulator interacts oddly with cp a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work s kern/21463 eadler [linux] Linux compatability mode should not allow setu 17 problems total. Problem reports for tag 'lo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o 2 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/155441 [loader] [patch] Firewire support in loader is broken f i386/138211 gavin [loader] Boot fails on Intel X5550 o kern/110995 [loader] [patch] loader wastes space worth symtab size o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o i386/62003 brucec [loader] [patch] make /boot/loader "reboot" code same 9 problems total. Problem reports for tag 'locale': S Tracker Resp. Description -------------------------------------------------------------------------------- a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac p conf/105100 [patch] [locale] no support for lv (latvian) locale a conf/91106 versus [locale] date definitions in pl_PL locale are wrong 3 problems total. Problem reports for tag 'login.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/155480 [login.conf] maxproc does not work when command runnin 1 problem total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting 3 problems total. Problem reports for tag 'mac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145040 [mac] PANIC_REBOOT_WAIT_TIME not honored o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa 2 problems total. Problem reports for tag 'make.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the 2 problems total. Problem reports for tag 'mbuf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou 2 problems total. Problem reports for tag 'mca': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146590 [mca] [panic] MCA panics 7.3 1 problem total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163801 fs [md] [request] allow mfsBSD legacy installed in 'swap' o kern/162502 [md] mount -t mfs on vnode-based md device destroy him p kern/154228 fs [md] md getting stuck in wdrain state 3 problems total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164258 [mfi] mfi does not work with PERC5/i in AMD M350 mothe o kern/157293 [mfi] mfiutil/mfi does not allow adding a previously c o kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if o kern/155499 [mfi] mfi(4) command timeout loop on boot on releng/8. p kern/140416 delphij [mfi] [patch] mfi driver stuck in timeout o kern/124989 [mfi] mfi driver error - unexpected sense 6 problems total. Problem reports for tag 'minidump': S Tracker Resp. Description -------------------------------------------------------------------------------- p amd64/139614 avg [minidump] minidumps fail when many interrupts fire o kern/118713 fs [minidump] [patch] Display media size required for a k 2 problems total. Problem reports for tag 'mips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR 2 problems total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o i386/55603 [mly] unable to reboot when system runs from Mylex A35 3 problems total. Problem reports for tag 'mmc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/141756 gavin [mmc] MMC card attached to blocks keybo 1 problem total. Problem reports for tag 'mmcsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164536 [modules] [request] disable building kernel modules th o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/114291 [RFE] [modules] [patch] add dynamic module references o kern/96346 [modules] [patch] disable build of modules that are al s kern/83738 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k f kern/48976 gavin [modules] nwfs.ko oddity 9 problems total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o kern/89166 [mouse] jumpy mouse movement o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/86298 usb [mouse] Known good USB mouse won't work with correct s 5 problems total. Problem reports for tag 'mpd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162267 qingli [mpd] mpd kernel panic 1 problem total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163812 scsi [mpt] problem with mpt driver for lsi controlled conne f kern/163130 scsi [mpt] cannot dumpon to mpt connected disk o kern/162256 scsi [mpt] QUEUE FULL EVENT and 'mpt_cam_event: 0x0' o kern/147704 scsi [mpt] sys/dev/mpt: new chip revision, partially unsupp o kern/145768 scsi [mpt] can't perform I/O on SAS based SAN disk in freeb o kern/142351 scsi [mpt] LSILogic driver performance problems o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/128282 gavin [mpt] system failure on removing two drives o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/117688 [mpt] mpt disk timeout and hang 16 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154828 fs [msdosfs] Unable to create directories on external USB o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o kern/123939 fs [msdosfs] corrupts new files f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o kern/111843 fs [msdosfs] Long Names of files are incorrectly created o kern/109024 fs [msdosfs] [iconv] mount_msdosfs: msdosfs_iconv: Operat o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f kern/87368 bde [msdosfs] fat32 is very slow o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o kern/79441 trhodes [msdosfs] problem writing on mounted msdos-fs at /mnt p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c 23 problems total. Problem reports for tag 'msk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164569 net [msk] [hang] msk network driver cause freeze in FreeBS o kern/160420 net [msk] phy write timeout on HP 5310m o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel 3 problems total. Problem reports for tag 'multicast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155680 net [multicast] problems with multicast o kern/154169 net [multicast] [ip6] Node Information Query multicast add o kern/149086 net [multicast] Generic multicast join failure in 8.1 3 problems total. Problem reports for tag 'mutex': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131573 [mutex] lock_init() assumes zero-filled struct 1 problem total. Problem reports for tag 'mwl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163724 wireless [mwl] [patch] NULL check before dereference o kern/146427 net [mwl] Additional virtual access points don't work on m o kern/146426 net [mwl] 802.11n rates not possible on mwl o kern/146425 net [mwl] mwl dropping all packets during and after high u 4 problems total. Problem reports for tag 'mxge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update 1 problem total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o misc/157533 imp [nanobsd][patch] save_cfg improvements p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o misc/145962 imp [nanobsd] [patch] improved cfg save script p misc/144553 imp [nanobsd] NanoBSD's updatep* scripts fail with boot0cf p misc/140436 imp [nanobsd] pkg-add process fails when there is no /usr/ o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re 12 problems total. Problem reports for tag 'nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 3 problems total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe o kern/156016 [ncurses] Arrow keys don't work with any ncurses based o kern/154609 ed [ncurses] END key under screen not sending correct cod o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) 4 problems total. Problem reports for tag 'ndis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/131781 net [ndis] ndis keeps dropping the link f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress 11 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152569 net [net]: Multiple ppp connections and routing table prob o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad s kern/81147 jfv [net] [patch] em0 reinitialization while adding aliase s kern/12071 fanf [net] [patch] new function: large scale IP aliasing 6 problems total. Problem reports for tag 'net80211': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163574 wireless [net80211] overly-frequent HT occupancy changes 1 problem total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/154091 net [netgraph] [panic] netgraph, unaligned mbuf? o kern/153497 net [netgraph] netgraph panic due to race conditions o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/104751 net [netgraph] kernel panic, when getting info about my tr o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/97306 net [netgraph] NG_L2TP locks after connection with failed o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/82881 net [netgraph] [panic] ng_fec(4) causes kernel panic after o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE 22 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re p kern/146250 bz [netinet] [patch] Races on interface alias removal o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat 13 problems total. Problem reports for tag 'netisr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164145 [netisr] when one of netisr threads take 100% system i o kern/164130 rwatson [netisr] broken netisr initialization o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o kern/100519 net [netisr] suggestion to fix suboptimal network polling 4 problems total. Problem reports for tag 'netsmb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163135 [netsmb] Wrong check in netsmb 1 problem total. Problem reports for tag 'network.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160892 eadler [network.subr] [patch] add vboxnet[0-9]* to noafif lis o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o conf/147681 [network.subr][patch] Add inet6 keyword if it wasn't s 3 problems total. Problem reports for tag 'nfe': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/147684 yongari [nfe] nVidia MCP55 driver blocks IPMI LAN on load f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki 2 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164462 fs [nfs] NFSv4 mounting fails to mount; asks for stronger o kern/163501 fs [nfs] NFS exporting a dir and a subdir in that dir to o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() f kern/157929 fs [nfs] NFS slow read o kern/154255 net [nfs] NFS not responding o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/147998 [nfs] [patch] NFS -mapall group permissions ignored wh o kern/146502 fs [nfs] FreeBSD 8 NFS Client Connection to Server o kern/145189 fs [nfs] nfsd performs abysmally under load o kern/143825 fs [nfs] [panic] Kernel panic on NFS client o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o kern/137327 dfr [nfs] nfs nlm memery leak o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c o kern/123755 dfr [nfs] fstat() fails to return ESTALE with rename()d fi o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown o bin/118318 mohans [nfs] NFS server hangs under special circumstances o kern/118126 fs [nfs] [patch] Poor NFS server write performance o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111162 [nfs] nfs_getpages does not restart interrupted system o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/105241 [nfs] problem with Linux NFS server up/down combined w o kern/97329 [nfs] [patch] code simplification o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur f kern/81770 [nfs] Always "NFS append race" at every NFS mount with o kern/79336 [nfs] NFS client doesn't detect file updates on Novell s kern/78884 [nfs] [patch] nfs client cache negative lookups o kern/78673 [nfs] [patch] nfs client open resets attrstamp ever if o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea s kern/67545 [nfs] NFS Diskless Mount Option Suggestion a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/35669 [nfs] NFSROOT breaks without a gateway o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo s kern/17108 [nfs] SecureRPC not supported in mount_nfs command 68 problems total. Problem reports for tag 'ng_l2tp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146082 net [ng_l2tp] a false invaliant check was performed in ng_ 1 problem total. Problem reports for tag 'ng_nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125704 [ng_nat] kernel libalias: repeatable panic 1 problem total. Problem reports for tag 'nis': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o bin/40215 [nis] NIS host search not terminate o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/24461 [nis] Being able to increase the YP timeout without re o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus 21 problems total. Problem reports for tag 'notes': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf 1 problem total. Problem reports for tag 'nsswitch.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163798 [nsswitch.conf] nsswitch.conf with nss_ldap ignore [su o conf/156945 [nsswitch.conf] Name service Switch does not work as d o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on 4 problems total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N f kern/117314 fs [ntfs] Long-filename only NTFS fs'es cause kernel pani o kern/116515 rwatson [ntfs] NTFS mount does not check that user has permiss o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem 12 problems total. Problem reports for tag 'null': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139014 [null] /dev/null must be immunable to delete/unlink p kern/138526 gnn [null] /dev/null does not support nonblocking operatio 2 problems total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o kern/162591 fs [nullfs] cross-filesystem nullfs does not work as expe o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou o kern/158231 fs [nullfs] panic on unmounting nullfs mounted over ufs o o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o kern/130210 fs [nullfs] Error by check nullfs o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/51583 fs [nullfs] [patch] allow to work with devices and socket 12 problems total. Problem reports for tag 'nwfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange 1 problem total. Problem reports for tag 'ofw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112477 marius [ofw] [patch] Add support to set the node and type on 1 problem total. Problem reports for tag 'ohci': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion 6 problems total. Problem reports for tag 'openbsm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu 1 problem total. Problem reports for tag 'openpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin 1 problem total. Problem reports for tag 'oss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r 1 problem total. Problem reports for tag 'padlock': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164565 [padlock] [panic] kernel crash when kldunload'ing padl 1 problem total. Problem reports for tag 'pae': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/129550 i386 [pae] [kqueue] crash with PAE kernel 1 problem total. Problem reports for tag 'pam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o bin/113230 des [pam] [patch] const-ify PAM-headers o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/83099 des [pam] pam_login_access change causes cyrus-sasl-saslau s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password 8 problems total. Problem reports for tag 'parallels': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec f kern/138944 emulation [parallels] [regression] Parallels no longer works in 2 problems total. Problem reports for tag 'path': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/164625 chinsan [PATH] port net-mgmt/icinga to support IDOUtils 1 problem total. Problem reports for tag 'patm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 1 problem total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164189 [pccard] FreeBSD 9.0-RELEASE on Toshiba Satellite Pro o conf/160373 [pccard] [patch] pccard_ether does not take settings i o kern/147127 [pccard] [patch] Fix panic in pccard.c o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp 5 problems total. Problem reports for tag 'pccbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128608 imp [pccbb] [patch] add support for powering down and up C o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF 4 problems total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/164313 jhb [pci] [patch] Fix pci_get_vpd_readonly_method f kern/158391 gavin [pci] Resource allocation issues with hda/ath o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m f kern/65355 [pci] [patch] TC1000 serial ports need enabling 8 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159236 multimedia [pcm] [patch] set PCM_CAP_DEFAULT for the default snd o kern/152622 multimedia [pcm] uaudio recording problem o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi 6 problems total. Problem reports for tag 'periodic': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163572 [periodic] not full output in daily run output is ambi o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o conf/152807 [periodic] security 900.tcpwrap does not report any re o kern/135502 net [periodic] Warning message raised by rtfree function i o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o conf/70715 [periodic] Lack of year in dates in auth.log can cause o conf/47596 [periodic] daily security run complains if timezone ch o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea 9 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164402 pf [pf] pf crashes with a particular set of rules when fi o kern/164271 pf [pf] not working pf nat on FreeBSD 9.0 [regression] o kern/163208 pf [pf] PF state key linking mismatch o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o kern/160370 pf [pf] Incorrect pfctl check of pf.conf o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/153307 pf [pf] Bug with PF firewall o kern/148290 pf [pf] "sticky-address" option of Packet Filter (PF) blo o kern/148260 pf [pf] [patch] pf rdr incompatible with dummynet o kern/147789 pf [pf] Firewall PF no longer drops connections by sendin o kern/146832 bz [pf] "(self)" not always matching all local IPv6 addre o kern/146719 net [pf] [panic] PF or dumynet kernel panic o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin s kern/143808 virtualization[pf] pf does not work inside jail o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o conf/142961 pf [pf] No way to adjust pidfile in pflogd o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/140697 pf [pf] pf behaviour changes - must be documented o kern/137982 pf [pf] when pf can hit state limits, random IP failures o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/133732 pf [pf] max-src-conn issue o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent f kern/132176 pf [pf] pf stalls connection when using route-to [regress o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o kern/127920 pf [pf] ipv6 and synproxy don't play well together o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w o kern/127439 pf [pf] deadlock in pf f kern/127345 pf [pf] Problem with PF on FreeBSD7.0 [regression] o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is o kern/125467 pf [pf] pf keep state bug while handling sessions between s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. o kern/93825 pf [pf] pf reply-to doesn't work o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/82271 pf [pf] cbq scheduler cause bad latency 49 problems total. Problem reports for tag 'pf.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/145727 [pf.conf] pf rules not applied on boot if using inet6 1 problem total. Problem reports for tag 'pfil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164490 net [pfil] Incorrect IP checksum on pfil pass from ip_outp s kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall 3 problems total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker 4 problems total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/52256 embedded [picobsd] picobsd build script does not read in user/s o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt 3 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/93685 jilles [pipe] select on pipe write fails from '0' end 1 problem total. Problem reports for tag 'plip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/102035 net [plip] plip networking disables parallel port printing 2 problems total. Problem reports for tag 'pmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ 1 problem total. Problem reports for tag 'portalfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9679 [portalfs] [patch] fix for uninterruptible open in por 1 problem total. Problem reports for tag 'powerd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I 1 problem total. Problem reports for tag 'ppbus': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 1 problem total. Problem reports for tag 'ppc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o conf/119550 [ppp] ppp not starting during bootup. o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces s kern/84386 [ppp] [request] PPPoA Authentication built into FreeBS o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 15 problems total. Problem reports for tag 'pppd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr 3 problems total. Problem reports for tag 'procfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o kern/97505 [procfs] file entry of procfs points to "unknown" o kern/96999 [procfs] [patch] procfs reports incorrect information s kern/19535 [procfs] [patch] procfs_rlimit tidyup 4 problems total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161043 [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o kern/159063 [psm] ALPS touchpad recognized as PS mouse (no scrl, n o kern/147237 [psm] [patch] There is no IBM/Lenovo TrackPoint suppor o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o kern/137228 [psm] synaptics support delays 'mouse up' events when o kern/129125 [psm] psm0: failed to reset the aux device. f kern/128308 gavin [psm] psm0 cause page fault o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 o kern/109161 philip [psm] synaptic touchpad doesn't work o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation 16 problems total. Problem reports for tag 'ptrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace 1 problem total. Problem reports for tag 'pty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs 1 problem total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163450 [puc] [patch] new pci quad serial card supported by pu o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s f kern/43716 eadler [puc] [patch] puc driver does not recognize Lava Dual- 6 problems total. Problem reports for tag 'pxeboot': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146162 [pxeboot] PXE loader(8) sets nfs_opts[] = "export" cau o i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin 5 problems total. Problem reports for tag 'quotas': S Tracker Resp. Description -------------------------------------------------------------------------------- s bin/42004 [quotas] quota is still IPv4 only, and not INET indepe 1 problem total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o f kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] f kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati 3 problems total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o kern/153937 net [ral] ralink panics the system (amd64 freeBSDD 8.X) wh f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 f kern/134168 gavin [ral] ral driver problem on RT2525 2.4GHz transceiver o kern/132238 [ral] ral driver does not support RT2860 o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o kern/119696 [irq] [ral] ral device causes massive interrupt storm f kern/117655 sam [ral] ral%d: device timeout when running as an access o kern/111457 net [ral] ral(4) freeze o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P o kern/95519 net [ral] ral0 could not map mbuf o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP f kern/82456 gavin [ral] WITNESS warning/backtrace in if_ral 19 problems total. Problem reports for tag 'random': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc 2 problems total. Problem reports for tag 'rc': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser 3 problems total. Problem reports for tag 'rc.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip 2 problems total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o conf/154554 rc [rc.d] [patch] statd and lockd fail to start o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck o conf/147444 rc [rc.d] [patch] /etc/rc.d/zfs stop not called on reboot o conf/145445 rc [rc.d] error in /etc/rc.d/jail (bad logic) o conf/145440 hrs [rc.d] [patch] add multiple fib support (setfib) in /e o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o conf/137629 rc [rc.d] background_dhclient rc.conf option causing doub o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o conf/135338 rc [rc.d] pf startup order seems broken [regression] o bin/134250 [rc.d] mountlate: bogus error message when using neste o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c 23 problems total. Problem reports for tag 'rc.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands p conf/150752 dougb [rc.subr] [patch] be not needed to eval $_pidcmd on re 2 problems total. Problem reports for tag 'rctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162407 [rctl] [panic] rctl crashes kernel with a page fault ( o kern/161552 [rctl] [panic] kernel panic with RCTL option: racct_al 2 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162509 net [re] [panic] Kernel panic may be related to if_re.c (r o kern/161381 net [re] RTL8169SC - re0: PHY write failed f kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. o kern/157429 net [re] Realtek RTL8169 doesn't work with re(4) o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f 5 problems total. Problem reports for tag 'release': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/145580 [release] /usr/src/release/Makefile does not honor HTT 1 problem total. Problem reports for tag 'resolver': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136013 [resolver] Resolver wrong diagnostics 1 problem total. Problem reports for tag 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' 1 problem total. Problem reports for tag 'route': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161899 net [route] ntpd(8): Repeating RTM_MISS packets causing hi o kern/155177 net [route] [panic] Panic when inject routes in kernel o kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 o kern/134531 net [route] [panic] kernel crash related to routes/zebra a kern/71474 net [route] route lookup does not skip interfaces marked d 5 problems total. Problem reports for tag 'rp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44202 [rp] [patch] -stable rp driver does not work with mult s i386/28975 [rp] RocketPort problems 2 problems total. Problem reports for tag 'rpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158340 [rpc] Possible dereference of null pointer by code tha p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o kern/150036 [rpc] Sun RPC license has less restrictions now. f kern/117711 [rpc] rpcbind binds to all interfaces on random ports o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux 7 problems total. Problem reports for tag 'rpc.quotad': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support 1 problem total. Problem reports for tag 'rtalloc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs 1 problem total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/152662 [rtld] load libraries with address hint (cf. prelink) p bin/149464 jh [libc] [rtld] dlclose(3) can access freed memory and c o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/84199 [rtld] dlinfo does not handle RTLD_DI_SERINFOSIZE prop 5 problems total. Problem reports for tag 'rum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149643 net [rum] device not sending proper beacon frames in ap mo p usb/146693 thompsa [rum] Edimax EW‐7318USG not found in usbdevs or a kern/141696 virtualization[rum] [panic] rum(4)+ vimage = kernel panic o kern/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o usb/133296 usb [rum] driver not working properly in hostap mode o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel 13 problems total. Problem reports for tag 'run': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/162500 maho math/suitesparse: gmake[2]: *** [run] Segmentation fau o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o usb/144387 usb [run] [panic] if_run panic 3 problems total. Problem reports for tag 'sa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe 1 problem total. Problem reports for tag 'safe': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/110662 sam [safe] safenet driver causes kernel panic 1 problem total. Problem reports for tag 'sbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136327 firewire [sbp] [boot] Asus M3N78-EM motherboard cannot boot wit o kern/119572 firewire [sbp] PowerBook not accessable when in target mode 2 problems total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163587 [sched_ule] The ULE scheduler does not load in the fou o kern/161097 [sched_ule] Unkillable process hanging waiting for "ex o kern/128177 jeff [sched_ule] wrong CPU usage reported by top(1)/ps(1) w p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/117420 jeff [sched_ule] round off in sched_balance_pair() s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a 7 problems total. Problem reports for tag 'scheduler': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' 1 problem total. Problem reports for tag 'scsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re o kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 drive if dis o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. 3 problems total. Problem reports for tag 'ses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi 1 problem total. Problem reports for tag 'sg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120487 scsi [sg] scsi_sg incompatible with scanners 1 problem total. Problem reports for tag 'siis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145714 [siis] removed SATA device on port multiplier resets e 1 problem total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159647 [sio] device sio will not compile o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o kern/128036 [sio] [patch] serial console mostly ignores typein to a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/97665 [sio] hang in sio driver o kern/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i o kern/51982 remko [sio] sio1: interrupt-level buffer overflows o kern/49039 [sio] [patch] add support for RS485 hardware where dir o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/26261 [sio] silo overflow problem in sio driver s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o 13 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 1 problem total. Problem reports for tag 'smb': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect 1 problem total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/159048 fs [smbfs] smb mount corrupts large files o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o kern/94733 fs [smbfs] smbfs may cause double unlock o kern/91134 fs [smbfs] [patch] Preserve access and modification time a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o kern/87859 fs [smbfs] System reboot while umount smbfs. o kern/80088 fs [smbfs] Incorrect file time setting on NTFS mounted vi o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o kern/61503 fs [smbfs] mount_smbfs does not work as non-root o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o kern/36566 fs [smbfs] System reboot with dead smb mount and umount 26 problems total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164203 [smp] usr/src/sys/sys/smp.h:124: warning: comparison b o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/67830 [smp] [patch] CPU affinity problem with forked child p 3 problems total. Problem reports for tag 'snapshots': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162362 fs [snapshots] [panic] ufs with snapshot(s) panics when g 1 problem total. Problem reports for tag 'snd_emu10k1': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system 7 problems total. Problem reports for tag 'snd_hda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s f kern/158424 multimedia [snd_hda] snd_hda driver doesn't expose 'rec' flag for o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/150284 multimedia [snd_hda] No gain with Audio o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o kern/141826 multimedia [snd_hda] load of snd_hda module fails o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att 10 problems total. Problem reports for tag 'snd_uadio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158979 multimedia [snd_uadio] snd_uaudio fails to initialize built-in mi 1 problem total. Problem reports for tag 'snd_uaudio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156726 multimedia [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant 4 problems total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159663 fs [socket] [nullfs] sockets don't work though nullfs mou p kern/144061 rwatson [socket] race on unix socket close o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm p kern/127360 net [socket] TOE socket options missing from sosetopt() o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec a kern/97921 rwatson [socket] close() socket deadlocks blocked threads f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/21998 net [socket] [patch] ident only for outgoing connections o kern/5877 net [socket] sb_cc counts control data as well as data dat 12 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153920 multimedia [sound] [patch] Replace the GPL'd sound/maestro3 heade p kern/153901 pfg [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 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o power/133503 ppc [sound] Sound stutter after switching ttys o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla f usb/80040 usb [sound] [hang] Use of sound mixer causes system freeze o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 56 problems total. Problem reports for tag 'sshd_config': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163843 [sshd_config] Modified VersionAddendum field in sshd_c 1 problem total. Problem reports for tag 'stf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154214 net [stf] [panic] Panic when creating stf interface o conf/148017 hrs [stf] [patch] rc script for stf does not honour create s kern/143673 net [stf] [request] there should be a way to support multi o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/123858 net [stf] [patch] stf not usable behind a NAT 5 problems total. Problem reports for tag 'swap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162382 [swap] Orphaned swap references not garbage collected; 1 problem total. Problem reports for tag 'swi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net 4 problems total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163064 [fix][sym]driver tries to nego synch trans with everyo o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load 4 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160235 eadler [syscons] [patch] Spanish Dvorak keyboard o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o kern/152162 [syscons] On syscons, pressing delete key results in p o kern/148367 [syscons] [patch] Add loader tunable to override SC_HI o kern/148130 [syscons] Inappropriate ioctl for device f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/117242 [syscons] [hang] console hangs when powerd is adaptive o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH s bin/90082 [syscons] [patch] curses ACS line graphics support for o kern/83109 [syscons] syscons does not always display colors corre o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/46973 [syscons] [patch] [request] syscons virtual terminals o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/31890 [syscons] [patch] new syscons font s kern/15436 [syscons] syscons extension: "propellers" 17 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu p kern/155491 eadler [sysctl][patch] Document some sys/dev/md sysctls p kern/155490 eadler [sysctl][patch] Document some sys/vm sysctls p kern/155489 eadler [sysctl][patch] Document some sys/kern sysctls o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls p kern/148580 gavin [sysctl][patch] Document some sys/kern sysctls o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/54439 [sysctl] [patch] Protecting sysctls variables by given 10 problems total. Problem reports for tag 'tap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158686 virtualization[patch] [tap] Add VIMAGE support to if_tap o kern/123892 net [tap] [patch] No buffer space available o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap 3 problems total. Problem reports for tag 'tcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159795 net [tcp] excessive duplicate ACKs and TCP session freezes o kern/159621 net [tcp] [panic] panic: soabort: so_count f kern/155585 melifaro [tcp] [panic] tcp_output tcp_mtudisc loop until kernel p kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r o kern/154600 net [tcp] [panic] Random kernel panics on tcp_output o kern/154557 net [tcp] Freeze tcp-session of the clients, if in the gat a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t f kern/123617 andre [tcp] breaking connection when client downloading file o kern/123603 andre [tcp] tcp_do_segment and Received duplicate SYN f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a kern/116335 andre [tcp] Excessive TCP window updates o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s 20 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- p conf/147992 gavin [termcap] [patch] xterm-256color is a 8 colors termina o conf/136336 [termcap] [patch] missing entry for "center of keypad" s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili 3 problems total. Problem reports for tag 'terminfo': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/140965 [terminfo] Cannot create terminfo database because ncu 1 problem total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/20529 [ti] gigabit cards fail to link 1 problem total. Problem reports for tag 'tinybsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ 1 problem total. Problem reports for tag 'tmpfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No p kern/141194 jh [tmpfs] tmpfs treats the size option as mod 2^32 o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u p kern/139312 delphij [tmpfs] [patch] tmpfs mmap synchronization bug p kern/138367 jh [tmpfs] [panic] 'panic: Assertion pages > 0 failed' wh p kern/122038 delphij [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc 6 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/161175 eadler [tools] [patch] uninitialized variables on some regres o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o misc/147463 [tools] [patch] Patch for tools/regression/lib/libc/st o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam 5 problems total. Problem reports for tag 'trm': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 1 problem total. Problem reports for tag 'tun': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162927 net [tun] Modem-PPP error ppp[1538]: tun0: Phase: Clearing o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP p kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o bin/115951 [tun] pppoed(8): tun not closed after client abruptly 6 problems total. Problem reports for tag 'twa': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138948 i386 [twa] [regression] da0: Fi o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid 2 problems total. Problem reports for tag 'twe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72906 [twe] twe0 idefinite wait buffer a kern/66185 [twe] twe driver generates gratuitous warning on shutd 2 problems total. Problem reports for tag 'u3g': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem 1 problem total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155752 [uart] tcdrain(3) does not work with uart(4) driver o kern/155196 [uart] uart cannot identify internal modem or its chip o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x o kern/147082 ed [uart] Serial ports unusable [regression] s kern/146647 [uart] Some PCIe serial/parallel boards with ID 9901 9 o kern/144696 ed [uart] tcdrain(3) does not work right with uart(4) dri o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 8 problems total. Problem reports for tag 'uath': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri 1 problem total. Problem reports for tag 'ubsa': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun 4 problems total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct 11 problems total. Problem reports for tag 'udav': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ 1 problem total. Problem reports for tag 'udbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected 2 problems total. Problem reports for tag 'udf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158376 [udf] [patch] The UDF file system under counts the num o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada 3 problems total. Problem reports for tag 'udp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o kern/133736 net [udp] ip_id not protected ... p kern/127057 bz [udp] Unable to send UDP packet via IPv6 socket to IPv o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject 5 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164472 fs [ufs] fsck -B panics on particular data inconsistency o kern/164184 fs [ufs] [panic] Kernel panic with ufs_makeinode o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161674 fs [ufs] snapshot on journaled ufs doesn't work o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 o kern/160860 fs [ufs] Random UFS root filesystem corruption with SU+J o kern/159930 fs [ufs] [panic] kernel core p kern/156545 fs [ufs] mv could break UFS on SMP systems o kern/156193 fs [ufs] [hang] UFS snapshot hangs && deadlocks processes o kern/152991 [ufs] false disk full with a too slow flash module o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o kern/147420 fs [ufs] [panic] ufs_dirbad, nullfs, jail panic (corrupt o kern/146708 fs [ufs] [panic] Kernel panic in softdep_disk_write_compl o kern/145246 fs [ufs] dirhash in 7.3 gratuitously frees hashes when it o kern/144929 fs [ufs] [lor] vfs_bio.c + ufs_dirhash.c o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132331 fs [ufs] [lor] LOR ufs and syncer o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file a kern/125613 trasz [ufs] [patch] ACL problems with special files o bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o kern/117954 fs [ufs] dirhash on very large directories blocks the mac o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po 36 problems total. Problem reports for tag 'uftdi': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/67301 usb [uftdi] [panic] RTS and system panic 10 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/154710 usb [ugen] Conexant USB Modem is not working in 8.x. In 7. o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n 8 problems total. Problem reports for tag 'uhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 3 problems total. Problem reports for tag 'uhub': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb 3 problems total. Problem reports for tag 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does f usb/102066 gavin [ukbd] usb keyboard and multimedia keys don't work o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar 13 problems total. Problem reports for tag 'ulpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes 11 problems total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/85971 jeff [uma] [patch] minor optimization to uma 2 problems total. Problem reports for tag 'umapfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/74708 [umapfs] [panic] UMAPFS kernel panic 1 problem total. Problem reports for tag 'umass': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o usb/153149 usb [umass] USB stick quirk regression [regression] o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d f usb/135348 eadler [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2 o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o usb/131583 usb [umass] Failure when detaching umass Device o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/121169 usb [umass] Issues with usb mp3 player o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o usb/114682 usb [umass] generic USB media-card reader unusable f kern/114667 [umass] UMASS device error log problem o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) f usb/74771 usb [umass] [hang] mounting write-protected umass device a s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/40948 usb [umass] [request] USB HP CDW8200 does not work 62 problems total. Problem reports for tag 'umct': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters 1 problem total. Problem reports for tag 'umodem': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/164090 usb [umodem] [patch] Add sysctl with ucom unit number o usb/128485 usb [umodem] [patch] Nokia N80 modem support p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work 5 problems total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s kern/103578 [ums] ums does not recognize mouse buttons s usb/96120 usb [ums] [request] USB mouse not always detected o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 13 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161511 fs [unionfs] Filesystem deadlocks when using multiple uni o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/145750 daichi [unionfs] [hang] unionfs locks the machine o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo o bin/19772 [unionfs] df(1) output wrong for union-mounts 14 problems total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco 1 problem total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode 5 problems total. Problem reports for tag 'urio': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/51958 usb [urio] [patch] update for urio driver 1 problem total. Problem reports for tag 'urtw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b 4 problems total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/155496 miwi [usb][patch] support BUFFALO WLI-U2-SG54HG wireless o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics o usb/129311 usb [usb] [panic] Instant crash with an USB card reader s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f usb/87224 usb [usb] Cannot mount USB Zip750 o usb/79723 usb [usb] [request] prepare for high speed isochronous tra s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 21 problems total. Problem reports for tag 'usb67': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is f usb/137872 usb [usb67] [boot] slow booting on usb flash drive o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/128977 usb [usb67] [patch] uaudio is not full duplex s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con 45 problems total. Problem reports for tag 'usb8': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/157074 usb [boot] [usb8] vfs_mountroot_ask is called when no usb o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf s usb/148702 usb [usb8] [request] IO DATA USB-RSAQ5 support on FreeBSD- p usb/146367 thompsa [usb8] [patch] Revision 205728: broken bluetooth mouse o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date f usb/145513 usb [usb8] New USB stack: no new devices after forced usb p usb/145455 usb [usb8] [patch] USB debug support cannot be disabled o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o usb/137377 usb [usb8] request support for Huawei E180 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/1371