From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 07:10:01 2010 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 45B9F106568B for ; Sun, 3 Jan 2010 07:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 022AE8FC19 for ; Sun, 3 Jan 2010 07:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o037A09K037502 for ; Sun, 3 Jan 2010 07:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o037A0RJ037501; Sun, 3 Jan 2010 07:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jan 2010 07:10:00 GMT Resent-Message-Id: <201001030710.o037A0RJ037501@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, Peter Jeremy Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84A6D106566C for ; Sun, 3 Jan 2010 07:03:48 +0000 (UTC) (envelope-from peterjeremy@acm.org) Received: from mail16.syd.optusnet.com.au (mail16.syd.optusnet.com.au [211.29.132.197]) by mx1.freebsd.org (Postfix) with ESMTP id 192108FC16 for ; Sun, 3 Jan 2010 07:03:47 +0000 (UTC) Received: from server.vk2pj.dyndns.org (c122-106-232-83.belrs3.nsw.optusnet.com.au [122.106.232.83]) by mail16.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id o0373i8E031884 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sun, 3 Jan 2010 18:03:45 +1100 Received: from server.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by server.vk2pj.dyndns.org (8.14.3/8.14.3) with ESMTP id o0373ipt082899; Sun, 3 Jan 2010 18:03:44 +1100 (EST) (envelope-from peter@server.vk2pj.dyndns.org) Received: (from peter@localhost) by server.vk2pj.dyndns.org (8.14.3/8.14.3/Submit) id o0373iqA082898; Sun, 3 Jan 2010 18:03:44 +1100 (EST) (envelope-from peter) Message-Id: <201001030703.o0373iqA082898@server.vk2pj.dyndns.org> Date: Sun, 3 Jan 2010 18:03:44 +1100 (EST) From: Peter Jeremy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/142258: [patch] Add ability to log or print rtld errors X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Peter Jeremy List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2010 07:10:01 -0000 >Number: 142258 >Category: bin >Synopsis: [patch] Add ability to log or print rtld errors >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jan 03 07:10:00 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 8.0-STABLE amd64 >Organization: n/a >Environment: System: FreeBSD server.vk2pj.dyndns.org 8.0-STABLE FreeBSD 8.0-STABLE #11: Mon Nov 30 16:36:34 EST 2009 root@server.vk2pj.dyndns.org:/var/obj/usr/src/sys/server amd64 >Description: ld-elf.so.1 records errors via _rtld_error() and can return the latest error to the application via dlerror(). If the application doesn't choose to report the error to the user, it can be almost impossible to determine why a program is failing - eg if a symbol if undefined. The attached patch provides two mechanisms to access error messages independent of the application: 1) A new environment variable LD_PRINT_ERROR causes _rtld_error() to automatically log any message. 2) Messages logged via _rtld_error() are passed to utrace() if tracing is enabled (via LD_UTRACE). >How-To-Repeat: With the patch in place: server% LD_PRINT_ERROR=x sh -c 'ls ~fred' RTLD Error: Shared object "nss_files.so.1" not found, required by "sh" RTLD Error: Shared object "nss_files.so.1" not found, required by "sh" RTLD Error: Shared object "nss_dns.so.1" not found, required by "sh" RTLD Error: Shared object "nss_dns.so.1" not found, required by "sh" RTLD Error: Shared object "nss_dns.so.1" not found, required by "sh" RTLD Error: Undefined symbol "_nss_cache_cycle_prevention_function" ls: ~fred: No such file or directory server% (Note that the duplicated messages appear to be caused by multiple identical calls to _rtld_error()). >Fix: Index: rtld.1 =================================================================== RCS file: /usr/ncvs/src/libexec/rtld-elf/rtld.1,v retrieving revision 1.49.2.1 diff -u -r1.49.2.1 rtld.1 --- rtld.1 3 Aug 2009 08:13:06 -0000 1.49.2.1 +++ rtld.1 3 Jan 2010 06:15:22 -0000 @@ -154,6 +154,11 @@ will be searched first followed by the set of built-in standard directories. This variable is unset for set-user-ID and set-group-ID programs. +.It Ev LD_PRINT_ERROR +When set to a nonempty string, causes +.Nm +to print any error messages that would be available to the application via +.Xr dlopen 3 . .It Ev LD_BIND_NOW When set to a nonempty string, causes .Nm Index: rtld.c =================================================================== RCS file: /usr/ncvs/src/libexec/rtld-elf/rtld.c,v retrieving revision 1.139.2.2 diff -u -r1.139.2.2 rtld.c --- rtld.c 20 Oct 2009 13:26:58 -0000 1.139.2.2 +++ rtld.c 3 Jan 2010 06:24:14 -0000 @@ -164,6 +164,7 @@ static char *ld_elf_hints_path; /* Environment variable for alternative hints path */ static char *ld_tracing; /* Called from ldd to print libs */ static char *ld_utrace; /* Use utrace() to log events. */ +static char *ld_printerror; /* Report _rtld_error() messages to stdout */ static Obj_Entry *obj_list; /* Head of linked list of shared objects */ static Obj_Entry **obj_tail; /* Link field of last object in list */ static Obj_Entry *obj_main; /* The main program shared object */ @@ -244,6 +245,10 @@ (dlp)->num_alloc = obj_count, \ (dlp)->num_used = 0) +/* + * The following macros and struct utrace_rtld must be kept aligned with + * the equivalent code in kdump.c + */ #define UTRACE_DLOPEN_START 1 #define UTRACE_DLOPEN_STOP 2 #define UTRACE_DLCLOSE_START 3 @@ -254,6 +259,7 @@ #define UTRACE_PRELOAD_FINISHED 8 #define UTRACE_INIT_CALL 9 #define UTRACE_FINI_CALL 10 +#define UTRACE_RTLD_ERROR 11 struct utrace_rtld { char sig[4]; /* 'RTLD' */ @@ -384,6 +390,7 @@ (ld_elf_hints_path != NULL); ld_tracing = getenv(LD_ "TRACE_LOADED_OBJECTS"); ld_utrace = getenv(LD_ "UTRACE"); + ld_printerror = getenv(LD_ "PRINT_ERROR"); if ((ld_elf_hints_path == NULL) || strlen(ld_elf_hints_path) == 0) ld_elf_hints_path = _PATH_ELF_HINTS; @@ -612,6 +619,9 @@ vsnprintf(buf, sizeof buf, fmt, ap); error_message = buf; va_end(ap); + if (ld_printerror != NULL && ld_printerror != '\0') + printf("RTLD Error: %s\n", error_message); + LD_UTRACE(UTRACE_RTLD_ERROR, NULL, NULL, 0, 0, error_message); } /* Index: kdump.c =================================================================== RCS file: /usr/ncvs/src/usr.bin/kdump/kdump.c,v retrieving revision 1.45.2.2 diff -u -r1.45.2.2 kdump.c --- kdump.c 22 Nov 2009 16:13:16 -0000 1.45.2.2 +++ kdump.c 3 Jan 2010 06:21:51 -0000 @@ -1009,6 +1009,10 @@ cs->user ? "user" : "kernel"); } +/* + * The following macros and struct utrace_rtld must be kept aligned with + * the equivalent code in rtld.c + */ #define UTRACE_DLOPEN_START 1 #define UTRACE_DLOPEN_STOP 2 #define UTRACE_DLCLOSE_START 3 @@ -1019,6 +1023,7 @@ #define UTRACE_PRELOAD_FINISHED 8 #define UTRACE_INIT_CALL 9 #define UTRACE_FINI_CALL 10 +#define UTRACE_RTLD_ERROR 11 struct utrace_rtld { char sig[4]; /* 'RTLD' */ @@ -1097,6 +1102,10 @@ printf("RTLD: fini %p for %p (%s)\n", ut->mapbase, ut->handle, ut->name); break; + case UTRACE_RTLD_ERROR: + printf("RTLD: error: %s\n", ut->name); + break; + default: p += 4; len -= 4; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 10:40:03 2010 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 EFDF6106568F for ; Sun, 3 Jan 2010 10:40:03 +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 C44428FC18 for ; Sun, 3 Jan 2010 10:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03Ae3sC066452 for ; Sun, 3 Jan 2010 10:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03Ae3pT066446; Sun, 3 Jan 2010 10:40:03 GMT (envelope-from gnats) Date: Sun, 3 Jan 2010 10:40:03 GMT Message-Id: <201001031040.o03Ae3pT066446@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: =?ISO-8859-1?Q?Olivier_Cochard=2DLabb=E9?= Cc: Subject: Re: kern/139143: [ata] [regression] PATA hard drive not detected with 8.0-RC1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?ISO-8859-1?Q?Olivier_Cochard=2DLabb=E9?= List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2010 10:40:04 -0000 The following reply was made to PR kern/139143; it has been noted by GNATS. From: =?ISO-8859-1?Q?Olivier_Cochard=2DLabb=E9?= To: Alexander Motin Cc: bug-followup@freebsd.org Subject: Re: kern/139143: [ata] [regression] PATA hard drive not detected with 8.0-RC1 Date: Sun, 3 Jan 2010 11:38:14 +0100 It's not an ATA bug, but an ACPI regression. You can close this PR (I will open a new PR related to ACPI). Regards, Olivier From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 12:20:03 2010 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 403881065676 for ; Sun, 3 Jan 2010 12:20:03 +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 158EF8FC17 for ; Sun, 3 Jan 2010 12:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03CK217065222 for ; Sun, 3 Jan 2010 12:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03CK2Mj065207; Sun, 3 Jan 2010 12:20:02 GMT (envelope-from gnats) Date: Sun, 3 Jan 2010 12:20:02 GMT Message-Id: <201001031220.o03CK2Mj065207@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Tut Cc: Subject: Re: kern/140461: [vm] Fail to read from swap. The swap_pager.c contains incomplete routine as stated in its comments X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tut List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2010 12:20:03 -0000 The following reply was made to PR kern/140461; it has been noted by GNATS. From: Tut To: bug-followup@FreeBSD.org, varnie29a@mail.ru Cc: Subject: Re: kern/140461: [vm] Fail to read from swap. The swap_pager.c contains incomplete routine as stated in its comments Date: Sun, 03 Jan 2010 13:51:37 +0200 I have the same problem. using 7.2 and a 1gb /swap0 file /var/crash/info.0 Panic String: swap_pager_force_pagein: read from swap failed From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 12:33:44 2010 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 1C5B8106568B; Sun, 3 Jan 2010 12:33:44 +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 E7E268FC22; Sun, 3 Jan 2010 12:33:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03CXhuN085479; Sun, 3 Jan 2010 12:33:43 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03CXhiY085475; Sun, 3 Jan 2010 12:33:43 GMT (envelope-from gavin) Date: Sun, 3 Jan 2010 12:33:43 GMT Message-Id: <201001031233.o03CXhiY085475@freefall.freebsd.org> To: rsmith@xs4all.nl, gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/137180: [build] [patch] building world for 8.0-BETA2 fails on 7.2-RELEASE 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, 03 Jan 2010 12:33:44 -0000 Synopsis: [build] [patch] building world for 8.0-BETA2 fails on 7.2-RELEASE State-Changed-From-To: open->feedback State-Changed-By: gavin State-Changed-When: Sun Jan 3 12:32:15 UTC 2010 State-Changed-Why: To submitter: do you know if this has been fixed? I've not seen any other reports of it, and usually before a release is published it is tested to ensure an upgrade can be done from the previous release. Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: gavin Responsible-Changed-When: Sun Jan 3 12:32:15 UTC 2010 Responsible-Changed-Why: USB related issue http://www.freebsd.org/cgi/query-pr.cgi?pr=137180 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 12:35:12 2010 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 E0D9C106568B; Sun, 3 Jan 2010 12:35:12 +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 B8B528FC1A; Sun, 3 Jan 2010 12:35:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03CZCWP085778; Sun, 3 Jan 2010 12:35:12 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03CZCgZ085774; Sun, 3 Jan 2010 12:35:12 GMT (envelope-from gavin) Date: Sun, 3 Jan 2010 12:35:12 GMT Message-Id: <201001031235.o03CZCgZ085774@freefall.freebsd.org> To: gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/138043: [patch] fsck_ffs(8) broken, partial patch 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, 03 Jan 2010 12:35:13 -0000 Synopsis: [patch] fsck_ffs(8) broken, partial patch Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: gavin Responsible-Changed-When: Sun Jan 3 12:34:54 UTC 2010 Responsible-Changed-Why: Over to maintainer(s) http://www.freebsd.org/cgi/query-pr.cgi?pr=138043 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 13:10:02 2010 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 079751065672 for ; Sun, 3 Jan 2010 13:10:02 +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 BF3D78FC20 for ; Sun, 3 Jan 2010 13:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03DA1e8016085 for ; Sun, 3 Jan 2010 13:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03DA1lm016084; Sun, 3 Jan 2010 13:10:01 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jan 2010 13:10:01 GMT Resent-Message-Id: <201001031310.o03DA1lm016084@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, Olivier Cochard-Labbe Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD5AA106568B for ; Sun, 3 Jan 2010 13:01:08 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id BC22C8FC0A for ; Sun, 3 Jan 2010 13:01:08 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o03D180h010542 for ; Sun, 3 Jan 2010 13:01:08 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o03D18jE010541; Sun, 3 Jan 2010 13:01:08 GMT (envelope-from nobody) Message-Id: <201001031301.o03D18jE010541@www.freebsd.org> Date: Sun, 3 Jan 2010 13:01:08 GMT From: Olivier Cochard-Labbe To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/142263: ACPI regression on Asus K8N7-E deluxe motherboard with 8-stable 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, 03 Jan 2010 13:10:02 -0000 >Number: 142263 >Category: kern >Synopsis: ACPI regression on Asus K8N7-E deluxe motherboard with 8-stable >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 03 13:10:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Olivier Cochard-Labbe >Release: 8-stable >Organization: FreeNAS >Environment: FreeBSD debugger.bsdrp.net 8.0-STABLE FreeBSD 8.0-STABLE #9: Sat Jan 2 23:23:23 CET 2010 root@debugger.bsdrp.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: FreeBSD 8-stable have an ACPI regression on my motherboard (asus K8N7-E deluxe). This system works great under FreeBSD 7.2, but I need to disable ACPI on 8.0 for boot it. The PCI ressource memory information are not correctly reported: Ethernet, USB or SATA/PATA drivers didn't work. Example with the nfe Ethernet drivers: On FreeBSD 7.2, the dmesg report this (but allmost all drivers have this problem): nfe0: port 0xb000-0xb007 mem 0xd3000000-0xd3000fff irq 21 at device 10.0 on pci0 nfe0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xd3000000 miibus0: on nfe0 e1000phy0: PHY 15 on miibus0 e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX-FDX, auto nfe0: bpf attached nfe0: Ethernet address: 00:13:d4:d6:3a:7b But on FreeBSD 8.0, the dmesg report this (note the reserved mem diff): nfe0: irq 21 at device 10.0 on pci0 nfe0: Lazy allocation of 0x1000000 bytes rid 0x10 type 3 at 0x81000000 nfe0: Reserved 0x1000000 bytes for rid 0x10 type 3 at 0x81000000! nfe0: MII without any phy! device_attach: nfe0 attach returned 6 FreeBSD 8.0 display this error message too: ACPI Error: Package List length (6) larger than NumElements count (3), truncated 20090521 dsobject-590 Full dmesg under FreeBSD 7.2 here: http://pastebin.com/f7bbdcb3a Full dmesg under FreeBSD 8.0 here: http://pastebin.com/f52df9c4c Regards, Olivier >How-To-Repeat: Using FreeBSD 8-stable on Asus K8N7-E deluxe motherboard. >Fix: Disable ACPI on the boot loader. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 13:20:28 2010 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 647401065692; Sun, 3 Jan 2010 13:20:28 +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 366E38FC12; Sun, 3 Jan 2010 13:20:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03DKSkG030135; Sun, 3 Jan 2010 13:20:28 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03DKRgN030027; Sun, 3 Jan 2010 13:20:27 GMT (envelope-from gavin) Date: Sun, 3 Jan 2010 13:20:27 GMT Message-Id: <201001031320.o03DKRgN030027@freefall.freebsd.org> To: jhs@berklix.org, gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, wkoszek@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/119610: [patch] config(8): config -x appends unwanted trailing null 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, 03 Jan 2010 13:20:28 -0000 Synopsis: [patch] config(8): config -x appends unwanted trailing null State-Changed-From-To: open->patched State-Changed-By: gavin State-Changed-When: Sun Jan 3 13:18:47 UTC 2010 State-Changed-Why: This was fixed in HEAD (and therefore in 8.x) in r188214 but has not been MFC'd to 7.x Responsible-Changed-From-To: freebsd-bugs->wkoszek Responsible-Changed-By: gavin Responsible-Changed-When: Sun Jan 3 13:18:47 UTC 2010 Responsible-Changed-Why: Over to wkoszek, committer of r188214, for MFC consideration http://www.freebsd.org/cgi/query-pr.cgi?pr=119610 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 13:27:24 2010 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 254341065676; Sun, 3 Jan 2010 13:27:24 +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 F0C7F8FC19; Sun, 3 Jan 2010 13:27:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03DRNTv036828; Sun, 3 Jan 2010 13:27:23 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03DRN0w036820; Sun, 3 Jan 2010 13:27:23 GMT (envelope-from gavin) Date: Sun, 3 Jan 2010 13:27:23 GMT Message-Id: <201001031327.o03DRN0w036820@freefall.freebsd.org> To: avg@icyb.net.ua, gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/121182: [patch] newfs_msdos(8) should supports devices without CHS characteristics 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, 03 Jan 2010 13:27:24 -0000 Synopsis: [patch] newfs_msdos(8) should supports devices without CHS characteristics State-Changed-From-To: patched->closed State-Changed-By: gavin State-Changed-When: Sun Jan 3 13:27:00 UTC 2010 State-Changed-Why: I think this can be closed, it's fixed in HEAD, 8.x and 7.x. http://www.freebsd.org/cgi/query-pr.cgi?pr=121182 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 13:28:45 2010 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 44F581065676; Sun, 3 Jan 2010 13:28:45 +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 1C77B8FC1A; Sun, 3 Jan 2010 13:28:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03DSi2m037188; Sun, 3 Jan 2010 13:28:44 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03DSicl037184; Sun, 3 Jan 2010 13:28:44 GMT (envelope-from gavin) Date: Sun, 3 Jan 2010 13:28:44 GMT Message-Id: <201001031328.o03DSicl037184@freefall.freebsd.org> To: wawaka@gmail.com, gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/123069: [patch] ps(1): invalid value of 'elapsed' field in ps output if process is swapped out 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, 03 Jan 2010 13:28:45 -0000 Synopsis: [patch] ps(1): invalid value of 'elapsed' field in ps output if process is swapped out State-Changed-From-To: patched->closed State-Changed-By: gavin State-Changed-When: Sun Jan 3 13:28:14 UTC 2010 State-Changed-Why: I think this can be closed, it's fixed in HEAD, 8.x and 7.x. http://www.freebsd.org/cgi/query-pr.cgi?pr=123069 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 13:40:11 2010 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 89F86106576F; Sun, 3 Jan 2010 13:40:11 +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 61EA78FC12; Sun, 3 Jan 2010 13:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03DeBng050154; Sun, 3 Jan 2010 13:40:11 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03DeB1n050145; Sun, 3 Jan 2010 13:40:11 GMT (envelope-from gavin) Date: Sun, 3 Jan 2010 13:40:11 GMT Message-Id: <201001031340.o03DeB1n050145@freefall.freebsd.org> To: gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-firewire@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/128277: [patch] improvements for fwcontrol(8) utility 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, 03 Jan 2010 13:40:11 -0000 Synopsis: [patch] improvements for fwcontrol(8) utility Responsible-Changed-From-To: freebsd-bugs->freebsd-firewire Responsible-Changed-By: gavin Responsible-Changed-When: Sun Jan 3 13:39:31 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). Apart from a couple of style issues, the patch looks good to me. http://www.freebsd.org/cgi/query-pr.cgi?pr=128277 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 13:50:03 2010 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 1234A1065697; Sun, 3 Jan 2010 13:50:03 +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 BCFF08FC1C; Sun, 3 Jan 2010 13:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03Do2tN060006; Sun, 3 Jan 2010 13:50:02 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03Do2ua060000; Sun, 3 Jan 2010 13:50:02 GMT (envelope-from gavin) Date: Sun, 3 Jan 2010 13:50:02 GMT Message-Id: <201001031350.o03Do2ua060000@freefall.freebsd.org> To: minear@securecomputing.com, gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, gavin@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/117452: [patch] tftp(1): the fix for PR 103206 was incorrect 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, 03 Jan 2010 13:50:03 -0000 Synopsis: [patch] tftp(1): the fix for PR 103206 was incorrect State-Changed-From-To: open->patched State-Changed-By: gavin State-Changed-When: Sun Jan 3 13:49:15 UTC 2010 State-Changed-Why: Fixed in r201429, will MFC in 2 weeks. Thanks for your submission! Responsible-Changed-From-To: freebsd-bugs->gavin Responsible-Changed-By: gavin Responsible-Changed-When: Sun Jan 3 13:49:15 UTC 2010 Responsible-Changed-Why: Mine http://www.freebsd.org/cgi/query-pr.cgi?pr=117452 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 15:08:04 2010 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 2AC081065672; Sun, 3 Jan 2010 15:08:04 +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 030CB8FC08; Sun, 3 Jan 2010 15:08:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03F83md051647; Sun, 3 Jan 2010 15:08:03 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03F833k051641; Sun, 3 Jan 2010 15:08:03 GMT (envelope-from gavin) Date: Sun, 3 Jan 2010 15:08:03 GMT Message-Id: <201001031508.o03F833k051641@freefall.freebsd.org> To: dan@obluda.cz, gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/71664: [patch] cleanup of the usr.sbin/fwcontrol code 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, 03 Jan 2010 15:08:04 -0000 Synopsis: [patch] cleanup of the usr.sbin/fwcontrol code State-Changed-From-To: open->closed State-Changed-By: gavin State-Changed-When: Sun Jan 3 15:07:20 UTC 2010 State-Changed-Why: These fixes were committed some time ago, bringing fwcontrol up to WARNS=3 level. Thanks for your submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=71664 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 15:12:02 2010 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 1BD431065672; Sun, 3 Jan 2010 15:12:02 +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 E83058FC08; Sun, 3 Jan 2010 15:12:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03FC1K0060029; Sun, 3 Jan 2010 15:12:01 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03FC1Dc060025; Sun, 3 Jan 2010 15:12:01 GMT (envelope-from gavin) Date: Sun, 3 Jan 2010 15:12:01 GMT Message-Id: <201001031512.o03FC1Dc060025@freefall.freebsd.org> To: dan@obluda.cz, gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/71632: [patch] cleanup of the usr.sbin/ndp code 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, 03 Jan 2010 15:12:02 -0000 Synopsis: [patch] cleanup of the usr.sbin/ndp code State-Changed-From-To: open->closed State-Changed-By: gavin State-Changed-When: Sun Jan 3 15:11:08 UTC 2010 State-Changed-Why: This was fixed differently is ndp.c 1.18. Thanks for your submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=71632 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 15:16:06 2010 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 A1921106568B; Sun, 3 Jan 2010 15:16:06 +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 7A05C8FC14; Sun, 3 Jan 2010 15:16:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03FG6Ut061654; Sun, 3 Jan 2010 15:16:06 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03FG6Y3061650; Sun, 3 Jan 2010 15:16:06 GMT (envelope-from gavin) Date: Sun, 3 Jan 2010 15:16:06 GMT Message-Id: <201001031516.o03FG6Y3061650@freefall.freebsd.org> To: dan@obluda.cz, gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/71660: [patch] cleanup of the usr.sbin/kgmon code 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, 03 Jan 2010 15:16:06 -0000 Synopsis: [patch] cleanup of the usr.sbin/kgmon code State-Changed-From-To: open->closed State-Changed-By: gavin State-Changed-When: Sun Jan 3 15:15:07 UTC 2010 State-Changed-Why: These were fixed in kgmon.c 1.14. Thanks for your submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=71660 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 18:19:36 2010 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 617A21065679; Sun, 3 Jan 2010 18:19:36 +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 37F648FC15; Sun, 3 Jan 2010 18:19:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03IJauI032485; Sun, 3 Jan 2010 18:19:36 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03IJZwN032481; Sun, 3 Jan 2010 18:19:35 GMT (envelope-from linimon) Date: Sun, 3 Jan 2010 18:19:35 GMT Message-Id: <201001031819.o03IJZwN032481@freefall.freebsd.org> To: olivier@cochard.me, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/139143: [ata] [regression] PATA hard drive not detected with 8.0-RC1 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, 03 Jan 2010 18:19:36 -0000 Synopsis: [ata] [regression] PATA hard drive not detected with 8.0-RC1 State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Sun Jan 3 18:19:00 UTC 2010 State-Changed-Why: Refiled against ACPI as kern/142263. http://www.freebsd.org/cgi/query-pr.cgi?pr=139143 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 18:20:13 2010 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 DA497106568F; Sun, 3 Jan 2010 18:20:13 +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 B16F78FC0C; Sun, 3 Jan 2010 18:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03IKDi8033227; Sun, 3 Jan 2010 18:20:13 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03IKD0L033218; Sun, 3 Jan 2010 18:20:13 GMT (envelope-from linimon) Date: Sun, 3 Jan 2010 18:20:13 GMT Message-Id: <201001031820.o03IKD0L033218@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-acpi@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/142263: [acpi] ACPI regression on Asus K8N7-E deluxe motherboard with 8-stable [regression] 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, 03 Jan 2010 18:20:13 -0000 Old Synopsis: ACPI regression on Asus K8N7-E deluxe motherboard with 8-stable New Synopsis: [acpi] ACPI regression on Asus K8N7-E deluxe motherboard with 8-stable [regression] Responsible-Changed-From-To: freebsd-bugs->freebsd-acpi Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jan 3 18:19:42 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=142263 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 18:40:01 2010 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 470721065696 for ; Sun, 3 Jan 2010 18:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 22C228FC22 for ; Sun, 3 Jan 2010 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03Ie1YI054256 for ; Sun, 3 Jan 2010 18:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03Ie0Ma054255; Sun, 3 Jan 2010 18:40:00 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jan 2010 18:40:00 GMT Resent-Message-Id: <201001031840.o03Ie0Ma054255@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, Przemyslaw Laczynski Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E312F106566C for ; Sun, 3 Jan 2010 18:35:57 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id D01758FC0A for ; Sun, 3 Jan 2010 18:35:57 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o03IZvuv013440 for ; Sun, 3 Jan 2010 18:35:57 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o03IZvZx013439; Sun, 3 Jan 2010 18:35:57 GMT (envelope-from nobody) Message-Id: <201001031835.o03IZvZx013439@www.freebsd.org> Date: Sun, 3 Jan 2010 18:35:57 GMT From: Przemyslaw Laczynski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/142271: [zfs] [patch] race condition on zpool create 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, 03 Jan 2010 18:40:01 -0000 >Number: 142271 >Category: kern >Synopsis: [zfs] [patch] race condition on zpool create >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 03 18:40:00 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Przemyslaw Laczynski >Release: 9.0-CURRENT@20100102 >Organization: >Environment: FreeBSD 9.0-CURRENT FreeBSD 9.0-CURRENT #1: Sat Jan 2 01:01:24 UTC 2010 root@:/usr/src/sys/amd64/compile/GENERIC amd64 >Description: Race condition in zfs module when running vdev_geom_open(): It first opens geom by path in read/write/exclusive mode and checks device guid comparing to cache, if guid mismatches it closes geom (generating g_dev_taste event as it was last write client on geom) and searches all system devices looking for cached guid, if that still fails it tries to open geom by path in read/write/exclusive and fails because g_dev_taste kicked in just before with read/exclusive mode. Found this problem both on 8.0-RELEASE and 9.0-CURRENT. Full log for bored ones: localhost# sysctl vfs.zfs.debug=5 vfs.zfs.debug: 0 -> 5 localhost# sysctl kern.geom.debugflags=5 kern.geom.debugflags: 0 -> 5 localhost# zpool create -f tank md0p2 Jan 3 18:56:14 localhost kernel: g_dev_open(md0p2, 1, 8192, 0xffffff0001a4b700) Jan 3 18:56:14 localhost kernel: g_access(0xffffff0001929d00(md0p2), 1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:14 localhost kernel: g_part_access(md0p2,1,0,0) Jan 3 18:56:14 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:14 localhost kernel: g_dev_close(md0p2, 1, 8192, 0xffffff0001a4b700) Jan 3 18:56:14 localhost kernel: g_access(0xffffff0001929d00(md0p2), -1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:14 localhost kernel: g_part_access(md0p2,-1,0,0) Jan 3 18:56:14 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:14 localhost kernel: g_dev_open(md0p2, 1, 8192, 0xffffff0001a4b700) Jan 3 18:56:14 localhost kernel: g_access(0xffffff0001929d00(md0p2), 1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:14 localhost kernel: g_part_access(md0p2,1,0,0) Jan 3 18:56:14 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:14 localhost kernel: g_dev_close(md0p2, 1, 8192, 0xffffff0001a4b700) Jan 3 18:56:14 localhost kernel: g_access(0xffffff0001929d00(md0p2), -1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:14 localhost kernel: g_part_access(md0p2,-1,0,0) Jan 3 18:56:14 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:14 localhost kernel: g_dev_open(md0p2, 1, 8192, 0xffffff0001a4b700) Jan 3 18:56:14 localhost kernel: g_access(0xffffff0001929d00(md0p2), 1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:14 localhost kernel: g_part_access(md0p2,1,0,0) Jan 3 18:56:14 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:14 localhost kernel: g_dev_close(md0p2, 1, 8192, 0xffffff0001a4b700) Jan 3 18:56:14 localhost kernel: g_access(0xffffff0001929d00(md0p2), -1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:14 localhost kernel: g_part_access(md0p2,-1,0,0) Jan 3 18:56:14 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, 0) Jan 3 18:56:14 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:14 localhost kernel: vdev_geom_open_by_path:466[1]: Found provider by name /dev/md0p2. Jan 3 18:56:14 localhost kernel: vdev_geom_attach:112[1]: Attaching to md0p2. Jan 3 18:56:14 localhost kernel: g_access(0xffffff0001cbf180(md0p2), 1, 1, 1) Jan 3 18:56:14 localhost kernel: open delta:[r1w1e1] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:14 localhost kernel: g_part_access(md0p2,1,1,1) Jan 3 18:56:14 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 1, 2) Jan 3 18:56:14 localhost kernel: open delta:[r1w1e2] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:14 localhost kernel: g_post_event_x(0xffffffff8054bda0, 0xffffff0001c89d00, 2, 0) Jan 3 18:56:14 localhost kernel: ref 0xffffff0001c89d00 Jan 3 18:56:14 localhost kernel: g_post_event_x(0xffffffff8054bda0, 0xffffff0001c89700, 2, 0) Jan 3 18:56:14 localhost kernel: ref 0xffffff0001c89700 Jan 3 18:56:14 localhost kernel: vdev_geom_attach:133[1]: Created geom and consumer for md0p2. Jan 3 18:56:14 localhost kernel: vdev_geom_read_guid:g3_0s1l[ic1e]_:s poiled(0xffffff0001cb6300/md0p2)Reading guid from md0p2... Jan 3 18:56:14 localhost kernel: g_wither_geom(0xffffff0001937c00(md0p2)) Jan 3 18:56:14 localhost kernel: Jan 3 18:56:14 localhost kernel: g_orphan_provider(0xffffff0001939d00(gptid/a8cfde45-f897-11de-9761-001c251ceb12), 6) Jan 3 18:56:14 localhost kernel: g_orphan_register(gptid/a8cfde45-f897-11de-9761-001c251ceb12) Jan 3 18:56:14 localhost kernel: g_dev_orphan(0xffffff00018b9200(gptid/a8cfde45-f897-11de-9761-001c251ceb12)) Jan 3 18:56:14 localhost kernel: g_detach(0xffffff00018b9200) Jan 3 18:56:14 localhost kernel: g_destroy_consumer(0xffffff00018b9200) Jan 3 18:56:14 localhost kernel: g_destroy_geom(0xffffff0001c89300(gptid/a8cfde45-f897-11de-9761-001c251ceb12))vdev_geom_read_guid:339[1]: guid for Jan 3 18:56:14 localhost kernel: g_detach(0xffffff0001cb6300) Jan 3 18:56:14 localhost kernel: Jan 3 18:56:14 localhost kernel: g_destroy_consumer(0xffffff0001cb6300) Jan 3 18:56:14 localhost kernel: g_destroy_geom(0xffffff0001937c00(md0p2)) Jan 3 18:56:14 localhost kernel: vdev_geom_detach:173[1]: Closing access to md0p2. Jan 3 18:56:14 localhost kernel: g_access(0xffffff0001cbf180(md0p2), -1, 0, -1) Jan 3 18:56:15 localhost kernel: Jan 3 18:56:15 localhost kernel: open delta:[r-1w0e-1] old:[r1w1e1] provider:[r1w1e1] 0xffffff0001c89700(md0p2) Jan 3 18:56:15 localhost kernel: g_part_access(md0p2,-1,0,-1) Jan 3 18:56:15 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, -1) Jan 3 18:56:15 localhost kernel: open delta:[r-1w0e-1] old:[r1w1e2] provider:[r1w1e2] 0xffffff0001c89d00(md0) Jan 3 18:56:15 localhost kernel: vdev_geom_detach:177[1]: Destroyed consumer to md0p2. Jan 3 18:56:15 localhost kernel: g_access(0xffffff0001cbf180(md0p2), 0, -1, 0) Jan 3 18:56:15 localhost kernel: open delta:[r0w-1e0] old:[r0w1e0] provider:[r0w1e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:15 localhost kernel: g_part_access(md0p2,0,-1,0) Jan 3 18:56:15 localhost kernel: g_access(0xffffff00018b8d00(md0), 0, -1, -1) Jan 3 18:56:15 localhost kernel: open delta:[r0w-1e-1] old:[r0w1e1] provider:[r0w1e1] 0xffffff0001c89d00(md0) Jan 3 18:56:15 localhost kernel: g_post_event_x(0xffffffff8054bb40, 0xffffff0001c89d00, 2, 0) Jan 3 18:56:15 localhost kernel: ref 0xffffff0001c89d00 Jan 3 18:56:15 localhost kernel: g_post_event_x(0xffffffff8054bb40, 0xffffff0001c89700, 2, 0) Jan 3 18:56:15 localhost kernel: ref 0xffffff0001c89700 Jan 3 18:56:15 localhost kernel: g_detach(0xffffff0001cbf180) Jan 3 18:56:15 localhost kernel: g_destroy_consumer(0xffffff0001cbf180) Jan 3 18:56:15 localhost kernel: vdev_geom_detach:185[1]: Destroyed geom zfs::vdev. Jan 3 18:56:15 localhost kernel: g_wither_geom(0xffffff0001a56200(zfs::vdev)) Jan 3 18:56:15 localhost kernel: vdev_geom_open_by_path:477[1]: guid mismatch for provider /dev/md0p2: 15376817640459635577 != 338386095307402449. Jan 3 18:56:15 localhost kernel: vdev_geom_open_by_guid:43g5[_e1l]i:_ taste(ELI, md0)Searching by guid [15376817640459635577]. Jan 3 18:56:15 localhost kernel: g_label_taste(LABEL, md0) Jan 3 18:56:15 localhost kernel: g_post_event_x(0xffffffff810a7b10, 0xffffff00015fe9a0, 2, 262144) Jan 3 18:56:15 localhost kernel: g_access(0xffffff0001cba600(md0), 1, 0, 0) Jan 3 18:56:15 localhost kernel: Jan 3 18:56:15 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:16 localhost kernel: Jan 3 18:56:16 localhost kernel: g_access(0xffffff0001cba600(md0), -1, 0, 0) Jan 3 18:56:16 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:16 localhost kernel: g_detach(0xffffff0001cba600) Jan 3 18:56:16 localhost kernel: g_destroy_consumer(0xffffff0001cba600) Jan 3 18:56:16 localhost kernel: g_destroy_geom(0xffffff0001bc4500(label:taste)) Jan 3 18:56:16 localhost kernel: g_eli_taste(ELI, md0p2) Jan 3 18:56:16 localhost kernel: g_part_taste(PART,md0p2) Jan 3 18:56:16 localhost kernel: g_access(0xffffff0001cbf380(md0p2), 1, 0, 0) Jan 3 18:56:16 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:16 localhost kernel: g_part_access(md0p2,1,0,0) Jan 3 18:56:16 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 0, 0) Jan 3 18:56:16 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:16 localhost kernel: g_access(0xffffff0001cbf380(md0p2), -1, 0, 0) Jan 3 18:56:16 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:16 localhost kernel: g_part_access(md0p2,-1,0,0) Jan 3 18:56:16 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, 0) Jan 3 18:56:16 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:16 localhost kernel: g_wither_geom(0xffffff0001afee00(md0p2)) Jan 3 18:56:16 localhost kernel: g_label_taste(LABEL, md0p2) Jan 3 18:56:16 localhost kernel: g_access(0xffffff0001cb7180(md0p2), 1, 0, 0) Jan 3 18:56:16 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:16 localhost kernel: g_part_access(md0p2,1,0,0) Jan 3 18:56:16 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 0, 0) Jan 3 18:56:16 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:16 localhost kernel: g_access(0xffffff0001cbad80(md0p2), 1, 0, 0) Jan 3 18:56:16 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r1w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:16 localhost kernel: g_part_access(md0p2,1,0,0) Jan 3 18:56:16 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 0, 0) Jan 3 18:56:16 localhost kernel: open delta:[r1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:16 localhost kernel: Jan 3 18:56:16 localhost kernel: g_access(0xffffff0001cbad80(md0p2), -1, 0, 0) Jan 3 18:56:17 localhost kernel: Jan 3 18:56:17 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r2w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:17 localhost kernel: g_part_access(md0p2,-1,0,0) Jan 3 18:56:17 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, 0) Jan 3 18:56:17 localhost kernel: open delta:[r-1w0e0] old:[r2w0e0] provider:[r2w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:17 localhost kernel: g_slice_config(md0p2, 0, 1) Jan 3 18:56:17 localhost kernel: g_post_event_x(0xffffffff8054bb40, 0xffffff0001a56900, 2, 0) Jan 3 18:56:17 localhost kernel: ref 0xffffff0001a56900 Jan 3 18:56:17 localhost kernel: ref 0xffffff0001bfba00 Jan 3 18:56:17 localhost kernel: g_access(0xffffff0001cb7180(md0p2), -1, 0, 0) Jan 3 18:56:17 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:17 localhost kernel: g_part_access(md0p2,-1,0,0) Jan 3 18:56:17 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, 0) Jan 3 18:56:17 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:17 localhost kernel: g_detach(0xffffff0001cb7180) Jan 3 18:56:17 localhost kernel: g_destroy_consumer(0xffffff0001cb7180) Jan 3 18:56:17 localhost kernel: g_destroy_geom(0xffffff0001c89e00(label:taste)) Jan 3 18:56:17 localhost kernel: g_access(0xffffff0001929d80(acd0t01), 1, 0, 0) Jan 3 18:56:17 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001333b00(acd0t01) Jan 3 18:56:17 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from acd0t01... Jan 3 18:56:22 localhost kernel: g_access(0xffffff0001929d80(acd0t01), -1, 0, 0) Jan 3 18:56:22 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001333b00(acd0t01) Jan 3 18:56:22 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:22 localhost kernel: g_access(0xffffff0001929d80(acd0), 1, 0, 0) Jan 3 18:56:22 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001827b00(acd0) Jan 3 18:56:22 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from acd0... Jan 3 18:56:23 localhost kernel: g_access(0xffffff0001929d80(acd0), -1, 0, 0) Jan 3 18:56:23 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001827b00(acd0) Jan 3 18:56:23 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:23 localhost kernel: g_access(0xffffff0001929d80(da0), 1, 0, 0) Jan 3 18:56:23 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r1w1e2] 0xffffff00018a0e00(da0) Jan 3 18:56:23 localhost kernel: g_disk_access(da0, 1, 0, 0) Jan 3 18:56:23 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from da0... Jan 3 18:56:24 localhost kernel: Jan 3 18:56:24 localhost kernel: g_access(0xffffff0001929d80(da0), -1, 0, 0) Jan 3 18:56:24 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r2w1e2] 0xffffff00018a0e00(da0) Jan 3 18:56:24 localhost kernel: g_disk_access(da0, -1, 0, 0) Jan 3 18:56:24 localhost kernel: Jan 3 18:56:24 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:24 localhost kernel: g_access(0xffffff0001929d80(ad4), 1, 0, 0) Jan 3 18:56:25 localhost kernel: Jan 3 18:56:25 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff00018d1600(ad4) Jan 3 18:56:25 localhost kernel: g_disk_access(ad4, 1, 0, 0) Jan 3 18:56:25 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from ad4... Jan 3 18:56:25 localhost kernel: g_access(0xffffff0001929d80(ad4), -1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff00018d1600(ad4) Jan 3 18:56:25 localhost kernel: g_disk_access(ad4, -1, 0, 0) Jan 3 18:56:25 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:25 localhost kernel: g_access(0xffffff0001929d80(md0p2), 1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:25 localhost kernel: g_part_access(md0p2,1,0,0) Jan 3 18:56:25 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:25 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from md0p2... Jan 3 18:56:25 localhost kernel: vdev_geom_read_guid:339[1]: guid for md0p2 is 338386095307402449 Jan 3 18:56:25 localhost kernel: g_access(0xffffff0001929d80(md0p2), -1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:25 localhost kernel: g_part_access(md0p2,-1,0,0) Jan 3 18:56:25 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:25 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:25 localhost kernel: g_access(0xffffff0001929d80(md0p1), 1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001bc4800(md0p1) Jan 3 18:56:25 localhost kernel: g_part_access(md0p1,1,0,0) Jan 3 18:56:25 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:25 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from md0p1... Jan 3 18:56:25 localhost kernel: g_access(0xffffff0001929d80(md0p1), -1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001bc4800(md0p1) Jan 3 18:56:25 localhost kernel: g_part_access(md0p1,-1,0,0) Jan 3 18:56:25 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:25 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:25 localhost kernel: g_access(0xffffff0001929d80(da0p2), 1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r1w1e1] 0xffffff00018d1400(da0p2) Jan 3 18:56:25 localhost kernel: g_part_access(da0p2,1,0,0) Jan 3 18:56:25 localhost kernel: g_access(0xffffff000188aa00(da0), 1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r1w0e0] old:[r1w1e2] provider:[r1w1e2] 0xffffff00018a0e00(da0) Jan 3 18:56:25 localhost kernel: g_disk_access(da0, 1, 0, 0) Jan 3 18:56:25 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from da0p2... Jan 3 18:56:25 localhost kernel: g_access(0xffffff0001929d80(da0p2), -1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r2w1e1] 0xffffff00018d1400(da0p2) Jan 3 18:56:25 localhost kernel: g_part_access(da0p2,-1,0,0) Jan 3 18:56:25 localhost kernel: g_access(0xffffff000188aa00(da0), -1, 0, 0) Jan 3 18:56:25 localhost kernel: Jan 3 18:56:25 localhost kernel: open delta:[r-1w0e0] old:[r2w1e2] provider:[r2w1e2] 0xffffff00018a0e00(da0) Jan 3 18:56:25 localhost kernel: g_disk_access(da0, -1, 0, 0) Jan 3 18:56:25 localhost kernel: Jan 3 18:56:25 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:25 localhost kernel: g_access(0xffffff0001929d80(da0p1), 1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001333c00(da0p1) Jan 3 18:56:25 localhost kernel: g_part_access(da0p1,1,0,0) Jan 3 18:56:25 localhost kernel: g_access(0xffffff000188aa00(da0), 1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r1w0e0] old:[r1w1e2] provider:[r1w1e2] 0xffffff00018a0e00(da0) Jan 3 18:56:25 localhost kernel: g_disk_access(da0, 1, 0, 0) Jan 3 18:56:25 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from da0p1... Jan 3 18:56:25 localhost kernel: g_access(0xffffff0001929d80(da0p1), -1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001333c00(da0p1) Jan 3 18:56:25 localhost kernel: g_part_access(da0p1,-1,0,0) Jan 3 18:56:25 localhost kernel: g_access(0xffffff000188aa00(da0), -1, 0, 0) Jan 3 18:56:25 localhost kernel: open delta:[r-1w0e0] old:[r2w1e2] provider:[r2w1e2] 0xffffff00018a0e00(da0) Jan 3 18:56:25 localhost kernel: g_disk_access(da0, -1, 0, 0) Jan 3 18:56:25 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:25 localhost kernel: g_access(0xffffff0001929d80(ad4s3), 1, 0, 0) Jan 3 18:56:26 localhost kernel: Jan 3 18:56:26 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001827800(ad4s3) Jan 3 18:56:26 localhost kernel: g_part_access(ad4s3,1,0,0) Jan 3 18:56:26 localhost kernel: g_access(0xffffff000188ac00(ad4), 1, 0, 0) Jan 3 18:56:26 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff00018d1600(ad4) Jan 3 18:56:28 localhost kernel: Jan 3 18:56:28 localhost kernel: g_disk_access(ad4, 1, 0, 0) Jan 3 18:56:28 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from ad4s3... Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(ad4s3), -1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001827800(ad4s3) Jan 3 18:56:28 localhost kernel: g_part_access(ad4s3,-1,0,0) Jan 3 18:56:28 localhost kernel: g_access(0xffffff000188ac00(ad4), -1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff00018d1600(ad4) Jan 3 18:56:28 localhost kernel: g_disk_access(ad4, -1, 0, 0) Jan 3 18:56:28 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(ad4s2), 1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001873b00(ad4s2) Jan 3 18:56:28 localhost kernel: g_part_access(ad4s2,1,0,0) Jan 3 18:56:28 localhost kernel: g_access(0xffffff000188ac00(ad4), 1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff00018d1600(ad4) Jan 3 18:56:28 localhost kernel: g_disk_access(ad4, 1, 0, 0) Jan 3 18:56:28 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from ad4s2... Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(ad4s2), -1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001873b00(ad4s2) Jan 3 18:56:28 localhost kernel: g_part_access(ad4s2,-1,0,0) Jan 3 18:56:28 localhost kernel: g_access(0xffffff000188ac00(ad4), -1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff00018d1600(ad4) Jan 3 18:56:28 localhost kernel: g_disk_access(ad4, -1, 0, 0) Jan 3 18:56:28 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(ad4s1), 1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001475000(ad4s1) Jan 3 18:56:28 localhost kernel: g_part_access(ad4s1,1,0,0) Jan 3 18:56:28 localhost kernel: g_access(0xffffff000188ac00(ad4), 1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff00018d1600(ad4) Jan 3 18:56:28 localhost kernel: g_disk_access(ad4, 1, 0, 0) Jan 3 18:56:28 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from ad4s1... Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(ad4s1), -1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001475000(ad4s1) Jan 3 18:56:28 localhost kernel: g_part_access(ad4s1,-1,0,0) Jan 3 18:56:28 localhost kernel: g_access(0xffffff000188ac00(ad4), -1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff00018d1600(ad4) Jan 3 18:56:28 localhost kernel: g_disk_access(ad4, -1, 0, 0) Jan 3 18:56:28 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(md1), 1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001cd5300(md1) Jan 3 18:56:28 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from md1... Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(md1), -1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001cd5300(md1) Jan 3 18:56:28 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(md0), 1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:28 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from md0... Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(md0), -1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:28 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(gptid/a8cfde45-f897-11de-9761-001c251ceb12), 1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001a56900(gptid/a8cfde45-f897-11de-9761-001c251ceb12) Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001cbad80(md0p2), 1, 0, 1) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e1] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:28 localhost kernel: g_part_access(md0p2,1,0,1) Jan 3 18:56:28 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 0, 1) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e1] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:28 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from gptid/a8cfde45-f897-11de-9761-001c251ceb12... Jan 3 18:56:28 localhost kernel: vdev_geom_read_guid:339[1]: guid for gptid/a8cfde45-f897-11de-9761-001c251ceb12 is 338386095307402449 Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(gptid/a8cfde45-f897-11de-9761-001c251ceb12), -1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001a56900(gptid/a8cfde45-f897-11de-9761-001c251ceb12) Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001cbad80(md0p2), -1, 0, -1) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e-1] old:[r1w0e1] provider:[r1w0e1] 0xffffff0001c89700(md0p2) Jan 3 18:56:28 localhost kernel: g_part_access(md0p2,-1,0,-1) Jan 3 18:56:28 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, -1) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e-1] old:[r1w0e1] provider:[r1w0e1] 0xffffff0001c89d00(md0) Jan 3 18:56:28 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(gptid/a8cf4791-f897-11de-9761-001c251ceb12), 1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89600(gptid/a8cf4791-f897-11de-9761-001c251ceb12) Jan 3 18:56:28 localhost kernel: g_access(0xffffff00018b6300(md0p1), 1, 0, 1) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e1] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001bc4800(md0p1) Jan 3 18:56:28 localhost kernel: g_part_access(md0p1,1,0,1) Jan 3 18:56:28 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 0, 1) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e1] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:28 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from gptid/a8cf4791-f897-11de-9761-001c251ceb12... Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(gptid/a8cf4791-f897-11de-9761-001c251ceb12), -1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001c89600(gptid/a8cf4791-f897-11de-9761-001c251ceb12) Jan 3 18:56:28 localhost kernel: g_access(0xffffff00018b6300(md0p1), -1, 0, -1) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e-1] old:[r1w0e1] provider:[r1w0e1] 0xffffff0001bc4800(md0p1) Jan 3 18:56:28 localhost kernel: g_part_access(md0p1,-1,0,-1) Jan 3 18:56:28 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, -1) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e-1] old:[r1w0e1] provider:[r1w0e1] 0xffffff0001c89d00(md0) Jan 3 18:56:28 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(gptid/e55fa55d-f6e3-11de-859b-001c251ceb12), 1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff000189f400(gptid/e55fa55d-f6e3-11de-859b-001c251ceb12) Jan 3 18:56:28 localhost kernel: g_access(0xffffff00018b9500(da0p1), 1, 0, 1) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e1] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001333c00(da0p1) Jan 3 18:56:28 localhost kernel: g_part_access(da0p1,1,0,1) Jan 3 18:56:28 localhost kernel: g_access(0xffffff000188aa00(da0), 1, 0, 1) Jan 3 18:56:28 localhost kernel: open delta:[r1w0e1] old:[r1w1e2] provider:[r1w1e2] 0xffffff00018a0e00(da0) Jan 3 18:56:28 localhost kernel: g_disk_access(da0, 1, 0, 1) Jan 3 18:56:28 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from gptid/e55fa55d-f6e3-11de-859b-001c251ceb12... Jan 3 18:56:28 localhost kernel: g_access(0xffffff0001929d80(gptid/e55fa55d-f6e3-11de-859b-001c251ceb12), -1, 0, 0) Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff000189f400(gptid/e55fa55d-f6e3-11de-859b-001c251ceb12) Jan 3 18:56:28 localhost kernel: g_access(0xffffff00018b9500(da0p1), -1, 0, -1) Jan 3 18:56:28 localhost kernel: Jan 3 18:56:28 localhost kernel: open delta:[r-1w0e-1] old:[r1w0e1] provider:[r1w0e1] 0xffffff0001333c00(da0p1) Jan 3 18:56:28 localhost kernel: g_part_access(da0p1,-1,0,-1) Jan 3 18:56:28 localhost kernel: g_access(0xffffff000188aa00(da0), -1, 0, -1) Jan 3 18:56:29 localhost kernel: Jan 3 18:56:29 localhost kernel: open delta:[r-1w0e-1] old:[r2w1e3] provider:[r2w1e3] 0xffffff00018a0e00(da0) Jan 3 18:56:29 localhost kernel: g_disk_access(da0, -1, 0, -1) Jan 3 18:56:29 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:29 localhost kernel: g_access(0xffffff0001929d80(iso9660/CDROM), 1, 0, 0) Jan 3 18:56:29 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff00018d1900(iso9660/CDROM) Jan 3 18:56:29 localhost kernel: g_access(0xffffff00018b9a00(acd0), 1, 0, 1) Jan 3 18:56:29 localhost kernel: open delta:[r1w0e1] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001827b00(acd0) Jan 3 18:56:29 localhost kernel: vdev_geom_read_guid:301[1]: Reading guid from iso9660/CDROM... Jan 3 18:56:31 localhost kernel: g_access(0xffffff0001929d80(iso9660/CDROM), -1, 0, 0) Jan 3 18:56:31 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff00018d1900(iso9660/CDROM) Jan 3 18:56:31 localhost kernel: g_access(0xffffff00018b9a00(acd0), -1, 0, -1) Jan 3 18:56:31 localhost kernel: open delta:[r-1w0e-1] old:[r1w0e1] provider:[r1w0e1] 0xffffff0001827b00(acd0) Jan 3 18:56:31 localhost kernel: g_detach(0xffffff0001929d80) Jan 3 18:56:31 localhost kernel: g_destroy_consumer(0xffffff0001929d80) Jan 3 18:56:31 localhost kernel: g_destroy_geom(0xffffff0001cd5400(zfs::vdev::taste)) Jan 3 18:56:31 localhost kernel: g_eli_taste(ELI, vdevgptid/a8cfde45-f897-11de-9761-001c251ceb12) Jan 3 18:56:31 localhost kernel: _geom_open_by_guid:449[1]: Search by guid [15376817640459635577] failed. Jan 3 18:56:31 localhost kernel: dev_taste(DEV,gptid/a8cfde45-f897-11de-9761-001c251ceb12) Jan 3 18:56:31 localhost kernel: Jan 3 18:56:31 localhost kernel: g_part_taste(PART,gptid/a8cfde45-f897-11de-9761-001c251ceb12) Jan 3 18:56:31 localhost kernel: g_access(0xffffff0001cb7b80(gptid/a8cfde45-f897-11de-9761-001c251ceb12), 1, 0, 0) Jan 3 18:56:31 localhost kernel: open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001a56900(gptid/a8cfde45-f897-11de-9761-001c251ceb12) Jan 3 18:56:31 localhost kernel: Jan 3 18:56:31 localhost kernel: g_access(0xffffff0001cbad80(md0p2), 1, 0, 1) Jan 3 18:56:31 localhost kernel: open delta:[r1w0e1] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89700(md0p2) Jan 3 18:56:31 localhost kernel: g_part_access(md0p2,1,0,1) Jan 3 18:56:31 localhost kernel: Jan 3 18:56:31 localhost kernel: g_access(0xffffff00018b8d00(md0), 1, 0, 1) Jan 3 18:56:31 localhost kernel: Jan 3 18:56:31 localhost kernel: open delta:[r1w0e1] old:[r0w0e0] provider:[r0w0e0] 0xffffff0001c89d00(md0) Jan 3 18:56:31 localhost kernel: Jan 3 18:56:31 localhost kernel: vdev_geom_open_by_path:466[1]: Found provider by name /dev/md0p2. Jan 3 18:56:31 localhost root: ZFS: vdev failure, zpool=tank type=vdev.open_failed Jan 3 18:56:31 localhost kernel: Jan 3 18:56:31 localhost kernel: vdev_geom_attach:112[1]: Attaching to md0p2. Jan 3 18:56:31 localhost kernel: g_access(0xffffff0001cb6a00(md0p2), 1, 1, 1) Jan 3 18:56:31 localhost kernel: open delta:[r1w1e1] old:[r0w0e0] provider:[r1w0e1] 0xffffff0001c89700(md0p2) Jan 3 18:56:31 localhost kernel: g_wither_geom(0xffffff0001a56400(zfs::vdev)) Jan 3 18:56:31 localhost kernel: vdev_geom_open:g52_1a[cc1e]s:s (0xffffff0001cb7b80(gptid/a8cfde45-f897-11de-9761-001c251ceb12), -1, 0, 0)Provider Jan 3 18:56:31 localhost kernel: open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xffffff0001a56900(gptid/a8cfde45-f897-11de-9761-001c251ceb12) Jan 3 18:56:31 localhost kernel: Jan 3 18:56:31 localhost kernel: g_access(0xffffff0001cbad80(md0p2), -1, 0, -1) Jan 3 18:56:31 localhost kernel: open delta:[r-1w0e-1] old:[r1w0e1] provider:[r1w0e1] 0xffffff0001c89700(md0p2) Jan 3 18:56:31 localhost kernel: Jan 3 18:56:31 localhost kernel: g_part_access(md0p2,-1,0,-1) Jan 3 18:56:31 localhost kernel: g_access(0xffffff00018b8d00(md0), -1, 0, -1) Jan 3 18:56:31 localhost kernel: open delta:[r-1w0e-1] old:[r1w0e1] provider:[r1w0e1] 0xffffff0001c89d00(md0) Jan 3 18:56:32 localhost kernel: Jan 3 18:56:32 localhost kernel: g_wither_geom(0xffffff0001afe800(gptid/a8cfde45-f897-11de-9761-001c251ceb12)) Jan 3 18:56:32 localhost kernel: g_label_taste(LABEL, gptid/a8cfde45-f897-11de-9761-001c251ceb12) Jan 3 18:56:32 localhost kernel: g_detach(0xffffff0001cb6a00) Jan 3 18:56:32 localhost kernel: g_destroy_consumer(0xffffff0001cb6a00) Jan 3 18:56:32 localhost kernel: g_destroy_geom(0xffffff0001a56400(zfs::vdev)) Jan 3 18:56:32 localhost kernel: g_destroy_geom(0xffffff0001a56200(zfs::vdev)) Jan 3 18:56:32 localhost kernel: g_detach(0xffffff0001cb7b80) Jan 3 18:56:32 localhost kernel: g_destroy_consumer(0xffffff0001cb7b80) Jan 3 18:56:32 localhost kernel: g_destroy_geom(0xffffff0001afe800(gptid/a8cfde45-f897-11de-9761-001c251ceb12)) Jan 3 18:56:32 localhost kernel: g_detach(0xffffff0001cbf380) Jan 3 18:56:32 localhost kernel: g_destroy_consumer(0xffffff0001cbf380) Jan 3 18:56:32 localhost kernel: g_destroy_geom(0xffffff0001afee00(md0p2)) >How-To-Repeat: localhost# mdconfig -a -t malloc -s 512M md0 localhost# gpart create -s GPT md0 md0 created localhost# gpart add -t freebsd-boot -s 128 md0 md0p1 added localhost# gpart add -t freebsd-zfs md0 md0p2 added localhost# zpool create tank md0p2 cannot create 'tank': permission denied localhost# Jan 3 18:48:31 localhost root: ZFS: vdev failure, zpool=tank type=vdev.open_failed >Fix: Apply patch below Patch attached with submission follows: --- /usr/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c 2009-12-05 20:16:28.000000000 +0000 +++ /usr/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c 2010-01-03 13:58:29.000000000 +0000 @@ -464,7 +464,7 @@ vdev_geom_open_by_path(vdev_t *vd, int c pp = g_provider_by_name(vd->vdev_path + sizeof("/dev/") - 1); if (pp != NULL) { ZFS_LOG(1, "Found provider by name %s.", vd->vdev_path); - cp = vdev_geom_attach(pp, !!(spa_mode & FWRITE)); + cp = vdev_geom_attach(pp, 0); if (cp != NULL && check_guid) { g_topology_unlock(); guid = vdev_geom_read_guid(cp); @@ -480,6 +480,12 @@ vdev_geom_open_by_path(vdev_t *vd, int c vd->vdev_path); } } + if (cp != NULL) { + if (g_access(cp, 0, !!(spa_mode & FWRITE), 0) != 0) { + vdev_geom_detach(cp, 0); + cp = NULL; + } + } } g_topology_unlock(); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 19:25:05 2010 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 4D3FA1065670; Sun, 3 Jan 2010 19:25:05 +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 172768FC20; Sun, 3 Jan 2010 19:25:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03JP445095899; Sun, 3 Jan 2010 19:25:04 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03JP4Of095895; Sun, 3 Jan 2010 19:25:04 GMT (envelope-from linimon) Date: Sun, 3 Jan 2010 19:25:04 GMT Message-Id: <201001031925.o03JP4Of095895@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/142271: [zfs] [patch] race condition on zpool create 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, 03 Jan 2010 19:25:05 -0000 Synopsis: [zfs] [patch] race condition on zpool create Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jan 3 19:24:51 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=142271 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 19:29:13 2010 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 9F12D106566B; Sun, 3 Jan 2010 19:29:13 +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 7681C8FC21; Sun, 3 Jan 2010 19:29:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03JTDY9097445; Sun, 3 Jan 2010 19:29:13 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03JTDax097441; Sun, 3 Jan 2010 19:29:13 GMT (envelope-from linimon) Date: Sun, 3 Jan 2010 19:29:13 GMT Message-Id: <201001031929.o03JTDax097441@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-i386@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: i386/142190: [btx] BTX Loader issue on Gigabyte Motherboard 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, 03 Jan 2010 19:29:13 -0000 Old Synopsis: BTX Loader issue on Gigabyte Motherboard New Synopsis: [btx] BTX Loader issue on Gigabyte Motherboard Responsible-Changed-From-To: freebsd-bugs->freebsd-i386 Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jan 3 19:28:48 UTC 2010 Responsible-Changed-Why: This may be i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=142190 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 3 19:31:00 2010 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 9412C106566B; Sun, 3 Jan 2010 19:31:00 +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 5A6C28FC18; Sun, 3 Jan 2010 19:31:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o03JV0cf005684; Sun, 3 Jan 2010 19:31:00 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o03JV02P005674; Sun, 3 Jan 2010 19:31:00 GMT (envelope-from linimon) Date: Sun, 3 Jan 2010 19:31:00 GMT Message-Id: <201001031931.o03JV02P005674@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/142157: [ppc] Don't find Printer port at "NetMos NM9835 Dual UART and 1284 Printer port" extended card at FreeBSD 8.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2010 19:31:00 -0000 Old Synopsis: Don't find Printer port at "NetMos NM9835 Dual UART and 1284 Printer port" extended card at FreeBSD 8.0 New Synopsis: [ppc] Don't find Printer port at "NetMos NM9835 Dual UART and 1284 Printer port" extended card at FreeBSD 8.0 Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jan 3 19:29:36 UTC 2010 Responsible-Changed-Why: This may not be i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=142157 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 02:10:02 2010 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 6EE8A106566C for ; Mon, 4 Jan 2010 02:10:02 +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 455A58FC0C for ; Mon, 4 Jan 2010 02:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o042A2T7058000 for ; Mon, 4 Jan 2010 02:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o042A27H057999; Mon, 4 Jan 2010 02:10:02 GMT (envelope-from gnats) Date: Mon, 4 Jan 2010 02:10:02 GMT Message-Id: <201001040210.o042A27H057999@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: misc/14104: 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: Mon, 04 Jan 2010 02:10:02 -0000 The following reply was made to PR misc/14104; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/14104: commit references a PR Date: Mon, 4 Jan 2010 02:06:51 +0000 (UTC) pgollucci 2010-01-04 02:06:37 UTC FreeBSD ports repository Modified files: x11-fonts/indic-ttf Makefile distinfo pkg-descr pkg-plist Log: - Update to 0.5.6 PR: ports/14104 Changes: http://packages.debian.org/changelogs/pool/main/t/ttf-indic-fonts/ttf-indic-fonts_0.5.6/changelog Submitted by: maintainer Revision Changes Path 1.5 +2 -3 ports/x11-fonts/indic-ttf/Makefile 1.5 +3 -3 ports/x11-fonts/indic-ttf/distinfo 1.3 +5 -11 ports/x11-fonts/indic-ttf/pkg-descr 1.5 +17 -10 ports/x11-fonts/indic-ttf/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 02:30:10 2010 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 86B541065762 for ; Mon, 4 Jan 2010 02:30: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 C5F278FC0C for ; Mon, 4 Jan 2010 02:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o042U8Od075685 for ; Mon, 4 Jan 2010 02:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o042U8A7075684; Mon, 4 Jan 2010 02:30:08 GMT (envelope-from gnats) Date: Mon, 4 Jan 2010 02:30:08 GMT Message-Id: <201001040230.o042U8A7075684@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Greg Satz Cc: Subject: Re: kern/127391: [ata] [patch] Intel 6300ESB SATA150 cannot find disk and boot under 6.3 [regression] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Greg Satz List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2010 02:30:10 -0000 The following reply was made to PR kern/127391; it has been noted by GNATS. From: Greg Satz To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/127391: [ata] [patch] Intel 6300ESB SATA150 cannot find disk and boot under 6.3 [regression] Date: Sun, 3 Jan 2010 19:00:24 -0700 --Apple-Mail-1-795383003 Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit I just upgraded to 7.1 and this patch wasn't present. I added it and my kernel will now boot successfully. Any chance someone could please update the 7.1 tree with this patch? Thanks, Greg --Apple-Mail-1-795383003 Content-Disposition: attachment; filename=smime.p7s Content-Type: application/pkcs7-signature; name=smime.p7s Content-Transfer-Encoding: base64 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIGMjCCAusw ggJUoAMCAQICEEXDiMpZSudiZVsg/CyJTYEwDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UEBhMCWkEx JTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQ ZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA5MDcyOTIwMTMyNFoXDTEwMDcyOTIwMTMy NFowUzENMAsGA1UEBBMEU2F0ejENMAsGA1UEKhMER3JlZzESMBAGA1UEAxMJR3JlZyBTYXR6MR8w HQYJKoZIhvcNAQkBFhBzYXR6QGlyYW5nZXIuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB CgKCAQEAtbPpuCYEtaP9MNa4s1jzVh/+Bqc4sxcm0ApRdLvWXPGydM1cQ9H2hdWPx3g15eA0Hu9d gQ2IsKAsEn/ZDDOCV3v2w/T6udcD1mCJWpLAIKW9SacbTjoSjPUdeR+1TFLdX0gqQdlVDFkP9JyB bh/3c9w3BLimlFH4bmBHyiqMuFvmCpTW1nK4dFT42+9xev01L/jDjtSCAIeuWFTRnoIIhJyvtH+s 7ey6ujvah6uNuM96Fi5WpL033FCIN3LyJIS9zxkQnqHrlsDz4JFqAdG+F1DdUh13OPFSICUvDhAt zWJsxG1GSxDvfuVdd9ENIuq+fYZ6pqn2G0zbOY8WpBcvMQIDAQABoy0wKzAbBgNVHREEFDASgRBz YXR6QGlyYW5nZXIuY29tMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQEFBQADgYEAPXsdZo79ATAq im1e03pVR55GmFGD4rJ0UmCHzif0NxregUrgby4qKbbNYg2CcyOBBRXzFxbBoO+pV5M5VTv6c1hT FVU66+ZSVsNu2XfA7XYfZ9z7njhF5tow4HE7BDMskyf+gxSNkHa/3nFWDQrlSBQ1Zv1uhUSfePLk JWnkp4cwggM/MIICqKADAgECAgENMA0GCSqGSIb3DQEBBQUAMIHRMQswCQYDVQQGEwJaQTEVMBMG A1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoTEVRoYXd0ZSBD b25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMSQwIgYD VQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG9w0BCQEWHHBlcnNvbmFs LWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDMwNzE3MDAwMDAwWhcNMTMwNzE2MjM1OTU5WjBiMQsw CQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UE AxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0EwgZ8wDQYJKoZIhvcNAQEBBQAD gY0AMIGJAoGBAMSmPFVzVftOucqZWh5owHUEcJ3f6f+jHuy9zfVb8hp2vX8MOmHyv1HOAdTlUAow 1wJjWiyJFXCO3cnwK4Vaqj9xVsuvPAsH5/EfkTYkKhPPK9Xzgnc9A74r/rsYPge/QIACZNenpruf ZdHFKlSFD0gEf6e20TxhBEAeZBlyYLf7AgMBAAGjgZQwgZEwEgYDVR0TAQH/BAgwBgEB/wIBADBD BgNVHR8EPDA6MDigNqA0hjJodHRwOi8vY3JsLnRoYXd0ZS5jb20vVGhhd3RlUGVyc29uYWxGcmVl bWFpbENBLmNybDALBgNVHQ8EBAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVM YWJlbDItMTM4MA0GCSqGSIb3DQEBBQUAA4GBAEiM0VCD6gsuzA2jZqxnD3+vrL7CF6FDlpSdf0wh uPg2H6otnzYvwPQcUCCTcDz9reFhYsPZOhl+hLGZGwDFGguCdJ4lUJRix9sncVcljd2pnDmOjCBP ZV+V2vf3h9bGCE6u9uo05RAaWzVNd+NWIXiC3CEZNd4ksdMdRv9dX2VPMYIDEDCCAwwCAQEwdjBi MQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoG A1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0ECEEXDiMpZSudiZVsg/CyJ TYEwCQYFKw4DAhoFAKCCAW8wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUx DxcNMTAwMTA0MDIwMDI0WjAjBgkqhkiG9w0BCQQxFgQUh1sQRxWD7ndnloyw0p5tTvG+NcswgYUG CSsGAQQBgjcQBDF4MHYwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5n IChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENB AhBFw4jKWUrnYmVbIPwsiU2BMIGHBgsqhkiG9w0BCRACCzF4oHYwYjELMAkGA1UEBhMCWkExJTAj BgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJz b25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBFw4jKWUrnYmVbIPwsiU2BMA0GCSqGSIb3DQEBAQUA BIIBABivYF4JOjbVW4xAerLE92UiMUCY1bcCjUU8BlsNMmfYv5xaICowkPozp9Sv7sHt5P+JSm8L 5333usfDsPy9ap+jNrxpNJiGrKqsp4oCkMoFusqA3U1Zq0uUKvWqxT+Qi2abGY97VO6D/UAwgv+g 4RaawfE5maUXuRjoce2q13jLYD5QZb8kytRv/NC1WhytG87jy4tw6z9o9xKn3BsXI4Z+0Vvm21xR EJ3rrBh8UW0gL4RNNXxmHLKJ6IXNlk5/kAw6uSC+9m9uC944jiwdRNfv40yqOG1KD07OtuoODI7Z H/uGTUxn460bey5TKL9LTGGr9TVN80j0ld+bvP/o8zAAAAAAAAA= --Apple-Mail-1-795383003-- From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 03:20:04 2010 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 0F89C106566B for ; Mon, 4 Jan 2010 03:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D959F8FC1A for ; Mon, 4 Jan 2010 03:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o043K3Jv019762 for ; Mon, 4 Jan 2010 03:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o043K3lW019761; Mon, 4 Jan 2010 03:20:03 GMT (envelope-from gnats) Date: Mon, 4 Jan 2010 03:20:03 GMT Message-Id: <201001040320.o043K3lW019761@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Greg Satz Cc: Subject: Re: kern/127391: [ata] [patch] Intel 6300ESB SATA150 cannot find disk and boot under 6.3 [regression] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Greg Satz List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2010 03:20:04 -0000 The following reply was made to PR kern/127391; it has been noted by GNATS. From: Greg Satz To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/127391: [ata] [patch] Intel 6300ESB SATA150 cannot find disk and boot under 6.3 [regression] Date: Sun, 3 Jan 2010 20:17:35 -0700 [Trying again without my digital signature.] I just upgraded to 7.1 and this patch wasn't present. I added it and my kernel will now boot successfully. Any chance someone could please update the 7.1 tree with this patch? Thanks, Greg From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 10:30:59 2010 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 68B85106568F; Mon, 4 Jan 2010 10:30:59 +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 4174A8FC0C; Mon, 4 Jan 2010 10:30:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04AUxPv036760; Mon, 4 Jan 2010 10:30:59 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04AUxTN036754; Mon, 4 Jan 2010 10:30:59 GMT (envelope-from gavin) Date: Mon, 4 Jan 2010 10:30:59 GMT Message-Id: <201001041030.o04AUxTN036754@freefall.freebsd.org> To: gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: conf/135338: [rc.d] pf startup order seems broken [regression] 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, 04 Jan 2010 10:30:59 -0000 Old Synopsis: pf startup order seems broken New Synopsis: [rc.d] pf startup order seems broken [regression] Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: gavin Responsible-Changed-When: Mon Jan 4 10:30:20 UTC 2010 Responsible-Changed-Why: Submitter believes this is a regression introduced with r193198 http://www.freebsd.org/cgi/query-pr.cgi?pr=135338 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 10:35:58 2010 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 9918E1065698; Mon, 4 Jan 2010 10:35:58 +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 6F4768FC18; Mon, 4 Jan 2010 10:35:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04AZw5f039806; Mon, 4 Jan 2010 10:35:58 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04AZw7a039802; Mon, 4 Jan 2010 10:35:58 GMT (envelope-from gavin) Date: Mon, 4 Jan 2010 10:35:58 GMT Message-Id: <201001041035.o04AZw7a039802@freefall.freebsd.org> To: tonys@stg-stl.com, gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, gavin@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: conf/72592: [nis] NIS Domain Master fails as client of itself 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, 04 Jan 2010 10:35:58 -0000 Synopsis: [nis] NIS Domain Master fails as client of itself State-Changed-From-To: open->feedback State-Changed-By: gavin State-Changed-When: Mon Jan 4 10:33:26 UTC 2010 State-Changed-Why: To submitter: I suspect this was fixed several years ago, with the introduction of the new rc.d boot framework. It appears that now at least, ypbind will always start after ypserv, so should be available on boot. Are you able to confirm that this is the case? Responsible-Changed-From-To: freebsd-bugs->gavin Responsible-Changed-By: gavin Responsible-Changed-When: Mon Jan 4 10:33:26 UTC 2010 Responsible-Changed-Why: Track http://www.freebsd.org/cgi/query-pr.cgi?pr=72592 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 10:40:06 2010 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 10FB510656A8 for ; Mon, 4 Jan 2010 10:40:06 +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 C725D8FC1A for ; Mon, 4 Jan 2010 10:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04Ae50T039969 for ; Mon, 4 Jan 2010 10:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04Ae5K0039968; Mon, 4 Jan 2010 10:40:05 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jan 2010 10:40:05 GMT Resent-Message-Id: <201001041040.o04Ae5K0039968@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, Jeremy Chadwick Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5D87106568F for ; Mon, 4 Jan 2010 10:34:51 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from QMTA12.emeryville.ca.mail.comcast.net (qmta12.emeryville.ca.mail.comcast.net [76.96.27.227]) by mx1.freebsd.org (Postfix) with ESMTP id D050D8FC13 for ; Mon, 4 Jan 2010 10:34:51 +0000 (UTC) Received: from OMTA13.emeryville.ca.mail.comcast.net ([76.96.30.52]) by QMTA12.emeryville.ca.mail.comcast.net with comcast id RNYc1d00217UAYkACNasxA; Mon, 04 Jan 2010 10:34:52 +0000 Received: from koitsu.dyndns.org ([98.248.46.159]) by OMTA13.emeryville.ca.mail.comcast.net with comcast id RNar1d0023S48mS8ZNaroR; Mon, 04 Jan 2010 10:34:51 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 16BDF1E301C; Mon, 4 Jan 2010 02:34:50 -0800 (PST) Message-Id: <20100104103450.16BDF1E301C@icarus.home.lan> Date: Mon, 4 Jan 2010 02:34:50 -0800 (PST) From: Jeremy Chadwick To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: conf/142304: mdconfig and mdconfig2 rc.d scripts lack examples in /etc/defaults/rc.conf X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jeremy Chadwick List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2010 10:40:06 -0000 >Number: 142304 >Category: conf >Synopsis: mdconfig and mdconfig2 rc.d scripts lack examples in /etc/defaults/rc.conf >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon Jan 04 10:40:05 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Jeremy Chadwick >Release: FreeBSD 8.0-STABLE amd64 >Organization: >Environment: System: FreeBSD icarus.home.lan 8.0-STABLE FreeBSD 8.0-STABLE #0: Sun Dec 27 22:52:21 PST 2009 root@icarus.home.lan:/usr/obj/usr/src/sys/X7SBA_RELENG_8_amd64 amd64 >Description: The rc.d startup scripts mdconfig and mdconfig2 lack example usage/definitions in /etc/defaults/rc.conf. The rc.conf(5) man page does document the variables, but it would be nice if their existence was mentioned in /etc/defaults/rc.conf. The examples should, obviously, be commented out. >How-To-Repeat: grep mdconfig /etc/defaults/rc.conf >Fix: Add relevant commented-out entries. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 11:08:56 2010 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 32E5A1065714 for ; Mon, 4 Jan 2010 11:08:56 +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 06ECE8FC0C for ; Mon, 4 Jan 2010 11:08:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04B8t51066656 for ; Mon, 4 Jan 2010 11:08:55 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04B8s1w066652 for freebsd-bugs@FreeBSD.org; Mon, 4 Jan 2010 11:08:54 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Jan 2010 11:08:54 GMT Message-Id: <201001041108.o04B8s1w066652@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, 04 Jan 2010 11:08:56 -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 -------------------------------------------------------------------------------- f ports/142303 garga [PATCH] x11-wm/awesome: update to 3.4.3 f ports/142275 [patch] sysutils/anacron should have better configurat o kern/142271 fs [zfs] [patch] race condition on zpool create o ports/142269 mnag [patch] port mail/postfix24 update to version 2.4.13 o ports/142268 mnag [patch] port mail/postfix-current update to version 2. o ports/142267 araujo [patch] port www/mod_security make devel/apr optional f ports/142266 [patch] port net-mgmt/nagios-pf-plugin add nagios perf o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o ports/142242 fjoe [PATCH] x11-toolkits/wxgtk26 f ports/142239 lwhsu [PATCH] www/closure-compiler: update to 20091217 o usb/142228 usb [usbdevs] [patch] add a USB-HDD to usb_quirk.c and usb o usb/142225 usb [patch] Patch to add Quirk for Western Digital Mybook o ports/142215 araujo [PATCH] www/youtube_dl: update to 2009.12.26 o ports/142207 obrien [patch] textproc/urlview fails when WITH_GECKO defined o ports/142205 [patch] archivers/libarc use ${VARIABLE}, instead of $ f ports/142200 [patch] benchmarks/xengine remove direct use of comman o kern/142197 net [ndis] [patch] ndis is missing media status reporting o ports/142185 lev [PATCH] update port www/neon29 to version 0.29.2 o ports/142176 [patch] benchmarks/hpl list out RUN_DEPENDS dependenci o ports/142171 shaun [patch] ports-mgmt/portscout Makefile adjustment f ports/142169 miwi [PATCH] mail/mutt-devel fix imap header cache dependen o ports/142165 ale [PATCH] lang/php5: add optional patch for gd2 o ports/142156 [patch] ports-mgmt/porte simplify Makefile logic & don o ports/142152 amdmi3 [patch] games/rigsofrods - unbreak build o ports/142151 wosch [patch] ports-mgmt/portcheckout to use variables inste o ports/142149 gnome [patch] security/gnome-keyring fails to build in certa o ports/142139 haskell [patch]: update of devel/lhs2TeX from the 1.14 version o ports/142131 haskell [patch]: update of x11-toolkits/hs-glut-ghc from the 2 o ports/142130 haskell [patch]: update of x11-toolkits/hs-opengl-ghc from the f ports/142121 haskell [patch]: update of x11-wm/xmonad and x11-wm/xmonad-con o ports/142115 nivit [patch] Extract textproc/py-genshi during installation o ports/142113 tobez [PATCH] security/p5-Crypt-OpenPGP: update to 1.04 o ports/142110 skv [PATCH] lang/perl5.10 / BSDPAN-5.10.1_20090303: P5PORT o ports/142109 perl [PATCH] www/p5-MojoMojo: update to 0.999042 o ports/142106 haskell [patch]: update of x11/hs-x11-ghc from the 1.4.6.1 ver o ports/142093 [patch] audio/libmtp: Add device ID for Canon SX20IS o kern/142085 [puc] [patch] Few lines to pucdata.c to support for Te o kern/142082 emulation [patch] [panic] linuxulator: getppid: use after free o ports/142078 itetcu [PATCH] net/p5-Socket-GetAddrInfo: update to 0.14 f ports/142074 haskell [patch]: update of devel/hs-utf8-string-ghc from the 0 o ports/142071 haskell [patch]: update of: haddock to 2.5.0, ghc-paths to 0.1 o kern/142066 net [patch] [sctp] Missing parenthesis in sys/netinet/sctp f ports/142053 x11/xorg-minimal: [PATCH] allow choosing video driver o ports/142051 miwi [PATCH]math/jags: update to 1.0.4 o ports/142026 clsung [PATCH] textproc/p5-XML-Atom: update to 0.36 f ports/142024 [PATCH] textproc/p5-Text-Textile: update to 2.12 f ports/142020 [PATCH] audio/exaile does not respect its OPTIONS o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- f ports/142017 glarkin [patch] security/logcheck: update to version 1.2.69 o ports/142015 lth [PATCH] databases/p5-SQL-Translator: update to 0.11.00 o ports/142014 az [PATCH] www/p5-HTML-FormFu: update to 0.06000 f ports/142012 wen [PATCH] www/p5-HTML-FormFu-Model-DBIC: update to 0.060 f ports/142011 wen [PATCH] devel/p5-DateTime-Format-SQLite: update to 0.1 f ports/142010 wen [PATCH] devel/p5-Params-Validate: update to 0.94 f ports/142007 wen [PATCH] graphics/p5-Image-ExifTool: update to 8.00 o ports/142005 tobez [PATCH] lang/p5-Scalar-List-Utils: update to 1.22 f ports/142004 itetcu [PATCH] textproc/p5-String-RewritePrefix: update to 0. o ports/142003 az [PATCH] www/p5-Catalyst-Controller-HTML-FormFu: update o ports/141954 itetcu [PATCH] mail/dspam update to 3.9.0-RC f ports/141943 [PATCH] update audio/ripit to version 3.8.1 o kern/141939 [libc] [patch] strptime(3) confuses July with June wit o ports/141938 garga [patch] archivers/arj has some bit-rot o usb/141936 usb [usbdevs] [patch] add support for Advanced W-ZERO3[ES] o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 o conf/141909 rc [rc.subr] [patch] add rc.conf.d support to /usr/local f ports/141891 [patch] games/ioquake3: OPENAL and CURL knobs o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o bin/141838 [patch] rtsold(8): Limits in usr.sbin/rtsold/probe.c f p kern/141800 delphij [zfs] [patch] zfs pool update to v14 a ports/141795 dinoex graphics/jasper: ensure that configure script has exec o kern/141777 net [rum] [patch] Support usbdevs / rum(4) for Buffalo WLI o docs/141765 doc [handbook] [patch] Added note about architectures when o bin/141753 [libc] [patch] double-free in reallocf(3) o ports/141738 netchild [patch] audio/lame: Makefile fix for portlint o ports/141736 tabthorpe [PATCH] mail/squirrelmail: Really fix IMAP search f ports/141727 wxs [patch] Upgrade mail/dovecot to 1.2.9 o ports/141710 skv [patch]: lang/parrot update to 1.9.0 o ports/141688 portmgr Mk/bsd.apache.mk: several changes [patch] 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/141650 flz [patch] net-p2p/libbt remove USE_GCC o ports/141649 novel [patch] x11-clocks/osdclock remove USE_GCC o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/141640 krion [patch] mail/exim: fix pcre linking o docs/141636 doc [handbook] [patch] Updated info about Firefox in Handb o ports/141624 pgollucci www/apache20: [patch]: Remove locking for writing to t o ports/141614 tobez [PATCH] devel/p5-MooseX-Aliases: update to 0.07 o ports/141612 kuriyama [PATCH] www/p5-Catalyst-Engine-PSGI: update to 0.07 o ports/141608 tobez [PATCH] devel/p5-MooseX-Aliases: update to 0.07 o ports/141604 tobez [PATCH] www/p5-Test-HTTP-Server-Simple: update to 0.11 o ports/141597 tobez [PATCH] textproc/p5-Template-Declare: update to 0.43 o ports/141593 tobez [PATCH] mail/p5-Mail-Box: update to 2.092 o ports/141591 tobez [PATCH] lang/p5-Switch: update to 2.16 o ports/141590 tobez [PATCH] lang/p5-Scalar-List-Utils: update to 1.22 o ports/141584 tobez [PATCH] devel/p5-IPC-Cmd: update to 0.54 o ports/141581 tobez [PATCH] databases/p5-Cache-Memcached-Fast: update to 0 o ports/141580 tobez [PATCH] converters/p5-Number-Nary: update to 0.108 o ports/141575 nork [PATCH] textproc/p5-WWW-Google-SiteMap: update to 1.10 o ports/141567 anders [PATCH] comms/p5-Device-Gsm: update to 1.54 o ports/141521 lth [PATCH] net/p5-POE-Component-Server-Twirc: update to 0 o ports/141520 lth [PATCH] devel/p5-Test-POE-Client-TCP: update to 1.06 o ports/141497 skv [PATCH] www/p5-HTTP-DAV: update to 0.39 o ports/141496 skv [PATCH] www/p5-Catalyst-Plugin-Server: update to 0.26 o ports/141492 skv [PATCH] www/p5-Apache-Profiler: update to 0.10 o ports/141488 skv [PATCH] net-mgmt/p5-POE-Component-SNMP: update to 1.10 o ports/141485 skv [PATCH] mail/p5-POE-Component-Client-SMTP: update to 0 o ports/141477 skv [PATCH] devel/p5-Class-Inner: update to 0.200001 o ports/141476 skv [PATCH] databases/p5-DBD-mysql: update to 4.013 o ports/141475 skv [PATCH] comms/p5-Device-Modem: update to 1.51 o ports/141472 des [PATCH] shells/zsh: add linsysfs to (u)mount -t comple f ports/141471 wen [patch] net/scapy : update to 2.1.0 o ports/141469 philip [patch] games/wesnoth-devel: update to 1.7.10 o usb/141467 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o ports/141451 clsung [PATCH] net/dictd, textproc/dict and textproc/dictfmt: a ports/141440 [patch] add amd64 support for lang/gprolog o kern/141439 emulation [linux] [patch] linux_exit_group kills group leader f ports/141437 [patch] net-mgmt/grepcidr search anywhere in line patc o ports/141426 mnag [PATCH] mail/postfix-current: update to 2.7-20091209 o ports/141417 mandree [PATCH] mail/bogofilter: update to 1.2.1 f ports/141409 [PATCH] audio/libmp3splt: update to 0.5.8a f ports/141408 [PATCH] audio/mp3splt: update to 2.2.7a f ports/141392 [PATCH] Update sysutils/freebsd-snapshot to 20091208.1 p docs/141353 jhb [NOTES] [patch] i386 NOTES says building acpi into ker o docs/141350 doc [patch] if_bridge(4) man page incorrectly says a bridg o ports/141345 skreuzer [PATCH] www/rt38: fix installation with WITH_FASTCGI s o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail o ports/141281 anders [patch] security/pwman o docs/141245 blackend [handbook][patch] Chapter 31.3 Wireless Networking: Up o docs/141191 bland [patch] articles/cups: russian translation is missing o ports/141180 tobez [PATCH] devel/p5-Getopt-Declare: simplify dependency o ports/141178 skv [PATCH] www/p5-Test-HTTP: patch for utf8 URI o ports/141166 luigi [patch] sysutils/syslinux: update to version 3.83 s ports/141140 [PATCH] www/p5-Mojo: update to 0.999913, take maintain o docs/141125 doc [patch] Typo of "NUL" in getline.3 man page o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o ports/141052 lev [PATCH] devel/mingw32-bin-msvcrt: update to r3.17.a3.1 f ports/141046 miwi [Patch]www/pecl-pecl_http should be removed o ports/141045 itetcu [PATCH] mail/postfix: fix build with Kerberos5 on 8.0/ s ports/141033 gnome [PATCH] allow to build devel/libsoup without gnome o ports/141004 itetcu [PATCH] net/libevnet: update to 0.3.11 + misc. cleanup o ports/140999 multimedia [PATCH] audio/wavpack: update to 4.60.0, take maintain o ports/140994 clsung [PATCH] devel/p5-IO-Async: update to 0.26 + tweak RUN_ o ports/140983 portmgr [patch] refactor bsd.port.mk and introduce bsd.rrd.mk p usb/140951 thompsa [uftdi] [patch] Add support for FT2232D Dual USB UART/ o ports/140939 secteam [patch] security/vuxml: fix and extend files/newentry. o usb/140928 usb [u3g] [usb8] [patch] ZTE CDMA2000 1X EV-DO (MG478/AC87 p usb/140923 thompsa [axe] [patch] [usb8] Add support for new rev of USB Et o ports/140913 anders [PATCH] comms/minicom: use correct serial device on 8. o ports/140865 multimedia [PATCH] multimedia/x264: update to 0.0.20091124 o docs/140814 doc [handbook][patch] Chapter 15 - Jails: add section on c f ports/140811 [patch] sysutils/zfs-snapshot-mgmt: don't barf on top- f ports/140791 lioux [PATCH] textproc/libtre: Fix build on systems where GC f ports/140790 lioux [PATCH] mail/crm114: Fix build on systems where GCC st o ports/140777 lev [PATCH] devel/mingw32-bin-msvcrt: update to r3.16.a3.1 o kern/140728 net [em] [patch] Fast irq registration in em driver o docs/140703 doc [patch] add xorg-minimal as alternative for X11 Distri o ports/140699 perky [PATCH] archivers/dpkg: update to 1.14.25 o kern/140690 [libc] [patch] swab(3) with negative len should do not f ports/140683 miwi [PATCH] www/phpSysInfo: Update to 3.0 o conf/140650 [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 net [em] [patch] e1000 driver does not correctly handle mu f ports/140628 [PATCH] deskutils/plasma-applet-cwp: update 0.2.12 -> o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140614 usb [uplcom] [patch] adding support for Radio Shack Gigwar o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja p bin/140571 gavin [patch] ifconfig(8) does not set country DE o kern/140567 net [ath] [patch] ath is not worked on my notebook PC o ports/140560 tobez [PATCH] devel/p5-IPC-Cmd: update to 0.52 p bin/140530 delphij [patch] make burncd(8) honour envar BURNCD_SPEED p bin/140497 delphij [libc] [patch] Maintainance update for sscanf.c p bin/140496 delphij [libc] [patch] Maintainance update for sprintf.c o docs/140495 doc [patch] /etc/rc.conf.d is not documented in rc.conf(5) o docs/140494 doc [patch] Man page fix for getc(3) p bin/140493 jh [patch] truss(1) log file descriptor shared with trace o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o docs/140458 doc [patch] Grammar fix for to{upper,lower}(3) o docs/140457 doc [patch] Grammar fix for isspace(3) p docs/140456 roam [patch] Grammar fix for isprint(3) o docs/140444 doc [patch] New Traditional Chinese translation of custom- o kern/140441 [kernel] [patch] order of arguments for mtx_init is in o conf/140440 rc [patch] allow local command files in rc.{suspend,resum p bin/140397 delphij [patch] newsyslog(8) doesn't handle stopped daemons co o bin/140384 [patch] chio(8) fix some harmless uninitialized argume o docs/140369 doc [patch] src/contrib/pf/man/pf.4 o ports/140365 [patch] databases/firebird20-client coredumps a ports/140357 pgollucci [patch] www/apache22 and www/apache20: fix CVE-2009-35 o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n o ports/140339 wen [patch] sysutils/tmux: don't assume \177 as backspace o ports/140335 ale [patch] graphics/php5-gd: fix CVE-2009-3546 o ports/140328 luigi [PATCH] sysutils/fio: update to 1.25 o bin/140304 [patch] add MAILFROM ability to cron(1) o ports/140296 tobez [PATCH] databases/p5-Cache-Memcached-Fast: update to 0 o ports/140293 skv [PATCH] devel/p5-Data-UUID: update to 1.203 o ports/140280 lev [PATCH] devel/mingw32-gcc: update to 4.4.0, take maint o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o usb/140259 usb [libusb] [patch] [usb8] libusb-1.0 portability/compati o kern/140251 [ata] [patch] add UDMA5 support to Intel SCH o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o bin/140228 [patch] mktemp(1) buffer overrun o ports/140216 gnome [patch] devel/nspr does not check POLLHUP in PR_Connec o ports/140188 itetcu [PATCH] some ports need adjustment to properly expand o kern/140185 [patch] expand_number(3) does not detect overflow in n f ports/140184 sylvio [patch] Update net/linux-nx-client to 3.4.0 o misc/140173 [nanobsd] [patch] Small nanobsd pkg install change p kern/140172 gavin [uart] [patch] Support ACPI-only tablet PC screen o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] dlopen(3) doesn't promote RTLD_GLOBAL for link o ports/140093 krion [patch] lang/gawk: update to 3.1.7 o kern/140091 scsi [da] [patch] allow for da(4) large block transfer than o bin/140089 [libcsu] [patch] libcsu: Bump to WARNS=6 o bin/140081 [patch] routed(8) increase to WARNS=3 o bin/140078 [patch] route(8) increase to WARNS=3 o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o bin/140061 [patch] restore(8) increase to WARNS=2 o bin/140060 [patch] nos-tun(8) WARNS=3 cleanup p bin/140017 delphij [patch] umount(8) raise to WARNS=3 o bin/140016 [patch] sysctl(8) raise WARNS to 3 o bin/140000 [patch] mount_ntfs(8) WARNS6 cleanup o conf/139997 [kbdmap] [patch] Swissgerman keyboard support for MacB o bin/139995 [patch] mount_hpfs(8): WARNS6 cleanup o bin/139994 [patch] fsirand(8): increase to WARNS=2 a usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o ports/139934 sobomax [PATCH] devel/py26-interface: update to 0.97 o ports/139933 roberto [PATCH] devel/libdlmalloc: update to 2.8.4 o ports/139872 sergei [PATCH] ports-mgmt/porttools: improve port's directory o ports/139841 itetcu [PATCH] Update of security/nikto to 2.1.0 o kern/139825 imp [patch] fix spelling of Copyright in truss and sys/sys o bin/139802 [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o ports/139794 stas [PATCH] net/ruby-ldap: update to 0.9.9 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 o ports/139697 lev [PATCH] devel/mingw32-binutils: update to 2.20 o docs/139682 doc [PATCH] dialog(1) man page does not mention radiolist o ports/139662 timur [PATCH] net/samba33: update to 3.3.9 o ports/139630 itetcu [PATCH] deskutils/treeline: update to 1.3.0 o ports/139607 openoffice [Patch] editors/openoffice.org-3-devel: Add knobs for o kern/139604 [patch] [ichwd] watchdog sometimes does not enable o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f ports/139587 edwin [PATCH] games/xrally: fix broken mtree with custom PRE f kern/139576 ed [syscons] [patch] blink screen too noisy o ports/139556 miwi [PATCH] security/beecrypt: take maintainership and upd o ports/139457 jmelo [PATCH] devel/prepstools: update to 2.2.0 o ports/139456 jmelo [PATCH] benchmarks/siege: update to 2.69 f ports/139452 [patch] krb5 support in java/openjdk6 o ports/139450 jmelo [PATCH] mail/uebimiau: update to 2.7.11 o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o bin/139389 [patch] Change top(1) to display thread IDs f ports/139347 sylvio [patch]finance/kmymoney2 port update to 1.0.0 o bin/139346 net [patch] arp(8) add option to remove static entries lis o bin/139345 [patch] handle SIGINFO in sleep(1), etc. f ports/139339 sylvio [patch] www/lynx update to 2.8.7.1 o bin/139319 [patch] flex(1): fix prototypes, esp. when YY_NO_INPUT 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 docs/139153 doc [patch] the hier(7) man page needs to be updated o kern/139144 [kbd] [patch] CapsLock LED should not depend on keymap o usb/139142 usb [ehci] [usb8] [patch] ehci drivers (NVIDIA nForce4 USB f ports/139107 [patch] sysutils/jfbterm: convert to bsdmake o kern/139080 [libc] [patch] closelog() can close negative file desc f ports/139064 [PATCH] net/freeradius2: rc.d script should deal with o conf/139040 [patch] 100.clean-disks shouldn't traverse devfs mount o kern/139019 [libc] [patch] Add xdr_sizeof() to libc. o 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 ports/138982 wxs [PATCH] security/sudo: update to 1.7.2.1 f ports/138976 [patch] Restrict news/sabnzbdplus to python <= v2.5 o bin/138945 [patch] sysinstall(8): remove configuration of /usr/X1 f ports/138929 portmgr [PATCH] security/heimdal update to 1.2.1 o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade o usb/138915 usb [patch] [usb8] [usb67] add support for SheevaPlug seri a usb/138879 usb [uftdi] [patch] Patch to add support for CTI USB-Mini o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o ports/138797 joerg [patch] \newif command support to print/latex2rtf o ports/138796 ruby [patch] - update converters/ruby-lv f ports/138792 [patch] - update security/pgp6 o kern/138789 scsi [cam] [patch] cd(4) patch for drives/discs failing the o i386/138737 i386 [endian] [patch] Patch for bswap64(9) operation on IA o conf/138692 [request] [patch] 450.status-security should exit with o ports/138629 ahze [Patch]graphics/py-opengl:change the dependence to PYN o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/138465 [tools] [patch] add data verification to tools/regress f ports/138435 [patch] databases/freetds gnutls linking error o kern/138421 fs [ufs] [patch] remove UFS label limitations f ports/138402 [patch] www/awffull is not reading configuration file p kern/138390 brueffer [gif] [patch] NULL pointer dereference in gif_input() p kern/138388 brueffer [pcfclock] [patch] NULL pointer dereference in pcfcloc p kern/138387 brueffer [ppbus] [patch] NULL pointer dereference in lptopen() p kern/138384 brueffer [ips] [patch] NULL pointer dereference in ipsd_dump() p kern/138383 brueffer [drm] [patch] NULL pointer dereference in mach64_dma_v o kern/138381 kmacy [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/138375 [boot] [patch] Memory leak in ficlIncludeFile() in fil o misc/138347 [patch] [nanobsd] nanobsd build is broken due to mdcon o kern/138341 [nanobsd] [patch] 8.0-BETA3: nanobsd build broken due o bin/138245 [patch] find(1): find -newerXB doesn't work f ports/138242 trasz [PATCH] audio/qsynth: update to 0.3.4, fix default MID o ports/138239 trasz [PATCH] audio/fluidsynth: update to 1.0.9 o conf/138208 rc [rc] [patch] Making rc.firewall (workstation) IPv6 awa o docs/138206 doc [patch] ntp(1): not enabled function, and false manual o usb/138172 usb [u3g] [patch] [usb67] Additional dev id for u3g (Optio o bin/138150 [mtree] [patch] fix for src/etc/Makefile mtree o bin/138146 [patch] w(1) and pkill(1) don't work on core files wit o ports/138139 portmgr [patch] teach Mk/bsd.autotools.mk about libtoolize o usb/138138 usb [u3g] [patch] [usb67] Novatel U760 for u3g (Verizon an p kern/138136 delphij [new driver] [x86emu] [patch] sys/contrib: add x86emu o bin/138131 [patch] pstat(8): pstat -t coredumps when reading from o kern/138109 fs [extfs] [patch] Minor cleanups to the sys/gnu/fs/ext2f o bin/138043 fs [patch] fsck_ffs(8) broken, partial patch a kern/137890 [libkvm] [patch] ps segfaults with -ax when inspecting o bin/137864 [patch] sysinstall(8): add possibility to shutdown/pow o bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant f usb/137789 gavin [patch][usb67]Add quirks for EeePC 901 SD card reader o kern/137775 net [netgraph] [patch] Add XMIT_FAILOVER to ng_one2many o ports/137731 x11 [patch] x11-drivers/xf86-input-vmmouse p docs/137723 remko [patch] share/man/man5/make.conf.5 : document WWWSUPFI o ports/137691 [PATCH] New port for semantik (kdissert II) p docs/137689 brueffer [patch] acpi_panasonic(4) sysctl variable name wrong o misc/137688 re [build] [patch] Release build fails, if build-system u o misc/137678 [bootp] [patch] libstands bootp/dhcp code always uses o conf/137671 [patch][request] enhance beastie.4th: possibility to d o gnu/137665 [patch] dialog(1) goes into tight loop on encountering o ports/137664 mnag [PATCH] www/lighttpd adds mod_geoip (shar) o ports/137634 doceng [PATCH] print/ghostscript8: Register cairo libdepends o usb/137616 usb [usb67][usb8][usbdevs] [patch]: usbdevs update: Please o ports/137587 kde [PATCH] audio/arts: Add more OPTIONS and proper CONFIG o conf/137487 [patch] [build] unbreak world WITHOUT_NETGRAPH o bin/137484 net [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137483 [patch] [build] unbreak world for WITHOUT_OPENSSH, WIT o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o kern/137436 [puc] [patch] Fix puc driver to support newer Timedia o bin/137379 [patch] ppp(8) new command iface name to rename tun in o bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o ports/137296 mnag [PATCH] databases/sqlite3: update to 3.6.16, load exte p usb/137226 usb [usb67][patch] quirk for Philips extern USB disk o kern/137213 antoine [kernel] [patch] eliminate wrong usages of (S)LIST_HEA p usb/137191 thompsa [usb8][patch] export ums(4) output report parser data o 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 f bin/137180 usb [build] [patch] building world for 8.0-BETA2 fails on o bin/137156 [patch] fix dump(8) cryptic output on reporting progre o kern/137145 [mbuf] [patch] Reference count computing isn't correct f usb/137138 gavin [umass][usb67][patch] QUIRK: ASUS PDA Flash disk emula o bin/136994 net [patch] ifconfig(8) print carp mac address o ports/136928 pgollucci [PATCH] www/apache20 - suexec resource limits patch o docs/136918 doc [patch] grammar fixes to locking.9 o ports/136917 python [patch] lang/python26: gettext detection 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 f ports/136764 skreuzer [PATCH] net-mgmt/nagios-plugins: Dont truncate proc a p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o gnu/136705 [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136695 ipfw [ipfw] [patch] fwd reached after skipto in dynamic rul o kern/136669 [libc] [patch] setmode(3) should always set errno on e o bin/136661 [patch] ndp(8) ignores -f option o ports/136598 apache [PATCH] www/mod_fastcgi: Fix non-threadsafe function o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" s ports/136302 itetcu [patch] ports-mgmt/tinderbox-devel incorrect WEBUI opt o ports/136291 openoffice [patch] editors/openoffice.org-3: gpatch failure o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend o ports/136091 pgollucci [PATCH] www/apache22 - suexec resource limits patch o kern/135989 [NOTES] [patch] device vr support D-Link DFE-520TX, bu o bin/135918 [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 f ports/135674 yzlin [PATCH] some PHP-related knobs should be placed before o ports/135670 ale [PATCH] databases/mysql50-server: in mysql-client mysq o ports/135664 portmgr [PATCH]: bsd.ldap.mk: Detect flavour of installed open o ports/135649 portmgr Mk/bsd.port.mk: [patch], fix documentation relating to p kern/135628 remko [umass] [patch] add a device quirk for Myson Heden 881 o kern/135608 [patch] sysctl(8) should be able to handle byte values o usb/135575 usb [usbdevs] [patch] [usb67] Add HTC Wizard phone vid/pid o bin/135565 randi [patch] a patch for sysinstall(8) to look at UFS parti f ports/135541 [PATCH] math/p5-NetCDF cannot load module with netcdf- o ports/135500 obrien net/rdesktop sound does not work [PATCH] o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135474 ale [PATCH] Mk/bsd.php.mk: add possibility to redefine PHP o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced p threa/135462 threads [PATCH] _thread_cleanupspecific() doesn't handle delet o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage p misc/135301 remko [tinybsd] [patch] Patch for fix architecture support f o docs/135165 doc [patch] make(1) fixes: punctuation, typos, tweaks o bin/135159 [patch] pkg_delete(1) segfaults on empty @pkgdep lines o kern/135070 acpi [acpi] [patch] BIOS resource allocation and FreeBSD AC o kern/135067 net [patch] [fib] Incorrect KASSERTs in sys/net/route.c o bin/134975 ipfw [patch] ipfw(8) can't work with set in rule file. o misc/134920 [includes] [patch] Large upgrades from source cause co 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 kern/134878 [puc] [patch] Add support for Oxford OXPCIe954 and OXP f ports/134773 openoffice [patch] editors/openoffice.org-3 reduce depenedencies o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser o usb/134631 usb [usbdevs] [patch] WiSPY DBx support requires usb tweak o gnu/134604 [gcclibs] [patch] Memory leak in gcclibs/libgomp f ports/134594 lwhsu [PATCH] security/pwman3: use cElementTree and sqlite c o kern/134590 [libi386] [gpt] [patch] Bootloader support for hybrid o i386/134586 jhb [i386] [patch] Incorrect machine check exception handl s kern/134517 yongari [rl] [patch] Realtek 8111C Driver Backport for FreeBSD p kern/134513 jh [libc] [patch] fts(3) FTS_NOCHDIR misbehavior with emp o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 o arm/134338 arm [patch] Lock GPIO accesses on ixp425 o kern/134249 [libiconv] [patch] ignore case for character set names o i386/134242 i386 [boot0] [patch] improvement i386 boot0 error diagnose o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o usb/134117 usb [Patch] Add support for 'Option GlobeTrotter HSDPA Mod o arm/134092 arm [patch] NSLU.hints contains wrong hints for on board n o docs/134074 doc [patch] locking.9 man page slight enhancements p docs/134053 danger [patch] arp(8) manpage should mention ndp(8) in See Al o kern/134010 [gssapi][patch] Buffer overflow and use-after-free in o conf/134006 rc [patch] Unload console screensaver kernel modules if s o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama p bin/133907 jh [patch] cp(1) wrongly reports errors in vacuous copy 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(1): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133786 net [netinet] [patch] ip_input might cause kernel panic o kern/133776 [libc] [patch] snprintf(3) and vsnprintf(3) do not pro o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in s kern/133733 [pci] [patch] Incorrect record in pci_vendors for Broa o conf/133715 [terminfo] [patch] no terminfo for rxvt-unicode termin o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o ports/133641 doceng [PATCH] print/ghostscript7 crash bug o docs/133567 doc [patch] doc/Makefile switch to csup o kern/133491 [libfetch] [patch] Digest HTTP authentication support o ports/133457 eclipse [PATCH] java/eclipse-webtools: update to 3.0.3 p bin/133255 stefanf [PATCH] sh(1): empty line in eval resets $? p kern/133239 gavin [ae] [jme] [patch] if_jme can assign duplicate MAC add o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 [patch] whois(1): add support for SLD whois server loo p docs/133186 gavin [patch] powerd(8) man page errors o kern/133174 fs [msdosfs] [patch] msdosfs must support utf-encoded int o ports/133146 ahze [patch] x11-fonts/dejavu: install fontconfig configura o docs/133118 doc [patch] Error in getopt (1) manual EXAMPLES section o ports/133078 kde [PATCH] kmix (multimedia/kdemultimedia4) incorrectly b o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o docs/132959 doc [patch] description mismatches on xterm/termcap, fortu o conf/132851 net [fib] [patch] allow to setup fib for service running f o bin/132847 syrinx [patch] bsnmpd(8): snmp_pf: add support for retrieving 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 p docs/132834 trhodes [patch] Punctuation inconsistency in chgrp.1 and cut.1 o kern/132832 net [netinet] [patch] tcp_output() might generate invalid p usb/132799 usb [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CA o bin/132798 net [patch] ggatec(8): ggated/ggatec connection slowdown p o usb/132785 usb [usb] [patch] Gemtech remote powersocket is classed as 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 o bin/132591 [patch] dump(8): "dump W" uses %c instead of %d for re o ports/132579 cy [patch] sysutils/screen: fix build with externel compi o ports/132573 ume [patch] security/cyrus-sasl2: fix compilation with gcc p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o bin/132367 [patch] less(1)/more(1) fchmod(2) `/dev/null' to 0600 o docs/132311 doc [patch] man5/nsmb.conf.5 o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o ports/132294 stas [PATCH] lang/ruby18: Add option to build with Profile- o ports/132293 stas [PATCH] lang/ruby19: Add option to build with Profile- o kern/132273 geom glabel(8): [patch] failing on journaled partition o kern/132271 [puc] [patch] puc support for a generic card o ports/132213 anders [patch] mail/imap-uw: Add support for ~/mail as defaul o kern/132172 [patch] [panic] Page fault panic in scioctl and consol o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o kern/132104 [kernel] [patch] kenv(1) buffer overflow o usb/132080 usb [patch] [usb] [rum] Kernel panic after NOMEM caused by o bin/132008 [PATCH] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o kern/131933 [uart] [patch] Cannot detect Sony Ericsson GC89 EDGE/W 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 usb/131912 usb [uslcom] [patch] New devices using Silicon Labs chips o usb/131900 usb [usbdevs] [patch] Additional product identification co o docs/131684 doc [patch] articles/linux-comparison: replace Addenda by o docs/131626 pgj [patch] dump(8) "recommended" cache option confusing o docs/131625 pgj [patch] Typos in ed(1) man page o docs/131590 doc [patch] whitespace-only change of developers-handbook/ o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o kern/131536 net [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 bz [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o usb/131123 usb [patch] re-add UQ_ASSUME_CM_OVER_DATA USB quirk o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o docs/130895 doc [patch] No man page installed for padlock(4) on amd64 o bin/130874 [patch] fix typo in nvi(1) (subsitution -> substitutio o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o bin/130855 [PATCH] add a chown(8)/chgrp(8) -x option to avoid cro o ports/130811 doceng [PATCH] Floating point exceptions Ghostscript 8.63 (pr o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error p kern/130735 scsi [cam] [patch] pass M_NOWAIT to the malloc() call insid o kern/130724 emulation [linprocfs] [patch] cpuinfo in linprocfs is dated, cau o kern/130657 bz [ip6] [patch] ipv6 class option o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a p docs/130548 geom [patch] gjournal(8) man page is missing sysctls o kern/130476 [build] [patch] Error in compiling kernel with device o conf/130414 rc [patch] rc services started with onestart are not stop o docs/130394 [patch] Minor typo in dtrace(1M) man page o 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 bin/130366 randi [patch] sysinstall(8): Minor correction to sysinstall o kern/130286 [patch] hifn(4) changes o ports/130183 mm [PATCH] converters/xdeview switch to USE_TCL p bin/130159 bz [patch] ppp(8) fails to correctly set routes o bin/130132 ipfw [patch] ipfw(8): no way to get mask from ipfw pipe sho 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 [patch] ps(1): ps -lH doesn't show the proper CPU# o usb/129945 usb [usbdevs] [patch] add u3g support for Longcheer WM66 U o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co p usb/129858 remko [usb] [patch] Need to add quirk to da_scsi.c to suppor o bin/129814 [patch] support of per script nice(1) value in periodi o ports/129782 wxs [PATCH] security/sudo: update to 1.7.0 o bin/129764 [patch] unbreak sbin/newfs build for the 8-CURRENT o usb/129758 usb [uftdi] [patch] add Pyramid LCD usb support 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 ports/129687 obrien [patch] unbreak net/tcpshow for gcc-4.2.1 p bin/129630 [patch] bsnmpd(1): teach hostres module about ZFS o bin/129620 [patch] Incorrect bzip2(1) behavior o ports/129577 des [PATCH] sysutils/munin-main: does not honor BATCH/PACK o ports/129576 des [PATCH] sysutils/munin-node: does not honor BATCH/PACK o ports/129553 hrs [patch] print/acroread8 can't launch some programs due o usb/129522 usb [ubsa] [patch] add support for ZTE AC8700 modem o ports/129422 ume [patch] mail/cyrus-imapd23: add patch for autocreate I 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 net [xl] [patch] xl0 watchdog timeout o usb/129251 usb [usbdevs] [patch] Liebert UPS being assigned uhid and 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 usb/129173 usb [uplcom] [patch] Add support for Corega CG-USBRS232R a o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/129059 fs [zfs] [patch] ZFS bootloader whitelistable via WITHOUT o docs/129024 keramida [patch] ipfw(8) improvements o usb/128977 usb [usb] [patch] uaudio is not full duplex o ports/128838 des [PATCH] www/varnish 2.0.1 enhancements o usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o bin/128725 [patch] whois(1) does not correctly send queries regar o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct f kern/128639 acpi [patch] [acpi_asus] acpi for ASUS A6F,A3E,A3F,A3N not f 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 [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128587 kensmith [patch] sysinstall(8) uses first mirror in Turkey even 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 ports/128467 ale [patch] databases/php4-dba: change Berkeley DB detecti o misc/128444 [build] [patch] create USB stick install image o conf/128433 [patch] Add option to allow a full login when doing 's o bin/128427 [patch] mdfs(8): mount_mfs warns "chmod: Read-only fil o kern/128335 [patch] [cpufreq] Missing call to sbuf_delete() in two o usb/128324 usb [uplcom] [patch] remove baud rate restriction for PL23 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 o kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p docs/128222 trhodes [patch] man page truss(1) claims that init(8) can be t o kern/128165 [aac] [patch] sync aac(4) with the latest vendor versi o kern/128103 vwe [feature request] [patch] new SiS 190 NIC driver o bin/128094 [patch] lint(1): Sizeof(pointer) bug in usr.bin/xlint/ 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 o i386/128014 i386 [geode] [patch] AMD Geode CS5536 watchdog(9) not disab p bin/127986 [patch] ee(1): fix compiler warnings caused by use of o usb/127980 usb [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x an o kern/127928 net [tcp] [patch] TCP bandwidth gets squeezed every time t o bin/127918 [patch] ATA Security support for atacontrol(8) o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even o docs/127908 doc [patch] readdir(3) error documentation o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127834 net [ixgbe] [patch] wrong error counting s ports/127822 wxs [PATCH] security/sudo: add tuneable variable SUDO_LDAP o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o bin/127764 [boot0cfg] [patch] preserve NT disk UID data for boot0 o kern/127717 [ata] [patch] - support write cache toggling per devic o bin/127633 edwin [patch] Update top(1) to 3.8b1 s ports/127608 marius [patch] sysutils/cdrtools - cdrecord: fix device enume p docs/127602 trhodes [patch] Incomplete information in nsswitch.conf(5) o kern/127581 acpi [patch] [acpi_sony] Add support for more Sony features p usb/127549 usb [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requi o usb/127543 n_hibma [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s o bin/127475 [patch] sockstat(1) output columns run into each other o misc/127471 [build] [patch] installworld fails if install-info is p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c p docs/127432 remko [patch] update fsck_ffs(8) man-page with regarding to p docs/127406 n_hibma [patch] update umodem man page: Sony Ericsson W810i o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o i386/127387 kib [i386] [patch] Inline assembler in x86 _start() in crt a bin/127331 edwin [patch] top(1) only shows cputime used by one process o ports/127303 kuriyama [patch] misc/amanda-server Add pkg-install to create m p kern/127289 [ata] [patch] new pci ids for SiI3132 present on adapt o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped 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 s ports/127229 lwhsu [PATCH] sysutils/dtc: unbreak, fix some typos, remove o ports/127214 secteam [PATCH] ports-mgmt/portaudit: Please change to U p kern/127213 delphij [tmpfs] [patch] sendfile on tmpfs data corruption 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 bin/127034 [patch] Add option to count apparent size to du(1) p kern/126984 glebius [carp] [patch] add carp userland notifications via dev p kern/126926 [build] [patch] Add MACHINE to dmesg o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s o kern/126688 net [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and p bin/126682 delphij [patch] sed(1) segfaults on error rather than error me p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps p misc/126435 ed [patch] /usr/share/examples/drivers/make_pseudo_driver o bin/126433 [patch] some missing checks in rm(1) o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o kern/126300 [build] [patch] Add missing -mno-sse3 flag for AMD64 t 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 ports/125996 danfe [patch] x11/nvidia-driver - remove pkg_info statements o bin/125922 net [patch] Deadlock in arp(8) p bin/125878 kmacy [patch] [request] Add zfs/zpool to rescue programs. 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 bin/125678 [patch] ls(1) -h option doesn't work if the listing co o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc p docs/125639 trhodes [patch] kldunloadf(2) does not mention about possible a kern/125613 trasz [ufs] [patch] ACL problems with special files o conf/125551 [patch] building WLAN userland should be optional o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo o bin/125449 [patch] awk(1): /usr/bin/awk fails mawk's FPE test o bin/125370 ipfw [ipfw] [patch] increase a line buffer limit o bin/125365 matteo [patch] mdconfig(8) -l overflow for size field o bin/125350 des [libfetch] [patch] src/lib/libfetch add support for de p docs/125253 trhodes [patch] jail(2) does not mention about possible error p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani p bin/125154 matteo [patch] mount(8) ignores values returned by exec_mount a kern/125139 philip [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o conf/125041 [patch] New file: /etc/periodic/security/810.loginok o kern/125034 [devfs] [patch] devfs does not apply rules to newly cr o kern/125030 [devfs] [patch] Command 'devfs ruleset 0' causes panic o kern/125009 [patch] access(2) grants root execute perms for non-ex o kern/124996 [patch] "filesystem goof: vop_panic[vop_revoke]" panic o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/124963 alc [vm] [patch] old pagezero fixes for alc p i386/124902 delphij [i386] [patch] patch to fix VESA modes and allow 8bit o kern/124881 [devfs] [patch] [request] Add possibility to check whi p kern/124853 gonzo [devfs.rules] [patch] devfs_ruleset_use may use freed 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 o kern/124744 acpi [acpi] [patch] incorrect _BST result validation for To a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o conf/124641 [patch] new periodic script for checking for ports wit p kern/124621 fs [ext3] [patch] Cannot mount ext2fs partition o kern/124564 [kernel] [patch] add CPUID bits to ident phenom proces p bin/124517 jh [patch] cdcontrol(1) doesn't print all error messages o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o misc/124431 [build] [patch] minor revision of BDECFLAGS p bin/124392 rink [patch] bootparamd(8) does not work on arm p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile o bin/124349 [patch]: stat(1) should interpret st_flags as it does p bin/124342 mtm ggated(8): [patch] sbin/ggate/ggated/ggated.c fails to p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under p bin/124251 mtm [patch] add BUGS section to rcorder.8 with REQUIRE exp o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 cokane [ndis] [patch] ndis network driver sometimes loses net o kern/124164 [patch] Add SHA-256/512 hash algorithm to crypt(3) o kern/124064 [ar] [patch] cannot handle >16 serial number with Inte o bin/124052 [patch] adduser(8) throws errors when -f input file in o kern/123980 [ata] [patch] Implement ATA UDMA speed limit (hw.ata.a p kern/123961 net [vr] [patch] Allow vr interface to handle vlans o gnu/123921 [patch] cpio(1): cpio -oc bug with write_out_header() o kern/123892 net [tap] [patch] No buffer space available o kern/123858 net [stf] [patch] stf not usable behind a NAT p bin/123807 imp [patch] timed(8) does not run on arm (incorrect getopt f kern/123793 bz [ipsec] [patch] KAME IPSEC does not pass processed pac o bin/123774 [patch] kdump(1): time_t printing issues 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/123644 [patch] [sysctl] Allow sysctl(8) to ignore unknown OID o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail p kern/123518 [patch] src/sys/kern.mk fails to disable -msse3 for am o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 o bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag o usb/123352 usb [usbdevs] [patch] Add Option GTMAX3.6/7.2 and Quallcom o usb/123351 usb [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [2 p bin/123329 phk [patch] usage strings for fifolog_create(1) and fifolo o misc/123240 [nanobsd] [patch] rerunning nanobsd.inc.sh fails becau o bin/123237 randi sysinstall(8): [patch]: sysinstall(8) -- remove dummy 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 misc/123156 [build] [patch] make.conf update to "make update" sect o misc/123155 [build] [patch] src/Makefile.inc1 bug: remove obsolete p kern/123147 remko [ti] [patch] ti(4) doesn't use mii, but kernel configs o conf/123119 ipfw [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/123021 [patch] mount(8): mount -p shows incorrect mount optio o 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/122956 usb [ubsa] [patch] add support for Novatel Wireless XU870 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 o usb/122819 usb [usb] [patch] Patch to provide dynamic additions to th o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE p bin/122659 stefanf [patch] sh(1) long arithmetics broken on certain archi o bin/122652 [patch] du(1) support for inode count o i386/122623 i386 [build] [patch] bsd.cpu.mk doesn't handle opteron/athl o usb/122621 usb [new driver] [patch] New driver for Sierra Wireless 3G 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 kern/122288 [md] [patch] mdconfig(8) returning negative unit numbe 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 matteo [patch] Have crontab(1) use snprintf instead of sprint p bin/122070 matteo [patch] crontab(1): Zero out pw_passwd in crontab p kern/122047 jh [ext2fs] [patch] incorrect handling of UF_IMMUTABLE / o bin/122043 [patch] du(1) does not support byte-count-based report o conf/122037 [patch] add rsync example for inetd.conf o usb/122025 usb [uscanner] [patch] uscanner does not attach to Epson R 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 s ports/121902 gabor [PATCH] textproc/ispell add OPTIONS o kern/121899 [ar] [patch] Drive detached from Intel Matrix RAID and o kern/121897 [patch] realpath(3) segmentation fault o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o kern/121706 net [netinet] [patch] "rtfree: 0xc4383870 has 1 refs" emit o ports/121672 wes [Patch] mail/mimedefang: opt out of clamav use p bin/121671 gavin [patch] nscd(8) prints needless banner f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o stand/121568 standards [patch] ln(1): wrong "ln -s" behaviour o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/121559 geom [patch] [geom] geom label class allows to create inacc o kern/121521 [ata] [patch] add VIA CX700M2 chipset to ata driver p bin/121512 mtm [sysctl] [patch] sysctl(8) should return 1 if the user o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o bin/121502 [patch] option -P appears to be broken in restore(8) s p docs/121490 brueffer [patch] Multiple typos ("in in") in /usr/src files o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o bin/121424 doc [patch] [ipfw] Rectify ambiguous English in manual o ports/121413 portmgr [patch] bsd.port.mk: introduce USE_LZMA for lzma-compr o bin/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 o bin/121359 net [patch] ppp(8): fix local stack overflow in ppp o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o arm/121242 ticso [ate] [patch] Promiscuous mode of if_ate (arm) doesn't p usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a 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 ports/121143 markus [PATCH] audio/cdparanoia: rip multisession CDs correct o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121102 acpi [acpi_fujitsu] [patch] update acpi_fujitsu for the P80 o kern/121074 des [patch] Add RFC2617 digest authentication to fetch(3) 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 bin/120990 [patch] support "BIOS Boot" partition type in gpt(8) o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada p docs/120945 net [patch] ip6(4) man page lacks documentation for TCLASS p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 p bin/120870 jh [patch] truss(1) shows 'pipe' system call as having 6 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o bin/120813 [patch] grdc(6) off by 500 ms (on average) o ports/120756 des [PATCH] sysutils/munin-node: Use fixed GID o ports/120755 des [PATCH] sysutils/munin-main: Use fixed UID/GID p kern/120714 gonzo [viapm] [patch] viapm driver doesn't work on VIA VT823 o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120515 acpi [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc 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 o bin/120256 [patch] ftp(1): ftp -u URL/ returns a -1 o kern/120232 net [nfe] [patch] Bring in nfe(4) to RELENG_6 o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o kern/120073 [new driver] [patch] add support for Meinberg PCI-base o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab p threa/119920 deischen [patch] fork broken in libpthread 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 ports/119710 sumikawa [patch] net/netcat - nc command runs BSD nc instead of o kern/119668 scsi [cam] [patch] certain errors are too verbose comparing o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing o kern/119606 [sio] [patch] PCMCIA card not attached to driver o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose p docs/119329 trhodes [patch] Fix misleading man 1 split o kern/119307 emaste [queue] [patch] TRASHIT macro blasts list header if RE o 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 i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o usb/119150 remko [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o bin/119077 [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/119014 [patch] IPv6 addresses cause sockstat(1) to run column o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages a kern/118879 net [bge] [patch] bge has checksum problems on the 5703 ch o bin/118874 [patch] tftpd(8): add TFTP Option Extension (rfc 2347) 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 bin/118636 sysinstall(8): [patch] [request] remove requirement fo p kern/118540 kaiw [elf] [patch] update sys/sys/elf_common.h with new ema o kern/118493 weongyo [ndis] [patch] a trivial fix when ndis sets `ndis_reso o usb/118485 usb [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 usb/118374 attilio [ubsa] [patch] support Option GlobeTrotter Max 3.6 wir 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 o kern/118317 [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 '(' a kern/118238 net [bce] [patch] bce driver shows "no carrier" on Intel S 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 bin/118132 [patch] pax(1): broken -s handling of \1, \2 ... 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 thomas [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 kern/117709 simon [libcrypto] [patch] Base openssl does not define OPENS o bin/117687 [patch] fstab(5) format cannot handle spaces f bin/117603 linimon [patch] dump(8) hangs on SMP - 4way and higher. o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni o usb/117546 remko [uftdi] [patch] Add MaxStream ZigBee product ID to uft o bin/117520 mux [patch] csup(1) not-really-equivalent to cvsup p kern/117512 des [libpam] [patch] document .opieaccess for pam_opieacce o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC p bin/117452 gavin [patch] tftp(1): the fix for PR 103206 was incorrect o bin/117339 net [patch] route(8): loading routing management commands o docs/117308 gavin [patch] Clarification of /etc/defaults/devfs.rules sta o bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t p kern/117234 ipfw [ipfw] [patch] ipfw send_pkt() and ipfw_tick() don't s o usb/117205 remko [uscanner] [patch] uscanner support for HP ScanJet 447 o bin/117191 [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 p ports/116984 apache [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o bin/116908 [patch] pkg_create(1): pkg_create -b makes invalid pac o kern/116837 net [tun] [panic] [patch] ifconfig tunX destroy: panic o stand/116826 standards [patch] sh support for POSIX character classes a kern/116697 kmacy [net] [patch] ifconfig's name argument has no effect o o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta p kern/116608 fs [msdosfs] [patch] msdosfs fails to check mount options 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 conf/116237 [patch] ugly output of the 405.status-ata-raid if fdes o ports/116219 edwin [patch] Add @rmtry to bsd.port.mk o bin/116209 [patch] [request] decimal suffix in split(1) o conf/116071 [patch] loader.conf update some variables 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 amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o ports/115461 pgollucci [patch] bsd.apache.mk - Create packages for apache mod o 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/115371 imp [cardbus] [patch] Device removal leaves resource datab o kern/115196 bushman [libc] [patch] [request] Implement getgroupmembership( o bin/115174 gavin [patch] growfs(8) needs zero-writing for safe filesyst o bin/115172 ipfw [patch] ipfw(8) list show some rules with a wrong form 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/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o 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 o kern/114714 thompsa [gre] [patch] gre(4) is not MPSAFE and does not suppor p kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 kmacy [RFE] [modules] [patch] add dynamic module references o ports/114231 edwin [patch] multimedia/audacious-plugins - audacious/plugi f ports/114229 pav [patch] [www/linuxpluginwrapper] libmap.conf-FreeBSD6 o docs/114184 doc [patch] [ndis]: add info to man 4 ndis o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE o bin/114129 lulf [patch] csup(1) doesn't support authentication p conf/114101 se [patch] Add ZFS to periodic locate run 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 bin/113979 matteo [patch] sysinstall(8) does not support UFS1 filesystem s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/113913 [patch] [requst] new file /etc/periodic/daily/490.stat o bin/113881 [patch] sysctl(8): Wrong memory usage 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 docs/113803 ipfw [patch] ipfw(8) - don't get bitten by the fwd rule o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 [patch] sysinstall(8) warns for invalid geometry which o bin/113518 [patch] make(1): Prevent execution when command is a c o bin/113398 [libc] [patch] initgroups fails rather than truncates p kern/113388 ipfw [ipfw] [patch] Addition actions with rules within spec o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- p kern/113266 harti [libgssapi] [patch] Missing handling of mech_type in g o conf/113265 [patch] Add registered epmd port number to etc/service 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 i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC o bin/113074 [patch] ppp(8): include for strcasecmp(3) o 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 p bin/112955 des [patch] login(1): add netgroup support back to pam_log f usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o kern/112938 [headers] [patch] utmp.h is too limiting for modern sy p docs/112935 remko [patch] newfs_msdos(8): document 4.3g limit on files w 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 [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, p ports/112347 obrien [PATCH] editors/vim re-enable WITH_TCL o bin/112336 [patch] install(1): install -S (safe copy) with -C or s gnu/112215 obrien [patch] gcc(1): "gcc -m32" attempts to link against 64 p bin/112213 jh [patch] touch(1)ing a directory and failing yields ret o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111537 kmacy [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via o power/111296 ppc [kernel] [patch] [request] Support IMISS, DLMISS an DS o bin/111226 [patch] Incorrect usage of chflags() in various FreeBS o bin/111024 [request] [patch] atacontrol(8): support for stand-by o kern/110995 kmacy [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 f kern/110720 kmacy [net] [patch] [request] support for interface descript o ports/110533 olgeni [patch] WITHOUT_NLS support for www/neon and www/sitec o kern/110392 scottl [hptmv] [patch] hptmv very old and missing important f o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o kern/110284 kmacy [if_ethersubr] [patch] Invalid Assumption in SIOCSIFAD o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 kmacy [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110146 [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 o 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 ports/109501 krion [PATCH] add some configurable vars to mail/exim o bin/109478 [libc] [patch] adopt reentrant syslog functions from O a kern/109477 yongari [vr] [patch] onboard via vt6103 ethernet does not work o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/109413 jhb [patch] top(1) shows at least 50% idle when hyperthrea o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/109251 net [re] [patch] if_re cardbus card won't attach o kern/109232 imp [sio] [patch] ibufsize calculation wrong causing data o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) s bin/108743 vwe [patch] who(1): IPv6 addresses truncated to maximum IP p bin/108523 trhodes [patch] daemon(8): support for dropping privileges p bin/108368 [patch] tip(1) coredumped when 'du' capability is used o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o ports/107816 roam [patch] The IPv6 patch breaks the location feature of 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 bin/107515 [patch] ls(1) bug 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 usb/107243 usb [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive q p bin/107171 jh [patch] [ncurses] systat(1) doesn't die when it's xter 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 p bin/106049 [patch] tftpd(8) - improve -w option to support unique o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o docs/105456 keramida [patch] overhaul of the security chapter (14) o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q 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 o stand/104743 standards [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the s bin/104689 matteo [patch] [request] powerd(8): add support for limiting 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 o kern/104389 geom [geom] [patch] sys/geom/geom_dump.c doesn't encode XML f usb/104352 gavin [usb67] [ural] [rum] [patch] ural driver doesnt work f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive p kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI o bin/104092 [patch] iostat(8): missing blanks in iostat output p kern/104079 jh [fdc] [patch] kldunload fdc.ko leads to panic: mutex G o kern/103862 [fdc] [patch] Error with fdformat on -CURRENT o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o kern/103615 emaste [aac] [patch] aac(4) update to the last version availa 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 p kern/102956 dchagin [linux] [patch] Add partial support for SO_PEERCRED in 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 o bin/102638 matteo [patch] sysinstall(8): custom dist set always install o bin/102609 [patch] Add filtering capability to date(1) o kern/102549 [bktr] [patch] fix Pixelview PlayTV Pro 2 on bktr o kern/102540 [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/102394 [patch] ls(1) do not shows inode number symbolic link o kern/102390 [pppd] [patch] kernel pppd don't using pam o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o kern/102211 [ar] [patch] detach raid member and reboot will cause o bin/102162 [patch] tftpd(8): Limit port range for tftpd o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r o usb/101761 usb [usb67] [patch] [request] usb.h: increase maximal size o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o conf/100616 [patch] syslog.conf: lines after exclamation point ign o bin/100535 [patch] cal(1) and ncal(1) do not take into account mu 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 i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system a bin/100089 [patch] ftp(1): default ftp application of FreeBSD giv 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 kern/99758 [pty] [patch] chown/chmod pty slave side in kernel 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 linimon [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. f kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/99017 [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o i386/98932 i386 [i386] [patch] Kernel compilation failed on specific P 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 f docs/98344 linimon [patch] An update of the article "Choosing the FreeBSD o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok p kern/98015 remko [bfe] [patch] bfe(4): double free in error handling pa o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to p conf/97697 matteo [patch] rc.conf - jail__exec_afterstart[0..n] 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/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/96974 obrien [patch] to build FreeBSD kernel with binutils 2.16.92 o bin/96854 imp [patch] devd(8) parses events incorrectly in some case a bin/96840 [libc] [patch] getgrent() does not return large groups o conf/96746 [nanobsd] [patch] Configuration changes and README for f kern/96743 yongari [sk] [patch] broken 32-bit register operations o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel f kern/96393 [libz] [patch] assembler implementations for libz on i 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 matteo [patch] 550.ipfwlimit reports logs even if log size is o stand/96236 standards [patch] [posix] sed(1) incorrectly describes a functio o kern/96030 net [bfe] [patch] Install hangs with Broadcomm 440x NIC in p bin/95979 obrien [patch] burncd(8) fails to fixate CDs p bin/95715 [patch] random(6) busy loop under some conditions o bin/95698 philip [patch] moused(8): Software control of sysmouse o kern/95661 [pci] [patch] pci_pci still not correct for initializi 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 bin/95079 [patch] apply(1) dies when there are two %1 in command s kern/94863 net [bge] [patch] hack to get bge(4) working on IBM e326m o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke 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 o www/94423 danger [patch] XML'ified release todo list o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94273 gnn [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 [patch] new utility: kiconv_cs_preload(8): Utility for 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 kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o docs/93683 chinsan [patch] some typos in klist(1) 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 o bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o kern/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 kern/92675 yongari [fxp] [patch] fxp(4) unable to recover from occasional 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 stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o kern/92238 [ata] [patch] Spurious "atapci1: failed to enable memo o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead 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 kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command o kern/91134 fs [smbfs] [patch] Preserve access and modification time o bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90687 avg [patch] side effect of -delete option of find(1) 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/90384 [patch] chroot patch for sftp-server(8) 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 matteo [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 a kern/89660 geom [vinum] [patch] [panic] due to g_malloc returning null o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o bin/89410 [patch] sh(1) missing \u interpolation and bug/fix in o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco s kern/89305 vwe [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement o conf/88913 rc [patch] wrapper support for rc.subr o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o bin/88056 [patch] [request] cp(1) could really use Linux's -x op o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 [patch] newfs(8): introduce -A flag for newfs to enabl o conf/87925 [patch] [request] modify output of 405.status_ata_raid o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/87729 phk [libc] [patch] most calls to malloc(3) generate warnin o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man o kern/87506 net [vr] [patch] Fix alias support on vr interfaces 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/87032 ipfw [ipfw] [patch] ipfw ioctl interface implementation o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o bin/86485 [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions s bin/86388 [patch] periodic(8) daily should backup bsdlabel(8) / o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) o kern/85886 [an] [patch] an0: timeouts with Cisco 350 minipci o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o i386/85656 i386 [i386] [patch] expose more i386 specific CPU informati o i386/85655 i386 [i386] [patch] expose cpu info for i386 systems o i386/85653 i386 [i386] [patch] relieve hangs in tight loops in process o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o i386/85417 i386 [i386] [npx] [patch] Possible bug in ia32 floating-poi p kern/85320 gonzo [gre] [patch] possible depletion of kernel stack in ip o kern/85266 net [xe] [patch] xe(4) driver does not recognise Xircom XE o kern/85137 des [pseudofs] [patch] panic due to sleep with held mutex 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 p kern/78179 alc [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o bin/78170 [patch] Fix signal handler in bootpd(8) o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( p kern/77913 net [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o kern/77355 [i386] [patch] Detect i*86 subarches for uname s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/77181 mckusick [newfs] [patch] newfs -g largevalue, mkdir, panic p bin/77031 [patch] comm(1) unable to handle lines greater than LI o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o kern/76893 [cam] [patch] Fatal divide in booting processes with B o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver o bin/76362 [patch] sys directory link points to wrong location p docs/76333 trhodes [patch] ferror(3): EOF indicator can be cleared by not 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/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo 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 i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o conf/73786 [patch] added WARNING in spanish to stable-supfile o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o conf/73677 rc [patch] add support for powernow states to power_profi f conf/73337 delphij [nsswitch.conf] [patch] potential invalid free 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 bin/72793 [patch] wicontrol(8) prints out non-printable chars in o bin/72588 [patch] iostat(8) tty stats field concatenation o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [patch] United States International keyboard layout fo 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 s bin/71855 [patch] making kdump(1) WARNS=6 clean o bin/71749 [patch] truss -f causes circular wait when traced proc o bin/71671 [patch] cleanup of the usr.sbin/apmd code 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/71629 [patch] cleanup of the usr.sbin/pppstats 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/71621 [patch] sliplogin(8): cleanup of the usr.sbin/sliplogi 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/71613 [patch] traceroute(8): cleanup of the usr.sbin/tracero 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 kern/71258 alc [vm] [patch] anonymous mmappings not always page align o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 trhodes [msdosfs] [patch] full msdos file system causes corrup o bin/69986 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 usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction p kern/68189 bz [arp] [jail] [patch] arp -a discloses non-jail interfa 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/67550 [patch] tftpd(8) Add BLK_SIZE option to tftpd server 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 [netgraph] [patch] extend ng_eiface(4) control message o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o kern/64556 net [sis] [patch] if_sis short cable fix problems with Net o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN 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 f usb/63837 linimon [uhid] [patch] USB: hid_is_collection() only looks for o docs/63570 doc [patch] Language cleanup for the Handbook's DNS sectio 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 remko [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME f kern/61960 linimon [ata] [patch] BigDrive support for PC-98 architecture a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s kern/61497 ups [kernel] [patch] __elfN(map_insert) bug s i386/61481 [patch] a mechanism to wire io-channel-check to userla s misc/61322 [build] [patch] bsd.dep.mk disallows shell generated f 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/61239 [patch] bootp enhancement, places the dhcp tags into t o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer f kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause 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 kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the 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 docs/59735 kensmith [patch] Adding a reference to Icelandic Rsync to mirro o bin/59708 sysinstall(8): [patch] add sSMTP support for Mail sele o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] handbook update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc o bin/58483 [patch] mount(8): allow type special or node relative o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement o bin/57715 [patch] tcopy(1) enhancement o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s bin/57407 [patch] Better NTP support for dhclient(8) and friends o docs/57298 blackend [patch] add using compact flash cards info to handbook s bin/57255 usb [patch] usbd(8) and multi-function devices s amd64/57250 kmacy [amd64] [patch] Broken PTRACE_GETFPREGS and PTRACE_SET s bin/57088 [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 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 o 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 a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o bin/55539 [patch] Parse fstab(5) with spaces in path names o misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh 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 bin/54401 [patch] pppstats(8) prints 0 for absolute values in ra o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o bin/54365 [patch] add -u option to install(1) for SysV compatibi 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(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 s docs/52071 delphij [patch] Add more information about soft updates into a 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 kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee s bin/51137 [patch] config(8) should check if a scheduler is selec o bin/51070 [patch] add -p option to pom(6) 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 p bin/48730 obrien [patch] burncd(8) does not handle signals and causes d o gnu/48638 [libdialog] [patch] some bug fixes in libdialog 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 marcel [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 to the FAQ p docs/47818 trhodes [patch] ln(1) manpage is confusing 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 o kern/46973 [syscons] [patch] [request] syscons virtual terminals o bin/46888 gad [patch] Add script run hook to newsyslog(8) o bin/46758 [patch] moused(8) enhancements o bin/46676 ru [patch] [build] bsd.dep.mk restricts domain of tags co 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 s bin/45547 [patch] make burncd(8) handle .wav files. o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o conf/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/45222 [patch] daily rejected mail hosts report too long p bin/45193 [patch] truss(1) can't truss itself 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 conf/44717 [patch] update login.conf and unify login capabilities o gnu/44564 peter [patch] Aborted cvs session causes an endless loop in o kern/44365 [headers] [patch] introduce ulong and unchar types o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44202 [rp] [patch] -stable rp driver does not work with mult o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto 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/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 kern/42386 [libkvm] [patch] cleaning code from warnings in libkvm o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE s 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 o conf/41777 [patch] /etc/periodic/daily/100.clean-disks removes li o bin/41674 [patch] iostat(8) column formatting overlaps 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 matteo [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 > a bin/40282 [patch] kill(1) has bad error checking for command lin s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di s threa/39922 threads [threads] [patch] Threaded applications executed with o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy 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 o 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/38256 [patch] linking pax(1) to pax_{cpio|tar} o bin/38168 [patch] [request] installing curses-based versions of o docs/38061 ume [patch] typos in man pages for faith(4) & faithd(8) 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 matteo [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 bin/37013 [patch] ls(1) directory name output trailing slash dup o gnu/36926 bugmeister [patch] send-pr destroys PR if emacs interrupt charact 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 [patch] enhanced periodic scripts: 100.clean-disks, 10 o misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35442 net [sis] [patch] Problem transmitting runts in if_sis dri o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/35262 [boot2] [patch] generation of boot block for headless 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 mux [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 s threa/32295 threads [libc_r] [patch] pthread(3) dont dequeue signals o bin/31987 [patch] allow dump(1) 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 s bin/31304 [patch] fix crunchgen(1) to work with more contrib-kin 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 conf/30812 [patch] giant termcap database update 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) o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30052 archie [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 o kern/29698 emulation [linux] [patch] linux ipcs doesn'work s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/29363 gad [patch] newsyslog(8) can support time as extension o kern/29355 mux [kernel] [patch] add lchflags support s bin/29292 [patch] addition to burncd(8) for specific handling of o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28364 [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u o docs/27605 doc [patch] Cross-document references () o bin/27306 marcel [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 kmacy [patch] proper TCP_NOPUSH/TCP_CORK compatibility o bin/24485 [patch] to make cron(8) handle clock jumps o kern/24435 [libdisk] [patch] changing slice type causes Auto-part o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23254 [patch] yacc(1) accepts bad grammer o bin/23098 sysinstall(8): [patch] if installing on a serial conso o conf/23063 net [arp] [patch] for static ARP tables in rc.network s i386/22944 alc [vm] [patch] isa_dmainit fails on machines with 512MB s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo o kern/21998 kmacy [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 a bin/21089 [patch] vi(1) silently corrupts open file on SIGINT wh o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o bin/19837 ambrisko sysinstall(8): [patch] run Fix It floppy from serial p s bin/19773 markm [patch] telnet(1) infinite loop depending on how fds a s kern/19535 [procfs] [patch] procfs_rlimit tidyup o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation o kern/18271 [patch] simplelock: klds not portable across UP and SM s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus o bin/17289 gad [patch] wrong permissions on /var/run/printer o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15619 peter [patch] standard pppd(8) doesn't authenticate users wi o bin/15205 [patch] Addition to random(6) o bin/15168 [patch] Adding tracklist support to fdformat(1) p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai f kern/13326 kmacy [headers] [patch] additional timeval interfaces for 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 CF6101065694 for ; Mon, 4 Jan 2010 11:13:39 +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 BC0188FC0A for ; Mon, 4 Jan 2010 11:13:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04BDdLC076382 for ; Mon, 4 Jan 2010 11:13:39 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04B8ul7066660 for freebsd-bugs@FreeBSD.org; Mon, 4 Jan 2010 11:08:56 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Jan 2010 11:08:56 GMT Message-Id: <201001041108.o04B8ul7066660@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, 04 Jan 2010 11:13:39 -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 -------------------------------------------------------------------------------- f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/135992 [ar] [2tb] ar(4) driver can NOT drive over 2TB HDD 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/84589 fs [2TB] 5.4-STABLE unresponsive during background fsck 2 o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t 8 problems total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135408 [aac] Adaptec 5405 RAID controller hanging under high o kern/128165 [aac] [patch] sync aac(4) with the latest vendor versi o kern/126697 emaste [aac] aac driver bug. aaccli still doesn't work f kern/123666 scsi [aac] attach fails with Adaptec SAS RAID 3805 controll o kern/103615 emaste [aac] [patch] aac(4) update to the last version availa o kern/91910 scottl [aac] [regression] aac driver hangs on Dell PE800 with 6 problems 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/142263 acpi [acpi] ACPI regression on Asus K8N7-E deluxe motherboa o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o kern/140979 acpi [acpi] [panic] Kernel panic (fatal trap 12: page fault o amd64/140751 acpi [acpi] BIOS resource allocation and FreeBSD ACPI in TO 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 kern/136808 acpi [acpi] panic when switching to s3 o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us o kern/135070 acpi [acpi] [patch] BIOS resource allocation and FreeBSD AC o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve o kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o kern/129618 acpi [acpi] Problem with ACPI on HP Pavilion DV2899 laptop o kern/129563 acpi [acpi] sleep broken on IBM/Lenovo T61 in amd64 mode o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/124744 acpi [acpi] [patch] incorrect _BST result validation for To o kern/124412 acpi [acpi] power off error on Toshiba M40 laptop f kern/123742 [acpi] [panic] kernel panic when boot with acpi disabl o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot o kern/120515 acpi [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc o kern/119356 acpi [acpi]: i386 ACPI wakeup not work due resource exhaust o kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H o kern/118973 acpi [acpi]: Kernel panic with acpi boot o kern/117605 acpi [acpi] [request] add debug.cpufreq.highest o amd64/117316 amd64 [acpi] ACPI lockups on SuperMicro motherboard o kern/116939 acpi [acpi] PCI-to-PCI misconfigured for bus three and can o i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114165 acpi [acpi] Dell C810 - ACPI problem s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/108954 acpi [acpi] 'sleep(1)' sleeps >1 seconds when speedstep (Cx o kern/108695 acpi [acpi]: Fatal trap 9: general protection fault when in o kern/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed o kern/108017 acpi [acpi]: Acer Aspire 5600 o kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext s kern/91038 acpi [panic] [ata] [acpi] 6.0-RELEASE on Fujitsu Siemens Am 40 problems total. Problem reports for tag 'acpi_fujitsu': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121102 acpi [acpi_fujitsu] [patch] update acpi_fujitsu for the P80 1 problem total. Problem reports for tag 'acpica': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/135891 vwe [acpica] bug in acpica/psparse.c 1 problem total. Problem reports for tag 'adw': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo 1 problem total. Problem reports for tag 'ae': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/133239 gavin [ae] [jme] [patch] if_jme can assign duplicate MAC add 1 problem total. Problem reports for tag 'age': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136482 net [age] Attansic L1 Gigabit Ethernet recieves multicasts 1 problem total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126784 [agp] agp.ko doesn't detect Acer Aspire One onboard gr o kern/118962 [agp] Intel GMA 3000 Video Controller Not Recognized U o kern/103733 [agp] i915 driver on hp dc7100: device not recognized s kern/89271 [radeon] [agp] [hang] X.org hangs when heavily using R o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets 6 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 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o amd64/123520 amd64 [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 o kern/114459 [aic] [panic] FreeBSD-CURRENT crash during boot with A 2 problems total. Problem reports for tag 'altq': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 3 problems total. Problem reports for tag 'amd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124667 scsi [amd] [panic] FreeBSD-7 kernel page faults at amd-scsi 1 problem total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/127397 amd64 [amd64] 32bit application on FreeBSD-6.3 amd64 gets SI o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o kern/117607 [amd64] dev.cpu.0.freq not showing up any longer on am s amd64/57250 kmacy [amd64] [patch] Broken PTRACE_GETFPREGS and PTRACE_SET 5 problems total. Problem reports for tag 'amdtemp': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/125383 i386 [amdtemp] [request] please enable amdtemp on i386 1 problem total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/99529 [amr] DELL PowerEdge 2600 with streamer PowerVault 100 o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 o kern/76848 [amr] amr hangs o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o kern/71771 [amr] Hang during heavy load with amr raid controller 8 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o kern/85886 [an] [patch] an0: timeouts with Cisco 350 minipci s kern/75407 net [an] an(4): no carrier after short time o kern/36170 [an] [patch] an(4) does an_init() even if interface is 4 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup f kern/81000 acpi [apic] Via 8235 sound card worked great with FreeBSD 5 2 problems 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/135992 [ar] [2tb] ar(4) driver can NOT drive over 2TB HDD 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/124064 [ar] [patch] cannot handle >16 serial number with Inte o kern/121899 [ar] [patch] Drive detached from Intel Matrix RAID and o kern/108924 [ar] Panics when Intel MatrixRAID RAID1 is degraded o kern/102211 [ar] [patch] detach raid member and reboot will cause o kern/101926 [ar] 6.1-STABLE crashes under heavy disk I/O and acces o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o kern/94393 [ar] PseudoRAID loses track of the master disk o kern/93771 [ar] [panic] atacontrol status ar1 causes panic 14 problems total. Problem reports for tag 'arcmsr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 1 problem total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid o kern/140051 net [bce] [arp] ARP not sent through Bridge Firewall with o 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 p kern/68189 bz [arp] [jail] [patch] arp -a discloses non-jail interfa o conf/23063 net [arp] [patch] for static ARP tables in rc.network 8 problems total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 o kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP and asr o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 4 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141653 [ata] [panic] Panic in ata? o amd64/141112 amd64 [ata] [panic] Kernel panic when booting with any sATA o kern/140752 [ata] HDD power-off procedure is not clean o kern/140251 [ata] [patch] add UDMA5 support to Intel SCH f 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 i386/138948 i386 [ata] [regression] da0: Fi o kern/138851 [ata] FreeBSD by default does not support ATAPI CDs o kern/138537 [ata] [panic] Memory modified after free o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/136356 [ata] SATA / ICH7 problems o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o amd64/135040 amd64 [ata] FreeBSD/amd64 does not (always) detect disk on S o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 o kern/133593 [ata] `atacontrol spindown` won't affect disk until so o kern/132252 [ata] No CD/DVD devices found! o amd64/131906 amd64 [ata] SATA data corruption with Promise PDC20378 (amd6 f kern/131796 [ata] Introducing new USB or eSATA disks results in at 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 amd64/129667 amd64 [ata] Elitegroup A780GM-A IDE controller not recognize o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/128035 [ata] unexpexted detach of external SATA drive f kern/127813 linimon [ata] ata diver dma mode work incorrectly on chip vt82 o kern/127717 [ata] [patch] - support write cache toggling per devic f kern/127517 [ata] sata does not detect SATA-300 disk but instead d p kern/127411 [ata] [panic] ata panics on bad block o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a p kern/127289 [ata] [patch] new pci ids for SiI3132 present on adapt p kern/127250 [ata] Kerneltrap 12 with atacontrol f kern/127119 [ata] incorrect ata device probing o kern/126142 [ata] M5281: READ DMA faults, device detaching o kern/125859 [ata] [patch] sata access failure [regression] a kern/125139 philip [patch] [ata] bugs in ATAPI CD tray control o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/123980 [ata] [patch] Implement ATA UDMA speed limit (hw.ata.a o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE f kern/122368 [ata]: Failure to support SATA/PATA drives on 6.3 and o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e p kern/122045 [ata] [panic] reiniting detached ata channel kills the f kern/121703 [ata] Cannot fdisk/gpt with 1TB SATA disk and 965QM Mo o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o i386/121675 i386 [ata] incorrect fallback to udma33 with CF memory inst o kern/121521 [ata] [patch] add VIA CX700M2 chipset to ata driver o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already o kern/120717 [ata] boot problem when recognizing ata1 o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 f kern/120296 linimon [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/120009 [ata] Burning on FreeBSD is destroying SONY CD-Rs 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/119374 thomas [ata] [regression] ATAPI or ATAPICAM bug (regression i f kern/119303 linimon [ata] SATA HDD missing in 7.0-RC1, ok in 7.0-BETA4; at 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 o kern/118342 [ata] Unable to mount root on ata drive w/ Cyrix 5530 s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o kern/117972 [ata] SATA DLT V4 not recognized properly o kern/117443 [ata] [hang] system hang with ataidle o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A o kern/116935 [ata] Intermittent error with Promise PDC40718 o kern/116415 [ata] 6.2-STABLE does not work on Gigabyte GA-P35-S3 ( o kern/116270 [ata] READ_DMA48 UDMA ICRC error s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp f kern/115614 thomas [ata] Recent ATA driver changes have broken cdrecord [ o kern/115479 [ata] [request] ASUS P5K SE need more support o kern/115232 [ata] Audio CD tracks not displayed properly by atapi 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 o kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o i386/112036 i386 [ata] TIMEOUT - WRITE_DMA retrying, TIMEOUT - READ_DMA o kern/111196 [ata] [hang] SATA drives cause errors and cause system o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/109736 [ata] FreeBSD sysinstall from CD can't find & mount NE s i386/109200 i386 [ata] READ_UDMA UDMA ICRC error cause not detecting ca o kern/108379 [ata] Secondary SATA drive not detected by FreeBSD 6.2 o amd64/107639 [ata] Kernel Panic/Crash on dd if=/dev/ad4 of=/dev/ad6 o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with f kern/107292 [ata] cannot install - Unable to find device /dev/ad0s f kern/107287 [ata] page fault during install on Intel SATA on Intel o kern/106432 [ata] Record of disks (DVD-R) through the k3b program s kern/106340 [ata] [request] Need to control disk write cache on pe f amd64/105531 amd64 [ata] gigabyte GA-M51GM-S2G / nVidia nForce 430 - does s kern/104950 [ata] [request] no support for SATA controller Initio o i386/104719 i386 [ata] Seagate ST3802110A errors/delays when using PIO4 f i386/104572 i386 [ata] issues with detecting HDD on Intel Q965 Express o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra s i386/103624 i386 [ata] [install] Problem installing on Dell Powervault p kern/103075 [ata] SATA disk attach/unplug from a MV88SX5041 freeze o kern/101734 [ata] -CURRENT cannot see SATA drive on ASUS A8N-SLI ( o kern/99652 [ata] nVidia nForce MCP51 controller hangs w/ 2 drives o kern/99567 [ata] Powerup of sleeping IDE drives causes system reb o kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr o kern/99017 [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) o kern/97996 [ata] DMA is broken for VIA 82C596B UDMA66controller o i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96171 [ata] burncd (ATA driver) fails to write in vcd mode o amd64/95888 amd64 [ata] kernel: ad2: TIMEOUT - WRITE_DMA retrying on HP f i386/94911 gavin [ata] [regression] ata regression with DOM-IDE o kern/94155 [ata] 6.1 CF reader problem: "ad1: FAILURE - SETFEATUR f i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot dump. No dump d o kern/93885 [ata] ata(4) failure: SETFEATURES SET TRANSFER MODE se o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92238 [ata] [patch] Spurious "atapci1: failed to enable memo s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 s kern/91038 acpi [panic] [ata] [acpi] 6.0-RELEASE on Fujitsu Siemens Am o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m o kern/85450 [ata] [panic] subdisk6 detached (appears to be a sata 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 f kern/73740 [ata] [panic] 5-3-R#3 panic when accessing nfs exporte f kern/61960 linimon [ata] [patch] BigDrive support for PC-98 architecture o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 129 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/118161 thomas [atapicam] failure message from ATAPI CDROM in the boo o kern/117028 [atapicam] [panic] brelse: free buffer onto another qu o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o kern/108202 [atapicam] atapicam error after upgrade to 6.2 [regres o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o kern/100516 [atapicam] atapicam with ITE IT8212F crashes the syste o i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi o kern/95407 [atapicam] atapicam, cd and /etc/rc.d/devfs problem o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi o kern/80714 [atapicam] drop/boot to single user hangs on 5.4-RELEA a kern/78929 [atapicam] atapicam prevents boot, system hangs o kern/63629 thomas [atapicam] mounting atapicam volume through cd0c cause o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong 13 problems total. Problem reports for tag 'ataraid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134887 [ataraid] source consistency problem o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr 3 problems total. Problem reports for tag 'ate': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/121242 ticso [ate] [patch] Promiscuous mode of if_ate (arm) doesn't 1 problem total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140796 net [ath] [panic] privileged instruction fault o kern/140567 net [ath] [patch] ath is not worked on my notebook PC o kern/140245 net [ath] [panic] Kernel panic during network activity on o kern/137592 net [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/137170 rpaulo [ath] atheros AR9285 not recognised o kern/136836 net [ath] atheros card stops functioning after about 12 ho f kern/135427 vwe [ath] [hang] System freezes when loading Atheros drive o kern/132722 net [ath] Wifi ath0 associates fine with AP, but DHCP or I o kern/131162 net [ath] Atheros driver bugginess and kernel crashes o kern/129750 net [ath] Atheros AR5006 exits on "cannot map register spa o kern/126475 net [ath] [panic] ath pcmcia card inevitably panics under o kern/126214 net [ath] txpower problem with Atheros wifi card o kern/125721 [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 [ath] ath(4) related panic o kern/125501 [ath] atheros cardbus driver hangs o kern/125332 [ath] [hang] crash under any non-tiny networking under o kern/122697 net [ath] Atheros card is not well supported 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/120376 imp [ath] High interrupt load when booting with ath (PCMCI o kern/120282 imp [ath] [panic] resource_list_release: resource entry is f kern/119345 vwe [ath] Unsuported Atheros 5424/2424 and CPU speedstep n 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/115226 vwe [ath] ath0: unable to attach hardware; HAL status 13 o kern/107279 [ath] panic: ath_start: attempted use of a free mbuf! o kern/105348 net [ath] ath device stopps TX f sparc/94483 sam [ath] ath_hal does not work on 6-release/sparc64 o kern/93886 net [ath] Atheros/D-Link DWL-G650 long delay to associate f kern/88082 net [ath] [panic] cts protection for ath0 causes panic 30 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 -------------------------------------------------------------------------------- p usb/140923 thompsa [axe] [patch] [usb8] Add support for new rev of USB Et f usb/140883 usb [axe] [usb8] USB gigabit ethernet hangs after short pe o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/88408 usb [axe] axe0 read PHY failed 4 problems total. Problem reports for tag 'bce': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140970 net [bce] The two NetXtreme II BCM5709S NICs on our HP Bl4 o kern/140684 net [bce] Broadcom NetXtreme II BCM5709 1000Base-T - fail o kern/140051 net [bce] [arp] ARP not sent through Bridge Firewall with o kern/139761 net [bce] bce driver on IBM HS22 [No PHY found on Child MI o kern/136417 [bce] bce BCM5709 "No PHY found on child MII bus" on I o kern/135836 net [bce] bce BCM5709 Watchdog after warm boot - ok after o kern/134658 net [bce] bce driver fails on PowerEdge m610 blade. o amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o kern/125389 [ipmi] [bce] IPMI problem with bce f kern/123172 net [bce] Watchdog timeout problems with if_bce a kern/118238 net [bce] [patch] bce driver shows "no carrier" on Intel S o kern/108542 net [bce] Huge network latencies with 6.2-RELEASE / STABLE o kern/107850 net [bce] bce driver link negotiation is faulty o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 14 problems total. Problem reports for tag 'bfe': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/104349 i386 [bfe] Panic while uploading data via bfe network inter p kern/98015 remko [bfe] [patch] bfe(4): double free in error handling pa o kern/96030 net [bfe] [patch] Install hangs with Broadcomm 440x NIC in 3 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138694 net [bge] FreeBSD 6.3 release does not recognize Broadcom o kern/137279 net [bge] [panic] Page fault (fatal trap 12) NFS server w/ o kern/136876 net [bge] bge will not resume properly after suspend o kern/133328 net [bge] [panic] Kernel panics with Windows7 client o kern/132991 net [bge] if_bge low performance problem s kern/127587 net [bge] [request] if_bge(4) doesn't support BCM576X fami o kern/123347 net [bge] bge1: watchdog timeout -- linkstate changed to D o kern/122551 net [bge] Broadcom 5715S no carrier on HP BL460c blade usi o kern/121080 net [bge] IPv6 NUD problem on multi address config on bge0 o kern/120791 [bge] The Broadcom BCM5703 A2 NIC is running a lot of a kern/118879 net [bge] [patch] bge has checksum problems on the 5703 ch o kern/112570 net [bge] packet loss with bge driver on BCM5704 chipset o kern/109733 net [bge] bge link state issues [regression] o kern/104862 [bge] BCM5704 only works at 10Mbit o kern/104826 andre [bge] FreeBSD 6.1 not RFC 768 (UDP) compliant on Compa o kern/104485 net [bge] Broadcom BCM5704C: Intermittent on newer chip ve o kern/103715 [bge] [request] Broadcom BCM5708SKFB not recognised by s kern/94863 net [bge] [patch] hack to get bge(4) working on IBM e326m o kern/94424 [bge] BGE5721 or BGE5750? o kern/94162 net [bge] 6.x kenel stale with bge(4) o kern/92090 net [bge] bge0: watchdog timeout -- resetting f kern/73538 net [bge] problem with the Broadcom BCM5788 Gigabit Ethern f i386/45773 net [bge] Softboot causes autoconf failure on Broadcom 570 23 problems total. Problem reports for tag 'binutils': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/138983 [binutils] System binutils too old for modern CPUs (la 1 problem total. Problem reports for tag 'bktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o kern/104675 [bktr] METEORSINPUT seemingly not setting input o kern/102549 [bktr] [patch] fix Pixelview PlayTV Pro 2 on bktr 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. 20 problems total. Problem reports for tag 'bluetooth': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/140590 usb [bluetooth] [usb8] ng_ubt(4) ng_l2cap_process_cmd_rej o kern/99200 usb [bluetooth] SMP-Kernel crashes reliably when Bluetooth 2 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/135918 [boot0] [patch] Make BootEasy compatible with NT Drive o i386/134242 i386 [boot0] [patch] improvement i386 boot0 error diagnose o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 3 problems total. Problem reports for tag 'boot0cfg': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/127764 [boot0cfg] [patch] preserve NT disk UID data for boot0 1 problem total. Problem reports for tag 'boot1': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o 1 problem total. Problem reports for tag 'boot2': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35262 [boot2] [patch] generation of boot block for headless 1 problem 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 'bootp': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/137678 [bootp] [patch] libstands bootp/dhcp code always uses 1 problem total. Problem reports for tag 'bpf': S Tracker Resp. Description -------------------------------------------------------------------------------- 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. 3 problems total. Problem reports for tag 'bsd.apache.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/133197 pgollucci [bsd.apache.mk] Rephrase IGNORE statement, kill EOL sp 1 problem total. Problem reports for tag 'bsd.cpu.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari 1 problem total. Problem reports for tag 'bsd.port.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/138228 portmgr [bsd.port.mk] New opt-in knob to compile ports with SS o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe 3 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 'btx': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/142190 i386 [btx] BTX Loader issue on Gigabyte Motherboard 1 problem total. Problem reports for tag 'busdma': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug 3 problems 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 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 o kern/138789 scsi [cam] [patch] cd(4) patch for drives/discs failing the o kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f p kern/130735 scsi [cam] [patch] pass M_NOWAIT to the malloc() call insid 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 kern/119668 scsi [cam] [patch] certain errors are too verbose comparing 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/107243 usb [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive q 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 o kern/76893 [cam] [patch] Fatal divide in booting processes with B s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use s bin/57088 [cam] [patch] for a possible fd leak in libcam.c s kern/28840 gibbs [cam] Possible interrupt masking trouble in sys/cam/ca s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro 21 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/125880 i386 [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 o kern/115371 imp [cardbus] [patch] Device removal leaves resource datab o kern/84954 imp [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 8 problems total. Problem reports for tag 'carp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141023 net [carp] CARP arp replays with wrong src mac o kern/133218 net [carp] [hang] use of carp(4) causes system to freeze o kern/132285 net [carp] alias gives incorrect hash in dmesg o kern/132107 net [carp] carp(4) advskew setting ignored when carp IP us o kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat o kern/127050 net [carp] ipv6 does not work on carp interfaces [regressi p kern/126984 glebius [carp] [patch] add carp userland notifications via dev o kern/126945 net [carp] CARP interface destruction with ifconfig destro o kern/126714 net [carp] CARP interface renaming makes system no longer o kern/125816 net [carp] [if_bridge] carp stuck in init when using bridg f kern/125442 gonzo [carp] [lagg] CARP combined with LAGG causes system pa o kern/120130 net [carp] [panic] carp causes kernel panics in any conste o kern/117448 net [carp] 6.2 kernel crash [regression] o kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) o kern/114095 pf [carp] carp+pf delay with high state limit 15 problems total. Problem reports for tag 'cbb': S Tracker Resp. Description -------------------------------------------------------------------------------- f amd64/123275 amd64 [cbb] [pcmcia] cbb/pcmcia drivers on amd64 failure [re o kern/114550 [cbb] Cardbus WiFi card activation problem f kern/96286 [cbb] [panic] TI1131 PCI CardBus Bridge: driver cbb le 3 problems 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 2 problems total. Problem reports for tag 'ciss': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/136718 gavin [ciss] ciss driver issue on HP DL585 o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125647 [ciss] [panic] System randomly crashes - ciss driver o kern/115997 scottl [ciss] [panic] [patch?] kernel panics on heavy disk I/ o kern/109813 [ciss] ciss(4) driver API header is not installed 6 problems total. Problem reports for tag 'cpufreq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf o kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/128335 [patch] [cpufreq] Missing call to sbuf_delete() in two o amd64/122695 amd64 [cpufreq] Lack of cpufreq control using amd64 eith cor o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o amd64/114270 amd64 [cpufreq] cpufreq doesnt work when compiled in to kern 8 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136123 [crypto] device crypto breaks sparc64 kernel o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/132129 [crypto] Device crypto makes the kernel unbootable o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o kern/115695 [crypto] When "device padlock" defined first ssh to ma f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto 10 problems total. Problem reports for tag 'cue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75710 [cue] cue0 device configuration causes kernel panic 1 problem total. Problem reports for tag 'cx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does not work for 4. 1 problem total. Problem reports for tag 'cxgb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138381 kmacy [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/125806 kmacy [cxgb] cxgb packet counters do not work 2 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 'da': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140091 scsi [da] [patch] allow for da(4) large block transfer than 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 f kern/79262 net [dc] Adaptec ANA-6922 not fully supported o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/30052 archie [dc] [patch] dc driver queues outgoing pkts indefinite 8 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 a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl 3 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 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125034 [devfs] [patch] devfs does not apply rules to newly cr o kern/125030 [devfs] [patch] Command 'devfs ruleset 0' causes panic o kern/124881 [devfs] [patch] [request] Add possibility to check whi o kern/123287 [devfs] structure used after freed in destroy_devl() i o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ o kern/122615 [devfs] [panic] occasional crash/boot while running Xo o kern/114057 [devfs] devfs symlink over device doesn't work o conf/91342 [devfs] Errors in devfs.rules files don't get logged o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media o kern/85751 [devfs] [panic] panic in devfs_setattr() when running 10 problems total. Problem reports for tag 'devfs.rules': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/124853 gonzo [devfs.rules] [patch] devfs_ruleset_use may use freed 1 problem total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh 5 problems total. Problem reports for tag 'disklabel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141235 fs [disklabel] 8.0 no longer provides /dev entries for al 1 problem 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 'dns': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/103464 bz [dns] [jail] jail networking failures to 127.0.0.1 onl 1 problem total. Problem reports for tag 'dpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/38828 scsi [dpt] [request] DPT PM2012B/90 doesn't work 1 problem total. Problem reports for tag 'dri': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 o kern/119507 [dri] mach64.o kernel module version is 1.0.0, but ver o kern/107342 [dri] Radeon dri breaks system o amd64/97337 amd64 [dri] xorg reboots system if dri module is enabled 4 problems total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/138383 brueffer [drm] [patch] NULL pointer dereference in mach64_dma_v o kern/134800 [drm] radeon driver freezes Xorg server with drmwtq o kern/128648 [drm] [hang] crash when using 3D-acceleration with Int f kern/126113 rnoland [drm] Issues with DRM with Intel GM965 chipset f kern/121550 [drm] Can't config graphics for ATI Radeon Xpress 200M f kern/120262 rnoland [drm] "0MB"; no dri with i915G [regression] o kern/116435 [drm] drm/i915 reports memory leak o kern/114995 [drm] acpi_video prevents savage drm from loading succ o kern/114677 [drm] Xorg will not run with dri glx and drm on ATI Ra o kern/114546 [drm] [panic] Sleeping thread owns a non-sleepable loc o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de o kern/93770 [drm] ati 9600 PRO radeon not recognized by the system o kern/90237 [drm] [panic] panic in sis DRM s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel o kern/82064 [drm] DRM not working with SMP 15 problems total. Problem reports for tag 'dtrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141452 [dtrace] DTrace stops tracing because of struct thread o kern/134408 [dtrace] [panic] "opensnoop" DTrace script panics ever o kern/130998 [dtrace] DTrace stops tracing because of struct thread o kern/127441 [dtrace] Dtrace timestamp variable is wrapping as if d o kern/127440 [dtrace] Dtrace arg0/arg1 variables don't contain retu 5 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 o kern/121382 ipfw [dummynet]: 6.3-RELEASE-p1 page fault in dummynet (cor 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 8 problems total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/122195 net [ed] Alignment problems in if_ed o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o kern/84202 net [ed] [patch] Holtek HT80232 PCI NIC recognition on Fre o kern/80853 net [ed] [patch] add support for Compex RL2000/ISA in PnP p i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement 6 problems 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/139142 usb [ehci] [usb8] [patch] ehci drivers (NVIDIA nForce4 USB 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/112461 gavin [usb67] [ehci] ehci USB 2.0 doesn't work on nforce4 f usb/110197 gavin [usb67] [umass] [ehci] Sony PSP umass device does not 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/82660 usb [ehci] [panic] EHCI: I/O stuck in state 'physrd'/panic o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci o usb/79722 usb [ehci] wrong alignments in ehci.h a usb/79656 usb [ehci] RHSC interrupts lost 12 problems total. Problem reports for tag 'elf': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/118540 kaiw [elf] [patch] update sys/sys/elf_common.h with new ema 1 problem total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142019 net [em] em needs "ifconfig em0 down up" when link was gon o kern/141843 net [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/141646 net [em] em(4) + lagg(4) + vlan(4) generates ISL-tagged fr o kern/141285 net [em] hangs down/up intel nic during creating vlan o kern/140778 net [em] randomly panic in vlan/em o kern/140728 net [em] [patch] Fast irq registration in em driver o kern/140647 net [em] [patch] e1000 driver does not correctly handle mu o kern/140326 net [em] em0: watchdog timeout when communicating to windo o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/136168 net [em] em driver initialization fails on Intel 5000PSL m o kern/134956 net [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o kern/134079 net [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/122928 net [em] interface watchdog timeouts and stops receiving p o kern/122772 net [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122373 jfv [em]: unable to recieve on em 82542 w/o promisc o kern/122058 net [em] [panic] Panic on em1: taskq o kern/121624 net [em] [regression] Intel em WOL fails after upgrade to o kern/121298 net [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 f kern/119487 [em] page fault in em taskq with polling enabled 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 net [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 i386/102562 i386 [em] no traffic pass through a em card after approx. a o kern/101226 jfv [em] Access to IPMI module is lost when the em driver o i386/98366 i386 [em] Intel PRO/1000 MT Dual PCI-X: simulatenious 1000 o amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff o kern/91594 net [em] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/10 o kern/80932 jfv [em] [patch] Degraded performance of em driver 36 problems total. Problem reports for tag 'endian': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138737 i386 [endian] [patch] Patch for bswap64(9) operation on IA 1 problem total. Problem reports for tag 'est': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/133388 i386 [est] est causes wrong dev.cpu.0.freq_levels values f amd64/121590 amd64 [est] [p4tcc] [acpi_perf] setting dev.cpu.0.freq somet o i386/119946 i386 [est] sysctl dev.cpu.0.freq on 75 Hz, cannot be change 3 problems total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/85423 i386 [ex] ex(4) does not correctly recognize NIC in PnP mod o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx 2 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/122047 jh [ext2fs] [patch] incorrect handling of UF_IMMUTABLE / o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems 2 problems total. Problem reports for tag 'ext3': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/124621 fs [ext3] [patch] Cannot mount ext2fs partition 1 problem total. Problem reports for tag 'extfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138109 fs [extfs] [patch] Minor cleanups to the sys/gnu/fs/ext2f 1 problem total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119618 [fdc] Double Density Disks do not work correctly p kern/104079 jh [fdc] [patch] kldunload fdc.ko leads to panic: mutex G o kern/103862 [fdc] [patch] Error with fdformat on -CURRENT o kern/97517 [fdc] Floppy device lost permissions when active flopp 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 13 problems total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/133980 fs [panic] [ffs] panic: ffs_valloc: dup alloc o amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" 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/116913 fs [ffs] [panic] ffs_blkfree: freeing free block 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 'fib': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135067 net [patch] [fib] Incorrect KASSERTs in sys/net/route.c o kern/134931 net [route] [fib] Route messages sent to all socket listen o conf/132851 net [fib] [patch] allow to setup fib for service running f 3 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) o kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 3 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan o kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t p kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/113785 firewire [firewire] dropouts when playing DV on firewire o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o kern/73313 simokawa [firewire] Maxtor Onetouch drivers hang or corrupt dat 11 problems total. Problem reports for tag 'fpa': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/101061 vwe [fpa] fea/fpa (DEC FDDI NIC) driver causes kernel pani 1 problem total. Problem reports for tag 'fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, f kern/120991 fs [panic] [fs] [snapshot] System crashes when manipulati 2 problems total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139162 net [fwip] [panic] 8.0-RC1 panics if using IP over firewir 1 problem total. Problem reports for tag 'fwohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re 1 problem total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/140712 yongari [fxp] fxp driver starts with rxcsum on f kern/128181 yongari [fxp] panic in fxp_add_rfabuf f kern/126469 yongari [fxp] [panic] fxp(4) related kernel panic f kern/125195 yongari [fxp] fxp(4) driver failed to initialize device Intel o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC f kern/121983 yongari [fxp] fxp0 MBUF and PAE f kern/114839 yongari [fxp] fxp looses ability to speak with traffic f kern/113427 yongari [fxp] fxp0: device timeout when writing to USB and pla o kern/103332 yongari [fxp] fxp driver does not work correctly on Intel 8255 o kern/92675 yongari [fxp] [patch] fxp(4) unable to recover from occasional o kern/85258 mux [fxp] changing promisc mode on nic can lead to kernel f kern/80784 yongari [fxp] fxp gives device timeouts o kern/12543 [fxp] [patch] cumulative error counters for fxp(4) 13 problems total. Problem reports for tag 'gbde': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo o kern/66162 phk [gbde] gbde destroy error 3 problems total. Problem reports for tag 'gcclibs': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/134604 [gcclibs] [patch] Memory leak in gcclibs/libgomp 1 problem total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141011 geom [geli] Encrypted root, geli password at boot; enter ke o kern/134113 geom [geli] Problem setting secondary GELI key o kern/133931 geom [geli] [request] intentionally wrong password to destr o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120090 [geli] geli boot password input fails when using usb k o kern/120066 [geli] geli boot password input fail when using serial o kern/117188 [geli] System crashes/reboots on access to file on GEL o bin/116782 [geli] geli not updated on migrate from 6.1 to 6.2 rel o kern/115856 geom [geli] ZFS thought it was degraded when it should have o kern/111967 [geli] glabel - label is seemingly not written to disk o amd64/110599 amd64 [geli] geli attach to gmirror device hangs and cannot o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o kern/88601 geom [geli] geli cause kernel panic under heavy disk usage 14 problems total. Problem reports for tag 'geode': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/128014 i386 [geode] [patch] AMD Geode CS5536 watchdog(9) not disab o i386/98215 i386 [geode] [regression] FreeBSD can no longer boot Geode 2 problems total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/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 kern/134044 geom [geom] gmirror(8) overwrites fs with stale data from r 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 f kern/126902 geom [geom] geom_label: kernel panic during install boot f kern/124294 geom [geom] gmirror(8) have inappropriate logic when workin o kern/123122 geom [geom] GEOM / gjournal kernel lock o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de f kern/122415 geom [geom] UFS labels are being constantly created and rem o kern/122067 geom [geom] [panic] Geom crashed during boot o kern/121559 geom [patch] [geom] geom label class allows to create inacc o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass f kern/120021 dougb [geom] [panic] net-p2p/qbittorrent crashes system when o kern/119743 geom [geom] geom label for cds is keeped after dismount and 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/104389 geom [geom] [patch] sys/geom/geom_dump.c doesn't encode XML o kern/98034 geom [geom] dereference of NULL pointer in acd_geom_detach 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 kern/89546 geom [geom] GEOM error o kern/84556 geom [geom] [panic] GBDE-encrypted swap causes panic at shu o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( 32 problems total. Problem reports for tag 'geom_mbr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139847 geom [geom_mbr] load/unload causes system to hang 1 problem total. Problem reports for tag 'geom_part': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 2 problems total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/138390 brueffer [gif] [patch] NULL pointer dereference in gif_input() o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o conf/97014 [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 8 problems total. Problem reports for tag 'gjournal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127420 fs [gjournal] [panic] Journal overflow on gmirrored gjour 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 4 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/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk f kern/132242 geom [gmirror] gmirror.ko fails to fully initialize 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 o kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad 5 problems total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/125239 net [gre] kernel crash when using gre f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/114714 thompsa [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 gonzo [gre] [patch] possible depletion of kernel stack in ip s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with 8 problems total. Problem reports for tag 'gssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134010 [gssapi][patch] Buffer overflow and use-after-free in 1 problem total. Problem reports for tag 'gvinum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141257 fs [gvinum] No puedo crear RAID5 por SW con gvinum 1 problem total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/141765 doc [handbook] [patch] Added note about architectures when o docs/141636 doc [handbook] [patch] Updated info about Firefox in Handb o docs/141245 blackend [handbook][patch] Chapter 31.3 Wireless Networking: Up o docs/140918 doc [handbook] update 8.0 handbook about serial port /dev o docs/140814 doc [handbook][patch] Chapter 15 - Jails: add section on c o docs/140082 doc [handbook] handbook/jails: russian translation is miss o docs/137762 doc [handbook] proposed: mention "make delete-old" in sec 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/132113 doc [handbook] Update handbook jails creation o docs/121585 doc [handbook] Wrong multicast specification 12 problems total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137443 [headers] Including /usr/include/rpc/xdr.h fails with o kern/136386 [headers] [request] Can the following bluez macros be o kern/136216 [headers] Missing prototype declaration for setfib() o o kern/127623 [headers] header definition for cftime is missing. o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o kern/113256 [headers] _limits.h for some CPU has wrong definitions o kern/112938 [headers] [patch] utmp.h is too limiting for modern sy o bin/106355 [headers] macros in stdio.h non-portable (e.g., C++ :: o stand/104743 standards [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/103022 cperciva [headers] /usr/include/crypto/rijndael.h is wrong o stand/96016 standards [headers] clock_getres et al should be in o kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o kern/84981 [headers] [patch] header protection for -interfac a kern/122565 bz [ipsec] [ip6] Possible memory overwrite for IPv6 IPsec 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 18 problems total. Problem reports for tag 'ipf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o kern/79895 net [ipf] 5.4-RC2 breaks ipfilter NAT when using netgraph o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/77273 net [ipf] ipfilter breaks ipv6 statefull filtering on 5.3 s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 14 problems total. Problem reports for tag 'ipfilter': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/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 3 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139581 ipfw [ipfw] "ipfw pipe" not limiting bandwidth o kern/139226 ipfw [ipfw] install_state: entry already present, done o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o kern/137232 ipfw [ipfw] parser troubles o kern/136695 ipfw [ipfw] [patch] fwd reached after skipto in dynamic rul 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/132553 ipfw [ipfw] ipfw doesn't understand ftp-data port o kern/131817 ipfw [ipfw] blocks layer2 packets that should not be blocke o kern/131601 ipfw [ipfw] [panic] 7-STABLE panic in nat_finalise (tcp=0) o kern/131558 ipfw [ipfw] Inconsistent "via" ipfw behavior o kern/130109 net [ipfw] Can not set fib for packets originated from loc o kern/129103 ipfw [ipfw] IPFW check state does not work =( o kern/129093 ipfw [ipfw] ipfw nat must not drop packets o kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o 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 o kern/127209 ipfw [ipfw] IPFW table become corrupted after many changes o bin/125370 ipfw [ipfw] [patch] increase a line buffer limit 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/122109 piso [ipfw] ipfw nat traceroute problem o bin/121424 doc [patch] [ipfw] Rectify ambiguous English in manual o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/118993 ipfw [ipfw] page fault - probably it's a locking problem p kern/117234 ipfw [ipfw] [patch] ipfw send_pkt() and ipfw_tick() don't s o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from p kern/113388 ipfw [ipfw] [patch] Addition actions with rules within spec o kern/112708 ipfw [ipfw] ipfw is seems to be broken to limit number of c o kern/112561 ipfw [ipfw] ipfw fwd does not work with some TCP packets o kern/107305 ipfw [ipfw] ipfw fwd doesn't seem to work o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q 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/98831 ipfw [ipfw] ipfw has UDP hickups o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/97504 ipfw [ipfw] IPFW Rules bug o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o kern/93300 ipfw [ipfw] ipfw pipe lost packets o kern/91847 ipfw [ipfw] ipfw with vlanX as the device o kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface implementation o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/82724 ipfw [ipfw] [patch] [request] Add setnexthop and defaultrou s kern/80642 ipfw [ipfw] [patch] ipfw small patch - new RULE OPTION o kern/74104 ipfw [ipfw] ipfw2/1 conflict not detected or reported, manp o kern/73910 ipfw [ipfw] serious bug on forwarding of packets after NAT o kern/72987 ipfw [ipfw] ipfw/dummynet pipe/queue 'queue [BYTES]KBytes ( o kern/71366 ipfw [ipfw] "ipfw fwd" sometimes rewrites destination mac a o kern/69963 ipfw [ipfw] install_state warning about already existing en 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 o 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/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent 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 60 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/125389 [ipmi] [bce] IPMI problem with bce a kern/123904 [ipmi] ipmi(4) reports negative temperature values on o i386/105175 i386 [ipmi] ipmi acpi trouble on supermicro server a kern/103041 linimon [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 -------------------------------------------------------------------------------- p kern/138384 brueffer [ips] [patch] NULL pointer dereference in ipsd_dump() o i386/121903 i386 [ips] [boot] can't boot on IBM x235 ServeRaid 6M [regr o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may o kern/92164 scottl [ips] [lor] SCSI target mode LOR o kern/57832 scottl [ips] softdep_deallocate_dependencies: dangling deps 5 problems total. Problem reports for tag 'ipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/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 p bin/126468 bz [ipsec] some ipsec configurations make FreeBSD panic f kern/123793 bz [ipsec] [patch] KAME IPSEC does not pass processed pac p kern/123587 bz [ipsec] IPCOMP broken in IPSEC (FAST_IPSEC for RELENG_ o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool f kern/123066 vanhu [ipsec] [panic] kernel trap with ipsec a kern/122565 bz [ipsec] [ip6] Possible memory overwrite for IPv6 IPsec 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 gnn [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs f kern/39233 bz [ipsec]: NonConforming IPsec implementation from FreeB 25 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131087 net [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/110140 net [ipw] ipw fails under load o kern/84861 thompsa [ipw] [patch] still can't get working ipw(4) with adho a kern/82926 thompsa [ipw] ipw(4) doesn't seem to do WPA, also leaves entri 6 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 i386/141942 i386 [irq] interrupt storm (VIA 6421A atapci controller) o i386/141119 i386 [irq] Stop starting on computer with ISA network card o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o i386/122148 i386 [irq] interrupt storm on 7.0 [regression] o kern/119696 [irq] [ral] ral device causes massive interrupt storm o usb/119513 usb [irq] inserting dlink dwl-g630 wireless card results i o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o kern/113138 [irq] interrupt storm on 6.x kernels on an MS-1029 (AM o kern/103532 [irq] Interrupt storm in 6.2-PRERELEASE [regression] o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o 10 problems total. Problem reports for tag 'isa': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/37441 davidxu [isa] [patch] ISA PNP parse problem 1 problem total. Problem reports for tag 'iscsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc 1 problem total. Problem reports for tag 'iso9660': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/95222 fs [iso9660] File sections on ISO9660 level 3 CDs ignored 1 problem total. Problem reports for tag 'isp': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/132394 scsi [isp] - bad underruns with QLogic qla2300 and amd64 o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up 2 problems total. Problem reports for tag 'iwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/131153 net [iwi] iwi doesn't see a wireless network o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/124767 net [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 o conf/113117 linimon [iwi] if_iwi isn't present in today's CURRENT/AMD64 8 problems total. Problem reports for tag 'iwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141256 net [iwn] iwn(4) causes page fault on interface up o kern/140036 net [iwn] [lor] lock order reversal with iwn0_com_lock and f kern/132625 rpaulo [iwn] iwn drivers don't support setting country 3 problems total. Problem reports for tag 'ixgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when o kern/127834 net [ixgbe] [patch] wrong error counting o kern/126688 net [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and 3 problems total. Problem reports for tag 'jail': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/139454 bz [jail] traceroute does not work inside jail p kern/139422 remko [jail] make the jail safe for the parent system o kern/133265 jail [jail] is there a solution how to run nfs client in ja p kern/126368 bz [jail] Running ktrace/kdump in jail leads to stale jai 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 p kern/114325 bz [jail] SIOCGIFADDR ioctl behaves incorrectly inside ja p kern/103464 bz [dns] [jail] jail networking failures to 127.0.0.1 onl o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o bin/78763 pjd [patch] [jail] Added jail support to ps(1) p kern/68189 bz [arp] [jail] [patch] arp -a discloses non-jail interfa 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 14 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 'kbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139144 [kbd] [patch] CapsLock LED should not depend on keymap 1 problem total. Problem reports for tag 'kbdmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/139997 [kbdmap] [patch] Swissgerman keyboard support for MacB 1 problem total. Problem reports for tag 'kbdmux': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c 1 problem total. Problem reports for tag 'kerberos': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/45830 [kerberos] KDC has problems when listening to IPv6 and 1 problem total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o kern/140441 [kernel] [patch] order of arguments for mtx_init is in 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/137213 antoine [kernel] [patch] eliminate wrong usages of (S)LIST_HEA o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/132104 [kernel] [patch] kenv(1) buffer overflow 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/124564 [kernel] [patch] add CPUID bits to ident phenom proces o amd64/124134 amd64 [kernel] The kernel doesn't follow the calling convent 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 power/111296 ppc [kernel] [patch] [request] Support IMISS, DLMISS an DS o kern/110249 kmacy [kernel] [regression] [patch] setsockopt() error regre o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o kern/93331 [kernel] [patch] broken asm in kernel o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o kern/85651 [kernel] [patch] debugging code to show entries in eve o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o kern/81588 phk [kernel] [patch] Devices with SI_CHEAPCLONE flag don't s kern/79339 [kernel] [patch] Kernel time code sync with improvemen s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN s kern/61497 ups [kernel] [patch] __elfN(map_insert) bug 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 o kern/29355 mux [kernel] [patch] add lchflags support 48 problems total. Problem reports for tag 'keyboard': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 kern/103498 [keyboard] momentary system "pauses" when switching VT o kern/102784 [keyboard] system crashes when using hardware function o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o usb/99538 usb [keyboard] while using USB keyboard default params of o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar s usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p o kern/80694 [keyboard] [patch] atkbd looped on Acer TravelMate 270 o kern/77091 [keyboard] Keyboard quits working under X with MAXCONS o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans o kern/41215 [keyboard] console revert back to kbd0 (AT) after KVM o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( 20 problems total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 8 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/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/132715 jfv [lagg] [panic] Panic when creating vlan's on lagg inte f kern/125442 gonzo [carp] [lagg] CARP combined with LAGG causes system pa o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices o kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge 8 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115526 piso [libalias] libalias doesn't free memory o kern/105579 piso [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/121556 kientzle [libarchive] ISO9660 decompression extension unsupport 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep o kern/141956 [libc] signal(3): siginfo->si_pid null in signal handl o kern/141939 [libc] [patch] strptime(3) confuses July with June wit o bin/141753 [libc] [patch] double-free in reallocf(3) s stand/141705 standards [libc] [request] libc lacks cexp (and friends) o kern/141682 [libc] [patch] Faster version of strncpy(3) o threa/141198 threads [libc] src/lib/libc/stdio does not properly initialize o kern/140690 [libc] [patch] swab(3) with negative len should do not p bin/140497 delphij [libc] [patch] Maintainance update for sscanf.c p bin/140496 delphij [libc] [patch] Maintainance update for sprintf.c 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/139019 [libc] [patch] Add xdr_sizeof() to libc. o kern/138999 net [libc] lighttpd/php-cgi with freebsd sendfile(2) enabl 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 p kern/134513 jh [libc] [patch] fts(3) FTS_NOCHDIR misbehavior with emp o kern/134391 [libc] dladdr(3) does effectively not work on main pro o kern/133776 [libc] [patch] snprintf(3) and vsnprintf(3) do not pro o kern/133246 [libc] dlclose(3) gives segfault when called in the fi o kern/131623 [libc] gethostbyname(2): output of gethostbyname_r doe f kern/131602 gavin [libc] sendfile(2) sends corrupted data o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error a bin/130504 dds [libc] Serious bug in regular expression library (rege o kern/128933 [libc] realpath(3) does not follow SUS specification f o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/126289 [libc] select(2) apparently consumes cpu when it shoul 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/123095 [libc] sendfile(2): Suspected sendfile data corruption f kern/122061 [libc] dlsym(3) is very slow when a symbol cannot be f o kern/121656 [libc] [patch] telldir(3) issues o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o bin/116074 [libc] fnmatch() does not handle FNM_PERIOD correctly o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware o kern/115196 bushman [libc] [patch] [request] Implement getgroupmembership( 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/113398 [libc] [patch] initgroups fails rather than truncates o amd64/112222 amd64 [libc] 32-bit libc incorrectly converts some FP number 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 kern/103312 [libc] dlsym(NULL,) doesn't work properly o bin/102515 [libc] fsck_ufs crashes if no console at all o kern/100709 net [libc] getaddrinfo(3) should return TTL info o bin/99800 [libc] [patch] Add support for profiling multiple exec a bin/96840 [libc] [patch] getgrent() does not return large groups o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o bin/95002 [libc] hash db source code has a bug which prevents us o stand/94729 standards [libc] fcntl() throws undocumented ENOTTY o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi p kern/90580 jilles [libc] wordexp(3) fails to check for EINTR o kern/87729 phk [libc] [patch] most calls to malloc(3) generate warnin o threa/83914 threads [libc] popen() doesn't work in static threaded program o kern/82980 [libc] realpath(3) treats regular files as directories p kern/81987 matteo [libc] [patch] memory leaks in libc/rpc s kern/79048 [libc] realloc() copies data even when the size of all o kern/76485 [libc] sched_getparam(2) returns weird priority number o kern/76398 [libc] stdio can lose data in the presence of signals o kern/75855 adrian [libc] getpwent(3) functions on 5.3 with large passwor s bin/75767 [libc] [request] "fdclose" function in libc o kern/70511 [libc] When fread(3)ing with buffering turned off, man o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/68690 [libc] write(2) returns wrong value when EFAULT s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc s kern/56720 [libc] [request] UNICODE support in Resolver o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o kern/45293 [libc] kevent denies to observe /dev/tty o kern/42956 [libc] dlclose gives "invalid shared object handle" wh 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 kern/27835 standards [libc] execve() doesn't conform to execve(2) spec in s o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d 88 problems total. Problem reports for tag 'libc_r': S Tracker Resp. Description -------------------------------------------------------------------------------- s threa/32295 threads [libc_r] [patch] pthread(3) dont dequeue signals 1 problem total. Problem reports for tag 'libcrypt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/75934 [libcrypt] [patch] missing blowfish functionality in p 2 problems total. Problem reports for tag 'libcrypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117709 simon [libcrypto] [patch] Base openssl does not define OPENS 1 problem total. Problem reports for tag 'libcsu': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/140089 [libcsu] [patch] libcsu: Bump to WARNS=6 1 problem total. Problem reports for tag 'libdialog': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/48638 [libdialog] [patch] some bug fixes in libdialog 1 problem total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o kern/97164 [libdisk] libdisk's Open_Disk() crashes 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 o kern/24435 [libdisk] [patch] changing slice type causes Auto-part 6 problems total. Problem reports for tag 'libedit': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117348 [libedit] Loading history file sometimes fails in libe 1 problem total. Problem reports for tag 'libelf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134502 [libelf] why 32 bit app not use /libexec/ld-elf32.so.1 1 problem 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/140835 [libfetch] fetchParseURL(3) returns success with inval o kern/133491 [libfetch] [patch] Digest HTTP authentication support o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/125350 des [libfetch] [patch] src/lib/libfetch add support for de 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 -------------------------------------------------------------------------------- o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi 1 problem total. Problem reports for tag 'libgssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/113266 harti [libgssapi] [patch] Missing handling of mech_type in g 1 problem total. Problem reports for tag 'libi386': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134590 [libi386] [gpt] [patch] Bootloader support for hybrid 1 problem total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134249 [libiconv] [patch] ignore case for character set names s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver 2 problems total. Problem reports for tag '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 -------------------------------------------------------------------------------- a kern/137890 [libkvm] [patch] ps segfaults with -ax when inspecting o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free o kern/42386 [libkvm] [patch] cleaning code from warnings in libkvm 4 problems total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133583 [libm] fma(3) does not respect rounding mode using ext o stand/83845 standards [libm] [patch] add log2() and log2f() support for libm 2 problems 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 bin/141016 [libpam] PAM checks in sshd too few? o kern/137586 des [libpam] Need to build pam_ssh module even it openssh p kern/117512 des [libpam] [patch] document .opieaccess for pam_opieacce o bin/115946 des [libpam] [patch] not thread-safe o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc s kern/20333 des [libpam] ftp login fails on unix password when s/key a 12 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n 1 problem 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 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/83424 [libstand] [patch] improper handling of malloc failure 2 problems total. 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/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o kern/141633 ed [libteken] xterm emulator and screen maps = no vt100 p 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] Missing/incorrect initialisation and memory l o usb/140259 usb [libusb] [patch] [usb8] libusb-1.0 portability/compati o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker 3 problems total. Problem reports for tag 'libusbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r o kern/83451 [libusbhid] [patch] improper handling of malloc failur 2 problems 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 -------------------------------------------------------------------------------- o kern/141034 [libz] libz in base system does not use symbol version f kern/96393 [libz] [patch] assembler implementations for libz on i 2 problems total. Problem reports for tag 'linprocfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/130724 emulation [linprocfs] [patch] cpuinfo in linprocfs is dated, cau o kern/94528 [linprocfs] linprocfs /proc/memory reports wrong size o kern/56451 emulation [linprocfs] /compat/linux/proc/cpuinfo gives wrong CPU o kern/31048 des [linprocfs] /proc/meminfo cannot handle multiple swap 4 problems total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141439 emulation [linux] [patch] linux_exit_group kills group leader o kern/140156 emulation [linux] cdparanoia fails to read drive data o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest o kern/138860 emulation [linux] linux_socketcall() causing buffer overflow o ports/136229 emulation [linux] emulators/linux_base-f10: certain linux apps l p kern/134251 dchagin [linux] skype-2.0.0.72 broke with recent kernel change o 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 p bin/120055 attilio [linux] kdump(1) segfaults on freebsd6_mmap syscall p kern/102956 dchagin [linux] [patch] Add partial support for SO_PEERCRED in f kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/86619 [linux] linux emulator interacts oddly with cp o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o kern/21463 emulation [linux] Linux compatability mode should not allow setu 18 problems total. Problem reports for tag 'lo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop p kern/123568 gnn [lo] loopback interface error (don`t ask) o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o 3 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/138211 gavin [loader] Boot fails on Intel X5550 o i386/127981 i386 [loader] Stack underflow preventing boot [regression] f kern/120127 [loader] Loading of gzip'd mfsroot from pxeboot(8) cau o i386/112635 i386 [hang] [loader] Hang during boot installation o kern/110995 kmacy [loader] [patch] loader wastes space worth symtab size o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re f i386/93762 gavin [hang] [loader] Machine lockup at boot loader countdow o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same 10 problems total. Problem reports for tag 'locale': S Tracker Resp. Description -------------------------------------------------------------------------------- f conf/109367 i18n [locale] UTF8 encoded locales and problem collating ac p conf/105100 [patch] [locale] no support for lv (latvian) locale f conf/91106 i18n [locale] date definitions in pl_PL locale are wrong 3 problems total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117973 [panic] [lpt] 7.0-BETA2: repeatable panic while printi o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer o kern/73744 [lpt] printing via cups causes "Interrupt storm" warni o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting 5 problems total. Problem reports for tag 'mac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa 1 problem total. Problem reports for tag 'make.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/114082 [make.conf] default CFLAGS have a blank at the end 1 problem total. Problem reports for tag 'makefile': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect 1 problem total. Problem reports for tag 'mbuf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137145 [mbuf] [patch] Reference count computing isn't correct a kern/134355 [mbuf] comments for m_getm2 inconsistent with behaviou o kern/122743 net [mbuf] [panic] vm_page_unwire: invalid wire count: 0 3 problems total. Problem reports for tag 'mca': S Tracker Resp. Description -------------------------------------------------------------------------------- o ia64/113102 ia64 [MCA] Multiple records can have the same sequence numb 1 problem total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133170 [md] [panic] panic when detaching swap-backed md(4) di o conf/122968 [md] md swapfile multiplication after init 1 o kern/122288 [md] [patch] mdconfig(8) returning negative unit numbe o conf/118113 [md] mdconfig init script requires image to be on root o kern/81161 [md] Images mounted through mdconfig on a read-only fs p kern/80136 trasz [md] [reboot] mdconfig can reboot the system 6 problems total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140416 [mfi] mfi driver stuck in timeout o kern/124989 [mfi] mfi driver error - unexpected sense o kern/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok 4 problems total. Problem reports for tag 'mfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52445 [mfs] panic when mounting floppy on MFS filesystem 1 problem total. Problem reports for tag 'minidump': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/139614 amd64 [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 'mirrors': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/138679 [mirrors] Current 7.2-STABLE i386 kernel won't build: 1 problem total. Problem reports for tag 'mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC 1 problem total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 2 problems total. Problem reports for tag 'mmc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141756 [mmc] MMC card attached to blocks keybo 1 problem total. Problem reports for tag 'mmcsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o amd64/131314 amd64 [modules] [panic] large modules fail to load on amd64 o kern/122782 amd64 [modules] accf_http.ko kernel module is not loadable a amd64/117186 amd64 [modules] kldload Unsupported file type on STABLE amd6 o kern/114291 kmacy [RFE] [modules] [patch] add dynamic module references o kern/96346 [modules] [patch] disable build of modules that are al o kern/88659 ipfw [modules] ipfw and ip6fw do not work properly as modul s kern/83738 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo o usb/80829 usb [modules] [panic] possible panic when loading USB-modu 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 o kern/68076 [modules] Page fault when the sequence "kldunload ucom o misc/60503 [modules] small error in modules installation f kern/48976 gavin [modules] nwfs.ko oddity 14 problems total. Problem reports for tag 'mount': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/39329 [mount] '..' at mountpoint is subject to the permissio 1 problem total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o kern/89166 [mouse] jumpy mouse movement o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/86298 usb [mouse] Known good USB mouse won't work with correct s 5 problems total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/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 o kern/130330 scottl [mpt] [panic] Panic and reboot machine MPT driver when 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 o kern/115606 [mpt] [panic] Panic while using mpt controller o kern/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o kern/96040 [mpt] LSI1030 mpt0: bullet missed in timeout 14 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/140134 fs [msdosfs] write and fsck destroy filesystem integrity o kern/138524 fs [msdosfs] disks and usb flashes/cards with Russian lab o kern/133174 fs [msdosfs] [patch] msdosfs must support utf-encoded int 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 p kern/116608 fs [msdosfs] [patch] msdosfs fails to check mount options o kern/111843 fs [msdosfs] Long Names of files are incorrectly created o kern/109024 fs [msdosfs] mount_msdosfs: msdosfs_iconv: Operation not 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 o kern/93634 vwe [msdosfs] False access to renamed files/directories (c 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 trhodes [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 27 problems total. Problem reports for tag 'msk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139093 yongari [msk] msk FIFO rx overrun o kern/134401 net [msk] [panic] Kernel Fatal trap 12: page fault while i o kern/133204 net [msk] msk driver timeouts o kern/128884 net [msk] if_msk page fault while in kernel mode o kern/124127 net [msk] watchdog timeout (missed Tx interrupts) -- recov f kern/119613 yongari [msk] mskc0: Uncorrectable PCI Express error o kern/116853 yongari [msk] msk watchdog timeout f kern/114631 yongari [msk] "Tx descriptor error" with Marvell Yukon 8 problems total. Problem reports for tag 'mtree': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/138150 [mtree] [patch] fix for src/etc/Makefile mtree 1 problem total. Problem reports for tag 'mtx': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/135692 [mtx] [witness] blockable sleep lock - kernel panic on 1 problem total. Problem reports for tag 'multicast': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/138666 net [multicast] [panic] not working multicast through igmp 1 problem 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 'mxge': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/136814 amd64 [mxge] mxge driver error o amd64/130483 amd64 [mxge] MSI must be disabled when Myricom 10Gbps Card i 2 problems total. Problem reports for tag 'myk': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/130329 gavin [myk] panic 1 problem total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/140436 [nanobsd] pkg-add process fails when there is no /usr/ o misc/140173 [nanobsd] [patch] Small nanobsd pkg install change o misc/138347 [patch] [nanobsd] nanobsd build is broken due to mdcon o kern/138341 [nanobsd] [patch] 8.0-BETA3: nanobsd build broken due o misc/136889 embedded [nanobsd] [path] nanobsd error reporting and other ref o misc/135588 embedded [nanobsd] simple patch for adding amd64 support o misc/123240 [nanobsd] [patch] rerunning nanobsd.inc.sh fails becau o conf/96746 [nanobsd] [patch] Configuration changes and README for 8 problems total. Problem reports for tag 'nat': S Tracker Resp. Description -------------------------------------------------------------------------------- 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: 2 problems total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/119903 [ncurses] Fast increase in loading of the processor. A p bin/107171 jh [patch] [ncurses] systat(1) doesn't die when it's xter o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) 3 problems total. Problem reports for tag 'ndis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142197 net [ndis] [patch] ndis is missing media status reporting 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/129580 net [ndis] Netgear WG311v3 (ndis) causes kenel trap at boo p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani o kern/124225 cokane [ndis] [patch] ndis network driver sometimes loses net o kern/118493 weongyo [ndis] [patch] a trivial fix when ndis sets `ndis_reso 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 net [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o docs/114184 doc [patch] [ndis]: add info to man 4 ndis o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 f kern/89738 [ndis] [hang] Can't make WL8000PCM wifi card work with s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress 17 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/116697 kmacy [net] [patch] ifconfig's name argument has no effect o f kern/110720 kmacy [net] [patch] [request] support for interface descript 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 o kern/83622 brooks [net] [patch] add network interfaces labeling support s kern/81147 net [net] [patch] em0 reinitialization while adding aliase s kern/12071 fanf [net] [patch] new function: large scale IP aliasing 7 problems total. Problem reports for tag 'netatalk': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/4184 rwatson [netatalk] [patch] minor nits in sys/netatalk 1 problem total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140682 fs [netgraph] [panic] random panic in netgraph o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o kern/137775 net [netgraph] [patch] Add XMIT_FAILOVER to ng_one2many 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 [netgraph] Kernel Panic on Binding to an ip to a virtu o kern/104751 net [netgraph] kernel panic, when getting info about my tr o kern/102540 [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 [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/82881 [netgraph] [panic] ng_fec(4) causes kernel panic after o sparc/80410 sparc64 [netgraph] netgraph is causing crash with mpd on sparc o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE 18 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133786 net [netinet] [patch] ip_input might cause kernel panic o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o kern/132832 net [netinet] [patch] tcp_output() might generate invalid o kern/131536 net [netinet] [patch] kernel does allow manipulation of su o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/121706 net [netinet] [patch] "rtfree: 0xc4383870 has 1 refs" emit 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 9 problems total. Problem reports for tag 'netisr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/100519 net [netisr] suggestion to fix suboptimal network polling 1 problem total. Problem reports for tag 'newfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77181 mckusick [newfs] [patch] newfs -g largevalue, mkdir, panic 1 problem total. Problem reports for tag 'newusb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/133989 usb [newusb] [ukbd] USB keyboard dead at mountroot> prompt o usb/130122 usb [newusb] DVD drive detects as 'da' device 2 problems total. Problem reports for tag 'nfe': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki o kern/123429 net [nfe] [hang] "ifconfig nfe up" causes a hard system lo o i386/121549 i386 [nfe]: nfe interface locks up during rc.conf initializ o kern/120232 net [nfe] [patch] Bring in nfe(4) to RELENG_6 o amd64/115126 yongari [nfe] nfe0: watchdog timeout (missed Tx interrupts) -- o i386/106789 i386 [nfe] or [nve]: Internal NIC of GA-K8N51GMF-RH does no 6 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/142102 sparc64 [nfs] [panic] FreeBSD 8.0 kernel panics on sparc64 whe o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS o bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o kern/139363 fs [nfs] diskless root nfs mount from non FreeBSD server o kern/137327 dfr [nfs] nfs nlm memery leak o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o 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/132934 [nfs] Cancel of a NFS-lock fails repeatedly o kern/131995 fs [nfs] Failure to mount NFSv4 server 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/124280 [nfs] [panic] FreeBSD 7/amd64 STABLE crash o kern/123755 dfr [nfs] fstat(1) fails to return ESTALE with rename()d f 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 kmacy [nfs] 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/114111 [nfs] System crashes while writing on NFS-mounted shar 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/94256 dfr [nfs] nfs locking/rpc.lockd doesn't understand file de o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur o kern/85894 [nfs] [panic] nfs_timer / nfs_socket.c:1146 panic o kern/84968 [nfs] programs on nfs4 mounts won't execute o kern/84965 [nfs] nfs4 mount generates NFS4ERR_BAD_SEQID o kern/84964 [nfs] nfs4 mount doesn't handle NFS4ERR_GRACE o kern/84953 kuriyama [nfs] NFS locking issue in RELENG_6/i386/SMP o kern/82805 [nfs] [panic] sched_switch ched_4bsd.c:865 / nfs_inact o kern/81770 [nfs] Always "NFS append race" at every NFS mount with o kern/79336 [nfs] NFS client doesn't detect file updates on Novell s kern/78884 [nfs] [patch] nfs client cache negative lookups o kern/78673 [nfs] [patch] nfs client open resets attrstamp ever if o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea s kern/67545 [nfs] NFS Diskless Mount Option Suggestion a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/54383 net [nfs] [patch] NFS root configurations without dynamic 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/41216 [nfs] Get "NFS append race" error o kern/35669 [nfs] NFSROOT breaks without a gateway o kern/33203 [nfs] "got bad cookie" errors on NFS client o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl f kern/26142 vwe [nfs] Unlink fails on NFS mounted filesystem o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo s kern/17108 [nfs] SecureRPC not supported in mount_nfs command 70 problems total. Problem reports for tag 'ng_mppc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/123045 gonzo [ng_mppc] ng_mppc_decompress - disabling node 1 problem total. Problem reports for tag 'ng_nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125704 [ng_nat] kernel libalias: repeatable panic 1 problem total. Problem reports for tag 'nis': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o 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/52343 [nis] login(1) problem on the server 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 s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus 20 problems total. Problem reports for tag 'notes': S Tracker Resp. Description -------------------------------------------------------------------------------- p docs/141353 jhb [NOTES] [patch] i386 NOTES says building acpi into ker o kern/135989 [NOTES] [patch] device vr support D-Link DFE-520TX, bu 2 problems total. Problem reports for tag 'nsswitch.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c f conf/73337 delphij [nsswitch.conf] [patch] potential invalid free o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on 3 problems total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o kern/117314 fs [ntfs] Long-filename only NTFS fs'es cause kernel pani o kern/116515 remko [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 p kern/89966 rodrigc [ntfs] [panic] mounting ntfs causes kernel panic in so 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 13 problems total. Problem reports for tag 'null': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139014 [null] /dev/null must be immunable to delete/unlink o kern/138526 [null] /dev/null does not support nonblocking operatio 2 problems total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/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 6 problems total. Problem reports for tag 'nve': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118990 [nve] nve + PAE bus_addr_t/void * inconsistencies s amd64/108861 amd64 [nve] nve(4) driver on FreeBSD 6.2 AMD64 does not work o i386/106789 i386 [nfe] or [nve]: Internal NIC of GA-K8N51GMF-RH does no o kern/106243 net [nve] double fault panic in if_nve.c on high loads o amd64/84027 obrien [nve] if_nve gets stuck 5 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/127222 usb [ohci] Regression in 7.0 usb storage generic driver o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o usb/79269 usb [ohci] USB ohci da0 plug/unplug causes crashes and loc 9 problems total. Problem reports for tag 'padlock': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/135014 amd64 [padlock] Using padlock(4) in 8-current triggers "fpud 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/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 7 problems total. Problem reports for tag 'parallels': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139423 emulation [parallels] Networking does not work on amd64 guest on o kern/138944 emulation [parallels] [regression] Parallels no longer works in 2 problems total. Problem reports for tag 'patm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 1 problem total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp o i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card w/ Advansys 3 problems total. Problem reports for tag 'pccbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128608 [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 'pcfclock': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/138388 brueffer [pcfclock] [patch] NULL pointer dereference in pcfcloc 1 problem total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 s kern/133733 [pci] [patch] Incorrect record in pci_vendors for Broa 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 i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system o kern/95661 [pci] [patch] pci_pci still not correct for initializi o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o kern/89837 [pci] PCI code outputs superfluous "failed to enable/d o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o kern/65355 [pci] [patch] TC1000 serial ports need enabling o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the 12 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/141664 usb [pcm] Logitech USB microphone failure [regression] 1 problem total. Problem reports for tag 'pcmcia': S Tracker Resp. Description -------------------------------------------------------------------------------- f amd64/123275 amd64 [cbb] [pcmcia] cbb/pcmcia drivers on amd64 failure [re o kern/117026 imp [pcmcia]: Panic while removing PCMCIA wireless card o kern/94898 [pcmcia] GPRS PCMCIA card cause interrupt storm and co 3 problems total. Problem reports for tag 'pcvt': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel video/ke o stand/54839 standards [pcvt] pcvt deficits o stand/54833 standards [pcvt] more pcvt deficits a kern/26348 [pcvt] scon -s, page fault in HP mode 4 problems total. Problem reports for tag 'periodic': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/123516 [periodic] Daily Security Logs Not Reporting Failed Lo 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 5 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/121704 pf [pf] PF mangles loopback packets 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 o kern/111220 pf [pf] repeatable hangs while manipulating pf tables 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 34 problems total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker 3 problems total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/116453 [picobsd] picobsd build script fails for not exist log 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 misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt p misc/15876 edwin [picobsd] PicoBSD message of the day problems 6 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93685 [pipe] select on pipe write fails from '0' end o kern/77493 [pipe] freebsd 5.3 + bash process substitution fails d 2 problems 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 kern/117242 [powerd] [hang] console hangs when powerd is adaptive o i386/106850 i386 [powerd] powernow0 attach returned 6 o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE 3 problems total. Problem reports for tag 'ppbus': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/138387 brueffer [ppbus] [patch] NULL pointer dereference in lptopen() o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 2 problems total. Problem reports for tag 'ppc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142157 [ppc] Don't find Printer port at "NetMos NM9835 Dual U 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141134 qingli [ppp] "ioctl (SIOCAIFADDR): File exists" error when co o kern/138525 [ppp] [panic] Kernel corruption of pppoe lists o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o conf/119550 [ppp] ppp not starting during bootup. o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o kern/99408 [ppp] problems with ppp and arp 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 [ppp] Usermode PPP hangs on boot when NIS configured o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 17 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/109308 net [pppd] [panic] Multiple panics kernel ppp suspected [r o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/102390 [pppd] [patch] kernel pppd don't using pam o kern/99607 [pppd] pppd hangs kernel due to interrupt flood from s o bin/98542 [pppd] pppd(8) daemon unexpectently died , Exit 1 o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr 7 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 'pseudofs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85137 des [pseudofs] [patch] panic due to sleep with held mutex 1 problem total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/127887 [psm] PSM0 not detected by the KERNEL in Compaq Prolia o bin/122235 [psm] freebsd-7.0 moused(8) problems with ALPS GlidePo o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 o kern/109161 philip [psm] synaptic touchpad doesn't work o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o kern/91339 [psm] mousedriver do not recognize aditional buttons o s i386/85072 i386 [psm] ps/2 Mouse detection failure on compaq chipset o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti s kern/80844 vwe [psm] [patch] Increase compatibility of psm driver wit o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation 17 problems total. Problem reports for tag 'pst': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/121454 acpi [pst] Promise SuperTrak SX6000 does not load during bo o i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst 2 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 o kern/99758 [pty] [patch] chown/chmod pty slave side in kernel f kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause 3 problems total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142085 [puc] [patch] Few lines to pucdata.c to support for Te o kern/137436 [puc] [patch] Fix puc driver to support newer Timedia o kern/134878 [puc] [patch] Add support for Oxford OXPCIe954 and OXP o kern/132271 [puc] [patch] puc support for a generic card o kern/124128 [puc] puc driver doesn't support VScom PCIex-800H 8-po p kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- 10 problems total. Problem reports for tag 'pxeboot': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/123981 i386 [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 o kern/90368 [pxeboot] pxeboot misses ${class} parameter when booti 5 problems total. Problem reports for tag 'queue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119307 emaste [queue] [patch] TRASHIT macro blasts list header if RE 1 problem total. Problem reports for tag 'quotas': S Tracker Resp. Description -------------------------------------------------------------------------------- s bin/42004 mpp [quotas] quota is still IPv4 only, and not INET indepe 1 problem total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] o kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati o kern/119850 [radeon] radeon module doesnt work right, when loaded o kern/108829 [radeon] radeon module fails with thinkpad T43 s kern/89271 [radeon] [agp] [hang] X.org hangs when heavily using R 5 problems total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 o kern/134168 net [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) f kern/125502 net [ral] ifconfig ral0 scan produces no output unless in 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 [reg 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/103200 [ral] ral driver for RELENG_6 is out-of-date with resp o kern/95519 net [ral] ral0 could not map mbuf o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP o kern/82456 [ral] WITNESS warning/backtrace in if_ral 17 problems total. Problem reports for tag 'random': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc 1 problem total. Problem reports for tag 'rc': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/138208 rc [rc] [patch] Making rc.firewall (workstation) IPv6 awa o conf/137629 rc [rc] background_dhclient rc.conf option causing double 2 problems total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu 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/133987 rc [rc.d] defaultroute broken with DHCP in some cases o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o conf/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 10 problems total. Problem reports for tag 'rc.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/141909 rc [rc.subr] [patch] add rc.conf.d support to /usr/local 1 problem total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/123563 yongari [re] watchdog timeout o kern/123166 yongari [re] CARP messages filtered by Realtek driver on > 6.2 f amd64/122970 yongari [re] [hang] RealTek 8168/8111B couses system crash f kern/119047 yongari [re] Not correct working RealTek 8168/8111B PCIe Gigab o kern/109251 net [re] [patch] if_re cardbus card won't attach o kern/108485 [re] stress2-udp with realtek 8169S gigabit interface f amd64/106918 yongari [re] Asus P5B with internal RealTek PCIe Ethernet gets o kern/84584 yongari [re] re(4) spends too much time in interrupt handler ( o i386/70832 yongari [re] re0: watchdog timeout on Evo N1015v 9 problems total. Problem reports for tag 'remove': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/138639 kuriyama [REMOVE] www/trac-webadmin was incorporated to www/tra 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 -------------------------------------------------------------------------------- s kern/134517 yongari [rl] [patch] Realtek 8111C Driver Backport for FreeBSD o kern/100290 yongari [rl] rl0: watchdog timeout [regression] o kern/71045 [rl] [vr] DHCP-Request is sets other device's ip to nu 3 problems total. Problem reports for tag 'route': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134931 net [route] [fib] Route messages sent to all socket listen o kern/134531 net [route] [panic] kernel crash related to routes/zebra 2 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 -------------------------------------------------------------------------------- f kern/117711 matteo [rpc] rpcbind binds to all interfaces on random ports f conf/96412 linimon [rpc] 2 rpc.lockds launched at boot ? blocking problem s bin/94892 [rpc] rpc.lockd does not interoperate with Solaris 10 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 6 problems total. Problem reports for tag 'rpc.quotad': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support 1 problem total. Problem reports for tag 'rtalloc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs 1 problem total. Problem reports for tag 'rtc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/70649 [rtc] system clock slows down when heavily loaded o kern/63431 [rtc] motherboard going to suspend mode stops system c 2 problems total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/139723 [rtld] Quagga/zebra abort trap 6, FreeBSD 8.0-RC1 1 problem total. Problem reports for tag 'rum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141777 net [rum] [patch] Support usbdevs / rum(4) for Buffalo WLI o kern/141696 net [rum] [panic] rum(4)+ vimage = kernel panic a usb/138904 usb [rum] [panic] [usb67] unpluging USB wifi card panics s o amd64/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a o 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] Kernel panic after NOMEM caused by 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 f usb/104352 gavin [usb67] [ural] [rum] [patch] ural driver doesnt work 14 problems total. Problem reports for tag 'sa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe 1 problem total. Problem reports for tag 'safe': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/110662 sam [safe] safenet driver causes kernel panic 1 problem total. Problem reports for tag 'sbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119572 [sbp] PowerBook not accessable when in target mode 1 problem total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128177 jeff [sched_ule] wrong CPU usage reported by top/ps with SC p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/117420 jeff [sched_ule] round off in sched_balance_pair() s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a 5 problems total. Problem reports for tag 'scheduler': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/127451 amd64 [scheduler] incorrect load on quad core 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. s kern/7264 gibbs [scsi] Buslogic BT 950 scsi card not detected 4 problems total. Problem reports for tag 'sctp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142066 net [patch] [sctp] Missing parenthesis in sys/netinet/sctp o kern/141720 net [sctp] [lor] [hang] sctp-create vs. sctp-it causes sys o kern/141698 net [sctp] [panic] Own lock on stcb at return from input o kern/141697 net [sctp] [panic] lock (sleep mutex) sctp-tcb not locked o kern/141695 net [sctp] [panic] kernel page fault with non-sleepable lo p kern/137795 net [sctp] [panic] mtx_lock() of destroyed mutex 6 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 o kern/118282 [sg] device sg + hald + umass plugging crashes 7.0 2 problems total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o kern/128036 [sio] [patch] serial console mostly ignores typein to a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/119606 [sio] [patch] PCMCIA card not attached to driver o i386/112487 i386 [sio] kernel panic on swi0:sio o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/109232 imp [sio] [patch] ibufsize calculation wrong causing data o i386/105063 i386 [sio] US Robotics (3Com) 3CP5609 PCI 16550 Modem works o i386/100831 i386 [sio] sio ignores BIOS information about serial ports o kern/97665 [sio] hang in sio driver 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 16 problems total. Problem reports for tag 'sis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83807 kmacy [sis] [patch] if_sis: Wake On Lan support for FreeBSD o kern/64556 net [sis] [patch] if_sis short cable fix problems with Net o kern/35442 net [sis] [patch] Problem transmitting runts in if_sis dri 3 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/105375 yongari [sk] 2 x Marvell GBit LAN: device sk0 is attached, but o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 f kern/96743 yongari [sk] [patch] broken 32-bit register operations 3 problems 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 'smbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/125873 amd64 [smbd] [panic] Repeated kernel panics, trap 12 page fa 1 problem total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/130979 fs [smbfs] [panic] boot/kernel/smbfs.ko 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/85326 fs [smbfs] [panic] saving a file via samba to an overquot 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 24 problems total. Problem reports for tag 'smbus': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/100513 jhb [smbus] Inconsistent definition of SMBus addresses in 1 problem total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127486 [smp] [panic] early SMP panic ("AP #1 (PHY #1) failed! o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected f kern/122915 [smp] Incorrect system cpu load o kern/109936 [smp] SMP kernel performance problem on FSC TX600 o kern/93461 [smp] [regression] Intel 440LX SMP freeze (regression o i386/91745 i386 [smp] Second processor not detected on Proliant ML530 o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in o kern/67830 [smp] [patch] CPU affinity problem with forked child p 8 problems total. Problem reports for tag 'snapshots': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115645 fs [snapshots] [panic] lockmgr: thread 0xc4c00d80, not ex 1 problem total. Problem reports for tag 'snd_hda': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 5 problems total. Problem reports for tag 'snd_uaudio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't 1 problem total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 o kern/127360 kmacy [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 kmacy [socket] [patch] ident only for outgoing connections 9 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/140453 multimedia [sound] No sound inside Virtualbox on 50% volume o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o power/133503 ppc [sound] Sound stutter after switching ttys o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt f kern/115666 multimedia [sound] Microphone does not work o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support 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/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/90837 [sound] PCM - ICH6 - device is busy, but old process d o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla o 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 usb/75797 usb [sound] [regression] 5.3-STABLE(2005 1/4) detect USB h o conf/75137 jhb [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 57 problems total. Problem reports for tag 'ste': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137292 net [ste] DFE-580TX not working properly 1 problem total. Problem reports for tag 'stf': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 s kern/85444 vwe [stf] IPv6 crash, possibly related to destroying stf i 3 problems total. Problem reports for tag 'swi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net 4 problems total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs o kern/93128 scottl [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/73289 [sym] Interrupt storm on sym0 o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load 5 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/139576 ed [syscons] [patch] blink screen too noisy p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH s bin/90082 matteo [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" 11 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/137900 [sysctl] sysctl default values for kern.ipc.shmmax and s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor o kern/134540 [sysctl] [panic] kernel panic after sysctl -a (in strl o kern/134231 [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o bin/123644 [patch] [sysctl] Allow sysctl(8) to ignore unknown OID p bin/121512 mtm [sysctl] [patch] sysctl(8) should return 1 if the user o kern/91023 [sysctl] cpufreq/p4tcc: sysctl: dev.cpu.0.freq: Device o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy 10 problems total. Problem reports for tag 'sysvipc': S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/70975 threads [sysvipc] unexpected and unreliable behaviour when usi 1 problem total. Problem reports for tag 'sysvshm': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/115619 [sysvshm] Unfinished (uncompliant?) support for POSIX 1 problem total. Problem reports for tag 'tap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123892 net [tap] [patch] No buffer space available o kern/118399 secteam [tap] local/remote kernel DoS through TAP device o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap 3 problems total. Problem reports for tag 'tcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138652 net [tcp] TCP window scaling value calculated incorrectly? o kern/138046 net [tcp] tcp sockets stay in SYN_SENT even after receivin o kern/137317 net [tcp] logs full of syncache problems o kern/127928 net [tcp] [patch] TCP bandwidth gets squeezed every time t f kern/123617 net [tcp] breaking connection when client downloading file o kern/123603 net [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 o kern/116335 andre [tcp] Excessive TCP window updates o kern/108670 silby [tcp] TCP connection ETIMEDOUT f kern/102741 andre [tcp] Multiple outbound connect() calls produce 'Netwo p kern/102653 andre [tcp] TCP stack sends infinite retries for connection 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 16 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/136336 [termcap] [patch] missing entry for "center of keypad" f conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili 2 problems total. Problem reports for tag 'terminfo': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/140965 [terminfo] Cannot create terminfo database because ncu o conf/133715 [terminfo] [patch] no terminfo for rxvt-unicode termin 2 problems total. Problem reports for tag 'threads': S Tracker Resp. Description -------------------------------------------------------------------------------- s threa/39922 threads [threads] [patch] Threaded applications executed with 1 problem total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/123147 remko [ti] [patch] ti(4) doesn't use mii, but kernel configs o kern/20529 [ti] gigabit cards fail to link 2 problems total. Problem reports for tag 'timecounters': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/127484 amd64 [timecounters] Drift problem with FreeBSD 7.0 and 7.1 1 problem total. Problem reports for tag 'tinybsd': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/135301 remko [tinybsd] [patch] Patch for fix architecture support f o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ 2 problems total. Problem reports for tag 'tmpfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141194 fs [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 o kern/138367 fs [tmpfs] [panic] 'panic: Assertion pages > 0 failed' wh o kern/132597 fs [tmpfs] [panic] tmpfs-related panic while interrupting o kern/127659 fs [tmpfs] tmpfs memory leak p kern/127213 delphij [tmpfs] [patch] sendfile on tmpfs data corruption p kern/122038 delphij [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc 8 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138465 [tools] [patch] add data verification to tools/regress o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam 2 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/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR on 8.0-BE o kern/133902 net [tun] Killing tun0 iface ssh tunnel causes Panic Strin o kern/116837 net [tun] [panic] [patch] ifconfig tunX destroy: panic 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 kern/139527 [twa] twa driver fails to build in CURRENT o kern/119043 [twa] twa hang after heavy disk IO o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid 3 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 'txp': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/139193 gavin [txp] ThreeXP 3com network card during install, doesn' f kern/100839 yongari [txp] txp driver inconsistently stops working when the 2 problems total. Problem reports for tag 'u3g': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/140928 usb [u3g] [usb8] [patch] ZTE CDMA2000 1X EV-DO (MG478/AC87 o usb/138172 usb [u3g] [patch] [usb67] Additional dev id for u3g (Optio o usb/138138 usb [u3g] [patch] [usb67] Novatel U760 for u3g (Verizon an 3 problems total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/140172 gavin [uart] [patch] Support ACPI-only tablet PC screen o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/131933 [uart] [patch] Cannot detect Sony Ericsson GC89 EDGE/W p kern/129665 rik [uart] Oxford OX16PCI958 8-serial multiport card is no o kern/129663 rik [uart] Timedia-based 8-serial multiport card: only two o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 6 problems total. Problem reports for tag 'uath': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/141680 usb [uath] Netgear WG111T not working with uath driver 1 problem total. Problem reports for tag 'uaudio': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni 1 problem total. Problem reports for tag 'ubsa': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/129522 usb [ubsa] [patch] add support for ZTE AC8700 modem o usb/127543 n_hibma [patch] [ubsa] Support Option Globetrotter HSDPA modem o usb/122956 usb [ubsa] [patch] add support for Novatel Wireless XU870 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 p usb/118374 attilio [ubsa] [patch] support Option GlobeTrotter Max 3.6 wir 7 problems total. Problem reports for tag 'ubsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133143 [ubsec] [panic] Kernel panic with ubsec and cryptodev; 1 problem total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127248 usb [ucom] panic while uplcom devices attaach 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 kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERROR 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 o usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn s usb/72733 usb [ucom] [request] Kyocera 7135 Palm OS connection probl o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct 13 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/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/60089 scottl [udf] UDF filesystem appends garbage to files 2 problems total. Problem reports for tag 'udp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133736 net [udp] ip_id not protected ... o kern/127057 net [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 4 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/141992 mckusick [ufs] fsck cannot repair file system in which it finds 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/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file a kern/125613 trasz [ufs] [patch] ACL problems with special files o bin/121779 fs [ufs] snapinfo(8) (and related tools?) only work for t o kern/117954 [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/106030 fs [ufs] [panic] panic in ufs from geom when a dead disk 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 f kern/91568 fs [ufs] [panic] writing to UFS/softupdates DVD media in o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 o kern/48393 mckusick [ufs] ufs2 snapshot code bugs 24 problems total. Problem reports for tag 'uftdi': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/141467 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter p usb/140951 thompsa [uftdi] [patch] Add support for FT2232D Dual USB UART/ a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl a usb/138879 usb [uftdi] [patch] Patch to add support for CTI USB-Mini o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o usb/129758 usb [uftdi] [patch] add Pyramid LCD usb support o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/117546 remko [uftdi] [patch] Add MaxStream ZigBee product ID to uft 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 11 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/81308 imp [ugen] [patch] [2] polling a ugen(4) control endpoint o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction 9 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/129673 usb [uhci] uhci (uhub) confused on replugging USB 1.1 scan o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/79287 usb [uhci] [hang] UHCI hang after interrupt transfer o usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 5 problems total. Problem reports for tag 'uhid': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/111753 gavin [usb67] [uhid] [panic] Replicable system panic involvi f usb/63837 linimon [uhid] [patch] USB: hid_is_collection() only looks for 2 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 'uipaq': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a 1 problem total. Problem reports for tag 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 [newusb] [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 o usb/125736 usb [ukbd] [hang] system hangs after AT keyboard detect if o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th f usb/113629 gavin [ukbd] Dropped USB keyboard events on Dell Latitude D6 f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does f usb/102066 gavin [usb67] [ukbd] usb keyboard and multimedia keys don't o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar 13 problems total. Problem reports for tag 'ulpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in f 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/93155 usb [ulpt] /dev/ulpt0: device busy, USB printer does not w 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/79524 usb [ulpt] printing to Minolta PagePro 1[23]xxW via USB fa o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes 13 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 kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass f usb/137138 gavin [umass][usb67][patch] QUIRK: ASUS PDA Flash disk emula p kern/135628 remko [umass] [patch] add a device quirk for Myson Heden 881 p usb/135372 usb [usb67][umass] Quirk report for Teclast TL-C300 usb me o usb/135348 usb [umass] USB Drive Hangs with ZFS (JMicron USB2/eSata) 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/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/127980 usb [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x an p usb/127549 usb [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requi f kern/125985 [umass] [panic] no da-device, panic upon unplugging o usb/123509 usb [umass] continuous reset Samsung SGH-G600 phone 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/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o usb/114682 usb [umass] generic USB media-card reader unusable o kern/114667 [umass] UMASS device error log problem o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/112568 gavin [usb67] [umass] USB mode may wrong when mounting Plays f usb/112463 gavin [usb67] [umass] problem with Samsung USB DVD writer, l f usb/110197 gavin [usb67] [umass] [ehci] Sony PSP umass device does not f usb/109397 gavin [usb67] [umass] [panic] FS corruption on booting from f usb/108513 gavin [usb67] [umass] Creative MuVo TX FM fails in 6.2-RELEA f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104292 gavin [usb67] [umass] [hang] system lockup on forced umount f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive f usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/83563 usb [umass] [panic] Page Fault while detaching Mpman Usb d s usb/82569 usb [umass] [panic] USB mass storage plug/unplug causes sy o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/77184 usb [umass] [panic] kernel panic on USB device disconnect, o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) o 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/71455 usb [umass] Slow USB umass performance of 5.3 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 71 problems total. Problem reports for tag 'umct': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters 1 problem total. Problem reports for tag 'umodem': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/128485 usb [umodem] [patch] Nokia N80 modem support p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work 4 problems total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/142229 usb [ums] [hang] connecting a USB mouse to a Dell PE750 lo 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/125238 usb [ums] Habu Mouse turns off in X o usb/124604 usb [ums] Microsoft combo wireless mouse doesn't work 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 o 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 usb/76732 usb [ums] Mouse problems with USB KVM Switch o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 16 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141950 fs [unionfs] [lor] ufs/unionfs(/ufs) o kern/137588 daichi [unionfs] [lor] LOR unionfs 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 10 problems total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140614 usb [uplcom] [patch] adding support for Radio Shack Gigwar o usb/129173 usb [uplcom] [patch] Add support for Corega CG-USBRS232R a o usb/128324 usb [uplcom] [patch] remove baud rate restriction for PL23 f usb/115737 linimon [uplcom] uplcom doesn't identify my Prolific 2303 any o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o kern/95512 [uplcom] uplcom(4) causes system hangups 6 problems total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa f usb/104352 gavin [usb67] [ural] [rum] [patch] ural driver doesnt work 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 usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b f usb/135857 usb [urtw] [usb67] RTL8187 Wireless Adapter 2 problems total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/138570 usb [usb] [panic] USB mass device panics current 7.2-STABL p usb/132799 usb [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CA o usb/132785 usb [usb] [patch] Gemtech remote powersocket is classed as o usb/132080 usb [patch] [usb] [rum] Kernel panic after NOMEM caused by p usb/129858 remko [usb] [patch] Need to add quirk to da_scsi.c to suppor o usb/129766 usb [usb] plugging in usb modem HUAWEI E226 panics system 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/128977 usb [usb] [patch] uaudio is not full duplex 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 o usb/122819 usb [usb] [patch] Patch to provide dynamic additions to th o usb/121232 usb [usb] [panic] USB CardBus card removal causes reboot s o 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/109274 gavin [usb67] [usb] MCP55 USB Controller fails to attach in 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 o usb/91629 usb [usb] usbd_abort_pipe() may result in infinite loop o usb/87224 usb [usb] Cannot mount USB Zip750 s usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/79723 usb [usb] [request] prepare for high speed isochronous tra s usb/79622 imp [usb] USB devices can be freed twice 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 30 problems total. Problem reports for tag 'usb67': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 a usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o usb/138915 usb [patch] [usb8] [usb67] add support for SheevaPlug seri a usb/138904 usb [rum] [panic] [usb67] unpluging USB wifi card panics s f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/138548 gavin [usb67] usb devices periodically have unknown activity o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o usb/138172 usb [u3g] [patch] [usb67] Additional dev id for u3g (Optio o usb/138138 usb [u3g] [patch] [usb67] Novatel U760 for u3g (Verizon an o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o usb/137872 usb [usb67] [boot] slow booting on usb flash drive f usb/137848 usb [panic] [usb67] Page fault when using an USB bluetooth o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un f usb/137789 gavin [patch][usb67]Add quirks for EeePC 901 SD card reader o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/137616 usb [usb67][usb8][usbdevs] [patch]: usbdevs update: Please p usb/137226 usb [usb67][patch] quirk for Philips extern USB disk f usb/137138 gavin [umass][usb67][patch] QUIRK: ASUS PDA Flash disk emula p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis f usb/135857 usb [urtw] [usb67] RTL8187 Wireless Adapter o usb/135575 usb [usbdevs] [patch] [usb67] Add HTC Wizard phone vid/pid p usb/135372 usb [usb67][umass] Quirk report for Teclast TL-C300 usb me p usb/127549 usb [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requi o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 o usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in f usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las f usb/112631 gavin [usb67] [panic] Problem with SONY DSC-S80 camera on um f usb/112568 gavin [usb67] [umass] USB mode may wrong when mounting Plays f usb/112463 gavin [usb67] [umass] problem with Samsung USB DVD writer, l f usb/112461 gavin [usb67] [ehci] ehci USB 2.0 doesn't work on nforce4 f usb/111753 gavin [usb67] [uhid] [panic] Replicable system panic involvi o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated f usb/110197 gavin [usb67] [umass] [ehci] Sony PSP umass device does not f usb/109397 gavin [usb67] [umass] [panic] FS corruption on booting from f usb/109274 gavin [usb67] [usb] MCP55 USB Controller fails to attach in f usb/108513 gavin [usb67] [umass] Creative MuVo TX FM fails in 6.2-RELEA s usb/108344 usb [usb67] [atausb] [panic] kernel with atausb panics whe f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o docs/107924 docs [usb67] usbd(8) does not call detach 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 o usb/107243 usb [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive q f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o usb/105361 usb [usb67] [panic] Kernel panic during unmounting mass st f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104352 gavin [usb67] [ural] [rum] [patch] ural driver doesnt work f usb/104292 gavin [usb67] [umass] [hang] system lockup on forced umount f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does f usb/102066 gavin [usb67] [ukbd] usb keyboard and multimedia keys don't o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r o usb/101761 usb [usb67] [patch] [request] usb.h: increase maximal size f 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 71 problems total. Problem reports for tag 'usb8': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/141313 usb [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 usb/140928 usb [u3g] [usb8] [patch] ZTE CDMA2000 1X EV-DO (MG478/AC87 p usb/140923 thompsa [axe] [patch] [usb8] Add support for new rev of USB Et o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b f usb/140883 usb [axe] [usb8] USB gigabit ethernet hangs after short pe 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 f usb/140714 usb [hang] [usb8] system freeze when disconect my flash us o usb/140590 usb [bluetooth] [usb8] ng_ubt(4) ng_l2cap_process_cmd_rej o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o usb/140259 usb [libusb] [patch] [usb8] libusb-1.0 portability/compati o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass o usb/139142 usb [ehci] [usb8] [patch] ehci drivers (NVIDIA nForce4 USB o usb/138915 usb [patch] [usb8] [usb67] add support for SheevaPlug seri o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv f usb/138675 linimon [usb8] [panic] page fault, perhaps in USB 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 [usbaudio] [usb8] Axed uaudio functionality in the usb o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o usb/137616 usb [usb67][usb8][usbdevs] [patch]: usbdevs update: Please o usb/137377 usb [usb8] Support for Huawei E180 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro p usb/137191 thompsa [usb8][patch] export ums(4) output report parser data o usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r 37 problems total. Problem reports for tag 'usbaudio': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/138124 usb [usbaudio] [usb8] Axed uaudio functionality in the usb 1 problem total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/142228 usb [usbdevs] [patch] add a USB-HDD to usb_quirk.c and usb o usb/141936 usb [usbdevs] [patch] add support for Advanced W-ZERO3[ES] o usb/137616 usb [usb67][usb8][usbdevs] [patch]: usbdevs update: Please p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H o usb/135575 usb [usbdevs] [patch] [usb67] Add HTC Wizard phone vid/pid o usb/134631 usb [usbdevs] [patch] WiSPY DBx support requires usb tweak o usb/131900 usb [usbdevs] [patch] Additional product identification co o usb/129945 usb [usbdevs] [patch] add u3g support for Longcheer WM66 U o usb/129251 usb [usbdevs] [patch] Liebert UPS being assigned uhid and o usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o usb/123352 usb [usbdevs] [patch] Add Option GTMAX3.6/7.2 and Quallcom o usb/123351 usb [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [2 o usb/119150 remko [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports 17 problems total. Problem reports for tag 'usbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/116699 usb [usbhid] USB HID devices do not initialize at system b 1 problem total. Problem reports for tag 'uscanner': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/122025 usb [uscanner] [patch] uscanner does not attach to Epson R o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o usb/117205 remko [uscanner] [patch] uscanner support for HP ScanJet 447 s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device 4 problems total. Problem reports for tag 'uslcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/131912 usb [uslcom] [patch] New devices using Silicon Labs chips 1 problem total. Problem reports for tag 'uvisor': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. 1 problem total. Problem reports for tag 'vesa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod 2 problems total. Problem reports for tag 'vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o kern/139127 [vfs] False negative vfs cache entry o kern/134883 [vfs] [panic] kernel panic, superpages, vfs.lookup_sha p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o kern/123392 [vfs] [lor] lock order reversal in vfs o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D 8 problems total. Problem reports for tag 'vga': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o kern/64114 [vga] [patch] bad vertical refresh for console using R 2 problems total. Problem reports for tag 'vge': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/141414 yongari [vge] vge(4) problem on 8.0-RELEASE p kern/141276 yongari [vge] Strange behavior with vge gigabit ethernet adapt f kern/129135 yongari [vge] vge driver on a VIA mini-ITX not working f kern/106851 yongari [vge] vge0: MII read timed out [regression] f amd64/87316 yongari [vge] "vge0 attach returned 6" on FreeBSD 6.0-RC1 amd6 f kern/82497 yongari [vge] vge(4) on AMD64 only works when loaded late, not 6 problems total. Problem reports for tag 'viapm': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/120714 gonzo [viapm] [patch] viapm driver doesn't work on VIA VT823 1 problem total. Problem reports for tag 'vinum': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/89660 geom [vinum] [patch] [panic] due to g_malloc returning null o kern/79035 geom [vinum] gvinum unable to create a striped set of mirro o conf/47566 [vinum] [patch] add vinum status verification to perio 3 problems total. Problem reports for tag 'virtualbox': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117681 [virtualbox] pcn fails to send packets under VirtualBo 1 problem total. Problem reports for tag 'virtualpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying 1 problem total. Problem reports for tag 'vlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141843 net [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o kern/117423 net [vlan] Duplicate IP on different interfaces 5 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/140461 [vm] Fail to read from swap. The swap_pager.c contains o kern/140338 [vm][panic] FreeBSD 8.0 RC2 with vm.pmap.pg_ps_enabled o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/124963 alc [vm] [patch] old pagezero fixes for alc o kern/123634 [vm] [panic] kernel panic with FreeBSD 7-STABLE o kern/123013 [vm] panic "Bad tailq NEXT(%p->tqh_last) != NULL" s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o kern/121234 [vm] vm_fault: fault on nofault o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i p kern/78179 alc [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o kern/71258 alc [vm] [patch] anonymous mmappings not always page align o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once s i386/22944 alc [vm] [patch] isa_dmainit fails on machines with 512MB 13 problems total. Problem reports for tag 'vmware': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118819 [vmware] FreeBSD 6.2 in VMware is unstable and there i o kern/109809 [vmware] CPU hits 100% when issuing the halt command ( o i386/97025 i386 [vmware] fbsd (2 cd) dont install in vmware 5.5.0 - re 3 problems total. Problem reports for tag 'vr': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/126665 yongari [vr] Integrated VIA Rhine II receive errors p kern/123961 net [vr] [patch] Allow vr interface to handle vlans a kern/109477 yongari [vr] [patch] onboard via vt6103 ethernet does not work s kern/103495 vwe [vr] if_vr locks after carrier event o kern/100499 yongari [vr] vr interface stops transmitting s kern/94390 vwe [vr] poor network performance after promiscuous mode i o kern/90890 net [vr] Problems with network: vr0: tx shutdown timeout s kern/89305 vwe [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net o kern/87506 net [vr] [patch] Fix alias support on vr interfaces s kern/80265 vwe [vr] D-Link NIC with VIA Rhine II has no carrier sign o kern/71045 [rl] [vr] DHCP-Request is sets other device's ip to nu 11 problems total. Problem reports for tag 'vuxml': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/129300 obrien [vuxml] editors/vim: document CVE-2008-3432 1 problem total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/131776 net [wi] driver fails to init f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/115275 [wi] [panic] wi configure at boot time led to panic "i o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/107944 net [wi] [patch] Forget to unlock mutex-locks s kern/79323 [wi] authmod setup with ifconfig on dlink wlan card fa p kern/77913 net [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o kern/59183 imp [wi] wi problems with wi_cmd o kern/43625 imp [wi] wi(4) driver hangs after long data transfers o kern/39928 imp [wi] wi0 timeouts and hangs the system while sending d 15 problems total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti o kern/132885 net [wlan] 802.1x broken after SVN rev 189592 2 problems total. Problem reports for tag 'wlan_xauth': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa 1 problem total. Problem reports for tag 'wpa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/122331 [wpa] [panic] 7.0-RELEASE && panic in Wifi area with W 1 problem total. Problem reports for tag 'wpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140564 net [wpi] Problem with Intel(R) PRO/Wireless 3945ABG o kern/139079 net [wpi] Failure to attach wpi(4) o kern/138739 net [wpi] wpi(4) does not work very well under 8.0-BETA4 o kern/138427 net [wpi] [panic] Kernel panic after trying set monitor wl o kern/136943 net [wpi] [lor] wpi0_com_lock / wpi0 o kern/133613 net [wpi] [panic] kernel panic in wpi(4) o kern/128917 net [wpi] [panic] if_wpi and wpa+tkip causing kernel panic o kern/127102 net [wpi] Intel 3945ABG low throughput o kern/123256 net [wpi] panic: blockable sleep lock with wpi(4) o kern/121872 net [wpi] driver fails to attach on a fujitsu-siemens s711 f kern/121720 thompsa [wpi] wpi doesnt work if kernel has options SCHED_ULE o kern/120493 benjsc [wpi] if_wpi.ko fails to load on a Toshiba Satellite P 12 problems total. Problem reports for tag 'xe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne o kern/85266 net [xe] [patch] xe(4) driver does not recognise Xircom XE 2 problems total. Problem reports for tag 'xen': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141328 xen [xen] [panic] gstat exit causes kernel panic from unma o kern/140313 xen [xen] [panic] FreeBSD8 RC2 as PV domU crashes during c o kern/138863 kib [xen] [panic] pmap_invalidate_cache_range panic on boo o kern/136271 kmacy [xen] XEN kernel fails to build on 8-CURRENT i386 o kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. o kern/135179 xen [xen] Xen domU does not properly reboot o kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all o kern/135008 xen [xen] FreeBSD-current/Xen timecounter jumps o kern/134926 xen [xen] [panic] FreeBSD-current Xen DomU networking pani o i386/124516 kmacy [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/118734 [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b 12 problems total. Problem reports for tag 'xfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul 2 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/136409 yongari [xl] doesn't compile with TX checksumming enabled o kern/132669 net [xl] 3c905-TX send DUP! in reply on ping (sometime) o kern/129352 net [xl] [patch] xl0 watchdog timeout o kern/113895 net [xl] xl0 fails on 6.2-RELEASE but worked fine on 5.5-R o kern/83354 [xl] When two 3c905's are in a Vectra Vl dhcp fails to s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad 6 problems total. Problem reports for tag 'zfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142271 fs [zfs] [patch] race condition on zpool create p kern/141800 delphij [zfs] [patch] zfs pool update to v14 o kern/141718 fs [zfs] [panic] kernel panic when 'zfs rename' is used o o kern/141685 fs [zfs] zfs corruption on adaptec 5805 raid controller o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o kern/141177 fs [zfs] fsync() on FIFO causes panic() on zfs o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o kern/140661 fs [zfs] /boot/loader fails to work on a GPT/ZFS-only sys o kern/140640 fs [zfs] snapshot crash o kern/140433 fs [zfs] [panic] panic while replaying ZIL after crash o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo p kern/139072 pjd [zfs] zfs marked as production ready but it used a dep s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/138790 fs [zfs] ZFS ceases caching when mem demand is high f kern/138709 pjd [zfs] zfs recv hangs, pool accesses hang in rrl->rr_cv f kern/137037 fs [zfs] [hang] zfs rollback on root causes FreeBSD to fr o kern/135594 fs [zfs] Single dataset unresponsive with Samba o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134491 fs [zfs] Hot spares are rather cold... f kern/133150 fs [zfs] Page fault with ZFS on 7.1-RELEASE/amd64 while w f kern/130133 kmacy [panic] [zfs] 'kmem_map too small' caused by make clea o kern/129059 fs [zfs] [patch] ZFS bootloader whitelistable via WITHOUT f kern/128633 pjd [zfs] [lor] lock order reversal in zfs f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/127492 pjd [zfs] System hang on ZFS input-output f kern/127375 kmacy [zfs] If vm.kmem_size_max>"1073741823" then write spee f kern/126703 kmacy [panic] [zfs] _mtx_lock_sleep: recursed on non-recursi s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS f bin/124424 fs [zfs] zfs(8): zfs list -r shows strange snapshots' siz f sparc/123566 kmacy [zfs] zpool import issue: EOVERFLOW f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t o bin/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 f kern/120210 kmacy [zfs] [panic] reboot after panic: solaris assert: arc_ f kern/119735 fs [zfs] geli + ZFS + samba starting on boot panics 7.0-B f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un 41 problems total. Problem reports for tag 'zlib': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118317 [zlib] [patch] Incorrect gzeof() return value in zlib o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl 2 problems total. Problem reports for tag 'zyd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system 2 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 12:32:53 2010 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 67C841065745; Mon, 4 Jan 2010 12:32:53 +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 3F6488FC0A; Mon, 4 Jan 2010 12:32:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04CWrjX048499; Mon, 4 Jan 2010 12:32:53 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04CWrT1048495; Mon, 4 Jan 2010 12:32:53 GMT (envelope-from linimon) Date: Mon, 4 Jan 2010 12:32:53 GMT Message-Id: <201001041232.o04CWrT1048495@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: conf/142304: rc.conf(5): mdconfig and mdconfig2 rc.d scripts lack examples in /etc/defaults/rc.conf X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2010 12:32:53 -0000 Old Synopsis: mdconfig and mdconfig2 rc.d scripts lack examples in /etc/defaults/rc.conf New Synopsis: rc.conf(5): mdconfig and mdconfig2 rc.d scripts lack examples in /etc/defaults/rc.conf Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Mon Jan 4 12:32:06 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=142304 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 11:06:06 2010 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 0AA73106566B for ; Mon, 4 Jan 2010 11:06:06 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CFCB58FC19 for ; Mon, 4 Jan 2010 11:06:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04B65ID064169 for ; Mon, 4 Jan 2010 11:06:05 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04B63H2064167 for freebsd-bugs@FreeBSD.org; Mon, 4 Jan 2010 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Jan 2010 11:06:03 GMT Message-Id: <201001041106.o04B63H2064167@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list X-Mailman-Approved-At: Mon, 04 Jan 2010 12:35:53 +0000 Cc: Subject: Current problem reports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2010 11:06:06 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/142304 mdconfig and mdconfig2 rc.d scripts lack examples in / f ports/142303 garga [PATCH] x11-wm/awesome: update to 3.4.3 o ports/142302 [NEW PORT] japanese/ja-ibus-skk: SKK engine for IBus o ports/142301 miwi www/xpi-flashgot: update to 1.2.1.09 o ports/142300 miwi www/xpi-colorfultabs: update to 4.1 o ports/142299 ale www/xpi-adblock_plus: update to 1.1.2 o ports/142298 Update port: sysutils/megacli update to 5.00.15 o ports/142297 wen [MAINTAINER] mail/mew: update to 6.3 o ports/142295 tabthorpe Update Port: www/drood => 1.52 o ports/142294 haskell [new port]: haskell port math/hs-statistics o ports/142286 mva devel/py-game: fix build on 9-CURRENT o docs/142281 doc firmware(9) references nonexistent sample file f ports/142279 sysutils/lugtools: fix build on 9.x o usb/142276 usb Cache Synchronization Error with Olympus FE210 Camera f ports/142275 [patch] sysutils/anacron should have better configurat o ports/142274 tabthorpe Update Port: www/blogd => 1.10 o ports/142273 tabthorpe Update Port: lang/munger => 4.174 o kern/142271 fs [zfs] [patch] race condition on zpool create o amd64/142270 amd64 [hang] System trap on Xorg shutdown when using nvidia o ports/142269 mnag [patch] port mail/postfix24 update to version 2.4.13 o ports/142268 mnag [patch] port mail/postfix-current update to version 2. o ports/142267 araujo [patch] port www/mod_security make devel/apr optional f ports/142266 [patch] port net-mgmt/nagios-pf-plugin add nagios perf o ports/142265 lwhsu [UPDATE] devel/py-gdata to 2.0.6 o ports/142264 wxs [maintainer-update] - update devel/php-libawl to versi o kern/142263 acpi [acpi] ACPI regression on Asus K8N7-E deluxe motherboa o ports/142262 miwi [NEW PORT] devel/p5-Class-Accessor-Children: Automated o ports/142261 miwi [NEW PORT] www/p5-Net-FreshBooks-API: Easy OO access t o ports/142259 itetcu sysutils/apcupsd segfaults during shutdown o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o ports/142257 new port: multimedia/tsMuxeR, utility to create TS and o stand/142255 standards scandir prototype in dirent.h isn't compliant with POS o www/142250 www why your website ignore opera browser:) o ports/142249 mva [UPDATE] audio/sdl_mixer to v1.2.11 o ports/142248 mva [UPDATE] graphics/sdl_image to v1.2.10 o ports/142246 wen irc/scrollz: enabled openssl option again and removed o www/142245 www Addition to commercial/isp.html o ports/142244 timur net/samba3: startup script should remove pid files o docs/142243 doc Netcat (nc(1)) manual mistake o ports/142242 fjoe [PATCH] x11-toolkits/wxgtk26 o ports/142240 New port: japanese/gjiten Japanese dictionary program f ports/142239 lwhsu [PATCH] www/closure-compiler: update to 20091217 o ports/142237 Update port devel/libffi o ports/142233 miwi [MAINTAINER] net-im/gajim-devel: update to 20100101 o ports/142232 miwi [MAINTAINER] net-im/gajim: update to 0.13.1 o usb/142229 usb [ums] [hang] connecting a USB mouse to a Dell PE750 lo o usb/142228 usb [usbdevs] [patch] add a USB-HDD to usb_quirk.c and usb o usb/142225 usb [patch] Patch to add Quirk for Western Digital Mybook o ports/142224 wen [MAINTAINER] devel/py-boto: update to 1.9b o ports/142223 New port net/udpxy, a UDP-to-HTTP multicast traffic re f ports/142221 python [Update]biology/py-biopython:update to 1.53 o ports/142219 cy security/fwbuilder aborts when compiling policy that h o ports/142215 araujo [PATCH] www/youtube_dl: update to 2009.12.26 o ports/142207 obrien [patch] textproc/urlview fails when WITH_GECKO defined f ports/142206 Update lang/nawk to 20091126 o ports/142205 [patch] archivers/libarc use ${VARIABLE}, instead of $ p docs/142204 doc bad link in bsd-family-tree f ports/142200 [patch] benchmarks/xengine remove direct use of comman o ports/142198 gnome SSLv3 failure with irc/xchat on FreeBSD 8.0 o kern/142197 net [ndis] [patch] ndis is missing media status reporting o ports/142195 gabor textproc/ispell fails to build with ISPELL_DA=yes o ports/142193 gnome sysutils/system-tools-backends: fix for creating user o ports/142192 pgollucci net-mgmt/net-snmp: memCached incorrect o ports/142191 markus Update: misc/tellico o i386/142190 i386 [btx] BTX Loader issue on Gigabyte Motherboard o ports/142189 gnome www/webkit-gtk2 needs dependency on libsoup >= 2.28.2 o ports/142185 lev [PATCH] update port www/neon29 to version 0.29.2 o ports/142176 [patch] benchmarks/hpl list out RUN_DEPENDS dependenci o ports/142175 wen New port: databases/p5-DBIx-VersionedDDL Perl module/u o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep o ports/142171 shaun [patch] ports-mgmt/portscout Makefile adjustment f ports/142169 miwi [PATCH] mail/mutt-devel fix imap header cache dependen o docs/142168 doc ld(1): ldd(1) not mentioned in ld(1) manpage o ports/142165 ale [PATCH] lang/php5: add optional patch for gd2 o ports/142163 python [NEW PORT] sysutils/py-supervisor: System to monitor a o ports/142161 update port: games/gemrb to version 0.6.0 f ports/142160 Typo fix: multimedia/vlc o ports/142159 New port: comms/uhso-kmod - Driver for Option HSDPA mo o ports/142158 wen New port: science/meep o kern/142157 [ppc] Don't find Printer port at "NetMos NM9835 Dual U o ports/142156 [patch] ports-mgmt/porte simplify Makefile logic & don o bin/142155 dumpfs(8) drops leading 0 (zero) from superblock id o ports/142152 amdmi3 [patch] games/rigsofrods - unbreak build o ports/142151 wosch [patch] ports-mgmt/portcheckout to use variables inste o ports/142149 gnome [patch] security/gnome-keyring fails to build in certa o ports/142148 miwi [NEW PORT] www/mythweb: A frontend for scheduling and o ports/142147 mva [UPDATE] devel/sdl12 to v1.2.14 o ports/142140 [maintainer] www/p5-RTx-Calendar -- bsd.port.options.m o ports/142139 haskell [patch]: update of devel/lhs2TeX from the 1.14 version o ports/142138 [maintainer] www/p5-RT-Extension-SLA -- bsd.port.optio o ports/142136 [maintainer] www/p5-RT-Extension-LDAPImport -- bsd.por o ports/142135 [maintainer] www/p5-RT-Authen-ExternalAuth -- bsd.port o ports/142134 sylvio [UPDATE] x11-fm/gnome-commander2 to v1.2.8.4 o ports/142133 vbox emulators/virtualbox doesn't compile on 8.0/amd64 o ports/142132 amdmi3 [UPDATE] games/palomino to v20091216 o ports/142131 haskell [patch]: update of x11-toolkits/hs-glut-ghc from the 2 o ports/142130 haskell [patch]: update of x11-toolkits/hs-opengl-ghc from the o ports/142126 haskell [new port]: haskell port x11-toolkits/hs-GLURaw-ghc o ports/142125 haskell [new port]: haskell port x11-toolkits/hs-OpenGLRaw-ghc o ports/142124 amdmi3 [UPDATE] graphics/osg to v2.8.2 o ports/142123 portmgr exp-run request for audio/openal -> audio/openal-soft f ports/142121 haskell [patch]: update of x11-wm/xmonad and x11-wm/xmonad-con f ports/142120 pgollucci New port: sysutils/megacli5 MegaCLI SAS RAID Managemen o ports/142118 miwi New port: security/nmapsi4 UI for nmap f ports/142116 python [Update]math/py-numpy:update to 1.4.0 o ports/142115 nivit [patch] Extract textproc/py-genshi during installation o conf/142114 periodic(8): security report from 'periodic daily' doe o ports/142113 tobez [PATCH] security/p5-Crypt-OpenPGP: update to 1.04 f ports/142111 security/tor-devel: tor-devel-0.2.2.6a and recent open o ports/142110 skv [PATCH] lang/perl5.10 / BSDPAN-5.10.1_20090303: P5PORT o ports/142109 perl [PATCH] www/p5-MojoMojo: update to 0.999042 o i386/142108 i386 [panic] vm_fault: fault on nofault entry, addr: c32a40 o ports/142107 haskell [maintainer update]: update of graphics/hs-HGL-ghc fro o ports/142106 haskell [patch]: update of x11/hs-x11-ghc from the 1.4.6.1 ver o ports/142103 wen [NEW PORT] dns/opendnssec: Tool suite for maintaining o sparc/142102 sparc64 [nfs] [panic] FreeBSD 8.0 kernel panics on sparc64 whe o ports/142095 haskell [maintainer update]: update of devel/hs-uuagc from the o ports/142093 [patch] audio/libmtp: Add device ID for Canon SX20IS s ports/142092 [NEW PORT] www/node: V8 javascript for client and serv o ports/142091 gabor textproc/docbook-410: definition mismatch between 'BUI o ports/142090 itetcu add hiawatha to list of supported web interfaces in po o ports/142088 ale databases/php5-pgsql causes postgresql 8.2.15 and php o ports/142087 jadawin deskutils/remind port doesn't install dependencies for o ports/142086 new port: databases/lib_mysqludf_xql, provides SQLXML o kern/142085 [puc] [patch] Few lines to pucdata.c to support for Te f ports/142084 net-mgmt/mrtg port is broken o kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/142082 emulation [patch] [panic] linuxulator: getppid: use after free o ports/142078 itetcu [PATCH] net/p5-Socket-GetAddrInfo: update to 0.14 o ports/142075 haskell [maintainer update]: update of devel/hs-haskeline from f ports/142074 haskell [patch]: update of devel/hs-utf8-string-ghc from the 0 o ports/142071 haskell [patch]: update of: haddock to 2.5.0, ghc-paths to 0.1 o ports/142069 x11 x11/xorg: After adding on a laptop Toshiba Sattelite L o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/142066 net [patch] [sctp] Missing parenthesis in sys/netinet/sctp o ports/142057 miwi [NEW PORT] devel/p5-Data-Section: Read multiple hunks o ports/142056 miwi [NEW PORT] textproc/p5-Pod-Eventual: Read a POD docume o ports/142055 miwi [NEW PORT] devel/p5-Config-INI-MVP: Multi-value capabl f ports/142053 x11/xorg-minimal: [PATCH] allow choosing video driver o kern/142052 net [panic] MROUTED option causes kernel panic o ports/142051 miwi [PATCH]math/jags: update to 1.0.4 o ports/142050 miwi [NEW PORT] devel/p5-CSS-Croco: Quick CSS parser o ports/142049 markus [PATCH:] make audio/cdparanoia work with new cam/ata c o bin/142047 sysinstall(1): 512M default root filesystem size too s o ports/142046 jpaetzel net/isc-dhcp31-server: isc-dhcpd cannot write to lease f ports/142035 editors/emacs compulsory dependencies too wide o ports/142026 clsung [PATCH] textproc/p5-XML-Atom: update to 0.36 f ports/142024 [PATCH] textproc/p5-Text-Textile: update to 2.12 f ports/142020 [PATCH] audio/exaile does not respect its OPTIONS o kern/142019 net [em] em needs "ifconfig em0 down up" when link was gon o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- f ports/142017 glarkin [patch] security/logcheck: update to version 1.2.69 o ports/142015 lth [PATCH] databases/p5-SQL-Translator: update to 0.11.00 o ports/142014 az [PATCH] www/p5-HTML-FormFu: update to 0.06000 f ports/142012 wen [PATCH] www/p5-HTML-FormFu-Model-DBIC: update to 0.060 f ports/142011 wen [PATCH] devel/p5-DateTime-Format-SQLite: update to 0.1 f ports/142010 wen [PATCH] devel/p5-Params-Validate: update to 0.94 o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject f ports/142007 wen [PATCH] graphics/p5-Image-ExifTool: update to 8.00 o ports/142006 wen [NEW PORT] databases/p5-DBIx-Class-QueryProfiler: DBIx o ports/142005 tobez [PATCH] lang/p5-Scalar-List-Utils: update to 1.22 f ports/142004 itetcu [PATCH] textproc/p5-String-RewritePrefix: update to 0. o ports/142003 az [PATCH] www/p5-Catalyst-Controller-HTML-FormFu: update o ports/142000 jmelo Wrong MAIL_GID when configuring mail/mailman for postf o ports/141997 glarkin New port: devel/pinba_engine o ports/141996 glarkin New port: devel/php5-pinba o ports/141994 portmgr SWEEP: fix portlint whitespace ONLY o kern/141992 mckusick [ufs] fsck cannot repair file system in which it finds o ports/141959 skv lang/perl5.10 is not MAKE_JOBS_SAFE o kern/141956 [libc] signal(3): siginfo->si_pid null in signal handl o ports/141954 itetcu [PATCH] mail/dspam update to 3.9.0-RC o kern/141950 fs [unionfs] [lor] ufs/unionfs(/ufs) o ports/141944 missing dependency in audio/dir2ogg f ports/141943 [PATCH] update audio/ripit to version 3.8.1 o i386/141942 i386 [irq] interrupt storm (VIA 6421A atapci controller) o kern/141939 [libc] [patch] strptime(3) confuses July with June wit o ports/141938 garga [patch] archivers/arj has some bit-rot o usb/141936 usb [usbdevs] [patch] add support for Advanced W-ZERO3[ES] o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 o ports/141933 steve x11-toolkits/open-motif update to 2.3.2 o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o ports/141924 wen [NEW PORT] devel/p5-Gravatar-URL: Make URLs for Gravat o ports/141921 mandree please repocopy security/openvpn -> openvpn20 o bin/141920 sort(1): sort -k 3,1g is very slow o java/141919 java Serious remote vulnerability in the JRE o usb/141918 usb ehci_interrupt: unrecoverable error, controller halted o kern/141915 [hang] Unspecified lockup/deadlock with 7.2 on AMD64 o ports/141910 des sysutils/munin-node bug with reset stat for 'netstat' o conf/141909 rc [rc.subr] [patch] add rc.conf.d support to /usr/local o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o ports/141903 [NEW PORT] devel/z80ex v1.1.18 o bin/141901 gstat(8) fails on 8.0-RELEASE o ports/141898 xride sysutils/wmmemload: fails on 8.0-RELEASE o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng f ports/141891 [patch] games/ioquake3: OPENAL and CURL knobs o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o ports/141888 wen [maintainer-update] databases/postgis: Update to Postg o ports/141885 amdmi3 [MAINTAINER] audio/murmur: update to 1.2.0 o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o ports/141860 New port: multimedia/k9copy-kde4 Ported k9copy 2.3.4 ( a ports/141854 glarkin New Port: www/surf - A simple Web browser based on Web o ports/141853 rnoland x11/xorg: X doesn't start with 'intel' (Asus P5QPL-AM o kern/141843 net [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o bin/141840 ssh(1): OpenSSH allow raise resource limit via .login_ o ports/141839 yoichi graphics/xface.el and mail/x-face-e21 are somewhat con o bin/141838 [patch] rtsold(8): Limits in usr.sbin/rtsold/probe.c f o ports/141837 stas [update] lang/ocaml: patch to make lang/ocamlduce comp o ports/141833 miwi www/aria2 update from v1.5.0 to v1.7.2 o ports/141831 araujo upgrade www/mod_security is overwriting existing rules f ports/141829 [maintainer-update] x11-drivers/input-wacom o kern/141826 multimedia [snd_hda] load of snd_hda module fails o ports/141823 novel audio/mpg123 update and fix o ports/141822 pgollucci [maintainer update] net/nss_ldapd update p kern/141800 delphij [zfs] [patch] zfs pool update to v14 o ports/141799 miwi [maintainer update] net/igmpproxy update o ports/141796 gnome devel/anjuta assumes gnome-help is installed; requires a ports/141795 dinoex graphics/jasper: ensure that configure script has exec o ports/141793 rnoland Death to patch-bsd.port.mk-0.3.6 in ports-mgmt/portman f ports/141791 pav [maintainer update] net/callweaver fix o ports/141790 [new port] net-im/zephyr : enterprise-class IM system o ports/141789 makc multimedia/gxine: remove false dependence on libXaw o ports/141783 brooks devel/llvm - fix option description o kern/141777 net [rum] [patch] Support usbdevs / rum(4) for Buffalo WLI o ports/141776 wen Update port: japanese/p5-Mail-SpamAssassin f ports/141775 x11/slim doesn't adhere keymap configuration a ports/141773 lx net/iodine: iodined fails to properly setup the tun-de f ports/141768 pgollucci new port audio/mp3fs: a fusefs program to transcode FL o ports/141766 novel audio/mpg123 doesn't play mp3 anymore o docs/141765 doc [handbook] [patch] Added note about architectures when o ports/141762 danfe net-p2p/linuxdcpp segmentation fault f ports/141757 pav Windowmanager x11-wm/jwm works wrong on AltGr o kern/141756 [mmc] MMC card attached to blocks keybo o bin/141753 [libc] [patch] double-free in reallocf(3) o ports/141751 novel x11-wm/obconf segfaults on AMD64 on different machines o ports/141742 wen Port update:astro/wcslib f kern/141741 net Etherlink III NIC won't work after upgrade to FBSD 8, o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o ports/141738 netchild [patch] audio/lame: Makefile fix for portlint o ports/141736 tabthorpe [PATCH] mail/squirrelmail: Really fix IMAP search f ports/141727 wxs [patch] Upgrade mail/dovecot to 1.2.9 o threa/141721 threads rtprio(1): (id|rt)prio priority resets when new thread o kern/141720 net [sctp] [lor] [hang] sctp-create vs. sctp-it causes sys o kern/141718 fs [zfs] [panic] kernel panic when 'zfs rename' is used o o ports/141710 skv [patch]: lang/parrot update to 1.9.0 o ports/141709 skreuzer databases/maatkit doesn't work with perl5.10 s stand/141705 standards [libc] [request] libc lacks cexp (and friends) o kern/141698 net [sctp] [panic] Own lock on stcb at return from input o kern/141697 net [sctp] [panic] lock (sleep mutex) sctp-tcb not locked o kern/141696 net [rum] [panic] rum(4)+ vimage = kernel panic o kern/141695 net [sctp] [panic] kernel page fault with non-sleepable lo o ports/141694 clsung New port: mail/p5-Net-POP3-SSLWrapper o ports/141688 portmgr Mk/bsd.apache.mk: several changes [patch] o ports/141687 stas lang/ocaml will not compile f ports/141686 cy net/ntp 4.2.4p7@1.1607-o stops interferes with gpsd 2. o kern/141685 fs [zfs] zfs corruption on adaptec 5805 raid controller o bin/141683 nfsd(8) appears to hold onto closed connections indefi o kern/141682 [libc] [patch] Faster version of strncpy(3) o ports/141681 ale ports/lang/php5: php5-5.2.11 crashes (segfault) with p o usb/141680 usb [uath] Netgear WG111T not working with uath driver o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o i386/141675 i386 [boot] memory and BTX halted on Sunfire X4170 o ports/141674 New port: www/uzbl a web interface tool adhering to th o ports/141670 dinoex comms/lrzsz doesn't check filename when Xmodem receive o usb/141664 usb [pcm] Logitech USB microphone failure [regression] o ports/141660 x11 x11/xorg: X can't determine amount of video memory on o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/141653 [ata] [panic] Panic in ata? f misc/141652 gavin 8.0 install fails from USB memstick because /dev/da0s1 o ports/141650 flz [patch] net-p2p/libbt remove USE_GCC o ports/141649 novel [patch] x11-clocks/osdclock remove USE_GCC o kern/141646 net [em] em(4) + lagg(4) + vlan(4) generates ISL-tagged fr o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/141640 krion [patch] mail/exim: fix pcre linking o docs/141636 doc [handbook] [patch] Updated info about Firefox in Handb o kern/141633 ed [libteken] xterm emulator and screen maps = no vt100 p o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod o ports/141630 vbox emulators/virtualbox with PulseAudio don't work. o ports/141629 mnag patch for "databases/memcached is broken on 8.0" o ports/141624 pgollucci www/apache20: [patch]: Remove locking for writing to t o ports/141614 tobez [PATCH] devel/p5-MooseX-Aliases: update to 0.07 o ports/141612 kuriyama [PATCH] www/p5-Catalyst-Engine-PSGI: update to 0.07 o ports/141608 tobez [PATCH] devel/p5-MooseX-Aliases: update to 0.07 o ports/141604 tobez [PATCH] www/p5-Test-HTTP-Server-Simple: update to 0.11 o ports/141597 tobez [PATCH] textproc/p5-Template-Declare: update to 0.43 o ports/141593 tobez [PATCH] mail/p5-Mail-Box: update to 2.092 o ports/141591 tobez [PATCH] lang/p5-Switch: update to 2.16 o ports/141590 tobez [PATCH] lang/p5-Scalar-List-Utils: update to 1.22 o ports/141584 tobez [PATCH] devel/p5-IPC-Cmd: update to 0.54 o ports/141581 tobez [PATCH] databases/p5-Cache-Memcached-Fast: update to 0 o ports/141580 tobez [PATCH] converters/p5-Number-Nary: update to 0.108 o ports/141575 nork [PATCH] textproc/p5-WWW-Google-SiteMap: update to 1.10 o ports/141567 anders [PATCH] comms/p5-Device-Gsm: update to 1.54 o ports/141521 lth [PATCH] net/p5-POE-Component-Server-Twirc: update to 0 o ports/141520 lth [PATCH] devel/p5-Test-POE-Client-TCP: update to 1.06 o ports/141497 skv [PATCH] www/p5-HTTP-DAV: update to 0.39 o ports/141496 skv [PATCH] www/p5-Catalyst-Plugin-Server: update to 0.26 o ports/141492 skv [PATCH] www/p5-Apache-Profiler: update to 0.10 o ports/141488 skv [PATCH] net-mgmt/p5-POE-Component-SNMP: update to 1.10 o ports/141485 skv [PATCH] mail/p5-POE-Component-Client-SMTP: update to 0 o ports/141477 skv [PATCH] devel/p5-Class-Inner: update to 0.200001 o ports/141476 skv [PATCH] databases/p5-DBD-mysql: update to 4.013 o ports/141475 skv [PATCH] comms/p5-Device-Modem: update to 1.51 o usb/141474 usb [boot] FreeBSD 8.0 can not install from USB CDROM driv o ports/141473 irc/kvirc-devel fails to start, missing library o ports/141472 des [PATCH] shells/zsh: add linsysfs to (u)mount -t comple f ports/141471 wen [patch] net/scapy : update to 2.1.0 o i386/141470 i386 [boot] BTX halted immediatly on selecting any of the b o ports/141469 philip [patch] games/wesnoth-devel: update to 1.7.10 o i386/141468 i386 [boot] FreeBSD 8.0 boot manager can cause disk not pro o usb/141467 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro o kern/141452 [dtrace] DTrace stops tracing because of struct thread o ports/141451 clsung [PATCH] net/dictd, textproc/dict and textproc/dictfmt: o ports/141450 audio/lmms port - does not build o ports/141448 wxs net/silc-server should be updated to version 1.1.18 o ports/141444 mono [new port] irc/smuxi: Smart MUltipleXed Irc o ports/141443 mono [new port] irc/smartirc4net: Multi-layered IRC library o ports/141442 mono [new port] devel/nini: .NET configuration library a ports/141440 [patch] add amd64 support for lang/gprolog o kern/141439 emulation [linux] [patch] linux_exit_group kills group leader f ports/141437 [patch] net-mgmt/grepcidr search anywhere in line patc o ports/141433 audio/aureal-kmod fails to build under RELENG_8 o ports/141426 mnag [PATCH] mail/postfix-current: update to 2.7-20091209 f ports/141418 miwi New port: emulators/snes9x-gtk o ports/141417 mandree [PATCH] mail/bogofilter: update to 1.2.1 o ports/141416 kwm audio/gstreamer-plugins-taglib build error in gstid3v2 p kern/141414 yongari [vge] vge(4) problem on 8.0-RELEASE o amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze o ports/141412 new port: java/openmq-client o ports/141411 new port: java/openmq: jms message broker f ports/141409 [PATCH] audio/libmp3splt: update to 0.5.8a f ports/141408 [PATCH] audio/mp3splt: update to 2.2.7a f ports/141406 net-p2p/p5-Net-BitTorrent-File fails to parse .torrent o ports/141397 gnome x11/gnome2: gnome desktop prevents umount without '-f' f ports/141392 [PATCH] Update sysutils/freebsd-snapshot to 20091208.1 o ports/141386 x11 x11/xorg won't build from ports f ports/141384 pav [Maintainer Update] lang/gauche 0.8.13 -> 0.9 f ports/141383 oliver security/courier-authlib: after upgrade, courier's aut f ports/141382 amdmi3 [Maintainer Update] cad/brlcad 7.12.6 -> 7.16.2 f ports/141372 pav [maintainer update] lang/ocamlduce to 3.11.1.0 f ports/141356 net-mgmt/netams 3.4.3 does not build on FreeBSD 8.0 am p docs/141353 jhb [NOTES] [patch] i386 NOTES says building acpi into ker o docs/141350 doc [patch] if_bridge(4) man page incorrectly says a bridg o ports/141345 skreuzer [PATCH] www/rt38: fix installation with WITH_FASTCGI s o ports/141342 qingli net/mpd5 pppoe connection error f ports/141341 Cannot install ports/net-im/libmsn o bin/141340 netstat(1): wrong netstat -w 1 output o kern/141328 xen [xen] [panic] gstat exit causes kernel panic from unma o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o ports/141324 mi [UPDATE] devel/icu: update to 4.2.1 o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail o docs/141316 doc ntpd(8): ntpd does not honor -d flag o kern/141314 net Network Performance has decreased by 30% [regression] o usb/141313 usb [usb8] nvidia USB 2.0 controller - stops copying on US o misc/141311 [build] "make delete-old" leaves some unnecessary file o ports/141308 ume security/cyrus-sasl2 + authdaemond + postfix stopped w o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o ports/141288 yzlin New port: www/py-beautifulsoup30 o kern/141285 net [em] hangs down/up intel nic during creating vlan o ports/141281 anders [patch] security/pwman o ports/141279 girgen databases/postgresql81-client depends on libicu p kern/141276 yongari [vge] Strange behavior with vge gigabit ethernet adapt o conf/141275 rc [request] dhclient(8) rc script should print something o ports/141272 x11 x11-drivers/xf86-video-ati and x11-drivers/xf86-video- o bin/141264 ntpd(8) crashes when tries to use an oncore reference o conf/141258 rc /etc/rc.d/tmp may act incorrectly based on unprivleged o kern/141257 fs [gvinum] No puedo crear RAID5 por SW con gvinum o kern/141256 net [iwn] iwn(4) causes page fault on interface up f ports/141253 dinoex print/cups-base port improperly compiles SSL support a ports/141251 roam mail/vpopmail: Segmentation Fault (core dump) on vdeli o ports/141249 wen [NEW PORT] www/p5-HTML-FormFu-Imager: Imager.pm helper o docs/141245 blackend [handbook][patch] Chapter 31.3 Wireless Networking: Up a ports/141238 pgollucci net-mgmt/net-snmp - net-mgmt/php[45]-snmp -- configur o ports/141236 alepulver games/worldofpadman gives error parsearg() - expected o kern/141235 fs [disklabel] 8.0 no longer provides /dev entries for al o docs/141227 blackend Handbook/sysinstall documentation about distributions a ports/141226 gnome port textproc/libxml2 latest patch seems broken o ports/141223 x11 x11-drivers/xf86-video-chips needs to be updated to 1. o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o ports/141200 mav net/mpd5 asserts on reconnection over tcp o threa/141198 threads [libc] src/lib/libc/stdio does not properly initialize o kern/141194 fs [tmpfs] tmpfs treats the size option as mod 2^32 f ports/141193 dinoex print/cups (ver-1.4.2) port is broken for usb printers o docs/141191 bland [patch] articles/cups: russian translation is missing o ports/141188 sysutils/freebsd-snapshot does not report all errors f ports/141187 sysutils/freebsd-snapshot does not check /etc/rc.conf. o ports/141183 ruby ports/japanese/ruby-chasen update o ports/141180 tobez [PATCH] devel/p5-Getopt-Declare: simplify dependency o ports/141178 skv [PATCH] www/p5-Test-HTTP: patch for utf8 URI o kern/141177 fs [zfs] fsync() on FIFO causes panic() on zfs o bin/141175 New cpio(1) in FreeBSD 8 regressed and left out a prev f ports/141173 New Port: textproc/yali o ports/141166 luigi [patch] sysutils/syslinux: update to version 3.83 s ports/141162 gnome x11-toolkits/pango 1.26 introduces crashes with epipha o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs o ports/141149 bsam sysutils/libgksu: gksu port hangs, never displays stdo o ports/141145 x11 devel/makedepend: causes problem with openssl & X s ports/141140 [PATCH] www/p5-Mojo: update to 0.999913, take maintain f ports/141139 kuriyama databases/pgtop: pg_top doesn't work o ports/141138 miwi [NEW PORT] databases/p5-DBIx-Custom: Customizable DBI o ports/141137 miwi [NEW PORT] devel/p5-Object-Simple: Simple class builde o ports/141135 girgen databases/postgresql84-server is compiling without vit o kern/141134 qingli [ppp] "ioctl (SIOCAIFADDR): File exists" error when co f ports/141133 python [NEW PORT] net-p2p/py-transmissionrpc p amd64/141130 jhb rpc may causes high cpu usage o ports/141127 lippe New port: www/ompload upload files to http://omploader o docs/141125 doc [patch] Typo of "NUL" in getline.3 man page o ports/141122 wen [NEW PORT] databases/p5-DBIx-Custom: Customizable simp o i386/141119 i386 [irq] Stop starting on computer with ISA network card o ports/141116 x11 [hang] x11/xorg: ATI radeon xorg freezes [regression] o ports/141113 miwi [NEW PORT] devel/p5-Cache-Memcached-Tie: Use Cache::Me o amd64/141112 amd64 [ata] [panic] Kernel panic when booting with any sATA o ports/141110 miwi [NEW PORT] textproc/p5-HTML-TurboForm: fast and compac o ports/141108 wen [maintainer update] update editors/p5-Padre to 0.50 o ports/141105 glewis java/jdk16 (and possibly jdk15) build broken after r19 o kern/141104 [hang] 64 bit core freezes at high load f ports/141103 net/stone strange behavior on 8.0-RELEASE f ports/141101 miwi [NEW PORT] devel/p5-Variable-Eject: Eject variables fr o ports/141099 wen [NEW PORT] devel/p5-Variable-Eject: Eject variables fr o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS o amd64/141060 amd64 [install] Can't install 8.0-RELEASE on the server wher o ports/141058 wen [UPDATE] update databases/rrdtool to 1.4.2 o ports/141054 sem lost dependency in /usr/ports/mail/vexim o ports/141052 lev [PATCH] devel/mingw32-bin-msvcrt: update to r3.17.a3.1 o conf/141050 fstab(5): Problem with userquota, groupquota parameter f ports/141046 miwi [Patch]www/pecl-pecl_http should be removed o ports/141045 itetcu [PATCH] mail/postfix: fix build with Kerberos5 on 8.0/ o kern/141034 [libz] libz in base system does not use symbol version s ports/141033 gnome [PATCH] allow to build devel/libsoup without gnome o conf/141032 misleading documentation for rtadvd.conf(5) raflags se o ports/141026 miwi [NEW PORT] devel/p5-Variable-Eject: Eject variables fr o kern/141023 net [carp] CARP arp replays with wrong src mac f ports/141022 New Port: astro/traveling_salesman o bin/141016 [libpam] PAM checks in sshd too few? f ports/141015 gnome sysutils/consolekit: consolekit-0.4.1_1 fails to build o kern/141011 geom [geli] Encrypted root, geli password at boot; enter ke o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o ports/141009 jpaetzel Incomplete post-install script with -DBATCH on net/isc o ports/141004 itetcu [PATCH] net/libevnet: update to 0.3.11 + misc. cleanup f ports/141001 net/ssltunnel-server/ depends on /sbin/pppd o ports/140999 multimedia [PATCH] audio/wavpack: update to 4.60.0, take maintain o ports/140994 clsung [PATCH] devel/p5-IO-Async: update to 0.26 + tweak RUN_ f ports/140990 lx [UPDATE] Patches to update chinese/scim-tables to 0.5. o docs/140989 doc man page errors: security(7), VFS(9) o ports/140983 portmgr [patch] refactor bsd.port.mk and introduce bsd.rrd.mk o kern/140979 acpi [acpi] [panic] Kernel panic (fatal trap 12: page fault p bin/140976 jh comm(1) mishandles lines with tabs f ports/140975 miwi [NEW PORT] textproc/p5-HTML-TurboForm: fast and compac f ports/140974 miwi [NEW PORT] devel/p5-constant-boolean: Define TRUE and f ports/140973 miwi New port: www/xspd An http, compiled and interpreted, o bin/140972 sysintall(8): 8.0-RELEASE-i386-memstick Fixit broken - o kern/140970 net [bce] The two NetXtreme II BCM5709S NICs on our HP Bl4 o ports/140968 perky x11-toolkits/py-tkinter(devel/pth): py26-tkinter-2.6.4 o conf/140965 [terminfo] Cannot create terminfo database because ncu p docs/140962 danger ldd(1) man page example bug p usb/140951 thompsa [uftdi] [patch] Add support for FT2232D Dual USB UART/ o ports/140949 acm [UPDATE] x11-toolkits/irrlicht to v1.6 p docs/140940 danger sctp manual pages contain links to pages in section 2 o ports/140939 secteam [patch] security/vuxml: fix and extend files/newentry. o ports/140937 python [Update] all py-twisted* ports to 9.0.0 o ports/140935 jpaetzel net/isc-dhcp31-server: FreeBSD patch makes dhclient no f kern/140932 fork+exec from threaded FreeBSD 7.2 application o usb/140928 usb [u3g] [usb8] [patch] ZTE CDMA2000 1X EV-DO (MG478/AC87 o ports/140927 openoffice problem build editors/openoffice.org-3 o ports/140925 print/hplip3: patch to improve behaviour of hp-check p usb/140923 thompsa [axe] [patch] [usb8] Add support for new rev of USB Et o usb/140920 usb [install] USB based install fails on 8.0-RELEASE [regr o docs/140918 doc [handbook] update 8.0 handbook about serial port /dev o ports/140917 nobutaka problem compiling multimedia/libxine o ports/140916 mono lang/mono (2.4.2.3) installation fails o ports/140913 anders [PATCH] comms/minicom: use correct serial device on 8. p usb/140904 jhb [build] Kernel fails to build if some unused USB Ether o ports/140901 python [Update]mail/py-turbomail:update to 3.0.3 f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de f ports/140897 [UPDATE] net/freeradius2 to 2.1.7 o ports/140895 hrs net/openbgpd exit, when kernel table change o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140892 top(1): Incorrect cpu usage of per process under FreeB o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o bin/140887 randi 8.0: sysinstall(8) needs to update to new serial port f usb/140883 usb [axe] [usb8] USB gigabit ethernet hangs after short pe o ports/140882 lev devel/py-subversion: subversion-1.6.6_1 build error wi s ports/140880 ruby ports-mgmt/portupgrade: portversion confused with ezm3 f amd64/140876 gavin During just a bit Server load apache output garbled (h o amd64/140873 gavin [install] Cannot install 8.0-RELEASE on Thinkpad SL300 o ports/140868 xride x11/wdm: cannot type password after exitting window ma f ports/140867 net-mgmt/nagios-plugins: check_icmp default packets si o ports/140865 multimedia [PATCH] multimedia/x264: update to 0.0.20091124 o bin/140863 freebsd-update(8) fails to check that writes will succ o ports/140860 fluffy [maintainer update] Update port: graphics/opencv 1.0.0 o kern/140858 [hang] System freeze during boot when PC-Card NIC inst o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- s docs/140847 doc [request] add documentation on ECMP and new route args o bin/140843 sysinstall(8): cannot software install from usb o bin/140842 sysinstall(8): destroyed ncurses interface with FBSD8. f amd64/140840 gavin [boot] FreeBSD can't find any partion or hard disk to f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o kern/140835 [libfetch] fetchParseURL(3) returns success with inval f ports/140833 python cannot install math/py-numpy (needed by science/py-sci f ports/140829 www/tomcat55 rc.d script is broken and will not stop t o ports/140828 gcooper Upgrade devel/py-nose to 0.11.1 o docs/140814 doc [handbook][patch] Chapter 15 - Jails: add section on c f ports/140811 [patch] sysutils/zfs-snapshot-mgmt: don't barf on top- a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o ports/140809 x11 x11/xorg: Xorg 7.4 radeon drm crashes 8.0 o kern/140796 net [ath] [panic] privileged instruction fault o ports/140792 graphics/mesa-demos: Broken build due to missing symbo f ports/140791 lioux [PATCH] textproc/libtre: Fix build on systems where GC f ports/140790 lioux [PATCH] mail/crm114: Fix build on systems where GCC st o kern/140778 net [em] randomly panic in vlan/em o ports/140777 lev [PATCH] devel/mingw32-bin-msvcrt: update to r3.16.a3.1 o ports/140775 x11 x11/xorg: fatal trap 12 after closing XORG with CTRL-A s ports/140767 mandree [new port] sysutils/libss o ports/140764 x11 x11-drivers/xf86-video-openchrome segfaults with VIA K o kern/140752 [ata] HDD power-off procedure is not clean o amd64/140751 acpi [acpi] BIOS resource allocation and FreeBSD ACPI in TO o kern/140742 net rum(4) Two asus-WL167G adapters cannot talk to each ot f ports/140732 yzlin [UPDATE] Update to security/sshguard to 1.4 f ports/140731 emulators/hatari does not build if emulators/rtc is in o ports/140730 miwi [UPDATE] science/libctl to 3.1 and take maintainership o kern/140728 net [em] [patch] Fast irq registration in em driver o docs/140725 darrenr wrong directory in ipnat(8) man page o amd64/140715 amd64 [boot] Dell M600 Blade fails to boot 7.2+ 64 bit f usb/140714 usb [hang] [usb8] system freeze when disconect my flash us f kern/140712 yongari [fxp] fxp driver starts with rxcsum on f ports/140704 miwi maintainer update for net-p2p/verlihub* ports o docs/140703 doc [patch] add xorg-minimal as alternative for X11 Distri o ports/140699 perky [PATCH] archivers/dpkg: update to 1.14.25 f ports/140698 update: databases/xapian-bindings - update to 1.0.16 o kern/140697 pf [pf] pf behaviour changes - must be documented f ports/140696 net-im/qwit: update to qwit-1.0 o ports/140693 amdmi3 games/blinkensisters cannot be compiled o kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140684 net [bce] Broadcom NetXtreme II BCM5709 1000Base-T - fail f ports/140683 miwi [PATCH] www/phpSysInfo: Update to 3.0 o kern/140682 fs [netgraph] [panic] random panic in netgraph f ports/140681 Modify port devel/php5-ice to allow compiling with PHP s ports/140680 Modify port databases/phpmyadmin to allow building wit o ports/140678 ale Update port lang/php5 to upstream version 5.3.0 o kern/140661 fs [zfs] /boot/loader fails to work on a GPT/ZFS-only sys o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf o i386/140655 i386 [panic] Lenovo X300: fatal trap 12 after /sbin/halt -p o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C o conf/140650 [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 net [em] [patch] e1000 driver does not correctly handle mu o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o www/140642 www addition for user group page f ports/140641 [NEW PORT] databases/tuning-primer : MySQL performance o kern/140640 fs [zfs] snapshot crash o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe f ports/140628 [PATCH] deskutils/plasma-applet-cwp: update 0.2.12 -> f ports/140621 edwin Add support for /etc/cron.d and /usr/local/etc/cron.d o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140614 usb [uplcom] [patch] adding support for Radio Shack Gigwar f ports/140610 edwin Update port: net/freenet6 Port update to 6.0.1 o ports/140608 openoffice /usr/ports/editors/openoffice.org-3 start up problem o kern/140600 [swi] [panic] current process = 15 (swi1: net) s kern/140597 net [request] implement Lost Retransmission Detection o amd64/140596 amd64 [panic] Kernel panic/crash o bin/140595 [request] sysinstall(8): Replace "Country Selection" w o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o usb/140590 usb [bluetooth] [usb8] ng_ubt(4) ng_l2cap_process_cmd_rej o ports/140589 kmoore [update] x11-themes/kde4-windeco-nitrogen - update to o ports/140583 hrs ports/print/acroread9 - handbook and port fail to ment o www/140580 www svnweb file logs are useless p bin/140571 gavin [patch] ifconfig(8) does not set country DE o kern/140567 net [ath] [patch] ath is not worked on my notebook PC o kern/140564 net [wpi] Problem with Intel(R) PRO/Wireless 3945ABG o ports/140560 tobez [PATCH] devel/p5-IPC-Cmd: update to 0.52 o ports/140557 ports shells/44bsd-csh ESC file completion and ^D (vie f ports/140546 The execution result of sysutils/scprotect is inapposi f ports/140542 edwin sysutils/isc-cron should be compatible with cron from o ports/140533 gnome bsd.gnome.mk - mtree may get parameters w/o space p bin/140530 delphij [patch] make burncd(8) honour envar BURNCD_SPEED f ports/140525 matusita [panic] emulators/vmware-tools6: VMware: Kernel panic o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g p bin/140497 delphij [libc] [patch] Maintainance update for sscanf.c p bin/140496 delphij [libc] [patch] Maintainance update for sprintf.c o docs/140495 doc [patch] /etc/rc.conf.d is not documented in rc.conf(5) o docs/140494 doc [patch] Man page fix for getc(3) p bin/140493 jh [patch] truss(1) log file descriptor shared with trace o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d f ports/140476 gabor mail/phplist upgrade to 2.10.10 o docs/140474 doc signal(3) missing reference to NSIG f ports/140471 security/nessus-libnasl fails to compile f ports/140470 security/nessus-libraries fails to compile o bin/140462 devd(8): [regression] devd.pid locked by /etc/rc.d and f kern/140461 [vm] Fail to read from swap. The swap_pager.c contains o docs/140458 doc [patch] Grammar fix for to{upper,lower}(3) o docs/140457 doc [patch] Grammar fix for isspace(3) p docs/140456 roam [patch] Grammar fix for isprint(3) o kern/140453 multimedia [sound] No sound inside Virtualbox on 50% volume o ports/140450 shells/scponly: chrooted scp-shell doesn't work f ports/140449 tmclaugh ports/security/nmap needs utoconf o i386/140448 i386 [boot] BTX loader hangs after displaying BIOS drives o kern/140446 netstat(1): netstat -f ng not working on 7-STABLE o ports/140445 New Port: net/rsmb Really Small Message Broker o docs/140444 doc [patch] New Traditional Chinese translation of custom- o kern/140441 [kernel] [patch] order of arguments for mtx_init is in o conf/140440 rc [patch] allow local command files in rc.{suspend,resum o misc/140436 [nanobsd] pkg-add process fails when there is no /usr/ o docs/140435 doc ls(1), section STANDARD: the -A is exception from POSI o kern/140433 fs [zfs] [panic] panic while replaying ZIL after crash o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o kern/140416 [mfi] mfi driver stuck in timeout o ports/140414 clsung textproc/libmrss port uses non-standard way to use php o ports/140412 ale Mk/bsd.php.mk: PHP_PORT overriding required o ports/140408 yzlin [MAINTAINER-UPDATE] update net/delegate to 9.9.5 p bin/140397 delphij [patch] newsyslog(8) doesn't handle stopped daemons co o ports/140393 sylvio security/barnyard2, port update to new version o amd64/140391 amd64 [hang] powerd(8) freezes computer on Phenom II compute o bin/140384 [patch] chio(8) fix some harmless uninitialized argume o www/140378 www query-pr.cgi has some bugs o misc/140376 [build] installworld fails trying to use 'chflags schg o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/140369 doc [patch] src/contrib/pf/man/pf.4 o ports/140365 [patch] databases/firebird20-client coredumps o ports/140364 ruby ports-mgmt/portupgrade-devel: #! line substitution is o kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid a ports/140357 pgollucci [patch] www/apache22 and www/apache20: fix CVE-2009-35 o kern/140352 geom [geom] gjournal + glabel not working o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti o ports/140339 wen [patch] sysutils/tmux: don't assume \177 as backspace o kern/140338 [vm][panic] FreeBSD 8.0 RC2 with vm.pmap.pg_ps_enabled o ports/140335 ale [patch] graphics/php5-gd: fix CVE-2009-3546 o ports/140328 luigi [PATCH] sysutils/fio: update to 1.25 o kern/140326 net [em] em0: watchdog timeout when communicating to windo p usb/140325 thompsa [libusb] Missing/incorrect initialisation and memory l f ports/140321 ale databases/php5-mysql: php alert o kern/140313 xen [xen] [panic] FreeBSD8 RC2 as PV domU crashes during c o bin/140309 bad syntax cause yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(1) f ports/140303 net-mgmt/docsis can not compile filters under amd64 pl o ports/140296 tobez [PATCH] databases/p5-Cache-Memcached-Fast: update to 0 o ports/140293 skv [PATCH] devel/p5-Data-UUID: update to 1.203 o ports/140280 lev [PATCH] devel/mingw32-gcc: update to 4.4.0, take maint o ports/140273 ruby ports-mgmt/portupgrade-devel chokes on bsdpan pkgs o i386/140268 i386 [install] 8.0-RC* does not install on MSI MS-7255 [reg o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o usb/140259 usb [libusb] [patch] [usb8] libusb-1.0 portability/compati o ports/140254 x11 x11-drivers/xf86-video-cirrus: Black Screen with Cirru o kern/140251 [ata] [patch] add UDMA5 support to Intel SCH o ports/140250 lev devel/subversion doesn't install on 8.0-RC2 o kern/140245 net [ath] [panic] Kernel panic during network activity on o ports/140243 mnag RFE: databases/sqlite3 - Please make BUILD_DEPENDS on o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o ports/140237 miwi irc/conspire-1.0.0 fails to build. o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o ports/140232 Resolve conflicts w/ devel/antlr & devel/pccts o bin/140228 [patch] mktemp(1) buffer overrun o ports/140216 gnome [patch] devel/nspr does not check POLLHUP in PR_Connec o ports/140215 openoffice editors/openoffice.org-3: Fatal error on OpenOffice cl o ports/140199 skv update: www/p5-Catalyst-Plugin-Server - update to 0.26 o ports/140188 itetcu [PATCH] some ports need adjustment to properly expand o kern/140185 [patch] expand_number(3) does not detect overflow in n f ports/140184 sylvio [patch] Update net/linux-nx-client to 3.4.0 o ports/140177 new port : textproc/glpi-plugins-DataInjection : This o ports/140176 new port : textproc/glpi-plugins-AdditionalReports : T o ports/140174 New port: net-mgmt/glpi-plugins-tracker-agent : Agent o misc/140173 [nanobsd] [patch] Small nanobsd pkg install change p kern/140172 gavin [uart] [patch] Support ACPI-only tablet PC screen o ports/140170 nork net/liveMedia: install shared libraries and thus fix r o ports/140168 new port: net-mgmt/glpi-plugins-tracker-server, plugin o ports/140162 hrs print/teTeX listings module bug o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A f ports/140157 glarkin New port: www/trac-bitten Continuous integration for T o kern/140156 emulation [linux] cdparanoia fails to read drive data o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o amd64/140145 amd64 [boot] Installation boot sequence freezes o bin/140143 [patch] dlopen(3) doesn't promote RTLD_GLOBAL for link o kern/140142 net [ip6] [panic] FreeBSD 7.2-amd64 panic w/IPv6 o kern/140134 fs [msdosfs] write and fsck destroy filesystem integrity f ports/140099 sylvio databases/tokyotyrant : Upgrade to 1.1.37 o ports/140098 kde misc/kdeedu4 && ld: cannot find -lgps o ports/140093 krion [patch] lang/gawk: update to 3.1.7 o kern/140091 scsi [da] [patch] allow for da(4) large block transfer than o bin/140089 [libcsu] [patch] libcsu: Bump to WARNS=6 o ports/140083 danfe sysutils/autopsy needs to be updated o docs/140082 doc [handbook] handbook/jails: russian translation is miss o bin/140081 [patch] routed(8) increase to WARNS=3 o bin/140078 [patch] route(8) increase to WARNS=3 o docs/140075 doc release notes: missing word "NOT", which changes all t a ports/140073 wxs net/silc-irssi-plugin crashes upon joining any channel o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/140067 [boot] 8.0-RC2 from ISO, after install, hangs on boot o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) o bin/140061 [patch] restore(8) increase to WARNS=2 o bin/140060 [patch] nos-tun(8) WARNS=3 cleanup o kern/140051 net [bce] [arp] ARP not sent through Bridge Firewall with o kern/140036 net [iwn] [lor] lock order reversal with iwn0_com_lock and o kern/140018 [boot] locks up during boot on cpu error on Dell Power p bin/140017 delphij [patch] umount(8) raise to WARNS=3 o bin/140016 [patch] sysctl(8) raise WARNS to 3 o ports/140015 ale Unable to stop www/tomcat6 from rc.d o conf/140009 configuration issue NIS in nsswitch.conf(5) o ports/140008 ruby ports-mgmt/portupgrade: many papercut omissions on por f ports/140007 [repocopy] devel/gdb6 to devel/gdb66 o bin/140000 [patch] mount_ntfs(8) WARNS6 cleanup o i386/139999 i386 [panic] random freeze and crash o amd64/139998 amd64 [panic] 7.2 amd64 panic in kern_mutex.c:339 o conf/139997 [kbdmap] [patch] Swissgerman keyboard support for MacB o bin/139995 [patch] mount_hpfs(8): WARNS6 cleanup o bin/139994 [patch] fsirand(8): increase to WARNS=2 a usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o bin/139989 atacontrol(8) freezes the system o gnu/139982 ld(1): BFD internal error o ports/139934 sobomax [PATCH] devel/py26-interface: update to 0.97 o ports/139933 roberto [PATCH] devel/libdlmalloc: update to 2.8.4 o amd64/139924 amd64 [boot] cd or dvd not load o ports/139872 sergei [PATCH] ports-mgmt/porttools: improve port's directory o misc/139869 bad compression on YOUR DVD f ports/139867 mail/isoqlog catch segmentation fault under AMD64 o ports/139848 add pre-caching to net-mgmt/nagios rc.d script o kern/139847 geom [geom_mbr] load/unload causes system to hang o ports/139841 itetcu [PATCH] Update of security/nikto to 2.1.0 o kern/139825 imp [patch] fix spelling of Copyright in truss and sys/sys o ports/139820 openoffice editors/openoffice.org-3 3.1.1 failed to build with GC f kern/139811 gavin FreeBSD did not recognize Intel Gigabit ET Dual Port S o bin/139802 [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o ports/139794 stas [PATCH] net/ruby-ldap: update to 0.9.9 o kern/139761 net [bce] bce driver on IBM HS22 [No PHY found on Child MI o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o ports/139726 stas lang/ruby18 (v1.145 Makefile) install fails "Directory o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c p kern/139723 [rtld] Quagga/zebra abort trap 6, FreeBSD 8.0-RC1 a kern/139718 trasz [reboot] all mounted fs don't get synced during reboot o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a o ports/139697 lev [PATCH] devel/mingw32-binutils: update to 2.20 o docs/139682 doc [PATCH] dialog(1) man page does not mention radiolist o ports/139662 timur [PATCH] net/samba33: update to 3.3.9 f kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D f ports/139652 mi [devel/icu] Little patch for compiling with gcc44 o bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o ports/139630 itetcu [PATCH] deskutils/treeline: update to 1.3.0 f ports/139629 pgollucci new port security/pam_memcache: a PAM module for authe o amd64/139614 amd64 [minidump] minidumps fail when many interrupts fire o ports/139607 openoffice [Patch] editors/openoffice.org-3-devel: Add knobs for o bin/139606 pkg_add(1) coredumps silently on atlantis symlink o kern/139604 [patch] [ichwd] watchdog sometimes does not enable o bin/139601 [patch] make(1): variable substitution for $@ in depen a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f ports/139587 edwin [PATCH] games/xrally: fix broken mtree with custom PRE o kern/139581 ipfw [ipfw] "ipfw pipe" not limiting bandwidth f ports/139580 jkim audio/oss - "overflow" messages o ports/139579 jkim overflow in audio/oss f kern/139576 ed [syscons] [patch] blink screen too noisy f ports/139575 dinoex security/pam_pwdfile: after upgrade to pam_pwdfile-0.9 o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo o ports/139560 miwi New port: games/opensonic o kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o ports/139556 miwi [PATCH] security/beecrypt: take maintainership and upd o ports/139553 alepulver net-p2p/tribler: Fatal Error on start up o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause o kern/139527 [twa] twa driver fails to build in CURRENT f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o ports/139509 x11 x11-servers/xorg-server: runtime problems in latest (2 o bin/139492 pkg_install(1) - overlapping data buffer in call to sn o ports/139487 itetcu [UPDATE] mail/dbmail: update to 2.2.12 o ports/139483 oliver x11-fm/thunar name is in lowercase while package name o ports/139479 java java/linux-sun-jdk16 port doesn't work / needs update o ports/139457 jmelo [PATCH] devel/prepstools: update to 2.2.0 o ports/139456 jmelo [PATCH] benchmarks/siege: update to 2.69 a kern/139454 bz [jail] traceroute does not work inside jail f ports/139452 [patch] krb5 support in java/openjdk6 o ports/139450 jmelo [PATCH] mail/uebimiau: update to 2.7.11 o ports/139449 openoffice editors/openoffice.org-3-devel not building properly w f ports/139448 [NEW PORT] japanese/asterisk16-sounds: Japanese sound o ports/139440 alepulver [panic] 8.0 RC1 panics on writing large files to sysut o ports/139435 print/cups-smb-backend: Add ability to use difference o ports/139426 dougb GSSAPI support for FreeBSD BIND dns/bind95 and dns/bin o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/139423 emulation [parallels] Networking does not work on amd64 guest on p kern/139422 remko [jail] make the jail safe for the parent system p docs/139413 des pam.conf documentation bug o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o ports/139405 jpaetzel net/isc-dhcp30-server: DHCP server with two interfaces o kern/139403 [includes] absense of AUE_NULL o bin/139389 [patch] Change top(1) to display thread IDs o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous o ports/139371 timur /usr/ports/net/samba-pdbsql compile error o kern/139363 fs [nfs] diskless root nfs mount from non FreeBSD server s ports/139361 sylvio [FIX] net/ntop 3.3.10 don`t install needed file o ports/139350 miwi New port: devel/wt f ports/139347 sylvio [patch]finance/kmymoney2 port update to 1.0.0 o bin/139346 net [patch] arp(8) add option to remove static entries lis o bin/139345 [patch] handle SIGINFO in sleep(1), etc. o ports/139344 joerg Update devel/libdwarf and devel/dwarfdump to version 2 f ports/139341 glarkin NEW PORT: devel/aegis-devel f ports/139339 sylvio [patch] www/lynx update to 2.8.7.1 o docs/139336 doc [request] ZFS documentation suggestion o ports/139321 clsung security/snort 2.8.4.1_1 not compiling - dlsym no mess o bin/139319 [patch] flex(1): fix prototypes, esp. when YY_NO_INPUT f ports/139315 itetcu [MAINTAINER] audio/liblastfm - fix build with custom P o bin/139314 install(1): install -d reports success on failure p kern/139312 delphij [tmpfs] [patch] tmpfs mmap synchronization bug f ports/139303 arved Update: www/MT and Other language 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 f misc/139263 [install] Can not install FreeBSD 7.2 from a USB CD/RO o conf/139255 8.0-RC1 network.subr calls route(8) with obsolete para o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o gnu/139239 ld(1) /usr/bin/ld: Please report this bug. o kern/139232 [panic] Kernel panic (spin lock held too long) p docs/139230 brueffer mknod(8) references /sys/conf/majors o kern/139226 ipfw [ipfw] install_state: entry already present, done o kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f ports/139203 sysutils/freebsd-snapshot more careful patch not depen f kern/139193 gavin [txp] ThreeXP 3com network card during install, doesn' o ports/139188 vbox [panic] emulators/virtualbox: When "kldload vboxdrv.ko o bin/139181 randi WITHOUT_LEGACY_CONSOLE=1 breaks sysinstall(8) o ports/139169 maho math/atlas post-build target fails with WKDIRPREFIX de o docs/139165 doc gssapi.3 man page out of sync with between crypto and o kern/139162 net [fwip] [panic] 8.0-RC1 panics if using IP over firewir o docs/139153 doc [patch] the hier(7) man page needs to be updated o ports/139148 pb multimedia/dvdauthor: progress estimation bug in dvdun o bin/139146 gcc(1): gcc -m32 doesn't quite work o kern/139144 [kbd] [patch] CapsLock LED should not depend on keymap o usb/139142 usb [ehci] [usb8] [patch] ehci drivers (NVIDIA nForce4 USB o bin/139135 cperciva freebsd-update(8) misbehaves on upgrade and shows erro s sparc/139134 sparc64 kernel output corruption o kern/139127 [vfs] False negative vfs cache entry o ports/139118 lev devel/mingw32-gcc fails o kern/139117 net [lagg] + wlan boot timing (EBUSY) o ports/139116 portmgr bsd.port.mk: call target "install-rc-script" before "p o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] f ports/139107 [patch] sysutils/jfbterm: convert to bsdmake o docs/139095 manolis new article on creating an internal FreeBSD Update Ser o kern/139093 yongari [msk] msk FIFO rx overrun f kern/139089 [panic] Panic: ffs_blkfree o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o kern/139080 [libc] [patch] closelog() can close negative file desc o kern/139079 net [wpi] Failure to attach wpi(4) f ports/139075 Please repo copy lang/squeak to lang/squeak-dev p kern/139072 pjd [zfs] zfs marked as production ready but it used a dep o ports/139071 multimedia multimedia/x264 does not link on 8-RC1 o ports/139070 ale repocopy graphics/jpgraph -> graphics/jpgraph1 f ports/139064 [PATCH] net/freeradius2: rc.d script should deal with f ports/139060 devel/gearmand: Maintainer patch was missing proper li o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 o bin/139052 kan gcc(1): Stack protection breaks -fprofile-generate on f ports/139046 pgollucci mail/postgrey doesn't use local pidfile o ports/139045 x11 x11-drivers/xf86-video-ati: update to 6.12.3 f ports/139042 deskutils/blogtk: fails to start as the version in the o conf/139040 [patch] 100.clean-disks shouldn't traverse devfs mount s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o kern/139019 [libc] [patch] Add xdr_sizeof() to libc. o docs/139018 doc translation of submitting.sgml from docproj/submitting o bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o kern/139014 [null] /dev/null must be immunable to delete/unlink o ports/139012 tobez New Port: lang/rakudo Perl 6 Compiler for Parrot VM o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o kern/138999 net [libc] lighttpd/php-cgi with freebsd sendfile(2) enabl f ports/138990 sysutils/nagios-statd reports /dev full o www/138986 linimon Portsmon's portdependencytree.py is down o gnu/138983 [binutils] System binutils too old for modern CPUs (la o ports/138982 wxs [PATCH] security/sudo: update to 1.7.2.1 f ports/138976 [patch] Restrict news/sabnzbdplus to python <= v2.5 o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o bin/138961 ldap groups don't work with su(1) o i386/138948 i386 [ata] [regression] da0: Fi c ports/138947 obrien editors/vim should default to gtk20 not gtk1 o bin/138945 [patch] sysinstall(8): remove configuration of /usr/X1 o kern/138944 emulation [parallels] [regression] Parallels no longer works in f ports/138940 security/p5-SAVI-Perl can work on amd64 o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude f ports/138929 portmgr [PATCH] security/heimdal update to 1.2.1 o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade o usb/138915 usb [patch] [usb8] [usb67] add support for SheevaPlug seri a usb/138904 usb [rum] [panic] [usb67] unpluging USB wifi card panics s o docs/138887 doc manpage ports(7) incorrect f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest a usb/138879 usb [uftdi] [patch] Patch to add support for CTI USB-Mini o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in o kern/138863 kib [xen] [panic] pmap_invalidate_cache_range panic on boo o kern/138860 emulation [linux] linux_socketcall() causing buffer overflow o bin/138858 patch(1) assumes that a file appears only once in the o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o kern/138851 [ata] FreeBSD by default does not support ATAPI CDs o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o docs/138845 doc Exceeding kern.ipc.maxpipekva refers to tuning(7) whic o ports/138830 net/linux-nx-client TCP_NODELAY problem f ports/138823 cannot upgrade ports o ports/138806 New port: games/avp-demo ("Aliens versus predator" dem o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o ports/138797 joerg [patch] \newif command support to print/latex2rtf o ports/138796 ruby [patch] - update converters/ruby-lv f ports/138792 [patch] - update security/pgp6 o kern/138790 fs [zfs] ZFS ceases caching when mem demand is high o kern/138789 scsi [cam] [patch] cd(4) patch for drives/discs failing the o ports/138786 x11-toolkits/plib unable to connect to network o ports/138784 python lang/python26 segfault o kern/138782 net [panic] sbflush_internal: cc 0 || mb 0xffffff004127b00 o ports/138772 nox emulators/qemu should build on SPARC o kern/138739 net [wpi] wpi(4) does not work very well under 8.0-BETA4 o i386/138737 i386 [endian] [patch] Patch for bswap64(9) operation on IA o ports/138732 hrs ports-mgmt/portbrowser only works under FREEBSD5 o java/138729 java java/jdk16: setting 'export AWT_TOOLKIT=MToolkit' caus o java/138728 java java/jdk16: SIGSEGV in java runtime f kern/138709 pjd [zfs] zfs recv hangs, pool accesses hang in rrl->rr_cv o ports/138706 java /lib/libz.so version bump prevents java/jdk* from upgr o kern/138694 net [bge] FreeBSD 6.3 release does not recognize Broadcom o conf/138692 [request] [patch] 450.status-security should exit with o amd64/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ o misc/138679 [mirrors] Current 7.2-STABLE i386 kernel won't build: o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop f usb/138675 linimon [usb8] [panic] page fault, perhaps in USB f kern/138666 net [multicast] [panic] not working multicast through igmp o docs/138663 doc system(3) man page confuses users about "return value o kern/138662 [panic] ffs_blkfree: freeing free block f amd64/138661 amd64 [panic] Kernel Panic after typing "reboot" o kern/138660 net [igb] igb driver troubles in 8.0-BETA4 o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138652 net [tcp] TCP window scaling value calculated incorrectly? o ports/138639 kuriyama [REMOVE] www/trac-webadmin was incorporated to www/tra o ports/138637 New port: graphics/xfractint-devel o ports/138633 keramida devel/libgsf: cannot compile due to gnome problem o kern/138631 [panic] FreeBSD 7.2 panics when I try to start X o ports/138629 ahze [Patch]graphics/py-opengl:change the dependence to PYN o amd64/138626 amd64 telepites o kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o ports/138602 audio/sphinxbase port update o ports/138581 glewis java/diablo-jdk16: java/eclipse 3.4.2 crashes with SIG o kern/138571 [lor] LOR on 8.0-BETA3-AMD64 o usb/138570 usb [usb] [panic] USB mass device panics current 7.2-STABL o bin/138560 ifconfig(8): wpa_supplicant(8): Incorrect usage of str o usb/138548 gavin [usb67] usb devices periodically have unknown activity o bin/138547 dhcpd(8) wrong behaviour with multiple networks o ports/138541 hrs print/acroread9 execution fails with "acroread: fork: o kern/138537 [ata] [panic] Memory modified after free o ports/138533 clsung databases/mysql-proxy doesn't build with mysql 4.1 o kern/138531 [lor] Error message while fetching package after fresh o kern/138526 [null] /dev/null does not support nonblocking operatio o kern/138525 [ppp] [panic] Kernel corruption of pppoe lists o kern/138524 fs [msdosfs] disks and usb flashes/cards with Russian lab o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca a ports/138483 security/pam_pwdfile port doesn't work post update to f ports/138476 [panic] sysutils/fusefs-kmod: Almost regular panic dur f ports/138469 ale [ PATCH ] databases/mysql51-{server|client} bad depend o kern/138465 [tools] [patch] add data verification to tools/regress a ports/138445 net/freeradius2 problem with rlm_perl o ports/138444 mbr [panic] emulators/open-vm-tools 167859_1 hgfs cause a p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o ports/138438 graphics/sane-backends not working on FreeBSD-8 f ports/138435 [patch] databases/freetds gnutls linking error o kern/138427 net [wpi] [panic] Kernel panic after trying set monitor wl o bin/138423 sysinstall(8): Installer (and sade) get wrong number o o kern/138421 fs [ufs] [patch] remove UFS label limitations o ports/138410 ahze finance/gnucash quote price editor adds price data as o kern/138407 net [gre] gre(4) interface does not come up after reboot f ports/138402 [patch] www/awffull is not reading configuration file o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) p kern/138390 brueffer [gif] [patch] NULL pointer dereference in gif_input() p kern/138388 brueffer [pcfclock] [patch] NULL pointer dereference in pcfcloc p kern/138387 brueffer [ppbus] [patch] NULL pointer dereference in lptopen() p kern/138384 brueffer [ips] [patch] NULL pointer dereference in ipsd_dump() p kern/138383 brueffer [drm] [patch] NULL pointer dereference in mach64_dma_v o kern/138381 kmacy [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/138375 [boot] [patch] Memory leak in ficlIncludeFile() in fil o ports/138370 girgen www/mod_jk-apache2: Makefile error of mod_jk-ap2-1.2.2 o kern/138367 fs [tmpfs] [panic] 'panic: Assertion pages > 0 failed' wh o ports/138348 patch to java/openjdk6 so that build works again o misc/138347 [patch] [nanobsd] nanobsd build is broken due to mdcon o kern/138341 [nanobsd] [patch] 8.0-BETA3: nanobsd build broken due o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR on 8.0-BE o bin/138331 sam FreeBSD 8.0-beta3 wpa_supplicant(8) lost auth o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] o kern/138266 net [panic] kernel panic when udp benchmark test used as r o ports/138252 Compile Issue: databases/firebird20-client o bin/138245 [patch] find(1): find -newerXB doesn't work f ports/138242 trasz [PATCH] audio/qsynth: update to 0.3.4, fix default MID o ports/138239 trasz [PATCH] audio/fluidsynth: update to 1.0.9 o ports/138229 hrs print/acroread[89]: error while loading shared librar o ports/138228 portmgr [bsd.port.mk] New opt-in knob to compile ports with SS o ports/138213 multimedia Apply SqueezeCenter patches to audio/faad that enable f i386/138211 gavin [loader] Boot fails on Intel X5550 o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o conf/138208 rc [rc] [patch] Making rc.firewall (workstation) IPv6 awa o docs/138206 doc [patch] ntp(1): not enabled function, and false manual o kern/138202 fs mount_msdosfs(1) see only 2Gb f ports/138195 www/wwwcount IPv6 and NFS lock enable o ports/138179 ahze Fix sysutils/serpentine to not require muine o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o usb/138172 usb [u3g] [patch] [usb67] Additional dev id for u3g (Optio o kern/138171 [hang] FreeBSD hangs on boot on HP DL580 G5 system (16 o bin/138150 [mtree] [patch] fix for src/etc/Makefile mtree o bin/138146 [patch] w(1) and pkill(1) don't work on core files wit o ports/138144 openoffice editors/openoffice.org-3: 3.1.0 crashes on closing o ports/138139 portmgr [patch] teach Mk/bsd.autotools.mk about libtoolize o usb/138138 usb [u3g] [patch] [usb67] Novatel U760 for u3g (Verizon an p kern/138136 delphij [new driver] [x86emu] [patch] sys/contrib: add x86emu o bin/138131 [patch] pstat(8): pstat -t coredumps when reading from o ports/138128 sobomax net/asterisk stays longer in "wait" when app_meetme is o i386/138126 i386 [panic] Kernel panic trap 12 on bigger load o usb/138124 usb [usbaudio] [usb8] Axed uaudio functionality in the usb o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o kern/138117 [kernel] [panic] spin lock held too long o kern/138109 fs [extfs] [patch] Minor cleanups to the sys/gnu/fs/ext2f f www/138107 www New entry for vendors section on website o ports/138080 devel/gccxml fails to compile on powerpc o bin/138060 [hang] powerd(8) hangs the system solid o kern/138046 net [tcp] tcp sockets stay in SYN_SENT even after receivin o bin/138043 fs [patch] fsck_ffs(8) broken, partial patch o amd64/138029 amd64 [panic] periodically kernel panic and reboot o bin/138026 sysinstall(8) and and fdisk(8) sets slice flag to acti o bin/138025 sysinstall(8) fails to create big partition o kern/138018 yongari Realtek RTL8168 not initialized in 8-BETA2 o kern/138002 [lor] Three lock order reversals: ufs/devfs, bufwait/d f ports/137990 wxs Update of net/Scapy 2.0.1_3 o kern/137982 pf [pf] when pf can hit state limits, random IP failures o ports/137958 ruby ports-mgmt/portupgrade fails with recursive dependency f ports/137945 devel/openocd 0.2.0 fails to find ATMEL SAM-ICE as Seg o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o ports/137940 glewis java/jdk15, java/jdk16: bsd java does not start from n o ports/137934 timur net/samba33: Samba 3.2 & 3.3.7 panics & DNSSD option o i386/137925 i386 [boot] BTX loader hangs when raid volume present [regr o ports/137924 danfe www/thttpd does not require a config file, yet it is r o conf/137900 [sysctl] sysctl default values for kern.ipc.shmmax and a kern/137890 [libkvm] [patch] ps segfaults with -ax when inspecting o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o usb/137872 usb [usb67] [boot] slow booting on usb flash drive o bin/137864 [patch] sysinstall(8): add possibility to shutdown/pow o kern/137852 [lor] LOR bufwait/dirhash f usb/137848 usb [panic] [usb67] Page fault when using an USB bluetooth o bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o kern/137800 attilio [panic] -CURRENT on sparc64/ia64 immediate "panic: mtx p kern/137795 net [sctp] [panic] mtx_lock() of destroyed mutex f usb/137789 gavin [patch][usb67]Add quirks for EeePC 901 SD card reader f misc/137785 gavin Free BSD on DVD Rom o ports/137781 danfe sysutils/sleuthkit: Autopsy-2.20 is required for >=sle o kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o kern/137775 net [netgraph] [patch] Add XMIT_FAILOVER to ng_one2many o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o docs/137762 doc [handbook] proposed: mention "make delete-old" in sec o ports/137751 [new port] audio/jokosher: Multi-track non-linear audi o ports/137748 x11 x11/xorg: "unprocessed" mouse click results in effecti f ports/137733 [NEW PORT] sysutils/scribeserver: Aggregating log data o ports/137731 x11 [patch] x11-drivers/xf86-input-vmmouse s ports/137729 pgollucci www/mod_auth_kerb2 port broken on 8.0-BETA2 f ports/137728 New port: www/tokyopromenade: a content management sys p docs/137723 remko [patch] share/man/man5/make.conf.5 : document WWWSUPFI o bin/137713 sysinstall(8): installer partition editor generates in o ports/137708 ruby ports-mgmt/portupgrade: portupgrade -cRn is broken o bin/137702 fortune(6): offensive fortune in non-offensive categor o ports/137694 skv lang/perl5.10 and lang/perl5.8 -- Embedded perl fails o ports/137691 [PATCH] New port for semantik (kdissert II) p docs/137689 brueffer [patch] acpi_panasonic(4) sysctl variable name wrong o misc/137688 re [build] [patch] Release build fails, if build-system u o misc/137678 [bootp] [patch] libstands bootp/dhcp code always uses o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa o conf/137671 [patch][request] enhance beastie.4th: possibility to d o gnu/137665 [patch] dialog(1) goes into tight loop on encountering o ports/137664 mnag [PATCH] www/lighttpd adds mod_geoip (shar) o bin/137647 brian ps(1) output depends on terminals column width when pi o bin/137641 net ifconfig(8): various problems with "vlan_device.vlan_i o ports/137634 doceng [PATCH] print/ghostscript8: Register cairo libdepends o conf/137629 rc [rc] background_dhclient rc.conf option causing double o ports/137620 [NEW PORT] devel/p6-perl6-toys o usb/137616 usb [usb67][usb8][usbdevs] [patch]: usbdevs update: Please o kern/137592 net [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o kern/137588 daichi [unionfs] [lor] LOR unionfs o ports/137587 kde [PATCH] audio/arts: Add more OPTIONS and proper CONFIG o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o ports/137566 jpaetzel net/isc-dhcp30-server deinstall removes dhcpd.leases i o ports/137541 lang/sml-mode.el: port for Emacs mode for SML needs up o misc/137514 cperciva freebsd-update doesn't update the system under some ci o conf/137487 [patch] [build] unbreak world WITHOUT_NETGRAPH o bin/137484 net [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137483 [patch] [build] unbreak world for WITHOUT_OPENSSH, WIT o kern/137482 script(1) doesn't read tail of program output, pty is o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o kern/137443 [headers] Including /usr/include/rpc/xdr.h fails with o kern/137436 [puc] [patch] Fix puc driver to support newer Timedia o ports/137406 sepotvin java/eclipse 3.4.2_1 with eclipse-EPIC and Diable cras o ports/137393 portmgr Remote Package Add of lang/gcc42 does not terminate o kern/137392 net [ip] [panic] crash in ip_nat.c line 2577 s ports/137388 makc math/qtiplot[-doc]:update to latest release o bin/137379 [patch] ppp(8) new command iface name to rename tun in o ports/137378 Advisory locks fail with ports/security/cfs on FreeBSD o usb/137377 usb [usb8] Support for Huawei E180 f ports/137375 mi net/ekiga doesn't build for want of PWLib: what's that o kern/137372 net [ral] FreeBSD doesn't support wireless interface from s ports/137367 gnome net/libproxy: add menu option to configure dependence o bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137361 [panic] FreeBSD panics with random intervals o ports/137359 python lang/python26 - Python ports depending on python26 do o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro f ports/137332 emulation add caution messages to some adobe products o kern/137327 dfr [nfs] nfs nlm memery leak o bin/137321 [build] make buildworld fails in atrun s bin/137318 [request] import options from NetBSD's lastlogin(1) o kern/137317 net [tcp] logs full of syncache problems o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o ports/137296 mnag [PATCH] databases/sqlite3: update to 3.6.16, load exte o ports/137293 openoffice editors/openoffice.org-3 fails to build o kern/137292 net [ste] DFE-580TX not working properly o kern/137285 [build] dev ata compile error o kern/137279 net [bge] [panic] Page fault (fatal trap 12) NFS server w/ o misc/137272 'WARNING: could not store hostuuid in /tmp/hostid' whe o misc/137271 Cannot update /etc/host.conf when root filesystems mou o ports/137254 New port: net/unssh Fast way to delete entries from Op o ports/137250 portmgr OPTIONS that change PREFIX cause an error after 'make o kern/137246 [kqueue] kevents not generated for file writes through o ports/137244 [x11-toolkits/plib] add support for linux-js o kern/137232 ipfw [ipfw] parser troubles o kern/137228 [psm] synaptics support delays 'mouse up' events when p usb/137226 usb [usb67][patch] quirk for Philips extern USB disk f ports/137218 clsung [update] x11-toolkits/ruby-fox16 - fxscintilla updatin o kern/137213 antoine [kernel] [patch] eliminate wrong usages of (S)LIST_HEA p usb/137191 thompsa [usb8][patch] export ums(4) output report parser data o 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 ports/137183 sobomax devel/py-interface: Already in ports as devel/py_otp_i o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not f bin/137180 usb [build] [patch] building world for 8.0-BETA2 fails on f ports/137178 kde audio/gmm++: gmm_superlu_interface.h contains starnge o kern/137170 rpaulo [ath] atheros AR9285 not recognised o kern/137165 [panic] panic: page fault o bin/137156 [patch] fix dump(8) cryptic output on reporting progre o kern/137145 [mbuf] [patch] Reference count computing isn't correct f usb/137138 gavin [umass][usb67][patch] QUIRK: ASUS PDA Flash disk emula o ports/137131 kde x11/kdebase3: genkdmconf leaves new kdmrc world readab o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de o bin/137053 acpi [hang] FreeBSD 8.0 BETA2Compaq Mini 700 locks on boot o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o kern/137041 [hang] powerd(8) hangs my systems within aprox 15 min f kern/137037 fs [zfs] [hang] zfs rollback on root causes FreeBSD to fr o kern/137014 [panic] vm_page_free_toq: freeing mapped page 0xc34f99 o bin/136994 net [patch] ifconfig(8) print carp mac address f ports/136984 textproc/xerces-2 port no longer needs gcc_pic patch i o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/136943 net [wpi] [lor] wpi0_com_lock / wpi0 o misc/136939 cperciva Update serves not serving signatures for releases 6.x o ports/136928 pgollucci [PATCH] www/apache20 - suexec resource limits patch o docs/136918 doc [patch] grammar fixes to locking.9 o ports/136917 python [patch] lang/python26: gettext detection o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o misc/136889 embedded [nanobsd] [path] nanobsd error reporting and other ref o kern/136888 [boot] boot0sio timeout much longer when DSR/CTS low f amd64/136884 gavin [install] Try to install FreeBSD 7.2 amd64 on a prolia o kern/136876 net [bge] bge will not resume properly after suspend o conf/136875 rc [request] _flags appending o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit o kern/136836 net [ath] atheros card stops functioning after about 12 ho o amd64/136814 amd64 [mxge] mxge driver error o kern/136808 acpi [acpi] panic when switching to s3 o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136777 [build] Building new Kernel with PF and PAE support fa f ports/136764 skreuzer [PATCH] net-mgmt/nagios-plugins: Dont truncate proc a o kern/136762 [ichsmb] ichsmb can't map resources of compatible IXP p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H o bin/136759 iostat(8) displays wrong I/O statistics with -c 1 o ports/136753 openoffice editors/openoffice.org-3 fails to create proper profil o bin/136733 disklabel(8) handle incorrently f kern/136718 gavin [ciss] ciss driver issue on HP DL585 o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o gnu/136705 [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136695 ipfw [ipfw] [patch] fwd reached after skipto in dynamic rul o kern/136669 [libc] [patch] setmode(3) should always set errno on e o docs/136666 doc [handbook] Configure serial port for remote kernel deb o bin/136661 [patch] ndp(8) ignores -f option f ports/136656 dhn [maintainer] www/p5-RT-Authen-ExternalAuth.diff www/p5 o ports/136625 girgen databases/postgresql84-server defaults to 32bit date/t o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o kern/136618 net [pf][stf] panic on cloning interface without unit numb f ports/136611 security/swatch: leaves zombies behind o ports/136598 apache [PATCH] www/mod_fastcgi: Fix non-threadsafe function o kern/136482 net [age] Attansic L1 Gigabit Ethernet recieves multicasts o kern/136470 fs [nfs] Cannot mount / in read-only, over NFS f ports/136439 [misc/cmatrix] install console font o ports/136432 apache www/mod_auth_kerb does not build with MIT Kerberos (se o kern/136426 net [panic] spawning several dhclients in parallel panics o bin/136419 [regression] pkg_add(1) segfault on adding package whe o kern/136417 [bce] bce BCM5709 "No PHY found on child MII bus" on I o ports/136416 timur net/samba-libsmbclient can not install with SAMBA_PORT p kern/136409 yongari [xl] doesn't compile with TX checksumming enabled o bin/136393 vi(1): ^C causes breakage in /usr/bin/vi o kern/136386 [headers] [request] Can the following bluez macros be o ports/136375 perky misc/xosd update to 2.2.14 o kern/136363 [panic] panic: vm_fault: fault on nofault entry, addr: o kern/136356 [ata] SATA / ICH7 problems o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o threa/136345 threads Recursive read rwlocks in thread A cause deadlock with o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136327 [boot] Asus M3N78-EM motherboard cannot boot with gene o bin/136325 cperciva portsnap(8): "portsnap fetch" not useable by other pro s ports/136321 emulation x11-toolkits/linux-pango: please update linux based po s ports/136302 itetcu [patch] ports-mgmt/tinderbox-devel incorrect WEBUI opt o ports/136291 openoffice [patch] editors/openoffice.org-3: gpatch failure o kern/136271 kmacy [xen] XEN kernel fails to build on 8-CURRENT i386 o ports/136270 clsung [maintainer] science/ruby-gphys: update to 0.7.0 o ports/136229 emulation [linux] emulators/linux_base-f10: certain linux apps l p bin/136223 rafan ee(1) doesn't handle SIGWINCH o kern/136216 [headers] Missing prototype declaration for setfib() o o bin/136192 [request] import "-3", "-A N", "-B N" options for cal( o kern/136168 net [em] em driver initialization fails on Intel 5000PSL m o bin/136161 sysinstall(8) installs wrong architecture on amd64 o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend f kern/136130 buildworld of FBSD 6.4 fails o kern/136123 [crypto] device crypto breaks sparc64 kernel o kern/136120 [panic] free: address has not been allocated. f ports/136108 glarkin new port: www/webistrano, web frontend to capistrano o ports/136091 pgollucci [PATCH] www/apache22 - suexec resource limits patch s ports/136085 itetcu [Maintainer update] graphics/optar: Patch to compile o bin/136073 des recent nscd(8) changes cause client processes to die w o ports/136072 portmgr Propose new ports category, internationalization o docs/136035 doc ftpchroot(5) omits an important option f ports/136034 pgollucci new port: security/shibboleth2-sp: C++ Shibboleth Serv p docs/136029 doc MALLOC_PRODUCTION knob should be mentioned somewhere, o kern/136013 [resolver] Resolver wrong diagnostics o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us o docs/135999 doc Netgear GS105v3 should be added to list of switches th o kern/135992 [ar] [2tb] ar(4) driver can NOT drive over 2TB HDD o kern/135989 [NOTES] [patch] device vr support D-Link DFE-520TX, bu o kern/135986 [panic] FreeBSD crashes after VLC close o ports/135972 doceng print/ghostscript8: Fix problem with color prints f i386/135961 gavin [boot] booting WRAP and Soekris fails from PXE, boot0 o kern/135948 pf [pf] [gre] pf not natting gre protocol o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o ports/135931 doceng print/ghostscript8 - v8.64 produces empty output for - o bin/135918 [boot0] [patch] Make BootEasy compatible with NT Drive o kern/135898 geom [geom] Severe filesystem corruption - large files or l f kern/135891 vwe [acpica] bug in acpica/psparse.c f usb/135857 usb [urtw] [usb67] RTL8187 Wireless Adapter o kern/135836 net [bce] bce BCM5709 Watchdog after warm boot - ok after f kern/135824 [panic] Fatal trap 12: page fault while in kernel mode o kern/135823 top(1) shows wrong CPU usage for multithreaded applica 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 f kern/135692 [mtx] [witness] blockable sleep lock - kernel panic on o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o docs/135676 doc FAQ About The FreeBSD Mailing Lists doesn't mention ma f ports/135674 yzlin [PATCH] some PHP-related knobs should be placed before o threa/135673 threads databases/mysql50-server - MySQL query lock-ups on 7.2 o ports/135670 ale [PATCH] databases/mysql50-server: in mysql-client mysq o kern/135667 [lor] LORs causing ufs filesystem corruption on XEN Do o ports/135664 portmgr [PATCH]: bsd.ldap.mk: Detect flavour of installed open s ports/135660 wxs Update net/jicmp to 1.0.10 o ports/135659 autotools Update devel/automake110 to 1.10.2 o ports/135649 portmgr Mk/bsd.port.mk: [patch], fix documentation relating to o bin/135647 cperciva freebsd-update(8): forces manual merge of every file i p kern/135628 remko [umass] [patch] add a device quirk for Myson Heden 881 o ports/135623 netchild mail/claws-mail does not install "enchant" when instal f i386/135609 vwe FreeBSD reboot during high cpu load. o kern/135608 [patch] sysctl(8) should be able to handle byte values o kern/135594 fs [zfs] Single dataset unresponsive with Samba o misc/135588 embedded [nanobsd] simple patch for adding amd64 support o kern/135585 hrs [ip6] net.inet6.ip6.accept_rtadv=1 removes a cloning r o power/135576 ppc gdb cannot debug threaded programs on ppc o usb/135575 usb [usbdevs] [patch] [usb67] Add HTC Wizard phone vid/pid o ports/135569 portmgr `check-sanity` not documented in bsd.port.mk o bin/135565 randi [patch] a patch for sysinstall(8) to look at UFS parti o bin/135562 randi sysinstall(8): Filesystem operations should only be pe o bin/135559 randi route table shouldn't automatically be deleted with pr s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa f ports/135541 [PATCH] math/p5-NetCDF cannot load module with netcdf- o docs/135516 doc pax(1) manual not mentioning chflags unawareness a ports/135503 wxs lang/python26 upgrade should get mailman too o kern/135502 net [periodic] Warning message raised by rtfree function i o ports/135500 obrien net/rdesktop sound does not work [PATCH] o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o ports/135486 hrs print/acroread9 crashes after maybe 10 seconds of oper o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135474 ale [PATCH] Mk/bsd.php.mk: add possibility to redefine PHP o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o ports/135467 sepotvin can not build java/eclipse with WITHOUT_MOZILLA=yes WI f www/135465 www FreeBSD cvsweb reporting inaccurate logs? p threa/135462 threads [PATCH] _thread_cleanupspecific() doesn't handle delet o kern/135458 dchagin Missing errno translation in Linux getsockopt(,,SO_ERR s i386/135447 amd64 [i386] [request] Intel Core i7 and Nehalem-EP new feat o bin/135444 cperciva freebsd-update(8) failing should be more verbose o ports/135437 skv lang/perl5.8: [regression] /usr/local/lib/perl5/site_p f kern/135427 vwe [ath] [hang] System freezes when loading Atheros drive o kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. o misc/135420 bugmeister gnats generates broken In-Reply-To headers o kern/135408 [aac] Adaptec 5405 RAID controller hanging under high p usb/135372 usb [usb67][umass] Quirk report for Teclast TL-C300 usb me o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o usb/135348 usb [umass] USB Drive Hangs with ZFS (JMicron USB2/eSata) o conf/135338 rc [rc.d] pf startup order seems broken [regression] o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135333 Non-integer decimal numbers not allowed in sysinstall( o bin/135317 randi install.cfg feature request o stand/135307 standards Boot Loader problem on Acer Aspire 5735 p misc/135301 remko [tinybsd] [patch] Patch for fix architecture support f f www/135294 jkois new user group for Belgium o ports/135276 x11 x11/xorg: GUI running first time only while using Free o amd64/135265 amd64 [install] Boot from install cd hangs on HP DL160 G5 wi o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/135222 net [igb] low speed routing between two igb interfaces o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe o usb/135206 usb machine reboots when inserted USB device o usb/135200 usb SAMSUNG i740 usb mass: Synchronize cache failed, statu o usb/135182 usb UMASS quirk - Olympus FE20 camera o kern/135179 xen [xen] Xen domU does not properly reboot o kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o docs/135165 doc [patch] make(1) fixes: punctuation, typos, tweaks o kern/135164 [keyboard] UK currency key inactive o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o bin/135159 [patch] pkg_delete(1) segfaults on empty @pkgdep lines s misc/135156 vwe [build] 8-current installworld - gencat:No such file o s ports/135089 portmgr bsd.port.mk: Honor LOCALBASE for CFLAGS f ports/135072 clsung textproc/refdb -> bib2ris: Assertion failed: ((run->re o kern/135070 acpi [acpi] [patch] BIOS resource allocation and FreeBSD AC o kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all o kern/135067 net [patch] [fib] Incorrect KASSERTs in sys/net/route.c o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o amd64/135040 amd64 [ata] FreeBSD/amd64 does not (always) detect disk on S o bin/135016 randi [request] sysinstall(8) needs support for USB devices o amd64/135014 amd64 [padlock] Using padlock(4) in 8-current triggers "fpud o kern/135008 xen [xen] FreeBSD-current/Xen timecounter jumps f ports/135000 olgeni don't make in /usr/ports/lang/erlang o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o i386/134984 i386 [boot] [hang] boot from i386 DVD on Lenovo R500 fails o amd64/134978 amd64 [panic] g_up pmap amd64 panic o bin/134975 ipfw [patch] ipfw(8) can't work with set in rule file. o kern/134956 net [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o usb/134950 usb Lowering DTR for USB-modem via ubsa is not possible o misc/134947 [build] compiling world (libcrypto) o kern/134931 net [route] [fib] Route messages sent to all socket listen o kern/134926 xen [xen] [panic] FreeBSD-current Xen DomU networking pani o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk o misc/134920 [includes] [patch] Large upgrades from source cause co o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons f bin/134907 vwe boot0cfg(8): choose / adjust the booting slice doesn't o kern/134887 [ataraid] source consistency problem o kern/134883 [vfs] [panic] kernel panic, superpages, vfs.lookup_sha p bin/134881 stefanf sh(1) with 'set -e' exits immediately in tested eval c o ports/134880 ale lang/php5 - PHP CLI interactive mode misbehaviour with o kern/134878 [puc] [patch] Add support for Oxford OXPCIe954 and OXP o kern/134800 [drm] radeon driver freezes Xorg server with drmwtq o i386/134792 [boot] [panic] problems installing and booting on MSI f ports/134773 openoffice [patch] editors/openoffice.org-3 reduce depenedencies o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o amd64/134757 amd64 32 bit processes on 64 bit platforms occasionally drop o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic s ports/134714 ruby ports-mgmt/portupgrade deletes user data without quest o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw o kern/134658 net [bce] bce driver fails on PowerEdge m610 blade. o ports/134656 mnag Create www/pecl-APC-dev o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser o usb/134633 usb Add support for WILLCOM03(SHARP smart phone) o usb/134631 usb [usbdevs] [patch] WiSPY DBx support requires usb tweak o bin/134616 named(8): the working directory is not writable o gnu/134604 [gcclibs] [patch] Memory leak in gcclibs/libgomp f ports/134594 lwhsu [PATCH] security/pwman3: use cElementTree and sqlite c o ports/134593 pgollucci [repocopy]: net-mgmt/net-snmp -> net-mgmt/net-snmp55 o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 o kern/134590 [libi386] [gpt] [patch] Bootloader support for hybrid o i386/134586 jhb [i386] [patch] Incorrect machine check exception handl o kern/134584 [panic] spin lock held too long o kern/134583 net [hang] Machine with jail freezes after random amount o p i386/134582 phk merge geode.c from head to releng_7_2 a ports/134577 apache www/apache22: build faild with mod_auth_digest o bin/134569 [heimdal] krb5-config(1) does not return all libs nece o kern/134540 [sysctl] [panic] kernel panic after sysctl -a (in strl o kern/134531 net [route] [panic] kernel crash related to routes/zebra o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R o kern/134519 [panic] Kernel panics (2 page faults in kernel) s kern/134517 yongari [rl] [patch] Realtek 8111C Driver Backport for FreeBSD p kern/134513 jh [libc] [patch] fts(3) FTS_NOCHDIR misbehavior with emp o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod o kern/134502 [libelf] why 32 bit app not use /libexec/ld-elf32.so.1 o kern/134491 fs [zfs] Hot spares are rather cold... o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device s ports/134485 net-mgmt/trafd 3.0.2.1 doesn't collect traffic o ports/134475 stas multimedia/xmms gdk error (terminates) o conf/134468 /etc/ntp created by default - but not used by /etc/def o ports/134458 openoffice editors/openoffice.org* fails to build (multiple versi a ports/134456 pgollucci www/apache22: file permissions are wrong o bin/134425 sysinstall(8) custom distributions select all and dese a ports/134414 graphics/mesa-demos does not build on FreeBSD-7.2 i386 o kern/134408 [dtrace] [panic] "opensnoop" DTrace script panics ever f kern/134407 gavin [hang] freebsd 7.x freezes with the livefs or install o kern/134401 net [msk] [panic] Kernel Fatal trap 12: page fault while i f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 o kern/134391 [libc] dladdr(3) does effectively not work on main pro o bin/134389 cperciva portsnap(1): phttpget opens a new connections for ever o ports/134383 skv devel/bugzilla failes to find DBD::mysql o docs/134376 doc pthread(3): pthread manpages don't mention that PTHREA o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 a ports/134361 gnome devel/gvfs ports with smbclient support doesn't pass a a kern/134355 [mbuf] comments for m_getm2 inconsistent with behaviou p ports/134352 dinoex fix all the ports depending print/cups-base o kern/134344 top(1) shows user CPU value that's not equal to the to o arm/134338 arm [patch] Lock GPIO accesses on ixp425 o conf/134333 rc PPP configuration problem in the rc.d scripts in combi o kern/134328 [build] FreeBSD 7.2-RELEASE (STABLE) not compiled with o usb/134299 usb Kernel Panic plugging in MF626 USB UMTS Stick u3g f ports/134264 audio/cmus - segmentation fault with ogg files o ports/134263 des sysutils/munin-node failure in some o conf/134258 /boot/default/loader.conf contains untrue default p kern/134251 dchagin [linux] skype-2.0.0.72 broke with recent kernel change o bin/134250 [rc.d] mountlate: bogus error message when using neste o kern/134249 [libiconv] [patch] ignore case for character set names o ports/134244 x11 x11/xorg: "intel" driver for Xorg is very broken o ports/134243 skv port mail/libdomainkeys doesn't build dktest o i386/134242 i386 [boot0] [patch] improvement i386 boot0 error diagnose o kern/134231 [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o docs/134226 doc /usr/share/examples/ftpd/ftpd.conf does not exist. o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o docs/134222 doc installation failure of japanese docs o kern/134200 [panic] Fatal trap 12: page fault while in kernel mode o usb/134193 usb System freeze on usb MP3 player insertion o ports/134182 ruby ports-mgmt/portupgrade incorrectly handles manual reje o conf/134169 El servidor X no detecta pantallas o kern/134168 net [ral] ral driver problem on RT2525 2.4GHz transceiver o bin/134167 cperciva [request] freebsd-update(8) should be able to be run i o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o ports/134155 danfe x11/nvidia-driver does not work with KVA_PAGES=512 and o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o docs/134123 doc The RUNQUEUE(9) man page is out of date o ports/134121 gecko www/firefox3-devel packaging errors o usb/134117 usb [Patch] Add support for 'Option GlobeTrotter HSDPA Mod o kern/134113 geom [geli] Problem setting secondary GELI key s ports/134112 [MAINTAINER] net/asterisk16-addons: update to 1.6.1.0 f i386/134106 i386 [boot] Dell Dimension XPS R400 fail to boot on CF IDE f kern/134105 gavin rl(4) Realtek 8110SC with device ID 0x814910ec not det f java/134098 glewis java/diablo-jdk15: random core drops o arm/134092 arm [patch] NSLU.hints contains wrong hints for on board n o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o ports/134082 x11 x11/xdriinfo: xdriinfo-1.0.2 build fail o kern/134079 net [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o docs/134074 doc [patch] locking.9 man page slight enhancements p docs/134070 danger old path for a file given in kbdmap(1) o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix p docs/134053 danger [patch] arp(8) manpage should mention ndp(8) in See Al o kern/134044 geom [geom] gmirror(8) overwrites fs with stale data from r o bin/134022 host(1), dig(1) and nslookup(1) hang in _umtx_op sysca o kern/134011 [hang] swap_pager_getswapspace(4): failed o kern/134010 [gssapi][patch] Buffer overflow and use-after-free in o conf/134006 rc [patch] Unload console screensaver kernel modules if s o usb/133989 usb [newusb] [ukbd] USB keyboard dead at mountroot> prompt o conf/133987 rc [rc.d] defaultroute broken with DHCP in some cases o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/133980 fs [panic] [ffs] panic: ffs_valloc: dup alloc o bin/133979 pkg_create(1): pkg_create -n gives an error o amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama o kern/133931 geom [geli] [request] intentionally wrong password to destr o kern/133926 [request] MAXLOGNAME, the username length limit, is to o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m p bin/133907 jh [patch] cp(1) wrongly reports errors in vacuous copy o kern/133902 net [tun] Killing tun0 iface ssh tunnel causes Panic Strin o kern/133892 sam /usr/src/sys/dev/ath/if_ath.c:3414: error: 'const stru o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o kern/133867 initgroups(3) Invalid argument o bin/133860 [patch] lorder(1) misses symbols defined in read only o ports/133848 markus net-p2p/ktorrent-devel: request for removal o bin/133834 [patch] chat(1): terminate()/fatal() infinity mutual r o ports/133829 Wrong plist generated if nonstandard MANPREFIX and PRE o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133786 net [netinet] [patch] ip_input might cause kernel panic o kern/133776 [libc] [patch] snprintf(3) and vsnprintf(3) do not pro o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in a ports/133773 net/keepalived port update request o ports/133771 doceng print/ghostscript8: Ghostscript8-8.64 port not install f kern/133768 gavin [panic] MONITOR PANIC: vcpu-0:VMM64 DoubleFault src=MO f ports/133758 pgollucci new net-mgmt/net-snmp does not count inactive memory a o ports/133747 amdmi3 fkiss and gondola not working on amd64 - seg fault o kern/133736 net [udp] ip_id not protected ... p threa/133735 attilio Multi-threaded 32 bit cores can't be used on 64 bit sy o threa/133734 threads 32 bit libthr failing pthread_create() s kern/133733 [pci] [patch] Incorrect record in pci_vendors for Broa o kern/133732 pf [pf] max-src-conn issue o i386/133727 i386 chars [[[[[[[[[[[[[ occur during install process (sett o ports/133723 sobomax asterisk-1.6.0.9 crash when load chan_h323 o conf/133715 [terminfo] [patch] no terminfo for rxvt-unicode termin o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133710 [includes] net/bpf.h and netgraph/ng_message.h should o ports/133704 pgollucci www/apache22 apxs does not work as expected o amd64/133701 amd64 Recompiling the kernel with k8temp or smbios break GEO o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o ports/133641 doceng [PATCH] print/ghostscript7 crash bug o kern/133614 fs [panic] panic: ffs_truncate: read-only filesystem o kern/133613 net [wpi] [panic] kernel panic in wpi(4) o ports/133609 x11 x11/xorg crashes with vlc, intel video driver o kern/133595 net [panic] Kernel Panic at pcpu.h:195 o kern/133593 [ata] `atacontrol spindown` won't affect disk until so o kern/133583 [libm] fma(3) does not respect rounding mode using ext o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o docs/133567 doc [patch] doc/Makefile switch to csup o ports/133563 security/cfs rc script needs "mntudp" option on 8-CURR o misc/133540 gavin Cannot connect to ftp mirrors for 7.2 beta boot-only o power/133503 ppc [sound] Sound stutter after switching ttys o ports/133500 glewis java/diablo-jre16: fetch error: does not tell what fil o kern/133495 [de] interface not properly initialized on boot o kern/133491 [libfetch] [patch] Digest HTTP authentication support o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 o ports/133482 x11 x11/libXext "Generic Event Extension not available" er o ports/133465 x11 x11/xorg: X crashes with mplayer -vo xv with xf86-vide o ports/133464 clsung security/snort fails first try o ports/133462 multimedia multimedia/x264 build fails on powerpc o ports/133457 eclipse [PATCH] java/eclipse-webtools: update to 3.0.3 p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o ports/133411 edwin www/mod_encoding does not work on amd64 with apache22 o usb/133390 usb umass crashes system in 7.1 when Olympus D-540 attache o i386/133388 i386 [est] est causes wrong dev.cpu.0.freq_levels values o power/133383 ppc firefox thr_kill crash with heavy vm load o power/133382 ppc [install] Installer gets signal 11 o kern/133328 net [bge] [panic] Kernel panics with Windows7 client o usb/133296 usb [rum] driver not working properly in hostap mode o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o misc/133286 dd can fill system memory o kern/133265 jail [jail] is there a solution how to run nfs client in ja p bin/133255 stefanf [PATCH] sh(1): empty line in eval resets $? o kern/133246 [libc] dlclose(3) gives segfault when called in the fi o docs/133245 doc french handbook 27.3.5 amd.map amd.conf p kern/133240 [boot] off-by-one error in gets.c causes panic when in p kern/133239 gavin [ae] [jme] [patch] if_jme can assign duplicate MAC add o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 [patch] whois(1): add support for SLD whois server loo o kern/133218 net [carp] [hang] use of carp(4) causes system to freeze f kern/133213 net arp and sshd errors on 7.1-PRERELEASE o kern/133204 net [msk] msk driver timeouts o ports/133197 pgollucci [bsd.apache.mk] Rephrase IGNORE statement, kill EOL sp p docs/133186 gavin [patch] powerd(8) man page errors o kern/133174 fs [msdosfs] [patch] msdosfs must support utf-encoded int o kern/133170 [md] [panic] panic when detaching swap-backed md(4) di f kern/133150 fs [zfs] Page fault with ZFS on 7.1-RELEASE/amd64 while w o ports/133146 ahze [patch] x11-fonts/dejavu: install fontconfig configura o kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/133143 [ubsec] [panic] Kernel panic with ubsec and cryptodev; o docs/133118 doc [patch] Error in getopt (1) manual EXAMPLES section o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken o ports/133078 kde [PATCH] kmix (multimedia/kdemultimedia4) incorrectly b o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o kern/132991 net [bge] if_bge low performance problem o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o docs/132959 doc [patch] description mismatches on xterm/termcap, fortu o kern/132934 [nfs] Cancel of a NFS-lock fails repeatedly f bin/132911 net ip6fw(8): argument type of fill_icmptypes is wrong and o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o ports/132888 openoffice editors/openoffice.org-3: openoffice 3.0.1 fails to bu o kern/132885 net [wlan] 802.1x broken after SVN rev 189592 o docs/132884 doc [request] No manpage for SYSINIT and SYSUNINIT o kern/132852 [lor] LOR between sysctl and acpi_ibm o conf/132851 net [fib] [patch] allow to setup fib for service running f o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o bin/132847 syrinx [patch] bsnmpd(8): snmp_pf: add support for retrieving 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 p docs/132834 trhodes [patch] Punctuation inconsistency in chgrp.1 and cut.1 o kern/132832 net [netinet] [patch] tcp_output() might generate invalid p ports/132828 vd devel/pth broken due to introduction of pthread_kill p o ports/132820 skreuzer www/rt38: charts in RT-3.8.2 do not render p usb/132799 usb [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CA o bin/132798 net [patch] ggatec(8): ggated/ggatec connection slowdown p o ports/132786 New port: sysutils/sispmctl Utility for controlling a o usb/132785 usb [usb] [patch] Gemtech remote powersocket is classed as o ports/132783 portmgr ports/Mk/bsd.port.mk: ${ARCH} misuse for "--build" opt o bin/132779 calendar(1) utility processes SunLast (and likely simi o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o ports/132772 skv [new port] lang/rakudo-devel The Rakudo Perl 6 Compil o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent o bin/132735 Berkeley db: corrupted file has record with absurd siz o kern/132734 net [ifmib] [panic] panic in net/if_mib.c o kern/132722 net [ath] Wifi ath0 associates fine with AP, but DHCP or I o docs/132718 doc [handbook] Information about adding a new mirror is ou o kern/132715 jfv [lagg] [panic] Panic when creating vlan's on lagg inte o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o ports/132680 openoffice editors/openoffice.org-3: OpenOffice symlinks in /usr/ o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/132669 net [xl] 3c905-TX send DUP! in reply on ping (sometime) o kern/132664 [lor] vfs_mount.c / msdosfs_vfsops.c f kern/132625 rpaulo [iwn] iwn drivers don't support setting country o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec o ports/132621 x11 x11/xorg tries to install event when deselected o ports/132607 security/denyhosts: command_interpreter warnings in /v o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not o kern/132597 fs [tmpfs] [panic] tmpfs-related panic while interrupting o conf/132596 mux examples/cvsup/ports-supfile still oriented on cvsup p o usb/132594 usb USB subsystem causes page fault and crashes o bin/132591 [patch] dump(8): "dump W" uses %c instead of %d for re o ports/132579 cy [patch] sysutils/screen: fix build with externel compi o ports/132577 fjoe databases/oracle8-client: Appearence of connection (ph o ports/132576 delphij net/openldap24-server: multipying LDAP trees on the si o amd64/132574 amd64 [boot] [hang] Freeze on bootstrap loader (CD) using AT o ports/132573 ume [patch] security/cyrus-sasl2: fix compilation with gcc o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t o kern/132553 ipfw [ipfw] ipfw doesn't understand ftp-data port p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve o conf/132515 stas ntpd_sync_on_start option in /etc/rc.conf misbehaves o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing o i386/132416 i386 Popup motherboard bios setup window when rebooting sys o ports/132403 x11 x11/xorg with Radeon X600 (R370): cannot re-initialize o ports/132402 girgen databases/postgresql83-server incorrect handling of co o kern/132397 fs reboot causes filesystem corruption (failure to sync b o amd64/132394 scsi [isp] - bad underruns with QLogic qla2300 and amd64 p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o bin/132367 [patch] less(1)/more(1) fchmod(2) `/dev/null' to 0600 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/132331 fs [ufs] [lor] LOR ufs and syncer o misc/132317 Snapshots are not properly mirrored between ftp.freebs o usb/132312 usb Xorg 7.4 halts USB controller o docs/132311 doc [patch] man5/nsmb.conf.5 o ports/132304 gnome ports/devel/dbus misses /var/db/dbus/machine-id in dis o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o ports/132294 stas [PATCH] lang/ruby18: Add option to build with Profile- o ports/132293 stas [PATCH] lang/ruby19: Add option to build with Profile- o kern/132285 net [carp] alias gives incorrect hash in dmesg o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/132273 geom glabel(8): [patch] failing on journaled partition o kern/132271 [puc] [patch] puc support for a generic card o docs/132260 doc dhcpd(8) pid not stored in documented location o kern/132252 [ata] No CD/DVD devices found! o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive f kern/132242 geom [gmirror] gmirror.ko fails to fully initialize o bin/132239 dhcpd(8) -d flag not working o kern/132238 [ral] ral driver does not support RT2860 o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o i386/132230 i386 [boot] [reboot] 7.1-RELEASE /boot/loader non-functiona o ports/132213 anders [patch] mail/imap-uw: Add support for ~/mail as defaul o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o bin/132182 uname(1) uses UNAME_ variables even if those are f kern/132176 pf [pf] pf stalls connection when using route-to [regress o kern/132172 [patch] [panic] Page fault panic in scioctl and consol o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/132145 fs [panic] File System Hard Crashes o kern/132129 [crypto] Device crypto makes the kernel unbootable o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o docs/132113 doc [handbook] Update handbook jails creation o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o i386/132110 i386 [build] /libexec/ld-elf.so.1: /lib/libc.so.7: version o kern/132107 net [carp] carp(4) advskew setting ignored when carp IP us o kern/132104 [kernel] [patch] kenv(1) buffer overflow o ports/132100 x11 x11/xorg: Xorg server forgets pointer map after xlock o ports/132096 ahze devel/distcc: fixing valid shell for user distcc in pk o usb/132080 usb [patch] [usb] [rum] Kernel panic after NOMEM caused by o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 o ports/132053 ahze devel/distcc: unfetchable Avahi patch support (distcc- o ports/132041 x11 x11/xorg: Broken Intel video driver o usb/132036 usb [panic] page fault when connecting Olympus C740 camera f amd64/132019 amd64 [install] kernel trap 12 while installation o ports/132010 girgen databases/postgresql83-server: PostgreSQL Cluster Init o bin/132008 [PATCH] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update p bin/131999 chflags(1): unable to unset flags on symlinks when lin o kern/131995 fs [nfs] Failure to mount NFSv4 server o ports/131969 nobutaka Port update: multimedia/libdvdnav - Proposal to switch o docs/131968 danger ipnat man page points to wrong directory o kern/131933 [uart] [patch] Cannot detect Sony Ericsson GC89 EDGE/W 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 usb/131912 usb [uslcom] [patch] New devices using Silicon Labs chips o amd64/131906 amd64 [ata] SATA data corruption with Promise PDC20378 (amd6 o usb/131900 usb [usbdevs] [patch] Additional product identification co o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131861 mail(1) misses addresses when replying to all o bin/131853 cron(8): please add support for CRON_TZ and CRON_WITHI o kern/131817 ipfw [ipfw] blocks layer2 packets that should not be blocke o bin/131800 rpcbind(8) fails to start in jail f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte f kern/131796 [ata] Introducing new USB or eSATA disks results in at o kern/131784 [lor] triple LOR after hard reboot o kern/131781 net [ndis] ndis keeps dropping the link o kern/131776 net [wi] driver fails to init o bin/131774 cvs(1) commits files then aborts o ports/131758 itetcu net/tightvnc in a jail stopped working after multiple o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh o kern/131718 [lor] kern_sysctl.c / acpi_video.c o ports/131696 x11 x11-servers/xorg-server: hald core dumps make X11 unus o docs/131684 doc [patch] articles/linux-comparison: replace Addenda by o ports/131664 skv lang/perl5.8: perl5.8.9 segfaults with devel/p5-ReadLi o docs/131626 pgj [patch] dump(8) "recommended" cache option confusing o docs/131625 pgj [patch] Typos in ed(1) man page o kern/131623 [libc] gethostbyname(2): output of gethostbyname_r doe f kern/131602 gavin [libc] sendfile(2) sends corrupted data o kern/131601 ipfw [ipfw] [panic] 7-STABLE panic in nat_finalise (tcp=0) o bin/131598 cperciva freebsd-update(8) doesn't interact well with custom ke o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o docs/131590 doc [patch] whitespace-only change of developers-handbook/ o docs/131584 pgj Update/correct Handbook section 30.5.7 IPMON Logging o usb/131583 usb [umass] Failure when detaching umass Device o ports/131579 kuriyama security/gnupg reads security/gnupg1 data incorrectly o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data f kern/131573 [mutex] lock_init() assumes zero-filled struct f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o kern/131558 ipfw [ipfw] Inconsistent "via" ipfw behavior o ports/131554 stas net-mgmt/flow-tools: flow-capture consuming all availa o kern/131549 net ifconfig(8) can't clear 'monitor' mode on the wireless o power/131548 ppc ofw_syscons no longer supports 32-bit framebuffer o kern/131536 net [netinet] [patch] kernel does allow manipulation of su o usb/131521 usb Registering Belkin UPS to usb_quirks.c o amd64/131456 amd64 ACPI & ATA problems o kern/131448 Bad display while booting o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o bin/131427 [patch] Add to fetch(1) an ability to limit a number o o i386/131426 i386 hald makes cdrom fail o bin/131415 keystrokes are unregulary sent to Geli when typing pas o docs/131370 keramida glabel(8): geom_label needs clarification in docs a bin/131369 delphij truss(1): truss -f fails to attach to child processes o bin/131365 net route(8): route add changes interpretation of network o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o bin/131359 cperciva freebsd-update(8): freebsd-update tag file not updated o bin/131358 cperciva freebsd-update(8): Update servers for freebsd-update a s bin/131354 des ssh: SSH session hangs o kern/131353 geom [geom] gjournal(8) kernel lock o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o bin/131341 fs makefs: error "Bad file descriptor" on the mount poin o amd64/131314 amd64 [modules] [panic] large modules fail to load on amd64 o kern/131302 powerd(8): powernow0: set freq failed, err 6 o kern/131290 [hang]: How to completely freeze FreeBSD 7.1 under a n p bin/131250 bz [patch] ppp(8) proxyarp does not work o ports/131242 krion security/gsasl does not link if krb5-1.6.3_5 is instal o ports/131234 mi print/lyx: Propose making Lyx 1.5.x the default port o ports/131225 perl math/PDL: PDL-2.4.3_5: Unable to find PDL/pdldoc.db s ports/131218 www/privoxy+ipv6: /etc/rc: WARNING: run_rc_command: ca o amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o kern/131162 net [ath] Atheros driver bugginess and kernel crashes o kern/131153 net [iwi] iwi doesn't see a wireless network o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o usb/131123 usb [patch] re-add UQ_ASSUME_CM_OVER_DATA USB quirk o bin/131113 mount(8) hangs on attempt to remount as rw o ports/131111 ruby ports-mgmt/portupgrade-devel: completely removes packa o bin/131094 dhclient(8) sets wrong IP address o ports/131093 jpaetzel chrooting net/isc-dhcp30-server to aliased /home can c f kern/131087 net [ipw] [panic] ipw / iwi - no sent/received packets; iw o usb/131074 usb no run-time detection of usb devices plugged into exte o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o bin/131042 mount_ntfs(8) does not like fstab entry p kern/131038 bz [ip6] [panic] kernel panic in ip6_forward o ports/131016 x11 x11/xorg - xorg-7.4 renders system unusable! o bin/131013 pw(8) does not update NIS group file o kern/130998 [dtrace] DTrace stops tracing because of struct thread o ports/130995 ale Add php-fpm to lang/php5 o bin/130993 pkg_add(1): pkg_add -n falsely reports present local p f kern/130982 gavin [install] The installation hangs o kern/130979 fs [smbfs] [panic] boot/kernel/smbfs.ko o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ o bin/130954 ps(1): can not obtain which process take all CPU time f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o ports/130899 lev devel/subversion doesn't install with PREFIX != /usr/l o docs/130895 doc [patch] No man page installed for padlock(4) on amd64 f amd64/130885 amd64 sockstat(1) on amd64 does not work o bin/130874 [patch] fix typo in nvi(1) (subsitution -> substitutio o amd64/130864 amd64 [hang] Problem with copying files to a large partition o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o bin/130855 [PATCH] add a chown(8)/chgrp(8) -x option to avoid cro o bin/130831 csh(1) core dumps after building libiconv-1.1x from s f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o amd64/130817 amd64 FreeBSD does not support HP DL160G5 [regression] o ports/130811 doceng [PATCH] Floating point exceptions Ghostscript 8.63 (pr o kern/130794 [ata] hw.ata.ata_dma_limit without any effect f conf/130776 ip addresses like 10.1.1.1 with subnet mask 255.0.0.0 o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error o usb/130736 usb Page fault unplugging USB stick p kern/130735 scsi [cam] [patch] pass M_NOWAIT to the malloc() call insid o misc/130728 There are 4-clause BSDL files in src/ o kern/130726 [ata] DMA errors accessing multiple SATA channels o kern/130724 emulation [linprocfs] [patch] cpuinfo in linprocfs is dated, cau o kern/130698 [boot] FreeBSD 8-CURRENT does not start any more since o kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o ports/130677 portmgr bsd.port.mk: Centralize handling of CPPFLAGS o kern/130657 bz [ip6] [patch] ipv6 class option o bin/130655 randi sysinstall(8): no IPV4 if answer "no" when "Do you wan o ports/130629 skv [new port] lang/rakudo The Rakudo Perl 6 Compiler o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a p docs/130548 geom [patch] gjournal(8) man page is missing sysctls o ports/130547 mnag libspf2 listed in VuXML but no activity o ports/130541 jpaetzel new port: net/isc-dhcp41-server o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau a bin/130504 dds [libc] Serious bug in regular expression library (rege o amd64/130494 amd64 [boot] netbooting BTX fails on amd64 o amd64/130483 amd64 [mxge] MSI must be disabled when Myricom 10Gbps Card i o ports/130481 krion x11/xterm should be built with Unicode support by defa o ports/130479 apache www/apache20 and www/apache22 configure_args busted s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD o kern/130476 [build] [patch] Error in compiling kernel with device o conf/130414 rc [patch] rc services started with onestart are not stop o docs/130394 [patch] Minor typo in dtrace(1M) man page o ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o ports/130379 cy sysutils/screen : can't use it after a jail_attach() c o amd64/130368 amd64 [hang] Switching from xorg to console locks up compute o bin/130366 randi [patch] sysinstall(8): Minor correction to sysinstall f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o docs/130364 doc Man page for top needs explanation of CPU states o misc/130361 FREEBSD 7.X does not install properly from FTP server o bin/130343 top(1): kvm_open: cannot open /proc/42997/mem corrupts o ports/130331 danfe games/battletanks is broken on FreeBSD 7.x o kern/130330 scottl [mpt] [panic] Panic and reboot machine MPT driver when f kern/130329 gavin [myk] panic o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa o kern/130286 [patch] hifn(4) changes o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o bin/130251 nm(1): 'nm -C' doesn't demangle any 't' symbol names p docs/130239 cperciva md5(1); md5 is reported to be compromised, but manpage o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o usb/130230 usb Samsung Electronics YP-U3 does not attach in 7.1-RELEA o kern/130229 fs [iconv] usermount fails on fs that need iconv o ports/130228 perky [UPDATE] korean/nabi to 0.99.3 o kern/130222 harti bsnmpd snmp_hostres.so always returns 100% CPU o kern/130210 fs [nullfs] Error by check nullfs o usb/130208 usb Boot process severely hampered by umass0 error o ports/130183 mm [PATCH] converters/xdeview switch to USE_TCL o kern/130171 [ata] UDMA CF cards do not work with FreeBSD p bin/130159 bz [patch] ppp(8) fails to correctly set routes f kern/130133 kmacy [panic] [zfs] 'kmem_map too small' caused by make clea o bin/130132 ipfw [patch] ipfw(8): no way to get mask from ipfw pipe sho o usb/130122 usb [newusb] DVD drive detects as 'da' device o i386/130110 i386 [boot] BTX-Halted - booting with SAS/SATA Controller o kern/130109 net [ipfw] Can not set fib for packets originated from loc p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use f amd64/130103 vwe [hang] 7.1-RC X -> systemcrash f usb/130076 vwe Panic when connecting USB camera o stand/130067 standards Wrong numeric limits in system headers? s ports/130065 pav devel/stlport update to 5.2.1 and problems f kern/130059 net [panic] Leaking 50k mbufs/hour o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o kern/130021 [hang] Switching CAPS/NUM LOCK or virtual terminal fre o bin/129989 cperciva portsnap(8) quietly forgets to fetch some ports a ports/129971 dinoex x11/gskrab: GSkrab does not compile on -current o www/129969 wosch Need 301 moved permanently errors returned for www.fre o bin/129965 [patch] ps(1): ps -lH doesn't show the proper CPU# o i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o usb/129945 usb [usbdevs] [patch] add u3g support for Longcheer WM66 U o ports/129930 ruby ports-mgmt/portupgrade - portinstall tries to install s www/129923 www Need stylesheet for FreeBSD Subversion DAV tree o ports/129891 ruby ports-mgmt/portupgrade fails to recognize variations o o amd64/129889 amd64 [boot] [hang] The booting process stops at the line mo o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o ports/129859 kuriyama net/relayd - ssl random number generation p usb/129858 remko [usb] [patch] Need to add quirk to da_scsi.c to suppor o ports/129824 hrs print/acroread8 - help viewer does not work o bin/129814 [patch] support of per script nice(1) value in periodi o ports/129782 wxs [PATCH] security/sudo: update to 1.7.0 o bin/129771 randi sysinstall(8): 7.1 RC1 sysinstalls installs boot0 even o usb/129766 usb [usb] plugging in usb modem HUAWEI E226 panics system o bin/129764 [patch] unbreak sbin/newfs build for the 8-CURRENT o bin/129762 sysinstall(8) doesn't seem to support GPT for EFI boar o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l o usb/129758 usb [uftdi] [patch] add Pyramid LCD usb support o kern/129750 net [ath] Atheros AR5006 exits on "cannot map register spa o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu o amd64/129721 amd64 [hang] Motherboard K9N2G Neo-FD hangs on boot of 7.0-R f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o bin/129706 top(1) corrupts SIZE field when a process allocates 20 o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di o ports/129687 obrien [patch] unbreak net/tcpshow for gcc-4.2.1 a docs/129684 trhodes gcache.8 man page missing o ports/129682 sobomax net/asterisk app_meetme issue o kern/129674 geom [geom] gjournal root did not mount on boot o usb/129673 usb [uhci] uhci (uhub) confused on replugging USB 1.1 scan o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o amd64/129667 amd64 [ata] Elitegroup A780GM-A IDE controller not recognize p kern/129665 rik [uart] Oxford OX16PCI958 8-serial multiport card is no o kern/129663 rik [uart] Timedia-based 8-serial multiport card: only two o kern/129645 geom gjournal(8): GEOM_JOURNAL causes system to fail to boo p bin/129630 [patch] bsnmpd(1): teach hostres module about ZFS o ports/129626 perl lang/p5-Tcl segfaults on i386 and amd64 on FreeBSD 7 o bin/129620 [patch] Incorrect bzip2(1) behavior o kern/129618 acpi [acpi] Problem with ACPI on HP Pavilion DV2899 laptop o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o kern/129580 net [ndis] Netgear WG311v3 (ndis) causes kenel trap at boo o ports/129579 Consider upgrading korean/baekmukfonts-{bdf,ttf} to 2. o ports/129577 des [PATCH] sysutils/munin-main: does not honor BATCH/PACK o ports/129576 des [PATCH] sysutils/munin-node: does not honor BATCH/PACK f misc/129573 FreeBSD-7.1-RC1 fails to install man pages and doc dis o kern/129563 acpi [acpi] sleep broken on IBM/Lenovo T61 in amd64 mode o ports/129553 hrs [patch] print/acroread8 can't launch some programs due o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o stand/129524 standards FreeBSD 7.0 isnt detecting my hardrives with raid5 o usb/129522 usb [ubsa] [patch] add support for ZTE AC8700 modem o ports/129518 gerald lang/gcc42 - g++42 uses wrong libstdc++.so and libgcc_ o kern/129517 net [ipsec] [panic] double fault / stack overflow o kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o docs/129464 tabthorpe using packages system o bin/129431 cperciva freebsd-update(8) fetch fails because phttpget fails p o amd64/129426 amd64 [panic] FreeBSD 7.0 crash after subdiskXX: detached o ports/129422 ume [patch] mail/cyrus-imapd23: add patch for autocreate I o bin/129405 [patch] tcsh(1) vfork bugs o www/129401 edwin FreeBSD Multimedia page should automatically pick up Y p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o bin/129378 csh(1) / tcsh(1) loses foreground process group [regre o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/129352 net [xl] [patch] xl0 watchdog timeout o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o amd64/129315 amd64 [boot] [reboot] amd64 motherboard: Intel DG965WH mothe o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o ports/129300 obrien [vuxml] editors/vim: document CVE-2008-3432 o bin/129287 [request] powerd(8) should grow signals to switch betw o docs/129281 blackend Audio CD ripping/duplication shouldn't recommend the u o misc/129267 [build] make buildworld errors on RELENG_7 with gcc 4. o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire o usb/129251 usb [usbdevs] [patch] Liebert UPS being assigned uhid and s bin/129248 [request] FreeBSD's syslog(8) can't support log encodi o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o ports/129198 clsung databases/p5-DBD-SQLite fails when SQLite is compil o kern/129197 net [panic] 7.0 IP stack related panic o stand/129196 standards Inconsistent errno in strtol() o usb/129173 usb [uplcom] [patch] Add support for Corega CG-USBRS232R a o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/129164 [kernel] Wrong priority value for normal processes o kern/129152 fs [panic] non-userfriendly panic when trying to mount(8) f i386/129149 vwe [panic] 6.4-RC2 page faults during kernel-mode boot pr f kern/129135 yongari [vge] vge driver on a VIA mini-ITX not working o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/129125 [psm] psm0: failed to reset the aux device. o ports/129122 openoffice editors/openoffice.org-3: building OpenOffice.org-3.0. o kern/129103 ipfw [ipfw] IPFW check state does not work =( o kern/129098 [panic] vinvalbuf: dirty bufs on 6-STABLE o docs/129095 doc ipfw(8): Can not check that packet originating/destine o kern/129093 ipfw [ipfw] ipfw nat must not drop packets o kern/129059 fs [zfs] [patch] ZFS bootloader whitelistable via WITHOUT o kern/129053 [lor] lock order reversal with printf(9) o bin/129052 ps(1) %cpu column reports misleading data for threaded f kern/129040 gavin [install] Lockup during boot - Cannot install the OS o kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o docs/129024 keramida [patch] ipfw(8) improvements o bin/129014 [regression] ftp(1) cannot bind to specific source IP o conf/128994 UPDATING falsly states DTrace bindings are built by de s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o amd64/128978 amd64 [install] FreeBSD 6.3 64-bit panics at boot time duri o usb/128977 usb [usb] [patch] uaudio is not full duplex o ports/128972 cy Port security/krb5 has a linking problem when compiled o bin/128954 net ifconfig(8) deletes valid routes o ports/128952 [NEW PORT] java/javadb: Sun's supported distribution o o java/128948 java java/jdk16 built from source can't bind a socket, but o kern/128933 [libc] realpath(3) does not follow SUS specification f o threa/128922 threads threads hang with xorg running o kern/128917 net [wpi] [panic] if_wpi and wpa+tkip causing kernel panic o bin/128886 ntpd(8): ntpd -L flag doesn't work o kern/128884 net [msk] if_msk page fault while in kernel mode o ports/128881 ruby ports-mgmt/portupgrade backtrace f conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( p bin/128842 attilio ps(1) command output includes thread name only when it p bin/128841 attilio ps(1) PADDR (and others?) field width insufficient for o kern/128840 net [igb] page fault under load with igb/LRO o ports/128838 des [PATCH] www/varnish 2.0.1 enhancements f kern/128829 fs smbd(8) causes periodic panic on 7-RELEASE o amd64/128810 amd64 AMD 64 port installation o java/128809 java JVM aborted when GNU RXTX write to serial port. o usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o ports/128787 doceng print/ghostscript8 8.63 fails with -sDEVICE=ijs -sIjsS o ports/128783 stas net-mgmt/flow-tools: flow-send Does not work on freebs o amd64/128765 amd64 [install] Install CD loads to Install choices but stop p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o ports/128754 portmgr bsd.port.mk: implement master sites randomization f usb/128745 weongyo zyd teoretically supported usb device makes kernel pan o bin/128727 host(1) does not work properly with the -6 option o ports/128726 mi [NEW PORT] print/lyx16: Document processor interfaced o bin/128725 [patch] whois(1) does not correctly send queries regar o kern/128714 gmtime(3) infine loop o ports/128696 nobutaka Update textproc/uim and new package request textproc/u o kern/128689 [panic] www/apache22: Fatal trap 12: page fault while o bin/128668 [request] Kerberos in the base system is too old o bin/128654 atacontrol(8) does not preserve rebuild status through o kern/128648 [drm] [hang] crash when using 3D-acceleration with Int o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct f kern/128639 acpi [patch] [acpi_asus] acpi for ASUS A6F,A3E,A3F,A3N not f kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop f kern/128633 pjd [zfs] [lor] lock order reversal in zfs o conf/128632 security periodic 700.kernelmsg repeats messages p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o bin/128587 kensmith [patch] sysinstall(8) uses first mirror in Turkey even o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o ports/128556 mnag net/py-zsi installs with insufficient rights o docs/128524 doc No geom documentation for loading gjournal(8) f misc/128516 [build] /usr/src: "make doxygen" stops with error: mak f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad o bin/128501 cperciva freebsd-update(8) does not work on netbooted machines o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o ports/128467 ale [patch] databases/php4-dba: change Berkeley DB detecti o bin/128465 [request] mount_smbfs(8) does not support IPv6 o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res o misc/128444 [build] [patch] create USB stick install image o conf/128433 [patch] Add option to allow a full login when doing 's o bin/128427 [patch] mdfs(8): mount_mfs warns "chmod: Read-only fil o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like o java/128411 glewis jdk1.5 Querying JMX mbean OperatingSystem->TotalPhysic s docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages o kern/128335 [patch] [cpufreq] Missing call to sbuf_delete() in two o conf/128334 net [request] use wpa_cli in the "WPA DHCP" situation o docs/128325 mckusick README.snapshots still refers to snaphots as "alpha-te o usb/128324 usb [uplcom] [patch] remove baud rate restriction for PL23 f bin/128312 vwe netstat(1): output field "Netif" too small f kern/128308 gavin [psm] psm0 cause page fault o kern/128304 vn_pollrecord(3) derefs NULL if v_addpollinfo() fails o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o kern/128287 remko re(4) regression in 7.1 BETA2 o gnu/128284 gdb(1) segfaults f kern/128282 gavin [mpt] system failure on removing two drives f kern/128276 geom [gmirror] machine lock up when gmirror module is used o amd64/128263 amd64 [panic] 2 amd64 dl380 g5 with dual quadcore xeons, 8 a o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi o kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets o amd64/128259 amd64 csh(1): "`" crashes csh o ports/128256 ale www/tomcat-native rewrites APR library distributed wit o ports/128250 pgollucci net-mgmt/net-snmp: pf (packet filter) support p kern/128247 bz [ip6] [panic] Fatal Trap 12 in ip6_forward = o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re p docs/128222 trhodes [patch] man page truss(1) claims that init(8) can be t f kern/128181 yongari [fxp] panic in fxp_add_rfabuf o threa/128180 attilio pthread_cond_broadcast(3) lost wakeup o kern/128177 jeff [sched_ule] wrong CPU usage reported by top/ps with SC o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not o kern/128165 [aac] [patch] sync aac(4) with the latest vendor versi o kern/128103 vwe [feature request] [patch] new SiS 190 NIC driver o bin/128094 [patch] lint(1): Sizeof(pointer) bug in usr.bin/xlint/ p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage f bin/128088 vwe who(1) not listing all logged in users. o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o ports/128078 apache www/apache20 -- LDAP support is broken o kern/128076 [panic] Fatal trap 12: page fault while in kernel mode o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to o kern/128035 [ata] unexpexted detach of external SATA drive o docs/128032 jeff pthread(3) mentions libkse which has been removed in 8 s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o ports/128028 portmgr bsd.port.mk - Ports-Script do not recognize dialog-ret o i386/128014 i386 [geode] [patch] AMD Geode CS5536 watchdog(9) not disab f kern/128009 vwe setkey(8) coredumps freebsd7 on sha1_result line 263 p o bin/128001 net wpa_supplicant(8), wlan(4), and wi(4) issues o ports/127995 jpaetzel net/isc-dhcp30-server creates a user/group with dynami p bin/127986 [patch] ee(1): fix compiler warnings caused by use of o ports/127982 amdmi3 games/tnl: crashes when clicking on `single mission' i o i386/127981 i386 [loader] Stack underflow preventing boot [regression] o usb/127980 usb [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x an o kern/127971 [panic] 7.0 RELEASE PANIC a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/127930 ed auto-logout does not work o kern/127928 net [tcp] [patch] TCP bandwidth gets squeezed every time t o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up o usb/127926 usb [boot] USB Timeout during bootup o docs/127923 loader Please mention qemu in the FreeBSD Handbook o kern/127920 pf [pf] ipv6 and synproxy don't play well together o bin/127918 [patch] ATA Security support for atacontrol(8) o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even o bin/127912 In theory, uncompress(1) may crash and SEGV f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki o docs/127908 doc [patch] readdir(3) error documentation p docs/127890 trhodes socket(2) man page should explain that protocol can be o ports/127889 ruby ports-mgmt/portupgrade detects spurious failures and s o kern/127887 [psm] PSM0 not detected by the KERNEL in Compaq Prolia o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/127870 [panic] HP DL320 lockup with kernel panic s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/127842 murray list of hardware devices missing from the relnotes p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127834 net [ixgbe] [patch] wrong error counting o bin/127832 mux csup(1) is reporting RCS errors in ports. o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti s ports/127822 wxs [PATCH] security/sudo: add tuneable variable SUDO_LDAP o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w f kern/127813 linimon [ata] ata diver dma mode work incorrectly on chip vt82 o kern/127787 [lor] 3 lock LOR in recent CURRENT o ports/127778 brooks lang/llvm-gcc4: llvm can't create shared lib o bin/127764 [boot0cfg] [patch] preserve NT disk UID data for boot0 o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/127717 [ata] [patch] - support write cache toggling per devic o bin/127711 sysinstall(8): cant excape from failed distribution ft o kern/127659 fs [tmpfs] tmpfs memory leak o amd64/127640 amd64 gcc(1) will not build shared libraries with -fprofile- o bin/127633 edwin [patch] Update top(1) to 3.8b1 o kern/127623 [headers] header definition for cftime is missing. s ports/127608 marius [patch] sysutils/cdrtools - cdrecord: fix device enume p docs/127602 trhodes [patch] Incomplete information in nsswitch.conf(5) s kern/127587 net [bge] [request] if_bge(4) doesn't support BCM576X fami o kern/127581 acpi [patch] [acpi_sony] Add support for more Sony features o kern/127553 [build] (errata) in kernel generic et al, device ural p usb/127549 usb [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requi o usb/127543 n_hibma [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s f kern/127528 net [icmp]: icmp socket receives icmp replies not owned by f kern/127517 [ata] sata does not detect SATA-300 disk but instead d a ports/127496 mi devel/icu 3.8.1_1 does not build when Danish locale is f kern/127492 pjd [zfs] System hang on ZFS input-output o kern/127486 [smp] [panic] early SMP panic ("AP #1 (PHY #1) failed! o amd64/127484 amd64 [timecounters] Drift problem with FreeBSD 7.0 and 7.1 o bin/127475 [patch] sockstat(1) output columns run into each other o misc/127471 [build] [patch] installworld fails if install-info is o ports/127467 portmgr bsd.port.mk: fix checking DISTDIR for writeability s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should o amd64/127451 amd64 [scheduler] incorrect load on quad core p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127441 [dtrace] Dtrace timestamp variable is wrapping as if d o kern/127440 [dtrace] Dtrace arg0/arg1 variables don't contain retu o kern/127439 pf [pf] deadlock in pf p docs/127432 remko [patch] update fsck_ffs(8) man-page with regarding to o usb/127423 usb [boot] BTX halted on Gigabyte GA-MA69VM-S2 / AMD Sempr o kern/127420 fs [gjournal] [panic] Journal overflow on gmirrored gjour p kern/127411 [ata] [panic] ata panics on bad block p docs/127406 n_hibma [patch] update umodem man page: Sony Ericsson W810i o amd64/127397 amd64 [amd64] 32bit application on FreeBSD-6.3 amd64 gets SI o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o i386/127387 kib [i386] [patch] Inline assembler in x86 _start() in crt f kern/127375 kmacy [zfs] If vm.kmem_size_max>"1073741823" then write spee o i386/127374 i386 Suspend/Resume with Keystroke only once on Thinkpad T4 o kern/127360 kmacy [socket] TOE socket options missing from sosetopt() o docs/127359 keramida Undocumented firewall_xxx options for rc.conf in stabl f kern/127345 pf [pf] Problem with PF on FreeBSD7.0 [regression] o i386/127343 i386 [hang] System locks -- simular to PR 123729 o usb/127342 usb [boot] [panic] enabling usb keyboard and mouse support o i386/127337 i386 [boot] FreeBSD 7.1/i386 BTX boot problem on Pavilion d a bin/127331 edwin [patch] top(1) only shows cputime used by one process o ports/127321 japanese/kon2-16dot: buffer overflow and mouse bugs o ports/127303 kuriyama [patch] misc/amanda-server Add pkg-install to create m o ports/127292 timur net/samba3: not work cancel inheritance on share p kern/127289 [ata] [patch] new pci ids for SiI3132 present on adapt o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped s amd64/127276 amd64 ldd(1) invokes linux yes o bin/127270 fsck_msdosfs(8) may crash if BytesPerSec is zero o bin/127265 [patch] ddb(4): Adding the ddb command set from module o ports/127262 databases/firebird20-server: fbclient crashes php engi o docs/127253 gavin Error in Handbook: http://www.freebsd.org/doc/en/books p kern/127250 [ata] Kerneltrap 12 with atacontrol o usb/127248 usb [ucom] panic while uplcom devices attaach and detach o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l s ports/127229 lwhsu [PATCH] sysutils/dtc: unbreak, fix some typos, remove o threa/127225 threads bug in lib/libthr/thread/thr_init.c o usb/127222 usb [ohci] Regression in 7.0 usb storage generic driver o ports/127214 secteam [PATCH] ports-mgmt/portaudit: Please change to U p kern/127213 delphij [tmpfs] [patch] sendfile on tmpfs data corruption o ports/127210 portmgr bsd.destdir.mk - chrooted install of a port does not f o kern/127209 ipfw [ipfw] IPFW table become corrupted after many changes o bin/127192 net routed(8) removes the secondary alias IP of interface o ports/127181 audio/musicpd logs warning f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o gnu/127136 Typo in tree-nested.c o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o amd64/127129 amd64 mdconfig(8) is core dumping with Segmentation Fault 11 o kern/127121 pf [pf] [patch] pf incorrect log priority f kern/127119 [ata] incorrect ata device probing o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode o ports/127104 skv devel/otrs - OTRS/PostgreSQL 8.3.3 error: Syntax error o kern/127102 net [wpi] Intel 3945ABG low throughput o bin/127095 mux csup(1): Csup truncates files using RELENG_6 s ports/127087 mail/bincimap port does not include an rc.d file o ports/127084 multimedia multimedia/linux-realplayer is vulnerable o kern/127057 net [udp] Unable to send UDP packet via IPv6 socket to IPv s bin/127056 lp(1) doesn't use -o options f sparc/127051 sparc64 [hme] hme interfaces "pause" with the message "device o kern/127050 net [carp] ipv6 does not work on carp interfaces [regressi o kern/127048 systat(1) information leak when security.bsd.see_other o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o bin/127034 [patch] Add option to count apparent size to du(1) o kern/127029 fs [panic] mount(8): trying to mount a write protected zi o ports/127019 ruby ports-mgmt/portupgrade does not recognize fail conditi o ports/127017 sysutils/ntfsprogs - ntfsclone not working version 2.0 p kern/126984 glebius [carp] [patch] add carp userland notifications via dev o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126971 [boot] loader/kernel does not obey comconsole_speed o kern/126945 net [carp] CARP interface destruction with ifconfig destro o bin/126936 locate.updatedb(8): updatedb fails silently when attem p docs/126934 trhodes missing 'crit' in usr.sbin/syslogd/syslog.conf.5 s ports/126932 itetcu gapcmon option in sysutils/apcupsd conflicts with sysu p kern/126926 [build] [patch] Add MACHINE to dmesg f kern/126902 geom [geom] geom_label: kernel panic during install boot o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o kern/126861 [panic] 6.2 (SMP) crashes when polling disabled o ports/126853 stas ports-mgmt/portaudit: speed up audit of installed pack o usb/126848 usb [usb]: USB Keyboard hangs during Installation p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s p conf/126829 matteo gjournal not in /boot/defaults/loader.conf o ports/126826 thierry sysutils/xvidcap failes to build o bin/126822 net wpa_supplicant(8): WPA PSK does not work in adhoc mode o kern/126821 [panic] Fatal trap 12 (kdeinit) o bin/126819 randi sysinstall(8) During install if initial name look-up f o kern/126788 [boot] Can not boot FreeBSDv7.0.iso from USB formated o kern/126784 [agp] agp.ko doesn't detect Acer Aspire One onboard gr o misc/126747 [build] bsd.dep.mk does not remove .depend on cleandep o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o bin/126721 gcc(1) g++(1) Compiling, assembling and linking code w o kern/126714 net [carp] CARP interface renaming makes system no longer f kern/126703 kmacy [panic] [zfs] _mtx_lock_sleep: recursed on non-recursi o kern/126697 emaste [aac] aac driver bug. aaccli still doesn't work o kern/126695 net rtfree messages and network disruption upon use of if_ o kern/126688 net [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and p bin/126682 delphij [patch] sed(1) segfaults on error rather than error me o i386/126666 i386 [boot] [hang] boot failure for nForce 630i / GeForce 7 f kern/126665 yongari [vr] Integrated VIA Rhine II receive errors p bin/126657 [patch] w(1) breaks multibyte date format s kern/126620 [request] RTL8187B Driver for freebsd o bin/126619 randi sysinstall(8) deletion of routes when reinitializing m f www/126617 jkois Commercial vendory entry addition request o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o bin/126562 rc rcorder(8) fails to run unrelated startup scripts when o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/126546 des pam_nologin(8) in auth causes log spam o usb/126519 usb [usb] [panic] panic when plugging in an iphone o ports/126513 doceng print/ghostscript8 (was ghostscript-gpl): compile bug p docs/126487 keramida fix language on atol(3) manpage o docs/126484 doc libc function res-zonscut2 is not documented o kern/126475 net [ath] [panic] ath pcmcia card inevitably panics under f kern/126469 yongari [fxp] [panic] fxp(4) related kernel panic p bin/126468 bz [ipsec] some ipsec configurations make FreeBSD panic a bin/126446 secteam Vulnerability about OpenSSL p misc/126435 ed [patch] /usr/share/examples/drivers/make_pseudo_driver o bin/126433 [patch] some missing checks in rm(1) o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126384 [request] find(1) doesn't support whiteout entries yet p kern/126368 bz [jail] Running ktrace/kdump in jail leads to stale jai o kern/126364 [panic] Fatal trap 12: page fault while in kernel mode o kern/126339 net [ipw] ipw driver drops the connection o bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o misc/126312 [build] debug message going to stderr while doing "mak o bin/126307 syrinx bsnmpd(1): UNIX socket leak on 6.3 when using Hostres- o conf/126305 nsmb.conf(5): Hostnames in nsmb.conf seem to be ignore o bin/126301 pkg_version(1) can induce unexpected parsing of INDEX o kern/126300 [build] [patch] Add missing -mno-sse3 flag for AMD64 t o kern/126289 [libc] select(2) apparently consumes cpu when it shoul o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o misc/126230 weird process cpu usage stats and weird load average p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o kern/126214 net [ath] txpower problem with Atheros wifi card o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/126142 [ata] M5281: READ DMA faults, device detaching o ports/126140 ruby ports-mgmt/portupgrade runtime error o misc/126131 cperciva portsnap(8) fetch error with HTTP_PROXY or HTTP_PROXY_ f kern/126113 rnoland [drm] Issues with DRM with Intel GM965 chipset o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom f kern/126089 [panic] Fatal trap 12: page fault while in kernel mode o ports/126083 thierry textproc/aspell core dumps o kern/126075 net [inet] [patch] internet control accesses beyond end of o ports/126042 mi audio/festival: add OGI option o ports/125996 danfe [patch] x11/nvidia-driver - remove pkg_info statements f kern/125985 [umass] [panic] no da-device, panic upon unplugging o ports/125936 ruby ports-mgmt/portupgrade -R fails if BUILD_DEP's are not o bin/125932 pkg_add(1) doesn't prompt for root credentials and the o bin/125922 net [patch] Deadlock in arp(8) o docs/125921 doc lpd(8) talks about blocks in minfree while it is KB in o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/125895 [panic] kernel: panic: ffs_blkfree: freeing free block o ports/125883 x11 x11-fonts/xorg-fonts-cyrillic is installed, but fonts o i386/125880 i386 [cardbus] Cardbus cards Don't function on TI PCIxx12 C p bin/125878 kmacy [patch] [request] Add zfs/zpool to rescue programs. o amd64/125873 amd64 [smbd] [panic] Repeated kernel panics, trap 12 page fa o kern/125859 [ata] [patch] sata access failure [regression] o bin/125855 standards sh(1) allows for multiline, non-escaped control struct o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/125816 net [carp] [if_bridge] carp stuck in init when using bridg o kern/125806 kmacy [cxgb] cxgb packet counters do not work o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus f bin/125753 cron(8) not mailing output o docs/125751 doc man 3 pthread_getschedparam section ERRORS incomplete s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS o usb/125736 usb [ukbd] [hang] system hangs after AT keyboard detect if o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125722 [boot] [install] error "BTX halted" at installation Fr o kern/125721 [ath] Terrible throughput/high ping latency with Ubiqu o ports/125719 skreuzer shells/pdksh, zombie process's occouring on SMP Machin o docs/125717 keramida minor wpa_supplicant.conf(5) buglet o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125704 [ng_nat] kernel libalias: repeatable panic o bin/125678 [patch] ls(1) -h option doesn't work if the listing co o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/125647 [ciss] [panic] System randomly crashes - ciss driver p docs/125639 trhodes [patch] kldunloadf(2) does not mention about possible o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o kern/125617 [ath] ath(4) related panic a kern/125613 trasz [ufs] [patch] ACL problems with special files o i386/125592 i386 [hang] FreeBSD 7 server in hang o conf/125551 [patch] building WLAN userland should be optional o i386/125516 gavin [install] 7.0-RELEASE install dies o usb/125510 usb [panic] repeated plug and unplug of USB mass storage d f kern/125502 net [ral] ifconfig ral0 scan produces no output unless in o kern/125501 [ath] atheros cardbus driver hangs o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125467 pf [pf] pf keep state bug while handling sessions between o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo o ports/125453 cy net/ntp should no longer use mlockall() o usb/125450 usb [panic] Removing USB flash card while being accessed c o bin/125449 [patch] awk(1): /usr/bin/awk fails mawk's FPE test f kern/125442 gonzo [carp] [lagg] CARP combined with LAGG causes system pa o kern/125389 [ipmi] [bce] IPMI problem with bce o i386/125383 i386 [amdtemp] [request] please enable amdtemp on i386 o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO o bin/125370 ipfw [ipfw] [patch] increase a line buffer limit o bin/125365 matteo [patch] mdconfig(8) -l overflow for size field o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o bin/125350 des [libfetch] [patch] src/lib/libfetch add support for de o kern/125332 [ath] [hang] crash under any non-tiny networking under a ports/125330 dinoex print/cups-base update fails when nscd running o docs/125329 keramida PACKAGEROOT should be documented in the Handbook o bin/125325 Annoying grep(1) bug with --color s ports/125324 editors/the (3.2) looses cursor when compiled with PDC o kern/125258 net [socket] socket's SO_REUSEADDR option does not work p docs/125253 trhodes [patch] jail(2) does not mention about possible error o kern/125251 [panic] kernel panic o kern/125239 net [gre] kernel crash when using gre o usb/125238 usb [ums] Habu Mouse turns off in X f kern/125195 yongari [fxp] fxp(4) driver failed to initialize device Intel o bin/125185 csh(1) exit on signal 11 o bin/125184 des sshd(8) does not always log IP address for login failu o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani p bin/125154 matteo [patch] mount(8) ignores values returned by exec_mount s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c a kern/125139 philip [patch] [ata] bugs in ATAPI CD tray control o ports/125113 des [Update]astro/openmap:update to 4.6.4 p bin/125098 [patch] ee(1) consume 100% cpu usage o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o conf/125041 [patch] New file: /etc/periodic/security/810.loginok o misc/125039 cperciva Updating 7.0-RELEASE with freebsd-update failes o kern/125034 [devfs] [patch] devfs does not apply rules to newly cr o kern/125030 [devfs] [patch] Command 'devfs ruleset 0' causes panic o ports/125012 ahze problems in math/ldouble for 128bit long double on i38 o i386/125011 i386 precision of constants for long double o kern/125009 [patch] access(2) grants root execute perms for non-ex o amd64/125002 amd64 [install] amd64, SATA hard disks not detected o kern/124996 [patch] "filesystem goof: vop_panic[vop_revoke]" panic o kern/124989 [mfi] mfi driver error - unexpected sense o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o gnu/124970 gdb(1): gdb crashes after setting hardware watchpoint o kern/124969 geom gvinum(8): gvinum raid5 plex does not detect missing s o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC p i386/124902 delphij [i386] [patch] patch to fix VESA modes and allow 8bit o kern/124881 [devfs] [patch] [request] Add possibility to check whi o stand/124860 standards flockfile(3) doesn't work when the memory has been exh p kern/124853 gonzo [devfs.rules] [patch] devfs_ruleset_use may use freed o bin/124825 mlaier tcpdump(8) does not support pfsync(4) data o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o www/124787 remko Internet Service Provider o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o kern/124767 net [iwi] Wireless connection using iwi0 driver (Intel 220 o ports/124765 ume sysutils/gkrellm2 shows wrong number of users in proc o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/124754 [i915] i915 kernel module does not works with G965 o kern/124753 net [ieee80211] net80211 discards power-save queue packets o conf/124747 rc [patch] savecore can't create dump from encrypted swap o kern/124744 acpi [acpi] [patch] incorrect _BST result validation for To o bin/124739 edwin b64decode(1): "b64decode -r" fails to decode legal bas a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o usb/124708 usb [panic] Kernel panic on USB KVM reattach o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/124667 scsi [amd] [panic] FreeBSD-7 kernel page faults at amd-scsi o conf/124641 [patch] new periodic script for checking for ports wit o ports/124639 kde kde audio/arts sound skipping on playback; non-artsd s o i386/124633 i386 [boot] [panic] 7.0 does not boot from CD p kern/124621 fs [ext3] [patch] Cannot mount ext2fs partition o usb/124604 usb [ums] Microsoft combo wireless mouse doesn't work o kern/124564 [kernel] [patch] add CPUID bits to ident phenom proces s misc/124541 cperciva portsnap: portsnap3.FreeBSD.org mirror on error for ov p bin/124517 jh [patch] cdcontrol(1) doesn't print all error messages o i386/124516 kmacy [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst f kern/124471 [lor] lock order reversal on kldload/kldunload dtracea o docs/124470 remko incomplete (and out of sync) glabel(8) manpage o docs/124469 remko incomplete nice(1) manpage o docs/124468 remko sticky(8) should be sticky(7) o kern/124464 [panic] Panic after showing login o misc/124452 [install] 7.0-RELEASE amd64 bootonly media fails to us o amd64/124432 amd64 [panic] 7.0-STABLE panic: invalbuf: dirty bufs o misc/124431 [build] [patch] minor revision of BDECFLAGS f bin/124424 fs [zfs] zfs(8): zfs list -r shows strange snapshots' siz s ports/124423 multimedia/mplayer detection of OSS Audio is faulty o kern/124412 acpi [acpi] power off error on Toshiba M40 laptop o bin/124409 fsck(8) requires exact entry for mountpoints when exec s ports/124404 net/pathchar coredumps p bin/124392 rink [patch] bootparamd(8) does not work on arm o kern/124389 [build] make installkernel fails with KMODDIR iff $(KM p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile o ports/124375 apache www/mod_auth_kerb doesn't compile against heimdal o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o bin/124353 cvsup(1): CVSup coredumps with Bus Error since install o bin/124349 [patch]: stat(1) should interpret st_flags as it does p bin/124342 mtm ggated(8): [patch] sbin/ggate/ggated/ggated.c fails to o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o ports/124321 kde x11/kdebase3 - KDE logins do not work with nsswitch LD o bin/124320 pam_radius(8): Login with ssh using pam_radius and a t o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from f kern/124294 geom [geom] gmirror(8) have inappropriate logic when workin o kern/124280 [nfs] [panic] FreeBSD 7/amd64 STABLE crash o ports/124258 des sysutils/munin-node creates $PREFIX/var/munin dir for o docs/124253 sam Broken command in the handbook for configuring a wirel p bin/124251 mtm [patch] add BUGS section to rcorder.8 with REQUIRE exp o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 cokane [ndis] [patch] ndis network driver sometimes loses net s kern/124174 [panic] Panic after installing audio/oss on an Asus A8 o kern/124164 [patch] Add SHA-256/512 hash algorithm to crypt(3) o kern/124160 net [libc] connect(2) function loops indefinitely o kern/124153 [panic] Fatal trap 12: page fault while in kernel mode o conf/124151 winbind is ignored in compat mode in nsswitch.conf(5) o amd64/124134 amd64 [kernel] The kernel doesn't follow the calling convent o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o kern/124128 [puc] puc driver doesn't support VScom PCIex-800H 8-po o kern/124127 net [msk] watchdog timeout (missed Tx interrupts) -- recov o i386/124124 i386 [boot] [panic] Page fault while booting livefs iso of o bin/124119 edwin locate(1) doesn't check /etc/locate.rc for the default o kern/124111 i386_set_ldt(2): kernel says see i386_set_ldt; man pag o bin/124084 find(1): find -execdir does not prepend ./ to filename o kern/124064 [ar] [patch] cannot handle >16 serial number with Inte o bin/124052 [patch] adduser(8) throws errors when -f input file in o bin/124049 ntpd(8): ntpd is crashing at startup o kern/124021 net [ip6] [panic] page fault in nd6_output() o i386/123990 i386 [boot] BTX halted on Thinkpad x60s o i386/123981 i386 [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i o kern/123980 [ata] [patch] Implement ATA UDMA speed limit (hw.ata.a p bin/123977 Segmentation fault in dialog(1) with ghostscript-gpl-n o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), p kern/123961 net [vr] [patch] Allow vr interface to handle vlans o www/123946 bugmeister query-pr.cgi fails on shar-5.sh on ports/118906 o kern/123939 fs [msdosfs] corrupts new files o bin/123932 amd(8) core dumps while load high o gnu/123921 [patch] cpio(1): cpio -oc bug with write_out_header() a kern/123904 [ipmi] ipmi(4) reports negative temperature values on o kern/123892 net [tap] [patch] No buffer space available o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/123858 net [stf] [patch] stf not usable behind a NAT o kern/123855 philip moused(8): spontaneous mouse events f kern/123813 [panic] 7.0-STABLE i386 reboots weekly with panic: kme p bin/123807 imp [patch] timed(8) does not run on arm (incorrect getopt o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not f kern/123793 bz [ipsec] [patch] KAME IPSEC does not pass processed pac o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 o bin/123774 [patch] kdump(1): time_t printing issues o ports/123769 luigi Modules compiled using devel/linux-kmod-compat can't b o kern/123758 gnn [panic] panic while restarting net/freenet6 o kern/123755 dfr [nfs] fstat(1) fails to return ESTALE with rename()d f f kern/123742 [acpi] [panic] kernel panic when boot with acpi disabl o kern/123735 [panic] 7.0-STABLE kernel panic "AP #1 (PHY# 1) failed o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o stand/123688 standards POSIX standard changes in unistd.h and grp.h o kern/123674 scsi [ahc] ahc driver dumping f kern/123666 scsi [aac] attach fails with Adaptec SAS RAID 3805 controll o bin/123644 [patch] [sysctl] Allow sysctl(8) to ignore unknown OID o bin/123635 brian jot(1) handles 'stuttering sequences' and reversed ran o kern/123634 [vm] [panic] kernel panic with FreeBSD 7-STABLE o bin/123633 net ifconfig(8) doesn't set inet and ether address in one o kern/123629 [panic] Fatal trap 12: page fault while in kernel mode f kern/123617 net [tcp] breaking connection when client downloading file o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o kern/123603 net [tcp] tcp_do_segment and Received duplicate SYN p kern/123587 bz [ipsec] IPCOMP broken in IPSEC (FAST_IPSEC for RELENG_ o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o ports/123570 itetcu audio/cpige version 1.5 coredumps if new .conf entries p kern/123568 gnn [lo] loopback interface error (don`t ask) f sparc/123566 kmacy [zfs] zpool import issue: EOVERFLOW f kern/123563 yongari [re] watchdog timeout o amd64/123562 amd64 [install] FreeBSD amd64 not installs o kern/123559 net [iwi] iwi periodically disassociates/associates [regre o java/123555 java linux-sun-jdk15, linux-sun-jdk16 produce a coredump o misc/123554 [build] buildworld with TARGET_ARCH=i386 fails on amd6 o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail s ports/123526 gerald emulators/wine fails with KVA_PAGES > 500 (typical for o amd64/123520 amd64 [ahd] unable to boot from net while using ahd p kern/123518 [patch] src/sys/kern.mk fails to disable -msse3 for am o conf/123516 [periodic] Daily Security Logs Not Reporting Failed Lo o usb/123509 usb [umass] continuous reset Samsung SGH-G600 phone f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 a ports/123468 itetcu mail/postgrey: information leak, privacy issue o bin/123465 net [ip6] route(8): route add -inet6 -interfac o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o i386/123462 i386 clock is too fast o amd64/123456 amd64 fstat(1): /usr/bin/fstat shows error messages and hang o misc/123452 brd trustedbsd-audit email list not archiving o kern/123429 net [nfe] [hang] "ifconfig nfe up" causes a hard system lo o bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag a ports/123410 dinoex graphics/pornview segmentation fault p kern/123399 [build] RELENG_7 kernel does not compile if IPV6 suppo o kern/123392 [vfs] [lor] lock order reversal in vfs o kern/123359 [hang] Install hangs before sysinstall a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o usb/123352 usb [usbdevs] [patch] Add Option GTMAX3.6/7.2 and Quallcom o usb/123351 usb [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [2 o kern/123347 net [bge] bge1: watchdog timeout -- linkstate changed to D o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c p bin/123329 phk [patch] usage strings for fifolog_create(1) and fifolo s bin/123304 sysinstall(8): missing sensible and user friendly prog o kern/123287 [devfs] structure used after freed in destroy_devl() i o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l f amd64/123275 amd64 [cbb] [pcmcia] cbb/pcmcia drivers on amd64 failure [re o kern/123256 net [wpi] panic: blockable sleep lock with wpi(4) o misc/123240 [nanobsd] [patch] rerunning nanobsd.inc.sh fails becau o bin/123237 randi sysinstall(8): [patch]: sysinstall(8) -- remove dummy 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 f kern/123172 net [bce] Watchdog timeout problems with if_bce o kern/123166 yongari [re] CARP messages filtered by Realtek driver on > 6.2 o kern/123160 net [ip] Panic and reboot at sysctl kern.polling.enable=0 o misc/123156 [build] [patch] make.conf update to "make update" sect o misc/123155 [build] [patch] src/Makefile.inc1 bug: remove obsolete p kern/123147 remko [ti] [patch] ti(4) doesn't use mii, but kernel configs o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/123122 geom [geom] GEOM / gjournal kernel lock o conf/123119 ipfw [patch] rc script for ipfw does not handle IPv6 o kern/123095 [libc] sendfile(2): Suspected sendfile data corruption o ports/123068 sysutils/bubblemon2 bubblemon-dockapp: error extractin f kern/123066 vanhu [ipsec] [panic] kernel trap with ipsec f kern/123045 gonzo [ng_mppc] ng_mppc_decompress - disabling node o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123021 [patch] mount(8): mount -p shows incorrect mount optio o bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o kern/123013 [vm] panic "Bad tailq NEXT(%p->tqh_last) != NULL" o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o ports/122991 glewis java/jdk16 does not compile from ports o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net f amd64/122970 yongari [re] [hang] RealTek 8168/8111B couses system crash o conf/122968 [md] md swapfile multiplication after init 1 o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o usb/122956 usb [ubsa] [patch] add support for Novatel Wireless XU870 o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o kern/122928 net [em] interface watchdog timeouts and stops receiving p o threa/122923 threads 'nice' does not prevent background process from steali f kern/122915 [smp] Incorrect system cpu load o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o ports/122890 stas Update port: www/ocaml-net (revision, added options) f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t a i386/122887 i386 [panic] [atkbdc] 7.0-RELEASE on IBM HS20 panics immed o conf/122883 [patch] login class for ukrainian users accounts f kern/122880 vwe [hang] Kernel lock-up during 7.0 installation disc boo o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files f kern/122839 net [if_em] FreeBSD 7 multicast routing problem o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() o usb/122819 usb [usb] [patch] Patch to provide dynamic additions to th o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o ports/122801 fjoe databases/virtuoso, databases/firebird20-client, datab o kern/122782 amd64 [modules] accf_http.ko kernel module is not loadable o kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122772 net [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/122743 net [mbuf] [panic] vm_page_unwire: invalid wire count: 0 o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122697 net [ath] Atheros card is not well supported o amd64/122695 amd64 [cpufreq] Lack of cpufreq control using amd64 eith cor o kern/122685 net It is not visible passing packets in tcpdump(1) a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE p bin/122659 stefanf [patch] sh(1) long arithmetics broken on certain archi o bin/122652 [patch] du(1) support for inode count f i386/122644 i386 [panic] on-boot mount /tmp kernel dump o ports/122639 danfe audio/gtkpod - Confilicting include files break builds o amd64/122624 amd64 unusable minimal installation of FreeBSD-7.0 o i386/122623 i386 [build] [patch] bsd.cpu.mk doesn't handle opteron/athl o usb/122621 usb [new driver] [patch] New driver for Sierra Wireless 3G o ports/122616 python databases/py-pyPgSQL - apply bytea escape bug patch in o kern/122615 [devfs] [panic] occasional crash/boot while running Xo o i386/122602 i386 [build] i386/conf/PAE does not compile on RELENG_7 a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/122588 [lor] 4 Lock Order Reversal a kern/122565 bz [ipsec] [ip6] Possible memory overwrite for IPv6 IPsec o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? o kern/122551 net [bge] Broadcom 5715S no carrier on HP BL460c blade usi o amd64/122549 amd64 7.0-RELEASE-amd64-bootonly.iso doesn't work w/ serial o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o ports/122524 demon www/links1 uses 7-bit us-ascii codepage only when usin o bin/122522 kensmith sysinstall(8) doesn't unmount CD for multi-CD package o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o java/122513 java native JDKs unbuildable with Linux ones f kern/122493 gavin [boot] BTX Halted - Cause is Promise Fastrack SATA PCI o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o bin/122479 openssl(1): openssl SEGV with DTLS o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o amd64/122468 amd64 Compile problems after upgrading to 7.0 f kern/122462 [boot] Fails to boot from an usb harddrive o conf/122445 Unable to override EDITOR in /etc/profile due to defau f kern/122415 geom [geom] UFS labels are being constantly created and rem o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/122373 jfv [em]: unable to recieve on em 82542 w/o promisc f kern/122368 [ata]: Failure to support SATA/PATA drives on 6.3 and o ports/122333 gavin net/arping - patch to lookup for interface and src ip, o kern/122331 [wpa] [panic] 7.0-RELEASE && panic in Wifi area with W o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco o kern/122301 [build] kernel compile with "options DEBUG_LOCKS" fail f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o ports/122299 luigi multimedia/linux-ov511-kmod fails to build on FreeBSD o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o kern/122288 [md] [patch] mdconfig(8) returning negative unit numbe o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o bin/122235 [psm] freebsd-7.0 moused(8) problems with ALPS GlidePo o kern/122195 net [ed] Alignment problems in if_ed o amd64/122174 amd64 [panic] 7.0 no longer includes "device atpic" so fails o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, o conf/122170 rc [patch] [request] New feature: notify admin via page o o i386/122148 i386 [irq] interrupt storm on 7.0 [regression] s kern/122145 sam [build] error while compiling with device ath_rate_amr p bin/122137 matteo [patch] Have crontab(1) use snprintf instead of sprint o ports/122122 mi print/lyx crashes if devel/boost is compiled with thre o usb/122119 usb [umass] umass device causes creation of daX but not da o kern/122109 piso [ipfw] ipfw nat traceroute problem o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop p bin/122070 matteo [patch] crontab(1): Zero out pw_passwd in crontab o kern/122067 geom [geom] [panic] Geom crashed during boot f kern/122065 bz [ipsec] [gre] gre over ipsec not working f kern/122061 [libc] dlsym(3) is very slow when a symbol cannot be f o kern/122058 net [em] [panic] Panic on em1: taskq f docs/122052 doc minor update on handbook section 20.7.1 p stand/122051 davidxu Add posix_spawn(3) p kern/122047 jh [ext2fs] [patch] incorrect handling of UF_IMMUTABLE / o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt p kern/122045 [ata] [panic] reiniting detached ata channel kills the o bin/122043 [patch] du(1) does not support byte-count-based report p kern/122038 delphij [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc o conf/122037 [patch] add rsync example for inetd.conf o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup [reg o usb/122025 usb [uscanner] [patch] uscanner does not attach to Epson R o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf f kern/121983 yongari [fxp] fxp0 MBUF and PAE f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o docs/121952 doc Handbook chapter on Network Address Translation wrong o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg p kern/121907 [request] output to console can obscure other messages o kern/121904 wrong CPU description in dmesg output for AMD Athlon X o i386/121903 i386 [ips] [boot] can't boot on IBM x235 ServeRaid 6M [regr s ports/121902 gabor [PATCH] textproc/ispell add OPTIONS o kern/121899 [ar] [patch] Drive detached from Intel Matrix RAID and o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o kern/121897 [patch] realpath(3) segmentation fault o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw o kern/121872 net [wpi] driver fails to attach on a fujitsu-siemens s711 o docs/121871 doc ftpd does not interpret configuration files as documen s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl p kern/121809 kris unable to umount s kern/121807 ipfw [request] TCP and UDP port_table in ipfw o bin/121779 fs [ufs] snapinfo(8) (and related tools?) only work for t s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net o kern/121770 [panic] ZFS on i386, large file or heavy I/O leads to o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o ports/121745 vd misc/ossp-uuid - PostgreSQL contrib ossp-uuid crashes o usb/121734 usb [ugen] ugen HP1022 printer device not working since up p docs/121721 trhodes telnetd(8) not describing -X authentication types f kern/121720 thompsa [wpi] wpi doesnt work if kernel has options SCHED_ULE o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o kern/121706 net [netinet] [patch] "rtfree: 0xc4383870 has 1 refs" emit o kern/121704 pf [pf] PF mangles loopback packets f kern/121703 [ata] Cannot fdisk/gpt with 1TB SATA disk and 965QM Mo f i386/121699 linimon [boot] can't boot on MSI K9N Ultra o java/121692 java java/jdk16: Java 1.5 1.5.0.14p8 crashes in RMI TCP Con o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc o i386/121675 i386 [ata] incorrect fallback to udma33 with CF memory inst o ports/121672 wes [Patch] mail/mimedefang: opt out of clamav use p bin/121671 gavin [patch] nscd(8) prints needless banner f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121624 net [em] [regression] Intel em WOL fails after upgrade to f amd64/121590 amd64 [est] [p4tcc] [acpi_perf] setting dev.cpu.0.freq somet o docs/121585 doc [handbook] Wrong multicast specification o ports/121573 cy security/krb5 (MIT Kerberos) generates non-working ksu f kern/121572 [panic] when downloading from ftp system crash/rebooti o stand/121568 standards [patch] ln(1): wrong "ln -s" behaviour o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o docs/121565 doc dhcp-options(5) manpage incorrectly formatted omitting o kern/121559 geom [patch] [geom] geom label class allows to create inacc o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport o kern/121555 net [panic] Fatal trap 12: current process = 12 (swi1: net f kern/121550 [drm] Can't config graphics for ATI Radeon Xpress 200M o i386/121549 i386 [nfe]: nfe interface locks up during rc.conf initializ o docs/121545 brd Update Handbook Section 29.3 to include wlan_scan_sta s docs/121541 doc [request] no man pages for wlan_scan_ap o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: o kern/121521 [ata] [patch] add VIA CX700M2 chipset to ata driver p bin/121512 mtm [sysctl] [patch] sysctl(8) should return 1 if the user o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o bin/121503 sysinstall(8): 7.0 upgrade doesn't let me mount all of o bin/121502 [patch] option -P appears to be broken in restore(8) s p docs/121490 brueffer [patch] Multiple typos ("in in") in /usr/src files s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 f kern/121454 acpi [pst] Promise SuperTrak SX6000 does not load during bo o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup o docs/121440 keramida rc(8) and rcorder(8) unclear about PROVIDE keyword bei o amd64/121439 acpi [boot] Installation of FreeBSD 7.0 fails: ACPI problem o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o bin/121424 doc [patch] [ipfw] Rectify ambiguous English in manual o ports/121420 java java/jdk16: Java applet fails to find class under fire o ports/121416 java java/jdk15 can't build if BIN environment variable is o ports/121413 portmgr [patch] bsd.port.mk: introduce USE_LZMA for lzma-compr a power/121407 ppc [panic] Won't boot up; strange error message. o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/121382 ipfw [dummynet]: 6.3-RELEASE-p1 page fault in dummynet (cor o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/121371 secteam execv undesired use to change a processes credentials o bin/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir o bin/121359 net [patch] ppp(8): fix local stack overflow in ppp o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already o ports/121347 hrs print/teTeX-base and print/texinfo install files in th o kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati o threa/121336 threads lang/neko threading ok on UP, broken on SMP (FreeBSD 7 o kern/121322 [panic] 'panic: spin lock held too long' on reboot o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 o kern/121298 net [em] [panic] Fatal trap 12: page fault while in kernel f kern/121294 [panic] kernel panic pcpu.h or 0x00000000 in ?? () o bin/121287 dd(1) ignores any conversions if 'bs' was specified o usb/121275 usb [boot] [panic] FreeBSD fails to boot with usb legacy s o kern/121274 darrenr [panic] Panic in ether_input() with different NIC's. o ports/121270 joerg Upgrade devel/avr-gdb to a more recent version o ports/121259 itetcu New port: net/openamq OpenAMQ is a complete AMQP messa o i386/121258 i386 [boot] FreeBSD 6.3 / 7.0 boot problem [regression] o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o arm/121242 ticso [ate] [patch] Promiscuous mode of if_ate (arm) doesn't o ports/121235 wosch ports/sysutils/socket registers signal handler for SIG o kern/121234 [vm] vm_fault: fault on nofault o usb/121232 usb [usb] [panic] USB CardBus card removal causes reboot s p usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a o kern/121181 net [panic] Fatal trap 3: breakpoint instruction fault whi o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a o usb/121169 usb [umass] Issues with usb mp3 player o bin/121165 pkg_add(1) prints a weird message: PKG_TMPDIR environm p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o i386/121148 gavin [panic] Repeatable sysctl crash (Fatal Trap 12) with A o ports/121143 markus [PATCH] audio/cdparanoia: rip multisession CDs correct f ports/121134 apache www/mod_log_sql2-dtc scoreboard problem a bin/121124 sysinstall(8): FreeBSD 6.3 installation deletes MBR pa o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121102 acpi [acpi_fujitsu] [patch] update acpi_fujitsu for the P80 o kern/121080 net [bge] IPv6 NUD problem on multi address config on bge0 o kern/121074 des [patch] Add RFC2617 digest authentication to fetch(3) o kern/121073 [kernel] [patch] run chroot as an unprivileged user o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o conf/121064 [patch] Use ASCII characters for box/line characters i o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o bin/121059 ntpd(8) doesn't sync with servers after dhclient chang o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr f kern/120991 fs [panic] [fs] [snapshot] System crashes when manipulati o bin/120990 [patch] support "BIOS Boot" partition type in gpt(8) o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o stand/120947 standards xsm ignores system.xsm and .xsmstartup p docs/120945 net [patch] ip6(4) man page lacks documentation for TCLASS o i386/120933 i386 [boot] 6.x and 7.x do not boot from CD on IBM HS20 883 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 p bin/120870 jh [patch] truss(1) shows 'pipe' system call as having 6 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o bin/120813 [patch] grdc(6) off by 500 ms (on average) o kern/120791 [bge] The Broadcom BCM5703 A2 NIC is running a lot of o usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o ports/120756 des [PATCH] sysutils/munin-node: Use fixed GID o ports/120755 des [PATCH] sysutils/munin-main: Use fixed UID/GID o kern/120749 arch [request] Suggest upping the default kern.ps_arg_cache o kern/120733 cperciva libbsm.so.1 missing after upgrading to 6.3-RELEASE o usb/120729 usb [panic] fault while in kernel mode with connecting USB o kern/120717 [ata] boot problem when recognizing ata1 p kern/120714 gonzo [viapm] [patch] viapm driver doesn't work on VIA VT823 f www/120621 bugmeister web interface query-pr-summary.cgi matches no PRs for o kern/120615 scottl [hptrr] hptrr on 6.3-RELEASE/i386 causes filesystem da a misc/120608 linimon gmirror(8) command set on livecd is minimal [regressio o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o kern/120566 net [request]: ifconfig(8) make order of arguments more fr o bin/120552 cperciva freebsd-update(8): freebsd-update - -r should check ex o docs/120539 doc Inconsistent ipfw's man page o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120515 acpi [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc o kern/120493 benjsc [wpi] if_wpi.ko fails to load on a Toshiba Satellite P o kern/120487 scsi [sg] scsi_sg incompatible with scanners o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o docs/120456 doc ath(4) needs to specify requirement on wlan_scan_sta o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o kern/120376 imp [ath] High interrupt load when booting with ath (PCMCI o ports/120372 java java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' o kern/120344 rwatson [panic] FreeBSD 6.3-STABLE panics on high loaded web s p kern/120343 ups [panic] Reproducible Crash - network interface related o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time f kern/120296 linimon [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o conf/120263 [patch] 800.loginfail misses relevant security informa f kern/120262 rnoland [drm] "0MB"; no dri with i915G [regression] o bin/120256 [patch] ftp(1): ftp -u URL/ returns a -1 f kern/120253 kernel crashes after hard disk geometry while probing o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/120232 net [nfe] [patch] Bring in nfe(4) to RELENG_6 o ports/120229 apache www/apache20 does not pick up usernames from NIS [regr f kern/120210 kmacy [zfs] [panic] reboot after panic: solaris assert: arc_ o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o kern/120177 [ata] ATA DMA modes don't work on CF cards o ports/120173 jmelo Prevent ports mail/mailman zombieing remote servers/ o java/120146 java java/jdk15: netbeans 6.0 causes java core dump on amd6 o bin/120143 [panic] sysinstall(8): FreeBSD6.3 page faulted after a p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/120130 net [carp] [panic] carp causes kernel panics in any conste o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT f kern/120127 [loader] Loading of gzip'd mfsroot from pxeboot(8) cau o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o ports/120101 cy security/krb5 utilities link against wrong libcom_err o bin/120095 gdb(1) fails to catch signals when threading is involv o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120090 [geli] geli boot password input fails when using usb k o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/120073 [new driver] [patch] add support for Meinberg PCI-base o kern/120072 Interpreter fails to invoke on 6.3-RELEASE, reproducab o kern/120066 [geli] geli boot password input fail when using serial o bin/120064 routed(8) marks 802.11 interfaces broken o bin/120060 net routed(8) deletes link-level routes in the presence of o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c p bin/120055 attilio [linux] kdump(1) segfaults on freebsd6_mmap syscall o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 f kern/120021 dougb [geom] [panic] net-p2p/qbittorrent crashes system when o kern/120009 [ata] Burning on FreeBSD is destroying SONY CD-Rs o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo a ports/119966 roam mail/vpopmail patch o i386/119946 i386 [est] sysctl dev.cpu.0.freq on 75 Hz, cannot be change o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 p threa/119920 deischen [patch] fork broken in libpthread o bin/119903 [ncurses] Fast increase in loading of the processor. A o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119891 slow halt, reboot when remote network shares which doe o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119850 [radeon] radeon module doesnt work right, when loaded o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying o bin/119801 dhclient(8): dhclient changes alias to address o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol f bin/119776 vwe can't start sshd(8) o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o kern/119743 geom [geom] geom label for cds is keeped after dismount and f kern/119735 fs [zfs] geli + ZFS + samba starting on boot panics 7.0-B o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w o ports/119710 sumikawa [patch] net/netcat - nc command runs BSD nc instead of o kern/119696 [irq] [ral] ral device causes massive interrupt storm o bin/119695 pw(8) does not interact with nscd(8) o kern/119668 scsi [cam] [patch] certain errors are too verbose comparing o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch s bin/119645 [request] mount_ntfs(8) -- files permissions mask is i o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o kern/119618 [fdc] Double Density Disks do not work correctly o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown f kern/119613 yongari [msk] mskc0: Uncorrectable PCI Express error p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing o kern/119606 [sio] [patch] PCMCIA card not attached to driver o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o i386/119574 i386 [i386] 7.0-RC1 times out in calibrate_clocks() [regres o kern/119572 [sbp] PowerBook not accessable when in target mode o conf/119550 [ppp] ppp not starting during bootup. o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting a docs/119536 doc a few typos in French handbook (basics) o bin/119524 cron(8) suddenly stops working, not crash f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o usb/119513 usb [irq] inserting dlink dwl-g630 wireless card results i o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 o kern/119507 [dri] mach64.o kernel module version is 1.0.0, but ver p bin/119490 top(1) hangs for long periods with NIS -- even using - f kern/119487 [em] page fault in em taskq with polling enabled o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o usb/119481 usb [hang] FreeBSD not responding after connecting USB-Mas o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119432 net [arp] route add -host -iface causes arp e o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o docs/119386 blackend bsdlabel and newfs on DVD-RAM (handbook ch. 18.7.9) o kern/119374 thomas [ata] [regression] ATAPI or ATAPICAM bug (regression i o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o kern/119356 acpi [acpi]: i386 ACPI wakeup not work due resource exhaust o bin/119354 mux csup(1) in free(): error: chunk is already free f ports/119352 pav graphics/ilmbase configure tests for shared semaphores f kern/119345 vwe [ath] Unsuported Atheros 5424/2424 and CPU speedstep n p docs/119338 trhodes gprof(1) refers to unmentioned option "-c" p docs/119329 trhodes [patch] Fix misleading man 1 split o kern/119307 emaste [queue] [patch] TRASHIT macro blasts list header if RE f kern/119303 linimon [ata] SATA HDD missing in 7.0-RC1, ok in 7.0-BETA4; at o kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o kern/119259 [panic] kernel panic on asus c90s laptop after first ( o sparc/119244 sparc64 X11Forwarding to X11 server on sparc crashes Xorg o sparc/119240 sparc64 top has WCPU over 100% on UP system s sparc/119239 sparc64 gdb coredumps on sparc64 o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 s bin/119196 des fetch(1): [request] parallel download from multiple se o i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o usb/119150 remko [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o ports/119119 timur net/samba3 - 3.0.28 stops working with ZFS whereas 3.0 o bin/119077 [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/119068 dd(1) yields a bogus error when input file is to small o java/119063 java An unexpected error has been detected by Java Runtime f kern/119047 yongari [re] Not correct working RealTek 8168/8111B PCIe Gigab o kern/119043 [twa] twa hang after heavy disk IO o bin/119014 [patch] IPv6 addresses cause sockstat(1) to run column o kern/118993 ipfw [ipfw] page fault - probably it's a locking problem o kern/118990 [nve] nve + PAE bus_addr_t/void * inconsistencies o kern/118973 acpi [acpi]: Kernel panic with acpi boot o kern/118962 [agp] Intel GMA 3000 Video Controller Not Recognized U o ports/118958 portmgr Mk/bsd.autotools.mk: find configure if CONFIGURE_WRKSR o java/118956 java eclipse and netbeans break on diablo-jdk15 o sparc/118932 net [panic] 7.0-BETA4/sparc-64 kernel panic in rip_output o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118912 fs [2tb] disk sizing/geometry problem with large array o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented a kern/118879 net [bge] [patch] bge has checksum problems on the 5703 ch o bin/118874 [patch] tftpd(8): add TFTP Option Extension (rfc 2347) f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit o kern/118819 [vmware] FreeBSD 6.2 in VMware is unstable and there i p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o bin/118759 cvs(1): cvs -R doesn't handle non-existent tags o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118734 [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o ports/118716 security/heimhal - shared library conflict with heimda o threa/118715 threads kse problem o kern/118713 fs [minidump] [patch] Display media size required for a k o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o docs/118693 jfv Update for "em" man page for RELENG_7 o ports/118677 timur [net/samba3] Unix password synchronization with PAM do o i386/118656 i386 [panic] Init dies in single user mode and box get kern o bin/118636 sysinstall(8): [patch] [request] remove requirement fo o kern/118573 [ata] FreeBSD doesnt support my optical drive s kern/118571 [boot] [request] fix BTX issues when booting FreeBSD 7 p kern/118540 kaiw [elf] [patch] update sys/sys/elf_common.h with new ema o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o bin/118503 sysinstall(8): sysinstall(8) and /etc/rc.conf o bin/118501 Sending SIGINT to cvs(1) gives segmentation fault o java/118496 java Eclipse packages do not work with 6.3-RC1/amd64 o kern/118493 weongyo [ndis] [patch] a trivial fix when ndis sets `ndis_reso o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o kern/118459 [hang] Freeze under high-load with SMP until keypresse o bin/118449 randi sysinstall(8): Installer failing dns lookups o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( o gnu/118415 nm -D fails if a file has no symbols a ports/118406 danfe x11/nvidia-driver-*xx: nvidia driver port name conflic o kern/118399 secteam [tap] local/remote kernel DoS through TAP device p usb/118374 attilio [ubsa] [patch] support Option GlobeTrotter Max 3.6 wir p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se o i386/118350 i386 [boot] [hang] BTX loader hangs on PC Engines WRAP o kern/118342 [ata] Unable to mount root on ata drive w/ Cyrix 5530 o docs/118332 doc man page for top does not describe STATE column wait e o bin/118325 rc [patch] [request] new periodic script to test statuses o bin/118318 mohans [nfs] NFS server hangs under special circumstances o kern/118317 [zlib] [patch] Incorrect gzeof() return value in zlib p kern/118304 kib freebsd 7 delivers unanticipated signal for page fault o ports/118301 python devel/py-setuptools easy-install.pth contents lost on o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o i386/118285 i386 [i386] Segmentation fault in reloc_non_plt. o kern/118282 [sg] device sg + hald + umass plugging crashes 7.0 p bin/118260 bin: more informative error message for install(1) o conf/118255 rc savecore never finding kernel core dumps (rcorder prob o bin/118249 fs mv(1): moving a directory changes its mtime o bin/118248 gavin newsyslog(8) does not obey -s (nosignal) flag a kern/118238 net [bce] [patch] bce driver shows "no carrier" on Intel S s ports/118230 acm games/linux-quake4 fails to start o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o docs/118214 doc close(2) error returns incomplete o bin/118207 burncd(8) gives I/O error writing CD on Pioneer DVDR-1 o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o ports/118196 krion x11/xterm v229 mishandles combining characters o gnu/118188 obrien GCC bug with abs() f kern/118161 thomas [atapicam] failure message from ATAPI CDROM in the boo s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/118137 process stuck in pipewr (similar to kern/55908?) o bin/118132 [patch] pax(1): broken -s handling of \1, \2 ... f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/118126 kmacy [nfs] Poor NFS server write performance s kern/118124 [request] HZ value on slow computers should by dynamic o bin/118123 [patch] chat(8) has infinite recursion bug o misc/118121 [build] RELENG_7 kernel compile fails with -Os o bin/118114 [patch] update manctl(8) o conf/118113 [md] mdconfig init script requires image to be on root o conf/118111 [patch] [request] Add MAC address based interface rena o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t a bin/118071 darrenr ipnat(8): ipnat -s expired counter does not update [re o bin/118069 thomas [patch] camcontrol(8) should be able to leave device s o conf/118047 Move /etc/printcap to /usr/share/examples/ o kern/118044 [panic] [lor] spin lock held too long o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o docs/118020 doc ipfilter(4): man pages query for man 4 ipfilter return p bin/118005 andre Can No Longer SSH into 7.0 host o ports/118003 apache www/apache22: with PgSQL option require only libpq.so. a kern/117987 rwatson read(2) on directories might leak filenames of deleted o kern/117973 [panic] [lpt] 7.0-BETA2: repeatable panic while printi o kern/117972 [ata] SATA DLT V4 not recognized properly p bin/117966 fdread(1) aborts with EPERM o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o kern/117954 [ufs] dirhash on very large directories blocks the mac o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o ports/117923 maho USE_FORTRAN=yes: shared libraries for blas, lapack, an o bin/117922 ftpd(8): remote ftp user possible leave chrooted envir o ports/117921 vanilla New port: multimedia/feng Feng is a multimedia streami o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o usb/117893 usb [umass] Lacie USB DVD writing failing o kern/117867 kmacy [heimdal] kinit generates bad tickets on multihomed IP s bin/117830 [patch] who(1) no longer displays entries for folk log o bin/117812 passwd(1): incapable of changing LDAP passowrds using o misc/117811 [build] Building multiple kernels with KERNCONF="ONE T p docs/117798 trhodes formatting oddity in sysmouse(4) o gnu/117756 dialog_checklist() does not honour DisplayX/DisplayY o conf/117753 Pediodic script 100.clean-disks cleans out some useful f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117748 sh(1): Backslash quote fails in pattern for substring o docs/117747 doc 'break' system call needs a man page o bin/117733 [patch] [request] allow to tee(1) to sockets, descript s kern/117717 net [panic] Kernel panic with Bittorrent client. o usb/117712 [reboot] unexpected reboot after mount USB flash drive f kern/117711 matteo [rpc] rpcbind binds to all interfaces on random ports o kern/117709 simon [libcrypto] [patch] Base openssl does not define OPENS o kern/117688 [mpt] mpt disk timeout and hang o bin/117687 [patch] fstab(5) format cannot handle spaces o kern/117681 [virtualbox] pcn fails to send packets under VirtualBo f kern/117655 sam [ral] ral%d: device timeout when running as an access o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o kern/117607 [amd64] dev.cpu.0.freq not showing up any longer on am o kern/117605 acpi [acpi] [request] add debug.cpufreq.highest f bin/117603 linimon [patch] dump(8) hangs on SMP - 4way and higher. o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni o usb/117546 remko [uftdi] [patch] Add MaxStream ZigBee product ID to uft o bin/117520 mux [patch] csup(1) not-really-equivalent to cvsup s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne p kern/117512 des [libpam] [patch] document .opieaccess for pam_opieacce o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117492 reset(1) doesn't restore erase token o gnu/117481 sort(1) incorrect numeric sort in very specific cases o kern/117474 [hang] HP Proliant 5500 hangs on reboot with 6.2 p bin/117452 gavin [patch] tftp(1): the fix for PR 103206 was incorrect o kern/117448 net [carp] 6.2 kernel crash [regression] o kern/117443 [ata] [hang] system hang with ataidle o ports/117440 kde misc/kdeedu3 - Request to package README.ephemerides f o kern/117423 net [vlan] Duplicate IP on different interfaces o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/117420 jeff [sched_ule] round off in sched_balance_pair() o amd64/117418 amd64 [hang] FreeBSD 6.2 crash on amd64 4400+ with ssh o kern/117374 vidcontrol(1) videomode: Operation not supported by de o kern/117348 [libedit] Loading history file sometimes fails in libe o bin/117339 net [patch] route(8): loading routing management commands o amd64/117316 amd64 [acpi] ACPI lockups on SuperMicro motherboard o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o kern/117314 fs [ntfs] Long-filename only NTFS fs'es cause kernel pani o usb/117313 usb [umass] [panic] panic on usb camera insertion o docs/117308 gavin [patch] Clarification of /etc/defaults/devfs.rules sta s ports/117299 edwin [new ports] www/webobjects(+) Apple WebObjects ports b o i386/117297 i386 [hang] System hangs up every day o amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A o bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap o bin/117256 kgdb(1) cannot read PTD o kern/117242 [powerd] [hang] console hangs when powerd is adaptive p kern/117234 ipfw [ipfw] [patch] ipfw send_pkt() and ipfw_tick() don't s o bin/117214 ipfw ipfw(8) fwd with IPv6 treats input as IPv4 o usb/117205 remko [uscanner] [patch] uscanner support for HP ScanJet 447 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o bin/117191 [patch] OptionalObsoleteFiles.inc - Add files to remov o kern/117188 [geli] System crashes/reboots on access to file on GEL a amd64/117186 amd64 [modules] kldload Unsupported file type on STABLE amd6 p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o kern/117043 net [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM o kern/117028 [atapicam] [panic] brelse: free buffer onto another qu a conf/117027 yar rc.subr doesnt deal with perl daemons o kern/117026 imp [pcmcia]: Panic while removing PCMCIA wireless card p docs/117013 trhodes mount_smbfs(8) doesn't document -U (username) argument o kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) p ports/116984 apache [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o misc/116946 holographic shell breaks live CD shell o kern/116939 acpi [acpi] PCI-to-PCI misconfigured for bus three and can o kern/116935 [ata] Intermittent error with Promise PDC40718 o conf/116931 lack of fsck_cd9660 prevents mounting iso images with o kern/116913 fs [ffs] [panic] ffs_blkfree: freeing free block o bin/116908 [patch] pkg_create(1): pkg_create -b makes invalid pac o kern/116853 yongari [msk] msk watchdog timeout o i386/116844 i386 [boot] [hang] cannot boot from cd when using Dell Vost o ports/116841 java cannot build java/jdk16 by using java/linux-sun-jdk16 o kern/116837 net [tun] [panic] [patch] ifconfig tunX destroy: panic o stand/116826 standards [patch] sh support for POSIX character classes o bin/116784 mount_msdosfs(8): mount_msdosfs -L ru_RU.KOI8-R -W koi o bin/116782 [geli] geli not updated on migrate from 6.1 to 6.2 rel o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/116747 net [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o bin/116722 ntpd(8): ntpd core dumps if hostnames are not specifed o kern/116719 [panic] kill all watch causes page fault on kernel ser o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o usb/116699 usb [usbhid] USB HID devices do not initialize at system b a kern/116697 kmacy [net] [patch] ifconfig's name argument has no effect o s amd64/116689 amd64 [request] support for MSI K9MM-V o bin/116688 cpio(1): cpio with -c option does not work. o threa/116668 threads can no longer use jdk15 with libthr on -stable SMP o java/116667 java linux-sun-javac1.4 hangs on SMP o www/116660 wosch docs.freebsd.org returns bad chunked encoding o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta o amd64/116620 amd64 [hang] ifconfig spins when creating carp(4) device on p kern/116608 fs [msdosfs] [patch] msdosfs fails to check mount options s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o www/116594 bugmeister query-pr.cgi on ports/116460 o docs/116588 remko No IPFW tables or dummynet in Handbook o kern/116583 fs [ffs] [hang] System freezes for short time when using o ports/116571 databases/firebird20-client fails to compile in a jail o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o kern/116515 remko [ntfs] NTFS mount does not check that user has permiss o docs/116480 doc sysctl(3) description of kern.file no longer applies s f www/116479 www cvsweb+enscript formatting bugfix o stand/116477 standards rm(1): rm behaves unexpectedly when using -r and relat o misc/116453 [picobsd] picobsd build script fails for not exist log s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach o ports/116443 x11 x11-drivers/xf86-input-keyboard patch for USB jp106 ke o kern/116435 [drm] drm/i915 reports memory leak 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 kern/116415 [ata] 6.2-STABLE does not work on Gigabyte GA-P35-S3 ( o bin/116413 standards incorrect getconf(1) handling of unsigned constants gi o kern/116335 andre [tcp] Excessive TCP window updates o amd64/116322 amd64 [panic] At start fsck on current, the system panics o bin/116302 atacontrol(8) reports wrong stripe for intel raid0 o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o kern/116270 [ata] READ_DMA48 UDMA ICRC error o conf/116237 [patch] ugly output of the 405.status-ata-raid if fdes s ports/116222 portmgr files installed with the wrong UID/GID via make instal o ports/116219 edwin [patch] Add @rmtry to bsd.port.mk o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116185 net [iwi] if_iwi driver leads system to reboot o threa/116181 threads /dev/io-related io access permissions are not propagat o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o kern/116170 fs [panic] Kernel panic when mounting /tmp o amd64/116159 amd64 [panic] Panic while debugging on CURRENT o kern/116133 kmacy Recursive lock panic when w_mtx falls into DELAY o docs/116116 doc mktemp (3) re/move note o i386/116100 i386 [panic] Fatal trap 12 right after reboot (da0s1error = o ports/116082 java java/linux-sun-jdk16 jconsole is unable to connect to o stand/116081 standards make does not work with the directive sinclude o docs/116080 tabthorpe PREFIX is documented, but not the more important LOCAL o bin/116074 [libc] fnmatch() does not handle FNM_PERIOD correctly o conf/116071 [patch] loader.conf update some variables o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/116005 des [libfetch] libfetch accepts invalid URLs o kern/115997 scottl [ciss] [panic] [patch?] kernel panics on heavy disk I/ o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o ports/115957 itetcu Questionable ownership and security on dspam port o bin/115951 [tun] pppoed(8): tun not closed after client abruptly o i386/115947 i386 [hang] Dell poweredge 860 hangs when stressed and ACPI o bin/115946 des [libpam] [patch] not thread-safe o ports/115940 python Missed one file in lang/python25 if NO_NIS defined o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115930 jfv [em]: Dell nic enumeration problem s conf/115923 [request] rc.subr - logger should be using priorities o kern/115856 geom [geli] ZFS thought it was degraded when it should have o i386/115854 i386 [boot] [install] Install FreeBSD with USB CDROM causes s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp o java/115773 java [request] java.nio channel selectors should use kqueue f usb/115737 linimon [uplcom] uplcom doesn't identify my Prolific 2303 any s docs/115716 jhb remove cue from supported hardware list o kern/115695 [crypto] When "device padlock" defined first ssh to ma f kern/115666 multimedia [sound] Microphone does not work o kern/115651 vanhu Racoon(ipsec-tools) enters sbwait state or 100% CPU ut o kern/115645 fs [snapshots] [panic] lockmgr: thread 0xc4c00d80, not ex o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad f kern/115619 [sysvshm] Unfinished (uncompliant?) support for POSIX f kern/115614 thomas [ata] Recent ATA driver changes have broken cdrecord [ o kern/115606 [mpt] [panic] Panic while using mpt controller o amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/115526 piso [libalias] libalias doesn't free memory o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o kern/115479 [ata] [request] ASUS P5K SE need more support o ports/115461 pgollucci [patch] bsd.apache.mk - Create packages for apache mod o bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o ports/115437 nobutaka multimedia/libxine: does not compile with certain env o bin/115431 [patch] [request] improvement to split(1): add -B swit o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o kern/115374 [panic] vm_fault: fault on nofault entry, addr: e120d0 o kern/115371 imp [cardbus] [patch] Device removal leaves resource datab o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o i386/115285 i386 [panic] fatal trap 1 on freebsd 6.2 install boot up on o kern/115275 [wi] [panic] wi configure at boot time led to panic "i o kern/115253 [keyboard] Wireless keyboard not working at boot o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o kern/115232 [ata] Audio CD tracks not displayed properly by atapi f kern/115226 vwe [ath] ath0: unable to attach hardware; HAL status 13 o threa/115211 threads pthread_atfork misbehaves in initial thread s kern/115202 [request] memory error diagnostic o bin/115197 kensmith sysinstall(8): can not install from USB stick drive o kern/115196 bushman [libc] [patch] [request] Implement getgroupmembership( o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c o bin/115174 gavin [patch] growfs(8) needs zero-writing for safe filesyst o bin/115172 ipfw [patch] ipfw(8) list show some rules with a wrong form o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 o kern/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o amd64/115126 yongari [nfe] nfe0: watchdog timeout (missed Tx interrupts) -- o docs/115065 doc [patch] sync ps.1 with p_flag and keywords o bin/115054 ntpd(8): NTP errors out on startup but restart of NTP o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/114995 [drm] acpi_video prevents savage drm from loading succ o kern/114970 Wrong system time (last) when machine is crashed due t o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/114928 green_saver does not switch DVI monitor power off o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala f kern/114839 yongari [fxp] fxp looses ability to speak with traffic o kern/114808 [panic] Kernel panic when use USB SpeedTouch ADSL mode o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s ports/114725 portmgr bsd.port.mk - No dependencies in the package if there o kern/114714 thompsa [gre] [patch] gre(4) is not MPSAFE and does not suppor o usb/114682 usb [umass] generic USB media-card reader unusable o kern/114677 [drm] Xorg will not run with dri glx and drm on ATI Ra o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo o kern/114667 [umass] UMASS device error log problem p kern/114655 bushman Implement getgroupmembership in net/nss_ldap p kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o java/114644 java tomcat goes out of PermSpace, jvm crashes o stand/114633 linimon /etc/rc.subr: line 511: omits a quotation mark: "force f kern/114631 yongari [msk] "Tx descriptor error" with Marvell Yukon o ports/114611 edwin [NEW PORT] net-p2p/freenet05: An anonymous censorship- o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs s kern/114578 [libc] wide character printing using swprintf(dst, n, o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c o i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114550 [cbb] Cardbus WiFi card activation problem o kern/114546 [drm] [panic] Sleeping thread owns a non-sleepable loc o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114459 [aic] [panic] FreeBSD-CURRENT crash during boot with A o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s bin/114392 [request] add default ssl definitions for openssl(1) o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o sparc/114349 pgollucci When executing snmpd it immediately stops with a segme f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug p kern/114325 bz [jail] SIOCGIFADDR ioctl behaves incorrectly inside ja o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 kmacy [RFE] [modules] [patch] add dynamic module references o amd64/114270 amd64 [cpufreq] cpufreq doesnt work when compiled in to kern p kern/114237 csjp [lor] kernel lock o ports/114231 edwin [patch] multimedia/audacious-plugins - audacious/plugi f ports/114229 pav [patch] [www/linuxpluginwrapper] libmap.conf-FreeBSD6 o kern/114213 [ata] optical drive not detected in the 6.x series of o i386/114208 i386 [boot] Problem booting the FreeBSD CD ISO image o i386/114192 i386 Fail to boot with "error issuing ATA_IDENTIFY command" o docs/114184 doc [patch] [ndis]: add info to man 4 ndis o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE o kern/114165 acpi [acpi] Dell C810 - ACPI problem o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o bin/114129 lulf [patch] csup(1) doesn't support authentication o ports/114122 New port: russian/stardict2-dict-eng_RU, Russian dicti o kern/114111 [nfs] System crashes while writing on NFS-mounted shar p conf/114101 se [patch] Add ZFS to periodic locate run o ports/114096 steve Upgrade x11-toolkits/open-motif to OM 2.3 o kern/114095 pf [carp] carp+pf delay with high state limit o bin/114082 [make.conf] default CFLAGS have a blank at the end 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 kern/114057 [devfs] devfs symlink over device doesn't work o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o bin/113979 matteo [patch] sysinstall(8) does not support UFS1 filesystem f usb/113977 gavin [request] Need a way to set mode of USB disk's write c o kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/113913 [patch] [requst] new file /etc/periodic/daily/490.stat o bin/113912 tunefs(8): silent failure setting glabel on boot parti o kern/113895 net [xl] xl0 fails on 6.2-RELEASE but worked fine on 5.5-R o bin/113881 [patch] sysctl(8): Wrong memory usage o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o i386/113853 FreeBSD 6.2-RELEASE Crashes and Reboots on i386 o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o kern/113851 [boot] Unable to boot install cd from USB-CDROM o bin/113850 sshd(8): unable to debug sshd with strace/truss/gdb o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o kern/113837 geom [geom] unable to access 1024 sector size storage o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o docs/113803 ipfw [patch] ipfw(8) - don't get bitten by the fwd rule o kern/113785 firewire [firewire] dropouts when playing DV on firewire o ports/113751 java java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java o ports/113707 girgen databases/postgresql81-server - PostgreSQL RC start sc o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 [patch] sysinstall(8) warns for invalid geometry which f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 o bin/113669 ftpchroot(5) / ftpusers(5) doesn't do globbing f usb/113629 gavin [ukbd] Dropped USB keyboard events on Dell Latitude D6 o sparc/113556 sparc64 [panic] trap: memory address not aligned; Rebooting... o conf/113552 [request] ntpd(8) driftfile default location inconsist o bin/113518 [patch] make(1): Prevent execution when command is a c o kern/113478 [boot] [request] FreeBSD could not start on Core2Duo n o ports/113467 java Multiple "missing return value" errors building JDK on o kern/113439 [panic] 6.2 Kernel Panic o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af f kern/113427 yongari [fxp] fxp0: device timeout when writing to USB and pla o kern/113419 geom [geom] geom fox multipathing not failing back o bin/113398 [libc] [patch] initgroups fails rather than truncates p kern/113388 ipfw [ipfw] [patch] Addition actions with rules within spec o bin/113345 mux csup(1) broken: Updater failed: Bad diff from server o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o gnu/113338 gcc(1): GNU gcc __thread as class member o ports/113295 kde net-im/kopete: pleawse add 'make config' to choose kop p kern/113266 harti [libgssapi] [patch] Missing handling of mech_type in g o conf/113265 [patch] Add registered epmd port number to etc/service o kern/113256 [headers] _limits.h for some CPU has wrong definitions o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o kern/113138 [irq] interrupt storm on 6.x kernels on an MS-1029 (AM o conf/113117 linimon [iwi] if_iwi isn't present in today's CURRENT/AMD64 o i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC o ia64/113102 ia64 [MCA] Multiple records can have the same sequence numb o kern/113098 [amr] Cannot read from amrd while under heavy load o bin/113074 [patch] ppp(8): include for strcasecmp(3) o 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 p bin/112955 des [patch] login(1): add netgroup support back to pam_log f usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o kern/112938 [headers] [patch] utmp.h is too limiting for modern sy o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl p docs/112935 remko [patch] newfs_msdos(8): document 4.3g limit on files w o ports/112818 ruby ports-mgmt/portupgrade -a fails with database error o docs/112804 doc groff(1) command should be called to explicitly use "p o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file o bin/112757 sysinstall(8): sysinstall(8): in the FDISK tool we can o ports/112745 portmgr bsd.port.mk: Add a package-smart target o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject o kern/112708 ipfw [ipfw] ipfw is seems to be broken to limit number of c o kern/112707 [panic] 6.2-STABLE panic: spoiling cp->ace = 3 o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device f i386/112700 gavin SMP Kernel with FreeBSD 6.2 release on compaq dl360 g1 p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 o docs/112682 doc Handbook GEOM_GPT explanation does not provide accurat o bin/112674 calendar(1): There appears to be a bug in /usr/bin/cal o bin/112673 [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o i386/112635 i386 [hang] [loader] Hang during boot installation f usb/112631 gavin [usb67] [panic] Problem with SONY DSC-S80 camera on um a bin/112613 vwe ls(1): 'ls -l' is very slow or doesn't work at all o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o o java/112595 java Java appletviewer frequently hangs (kse_release loop) f kern/112591 linimon Non-monitored locks are dummy-implemented o i386/112580 i386 [boot] BTX Halted on HP DV6255 Notebook o docs/112579 mlaier [request] No ipv6 related pf examples in /usr/share/ex o kern/112570 net [bge] packet loss with bge driver on BCM5704 chipset f usb/112568 gavin [usb67] [umass] USB mode may wrong when mounting Plays o kern/112561 ipfw [ipfw] ipfw fwd does not work with some TCP packets o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o i386/112487 i386 [sio] kernel panic on swi0:sio o kern/112477 marius [ofw] [patch] Add support to set the node and type on f usb/112463 gavin [usb67] [umass] problem with Samsung USB DVD writer, l f usb/112461 gavin [usb67] [ehci] ehci USB 2.0 doesn't work on nforce4 o conf/112441 deprecated lines in /etc/hosts.allow o bin/112408 mp [regression] tcsh(1): tcsh causes gdb to hang (regress o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112370 getfacl(1): incorrect display group name by ``getfacl' p ports/112347 obrien [PATCH] editors/vim re-enable WITH_TCL o bin/112336 [patch] install(1): install -S (safe copy) with -C or o bin/112288 ftp(1): /usr/src/usr.bin/ftp/config.h is redundant and o kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o kern/112256 [hang] SC_PIXEL_MODE hangs system o amd64/112222 amd64 [libc] 32-bit libc incorrectly converts some FP number s gnu/112215 obrien [patch] gcc(1): "gcc -m32" attempts to link against 64 p bin/112213 jh [patch] touch(1)ing a directory and failing yields ret o kern/112181 [panic] Kernel Panic on HP DL320-G5 Running 6.2-STABLE o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/112053 [hang] deadlock with almost full filesystem and rtorre o i386/112036 i386 [ata] TIMEOUT - WRITE_DMA retrying, TIMEOUT - READ_DMA f amd64/111994 jkoshy [hwpmc] [request] hwpmc(3) doesn't know about Intel 51 o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111967 [geli] glabel - label is seemingly not written to disk o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111843 fs [msdosfs] Long Names of files are incorrectly created f bin/111835 fstat(1) fails to report certain files s www/111791 www FreeBSD website messes up while using "links" browser o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/111766 [panic] "panic: ffs_blkfree: freeing free block" durin f usb/111753 gavin [usb67] [uhid] [panic] Replicable system panic involvi o conf/111557 [gre] link1 flag doesn't work as intended when specifi o kern/111537 kmacy [inet6] [patch] ip6_input() treats mbuf cluster wrong o ports/111501 [NEW PORT] databases/ruby-oci8 o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via o kern/111457 net [ral] ral(4) freeze o docs/111425 doc Missing chunks of text in historical manpages o ports/111399 doceng print/ghostscript8 (was ghostscript-gpl): WITH_FT_BRID a ports/111356 csjp net/bpfstat: man bpfstat has no descption for the flag o bin/111343 sh(1) and bash(1) with -e sometimes fail to test error o power/111296 ppc [kernel] [patch] [request] Support IMISS, DLMISS an DS o docs/111265 doc [request] Clarify how to set common shell variables p kern/111260 csjp [hang] FreeBSD kernel dead lock and a solution o www/111228 bugmeister [request] Usability improvements for bug search query o bin/111226 [patch] Incorrect usage of chflags() in various FreeBS o kern/111220 pf [pf] repeatable hangs while manipulating pf tables o kern/111196 [ata] [hang] SATA drives cause errors and cause system o kern/111185 console color depth set to 0 at boot causes flat scree o kern/111162 [nfs] nfs_getpages does not restart interrupted system o docs/111147 doc hostapd.conf is not documented s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/111077 date(1): /bin/date -j -f "%b %Y" "Feb 2007" +%m return o ports/111066 secteam ports-mgmt/portaudit does not skip ports fixed listed o bin/111024 [request] [patch] atacontrol(8): support for stand-by s kern/111001 [hang] can't install 6.2-RELEASE-amd64 (SuperMicro PDS o docs/110999 doc carp(4) should document unsupported interface types o kern/110995 kmacy [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o gnu/110971 gdb(1) crashes f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o java/110912 java Java krb5 client leaks UDP connections o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. o ports/110826 dinoex port graphics/tiff: tiff2pdf tints images with wrong c f kern/110720 kmacy [net] [patch] [request] support for interface descript p bin/110705 geom gmirror(8) control utility does not exit with correct o docs/110692 doc wi(4) man page doesn't say WPA is not supported p kern/110662 sam [safe] safenet driver causes kernel panic o threa/110636 threads [request] gdb(1): using gdb with multi thread applicat o amd64/110599 amd64 [geli] geli attach to gmirror device hangs and cannot o ports/110533 olgeni [patch] WITHOUT_NLS support for www/neon and www/sitec o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/110392 scottl [hptmv] [patch] hptmv very old and missing important f o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/110359 brueffer mpt man page omission o threa/110306 threads apache 2.0 segmentation violation when calling gethost o kern/110284 kmacy [if_ethersubr] [patch] Invalid Assumption in SIOCSIFAD o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 kmacy [kernel] [regression] [patch] setsockopt() error regre o i386/110218 i386 kmem_malloc(4096): kmem_map too small: 335544320 total o i386/110214 i386 [hang] FreeBSD 6.2 freezes on SSH activitiy caused by o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn f usb/110197 gavin [usb67] [umass] [ehci] Sony PSP umass device does not o bin/110151 sysinstall(8): sysinstall(8) don't respects install ro o bin/110146 [patch] [request] Allow arbitrary gdb(1) options to by o kern/110140 net [ipw] ipw fails under load o kern/110110 [hang] sysctl causing a lockup o bin/110068 [patch] rewrite of mdmfs(8) in shell o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit o docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled o docs/109981 doc No manual entry for post-grohtml o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o docs/109977 doc No manual entry for ksu p docs/109975 trhodes No manual entry for elf2aout o docs/109973 doc No manual entry for c++filt o docs/109972 doc No manual entry for zless/bzless o kern/109968 [boot] [panic] Panic while booting with PCscsi II AM53 o kern/109936 [smp] SMP kernel performance problem on FSC TX600 o bin/109911 mountd(8) does not accept identical host sets on diffe o kern/109889 [panic] 6-STABLE panic kern_timeout.c o bin/109827 mount_smbfs(8) didn't handle password authentication c o kern/109813 [ciss] ciss(4) driver API header is not installed o kern/109809 [vmware] CPU hits 100% when issuing the halt command ( o kern/109762 [hang] deadlock in g_down -> ahd_action -> contigmallo o ports/109745 kris NO_PACKAGE handling by ports build system o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/109736 [ata] FreeBSD sysinstall from CD can't find & mount NE o kern/109733 net [bge] bge link state issues [regression] o docs/109612 remko Manuals that live in ARCH specific subdirectories are o i386/109610 i386 [panic] Fatal trap 12: page fault while in kernel mode a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109569 mail(1) command not parsing sendmail parameters o i386/109568 i386 [panic] Reboot server with "Fatal trap 12" o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o ports/109501 krion [PATCH] add some configurable vars to mail/exim o bin/109478 [libc] [patch] adopt reentrant syslog functions from O a kern/109477 yongari [vr] [patch] onboard via vt6103 ethernet does not work o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o i386/109423 i386 [ichsmb] ICH5 smb interface problems o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/109413 jhb [patch] top(1) shows at least 50% idle when hyperthrea f usb/109397 gavin [usb67] [umass] [panic] FS corruption on booting from o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo f conf/109367 i18n [locale] UTF8 encoded locales and problem collating ac o conf/109354 [request] /etc/periodic/daily/110.clean-tmps does not o bin/109334 pkg_add(1) using chroot exits with error if wrong dire o kern/109308 net [pppd] [panic] Multiple panics kernel ppp suspected [r o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati f usb/109274 gavin [usb67] [usb] MCP55 USB Controller fails to attach in o conf/109272 [request] increase default rc shutdown timeout o kern/109251 net [re] [patch] if_re cardbus card won't attach o kern/109232 imp [sio] [patch] ibufsize calculation wrong causing data o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd s i386/109200 i386 [ata] READ_UDMA UDMA ICRC error cause not detecting ca o kern/109161 philip [psm] synaptic touchpad doesn't work o docs/109105 trhodes security.mac.bsdextended.firstmatch_enabled is not ena o docs/109104 trhodes man mac_bsdextended is not consistent with systl outpu o bin/109102 csjp sysctl security.mac.bsdextended is not consistent with o kern/109024 fs [msdosfs] mount_msdosfs: msdosfs_iconv: Operation not o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) a docs/108980 doc list of missing man pages o kern/108968 [panic] Double mount then umount and ls resuits in pan s bin/108961 vwe ls(1) High CPU use on directories containing files wit o kern/108954 acpi [acpi] 'sleep(1)' sleeps >1 seconds when speedstep (Cx o kern/108924 [ar] Panics when Intel MatrixRAID RAID1 is degraded o bin/108895 net pppd(8): PPPoE dead connections on 6.2 [regression] s amd64/108861 amd64 [nve] nve(4) driver on FreeBSD 6.2 AMD64 does not work o kern/108829 [radeon] radeon module fails with thinkpad T43 s bin/108743 vwe [patch] who(1): IPv6 addresses truncated to maximum IP f sparc/108732 sparc64 ping(8) reports 14 digit time on sparc64 o kern/108695 acpi [acpi]: Fatal trap 9: general protection fault when in o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o kern/108655 messages from kernel are mixed (/dev/klog? syslog?) o kern/108651 [hang] option PREEMPTION causes machine hangs on TYAN o conf/108589 rc rtsol(8) fails due to default ipfw rules o ports/108570 girgen databases/postgresql82-server fails when PREFIX is set o kern/108542 net [bce] Huge network latencies with 6.2-RELEASE / STABLE p bin/108523 trhodes [patch] daemon(8): support for dropping privileges f usb/108513 gavin [usb67] [umass] Creative MuVo TX FM fails in 6.2-RELEA o kern/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed o kern/108485 [re] stress2-udp with realtek 8169S gigabit interface o bin/108462 [request] pkg_info(1) shouldn't have a hard width limi s kern/108442 [request] UTF-8 support for console o kern/108418 [panic] Kernel panic after killing kdm. o kern/108379 [ata] Secondary SATA drive not detected by FreeBSD 6.2 p bin/108368 [patch] tip(1) coredumped when 'du' capability is used o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer s usb/108344 usb [usb67] [atausb] [panic] kernel with atausb panics whe o kern/108202 [atapicam] atapicam error after upgrade to 6.2 [regres f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o bin/108191 matteo sysinstall(8): Disklabel editor help text (by F1 key) o i386/108185 i386 [panic] freebsd 6.2 fatal kernel trap o ports/108169 apache www/apache20 wrong AP_SAFE_PATH for suEXEC s ports/108153 portmgr ports extraction with package uid/gid and quota proble o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o bin/108118 [libc] files should not cache their EOF status o docs/108101 doc /boot/default/loader.conf contains an incorrect commen o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o bin/108033 ls(1) coredumps when nss/ldap is misconfigured o bin/108020 comsat(8) does not verify return values of getpwnam an o kern/108017 acpi [acpi]: Acer Aspire 5600 o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o docs/107924 docs [usb67] usbd(8) does not call detach o kern/107850 net [bce] bce driver link negotiation is faulty f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o bin/107830 fdisk(8): Change Units (Z) in fdisk doesn't work when o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found o ports/107816 roam [patch] The IPv6 patch breaks the location feature of s ports/107814 joerg mail/postfix uses wrong order of -I options s kern/107759 Unable to load a kernel after clean install o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o bin/107692 newfs(8): newfs -O 1 doesn't create consistent filesys o amd64/107639 [ata] Kernel Panic/Crash on dd if=/dev/ad4 of=/dev/ad6 o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid o i386/107564 i386 [install] fatal trap 19 during installation on a Dell p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o bin/107515 [patch] ls(1) bug f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 f kern/107446 gavin problems with usb and fw disks o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device o i386/107382 i386 [install] "Fatal trap 12" when installing FreeBSD 6.1 o ports/107354 edwin net/icmpinfo: icmpinfo -vvv does not recocnize any ICM o kern/107342 [dri] Radeon dri breaks system o kern/107305 ipfw [ipfw] ipfw fwd doesn't seem to work f kern/107292 [ata] cannot install - Unable to find device /dev/ad0s f www/107291 murray Keyboard accessibility sabotaged by www/share/sgml/hea f kern/107287 [ata] page fault during install on Intel SATA on Intel o kern/107285 [panic] freeze and reboot by mounting CDROM volume twi o kern/107279 [ath] panic: ath_start: attempted use of a free mbuf! o kern/107277 [panic] bus_dmamap_load_mbuf_sg f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o usb/107243 usb [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive q o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm p bin/107171 jh [patch] [ncurses] systat(1) doesn't die when it's xter o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent s sparc/107087 sparc64 [hang] system is hung during boot from CD o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker f amd64/106918 yongari [re] Asus P5B with internal RealTek PCIe Ethernet gets o docs/106916 chinsan Wrong tar command at topic 17.6.8 in Handbook o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f kern/106851 yongari [vge] vge0: MII read timed out [regression] o i386/106850 i386 [powerd] powernow0 attach returned 6 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o i386/106789 i386 [nfe] or [nve]: Internal NIC of GA-K8N51GMF-RH does no o kern/106786 No reboot with FreeBSD and Mylex Acceleraid 352 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o bin/106726 ntpd(8): ntp functions return wrong values o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening s ports/106616 portmgr bsd.port.mk: Default file modes set incorrect for non- f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo p kern/106496 kris [softupdates] Can't remount filesystem as read only af o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o kern/106444 [netgraph] Kernel Panic on Binding to an ip to a virtu o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/106432 [ata] Record of disks (DVD-R) through the k3b program o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o bin/106355 [headers] macros in stdio.h non-portable (e.g., C++ :: s kern/106340 [ata] [request] Need to control disk write cache on pe o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/106275 [hifn] Hifn 7955 on Soekris Engineering vpn1401 return o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o kern/106243 net [nve] double fault panic in if_nve.c on high loads o amd64/106186 amd64 [panic] panic in swap_pager_swap_init (amd64/smp/6.2-p o docs/106135 doc [request] articles/vinum needs to be updated o misc/106107 left-over fsck_snapshot after unfinished background fs p bin/106049 [patch] tftpd(8) - improve -w option to support unique o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o kern/106030 fs [ufs] [panic] panic in ufs from geom when a dead disk o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p p docs/105997 trhodes sys/kern/sys_pipe.c refer to tuning(7), but there is n o kern/105945 net Address can disappear from network interface s kern/105943 net Network stack may modify read-only mbuf chain copies o bin/105925 net problems with ifconfig(8) and vlan(4) [regression] o bin/105860 top(1) user ID misalignment in mixer username/uid mode o conf/105689 rc [ppp] [request] syslogd starts too late at boot o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105608 doc fdc(4) debugging description staled o kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o kern/105579 piso [libalias] dcc resume over natd in 6.x o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o kern/105539 newly added disk devices don't have slice-devices crea o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB f amd64/105531 amd64 [ata] gigabyte GA-M51GM-S2G / nVidia nForce 430 - does f amd64/105514 amd64 [boot] FreeBSD/amd64 - Fails to boot on HP Pavilion dv o kern/105500 SCSI install on Microsoft Virtual Server 2005 doesn't f java/105482 java diablo-jdk1.5.0/jdk-1.5.0 java.nio.Selector bug o docs/105456 keramida [patch] overhaul of the security chapter (14) o kern/105375 yongari [sk] 2 x Marvell GBit LAN: device sk0 is attached, but o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o usb/105361 usb [usb67] [panic] Kernel panic during unmounting mass st o kern/105348 net [ath] ath device stopps TX o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q o kern/105241 [nfs] problem with Linux NFS server up/down combined w o gnu/105221 grep(1): `grep -w -F ""` issue o i386/105175 i386 [ipmi] ipmi acpi trouble on supermicro server o kern/105169 [panic] cp hangs on copy to a compact flash card o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o alpha/105134 alpha 'panic: lockmgr: thread ... not exclusive lock owner' p conf/105100 [patch] [locale] no support for lv (latvian) locale o kern/105067 K8D Master-F and other 8111/8131 boards will not run S f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo o i386/105063 i386 [sio] US Robotics (3Com) 3CP5609 PCI 16550 Modem works o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last s kern/104950 [ata] [request] no support for SATA controller Initio o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o ports/104910 nobutaka portsdb -Uu fails on building lsdb when EMACS_NAME is o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104862 [bge] BCM5704 only works at 10Mbit o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104850 ppp(8): ppp problem on TCP link o kern/104826 andre [bge] FreeBSD 6.1 not RFC 768 (UDP) compliant on Compa o kern/104822 [hang] RELENG_6 hangs with VIA VT8237A chipset [regres o bin/104809 cron(8): incorrect cron behavior with mday field = "*/ o kern/104755 Making ISO image with k3b hangs 6.2-PRERELEASE o kern/104751 net [netgraph] kernel panic, when getting info about my tr o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w o java/104744 glewis java/berkeley-db installation error o stand/104743 standards [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o i386/104719 i386 [ata] Seagate ST3802110A errors/delays when using PIO4 s bin/104689 matteo [patch] [request] powerd(8): add support for limiting o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/104675 [bktr] METEORSINPUT seemingly not setting input f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/104625 acpi ACPI on ASUS A8N-32 SLI/ASUS P4P800 does not show ther o kern/104624 Sound, mouse and keyboard badly interrupted while I/O f i386/104572 i386 [ata] issues with detecting HDD on Intel Q965 Express o kern/104569 glebius panic w/zebra o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and o kern/104486 TI1131 Cardbus Bridge cannot detect card insertion on o kern/104485 net [bge] Broadcom BCM5704C: Intermittent on newer chip ve o i386/104473 i386 [boot] boot loader reboots before loading kernel on Al p bin/104456 stefanf sh(1): /bin/sh unable to enter deep directories o docs/104432 trhodes No mention of "let" shell builtin in manual pages. o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist o kern/104389 geom [geom] [patch] sys/geom/geom_dump.c doesn't encode XML f usb/104352 gavin [usb67] [ural] [rum] [patch] ural driver doesnt work o i386/104349 i386 [bfe] Panic while uploading data via bfe network inter o amd64/104311 ports/wine should be installable on amd64 f usb/104292 gavin [usb67] [umass] [hang] system lockup on forced umount f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive p kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems o bin/104092 [patch] iostat(8): missing blanks in iostat output p kern/104079 jh [fdc] [patch] kldunload fdc.ko leads to panic: mutex G o threa/103975 threads Implicit loading/unloading of libpthread.so may crash o www/103938 brd cvs-src archive does not rebuild since 12 Mar 2006 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o bin/103890 w(1) doesn't see sessreg'd entries in utmp o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra a bin/103873 csjp login(1) SEGFAULT on unsuccessful login o kern/103862 [fdc] [patch] Error with fdformat on -CURRENT o bin/103845 sha256(1): sha256 /dev/acd0 returns immediately o docs/103807 danger wicontrol(8) manpage contains a broken URL o conf/103794 adding other login class to login.conf in case one is o kern/103792 Multiple Logins: ; a 't' appears at prompt o bin/103762 ppp(8): some tun interfaces with a mtu of 1500 while i o ports/103751 nork databases/linux-oracle-instantclient-sqlplus: ldconfig o kern/103733 [agp] i915 driver on hp dc7100: device not recognized o kern/103715 [bge] [request] Broadcom BCM5708SKFB not recognised by o bin/103712 amd(8): Automounter is apparently not passing flags to o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o ports/103669 ale mysql-server rc script can not use mysql_flags variab s i386/103624 i386 [ata] [install] Problem installing on Dell Powervault o kern/103615 emaste [aac] [patch] aac(4) update to the last version availa s kern/103603 6.1 install-boot from floppies fails o kern/103578 [ums] ums does not recognize mouse buttons o kern/103532 [irq] Interrupt storm in 6.2-PRERELEASE [regression] o ports/103529 gecko www/seamonkey: enable SVG and Pango font rendering sup s www/103522 www Search interface oddity o kern/103498 [keyboard] momentary system "pauses" when switching VT s kern/103495 vwe [vr] if_vr locks after carrier event p kern/103464 bz [dns] [jail] jail networking failures to 127.0.0.1 onl o kern/103455 "swap_pager: indefinite wait buffer" with page file en o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o kern/103332 yongari [fxp] fxp driver does not work correctly on Intel 8255 o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/103312 [libc] dlsym(NULL,) doesn't work properly o kern/103283 pf pfsync fails to sucessfully transfer some sessions o kern/103281 pf pfsync reports bulk update failures o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/103253 thompsa inconsistent behaviour in arp reply of a bridge o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/103200 [ral] ral driver for RELENG_6 is out-of-date with resp o kern/103191 net Unpredictable reboot o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac p kern/103075 [ata] SATA disk attach/unplug from a MV88SX5041 freeze o i386/103063 i386 [install] Can not install on Dell XPS 700 o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele a kern/103041 linimon [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/103022 cperciva [headers] /usr/include/crypto/rijndael.h is wrong p kern/102956 dchagin [linux] [patch] Add partial support for SO_PEERCRED in o ports/102946 secteam [patch] ports-mgmt/portaudit o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul o java/102888 glewis Diablo 1.5.0 throws FileNotFoundException when opening a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o kern/102784 [keyboard] system crashes when using hardware function o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext f kern/102741 andre [tcp] Multiple outbound connect() calls produce 'Netwo o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o amd64/102716 amd64 ex with no argument in an xterm gets SIGSEGV o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does p kern/102653 andre [tcp] TCP stack sends infinite retries for connection o bin/102638 matteo [patch] sysinstall(8): custom dist set always install o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o bin/102609 [patch] Add filtering capability to date(1) o i386/102562 i386 [em] no traffic pass through a em card after approx. a o kern/102549 [bktr] [patch] fix Pixelview PlayTV Pro 2 on bktr o kern/102540 [netgraph] [patch] supporting vlan(4) by ng_fec(4) o bin/102515 [libc] fsck_ufs crashes if no console at all o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o bin/102498 sysinstall(8): Cursor doesn't track sysinstall hilight o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o i386/102410 i386 [install] FreeBSD 6.1-RELEASE installation boot freeze o bin/102394 [patch] ls(1) do not shows inode number symbolic link o kern/102390 [pppd] [patch] kernel pppd don't using pam o kern/102363 "Resource temporarily unavailable" message from dvd+rw o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o kern/102252 acpi acpi thermal does not work on Abit AW8D (intel 975) o bin/102232 gad Defects in -O option to ps(1) o kern/102211 [ar] [patch] detach raid member and reboot will cause o bin/102205 kdc(8): login failure: ssh + gssapi + dual stacks + pa o bin/102162 [patch] tftpd(8): Limit port range for tftpd f usb/102066 gavin [usb67] [ukbd] usb keyboard and multimedia keys don't o kern/102035 net [plip] plip networking disables parallel port printing o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o kern/101926 [ar] 6.1-STABLE crashes under heavy disk I/O and acces o bin/101921 [request] security.bsd.see_other_uids for further prog o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r a bin/101762 sysinstall(8) does not obey /usr/ports symlink while i o usb/101761 usb [usb67] [patch] [request] usb.h: increase maximal size f usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca o kern/101734 [ata] -CURRENT cannot see SATA drive on ASUS A8N-SLI ( o kern/101618 kernel panic on multiple Dell PE2850s o i386/101616 i386 [hang] FreeBSD freeze on bootup, Compaq Proliant (lega a ports/101566 apache www/apache20 All .svn subdirectories in $(htdocsdir) g o docs/101464 doc sync ru_RU.KOI8-R/articles/portbuild/article.html with s ports/101450 stas multimedia/transcode: tcprobe broken for devfs f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o docs/101271 remko serial console documentation implies kernel rebuild re o kern/101226 jfv [em] Access to IPMI module is lost when the em driver o ports/101166 bittorrent-curses only works under English locales. f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o i386/101062 i386 [hang] Freeze on detect Intel 900 VGA on boot with ACP f kern/101061 vwe [fpa] fea/fpa (DEC FDDI NIC) driver causes kernel pani o kern/100974 rwatson [panic] sorele. FreeBSD 6.1 RELEASE i386 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup f kern/100839 yongari [txp] txp driver inconsistently stops working when the o i386/100831 i386 [sio] sio ignores BIOS information about serial ports s threa/100815 threads FBSD 5.5 broke nanosleep in libc_r s bin/100805 yar WITHOUT_INET6 is ignored by many src/ components o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, f ports/100776 pav devel/mico: Failure to update o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/100709 net [libc] getaddrinfo(3) should return TTL info o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o conf/100616 [patch] syslog.conf: lines after exclamation point ign o bin/100535 [patch] cal(1) and ncal(1) do not take into account mu o kern/100519 net [netisr] suggestion to fix suboptimal network polling o kern/100516 [atapicam] atapicam with ITE IT8212F crashes the syste p kern/100513 jhb [smbus] Inconsistent definition of SMBus addresses in o kern/100499 yongari [vr] vr interface stops transmitting a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100442 obrien ftpd(8): lukemftpd core dumps on anonymous login o bin/100436 kensmith sysinstall(8): live CD fixit mount does not find mount f ports/100431 dougb port print/hpijs default config interferes with print/ o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o i386/100420 i386 [boot] boot1/boot2 lba error o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o bin/100320 edwin [request] Update top(1) to 3.6 o kern/100290 yongari [rl] rl0: watchdog timeout [regression] p docs/100242 trhodes sysctl(3) description of KERN_PROC is not correct anym o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o i386/100204 i386 FreeBSD reports raid as broken - but it is not o docs/100196 doc man login.conf does explain not "unlimited" s kern/100170 [request] Support login class in ldap directory o i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system o misc/100133 [boot] keyhit function in boot2.c that falls into an i a bin/100089 [patch] ftp(1): default ftp application of FreeBSD giv 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/99989 panic when detaching disks o kern/99979 [patch] Get Ready for Kernel Module in C++ s bin/99973 yar systat(1): systat -ifstat traffic counter overflow o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o bin/99800 [libc] [patch] Add support for profiling multiple exec o kern/99765 drifting time, SuperMicro PDSMi Motherboard, "calcru n o kern/99758 [pty] [patch] chown/chmod pty slave side in kernel o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o kern/99664 mountd and/or nfsd have to sometimes have to be restar o bin/99662 rpc.rquotad(8): quota information leak while rpc.rquot o kern/99652 [ata] nVidia nForce MCP51 controller hangs w/ 2 drives o misc/99643 linimon request to remove src/tools/tools/portsinfo because it o misc/99627 [build] [patch] make update & CVSROOT o i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi o kern/99607 [pppd] pppd hangs kernel due to interrupt flood from s o kern/99567 [ata] Powerup of sleeping IDE drives causes system reb o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o usb/99538 usb [keyboard] while using USB keyboard default params of o kern/99529 [amr] DELL PowerEdge 2600 with streamer PowerVault 100 o docs/99506 doc FreeBSD Handbook addition: IPv6 Server Settings o kern/99485 Disk IO Causes multimedia/mplayer To Drop Frames o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar s kern/99421 [request] Option Globetrotter Fusion card not recogniz o kern/99408 [ppp] problems with ppp and arp a docs/99356 ru man page of sendmsg(2) does not include EINVAL o conf/99328 linimon [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o www/99305 bugmeister send-pr.html is frustrating/broken o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99200 usb [bluetooth] SMP-Kernel crashes reliably when Bluetooth o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o www/99184 wosch Viewing HP-UX manpages with http://www.freebsd.org/cgi o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr f kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/99017 [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o docs/98974 doc Missing tunables in loader(8) manpage o kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o i386/98932 i386 [i386] [patch] Kernel compilation failed on specific P o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip o kern/98831 ipfw [ipfw] ipfw has UDP hickups o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o www/98798 murray Our statistics page is out of date o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98597 net [inet6] Bug in FreeBSD 6.1 IPv6 link-local DAD procedu o bin/98577 [patch] dhclient(8): the link check by dhclient slows o bin/98542 [pppd] pppd(8) daemon unexpectently died , Exit 1 o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o bin/98468 newsyslog(8): Value over 99 in newsyslog.conf count fi o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled p misc/98383 yar [request] include the mt command in the rescue CD o i386/98366 i386 [em] Intel PRO/1000 MT Dual PCI-X: simulatenious 1000 f docs/98344 linimon [patch] An update of the article "Choosing the FreeBSD o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 o bin/98220 wpa_supplicant(8) operation does not match documentati o bin/98218 net wpa_supplicant(8) blacklist not working o i386/98215 i386 [geode] [regression] FreeBSD can no longer boot Geode o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec s kern/98162 [request] AcerHK driver port needed for enabling WiFi o i386/98154 i386 6-STABLE crashes when being online via modem (Fujitsu o docs/98115 doc Missing parts after rendering handbook to RTF format o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok o kern/98034 geom [geom] dereference of NULL pointer in acd_geom_detach p kern/98015 remko [bfe] [patch] bfe(4): double free in error handling pa o kern/97996 [ata] DMA is broken for VIA 82C596B UDMA66controller o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to a kern/97921 rwatson [socket] close() socket deadlocks blocked threads p conf/97697 matteo [patch] rc.conf - jail__exec_afterstart[0..n] o kern/97665 [sio] hang in sio driver o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/97517 [fdc] Floppy device lost permissions when active flopp o kern/97505 [procfs] file entry of procfs points to "unknown" o kern/97504 ipfw [ipfw] IPFW Rules bug s bin/97498 [request] newfs(8) has no option to clear the first 12 o bin/97478 umount(8): umount -f /card -> hardware-reset is needed o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o java/97461 java Diablo JDK does not report Update level in a format su o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne f bin/97392 net ppp(8) hangs instead terminating o kern/97383 acpi Volume buttons on IBM Thinkpad crash system with ACPI 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 amd64/97337 amd64 [dri] xorg reboots system if dri module is enabled o kern/97329 [nfs] [patch] code simplification o kern/97306 net [netgraph] NG_L2TP locks after connection with failed o i386/97287 i386 Screen Corruption In FreeBSD 6.X When Apps Started In s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 o kern/97265 System hangs at the end of shutdown -h now o i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o usb/97175 usb [umass] [hang] USB cardreader hangs system o kern/97164 [libdisk] libdisk's Open_Disk() crashes o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97108 sysinstall(8): write failure on transfer (wrote -1 byt o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o i386/97025 i386 [vmware] fbsd (2 cd) dont install in vmware 5.5.0 - re o conf/97014 [gif] gifconfig_gif? in rc.conf does not recognize IPv o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/96974 obrien [patch] to build FreeBSD kernel with binutils 2.16.92 a ports/96953 apache www/apache22 port uses its own directories o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re o bin/96854 imp [patch] devd(8) parses events incorrectly in some case a bin/96840 [libc] [patch] getgrent() does not return large groups o conf/96746 [nanobsd] [patch] Configuration changes and README for f kern/96743 yongari [sk] [patch] broken 32-bit register operations o kern/96644 [panic] umount(8) crash after mount/umount disturbance o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96538 multimedia [sound] emu10k1-driver inverts channels o usb/96457 usb [umass] [panic] fatback on umass = reboot o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel f conf/96412 linimon [rpc] 2 rpc.lockds launched at boot ? blocking problem o i386/96406 i386 System freezes on IBM xSeries 335 with FreeBSD-6.0-REL f kern/96393 [libz] [patch] assembler implementations for libz on i o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o i386/96357 i386 FreeBSD cannot recognize all the logical partitions o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog f kern/96286 [cbb] [panic] TI1131 PCI CardBus Bridge: driver cbb le f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o conf/96247 matteo [patch] 550.ipfwlimit reports logs even if log size is o stand/96236 standards [patch] [posix] sed(1) incorrectly describes a functio f i386/96225 gavin [boot] Toshiba M70-CL3 Hangs Up During Booting o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync o docs/96207 doc Comments of a sockaddr_un structure could confuse one o kern/96171 [ata] burncd (ATA driver) fails to write in vcd mode o kern/96157 Subtle incompatability of FreeBSD and LITE-ON SOHW-167 s usb/96120 usb [ums] [request] USB mouse not always detected o conf/96094 [gif] startup scripts do not configure gif interfaces o kern/96040 [mpt] LSI1030 mpt0: bullet missed in timeout o kern/96030 net [bfe] [patch] Install hangs with Broadcomm 440x NIC in o stand/96016 standards [headers] clock_getres et al should be in o conf/96015 uncommenting the msgs invocation in /etc/profile can f p bin/95979 obrien [patch] burncd(8) fails to fixate CDs o gnu/95936 egrep(1) misparses multiline parenthetical grouping o amd64/95888 amd64 [ata] kernel: ad2: TIMEOUT - WRITE_DMA retrying on HP p bin/95715 [patch] random(6) busy loop under some conditions o bin/95698 philip [patch] moused(8): Software control of sysmouse o bin/95692 gdb(1): GDB in base of both FreeBSD 6 and 5 is ancient o gnu/95691 GDB segfaults on my programme in both FreeBSD 6 and 5 o kern/95661 [pci] [patch] pci_pci still not correct for initializi s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o kern/95559 RELENG_6: write(2) fails with EPERM on TCP socket unde o ports/95541 roam dns/djbdns WITH_IPV6 queries ip6.int o kern/95532 [gif] if_gif has artificial limitations o kern/95519 net [ral] ral0 could not map mbuf o kern/95512 [uplcom] uplcom(4) causes system hangups o kern/95459 Rebooting the system while rebuilding RAID (Intel Matr o docs/95408 remko install over serial console does not work as documente o kern/95407 [atapicam] atapicam, cd and /etc/rc.d/devfs problem o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free s usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95267 net packet drops periodically appear o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o kern/95222 fs [iso9660] File sections on ISO9660 level 3 CDs ignored f i386/95106 gavin [install] cannot install freebsd, Nvidia nForce 2 base o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o bin/95079 [patch] apply(1) dies when there are two %1 in command o usb/95037 usb [umass] USB disk not recognized on hot-plug. o bin/95002 [libc] hash db source code has a bug which prevents us o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o ports/94935 cy security/aide: propose an AIDE_CONF knob for make.conf f i386/94911 gavin [ata] [regression] ata regression with DOM-IDE o kern/94898 [pcmcia] GPRS PCMCIA card cause interrupt storm and co o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk s bin/94892 [rpc] rpc.lockd does not interoperate with Solaris 10 s kern/94863 net [bge] [patch] hack to get bge(4) working on IBM e326m o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94838 scsi Kernel panic while mounting SD card with lock switch o o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o bin/94810 fsck(8) incorrectly reports 'file system marked clean' o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o bin/94750 watch(8) utility faults when tty disconnects o kern/94733 fs [smbfs] smbfs may cause double unlock o stand/94729 standards [libc] fcntl() throws undocumented ENOTTY o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o gnu/94695 bugmeister send-pr.el is missing from send-pr distribution o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o amd64/94677 amd64 [panic] panic in amd64 install at non-root user creati o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o bin/94635 snapinfo(8)/libufs only works for disk-backed filesyst o kern/94632 geom [geom] Kernel output resets input while GELI asks for o docs/94625 doc [patch] growfs man page -- document "panic: not enough o kern/94578 [panic] Panic by using rtorrent sometimes o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94528 [linprocfs] linprocfs /proc/memory reports wrong size o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind f sparc/94483 sam [ath] ath_hal does not work on 6-release/sparc64 s threa/94467 threads send(), sendto() and sendmsg() are not correct in libc o kern/94424 [bge] BGE5721 or BGE5750? o www/94423 danger [patch] XML'ified release todo list f i386/94420 gavin FreeBSD does NOT support the pcChips M925 motherboard. o kern/94393 [ar] PseudoRAID loses track of the master disk s kern/94390 vwe [vr] poor network performance after promiscuous mode i o usb/94384 usb [panic] kernel panic with usb2 hardware o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/94273 gnn [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o kern/94256 dfr [nfs] nfs locking/rpc.lockd doesn't understand file de o bin/94252 [rpc] rpc.lockd cannot cancel lock requests o kern/94227 'no dump device defined' on random occasions s kern/94182 [altq] [request] altq support for vlan driver p bin/94181 ume portsnap(8) should remove the trailing dot from the se p bin/94180 ume portsnap(8) does not handle HTTP_PROXY_AUTH correctly o kern/94166 [boot] btx halted with a flashcard plugged o kern/94162 net [bge] 6.x kenel stale with bge(4) s bin/94159 [request] ipsecctl ported from openbsd o kern/94155 [ata] 6.1 CF reader problem: "ad1: FAILURE - SETFEATUR o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94051 login(1): IP network in login.access ignored unless DN o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D f i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot dump. No dump d o conf/93899 mount_smbfs can't load libiconv.so during boot up o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o kern/93886 net [ath] Atheros/D-Link DWL-G650 long delay to associate o kern/93885 [ata] ata(4) failure: SETFEATURES SET TRANSFER MODE se o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [patch] new utility: kiconv_cs_preload(8): Utility for o www/93854 postmaster Cannot proceed to page after the first in mailing list o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o kern/93825 pf [pf] pf reply-to doesn't work o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o i386/93809 i386 panic: could not copy LDT on RELENG_5_3 through RELENG o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p a kern/93790 cperciva cpufreq missing frequencies f i386/93787 gavin [hang] freebsd 6.0 hangs on atkbd0 on Proliant 1850r s o docs/93785 obrien The man page for ftpchroot(5)/ftpusers(5) contradicts o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/93771 [ar] [panic] atacontrol status ar1 causes panic o kern/93770 [drm] ati 9600 PRO radeon not recognized by the system f i386/93762 gavin [hang] [loader] Machine lockup at boot loader countdow o i386/93752 i386 Cannot activate the serial ports on boot probe. BIOS o o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may o kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o kern/93685 [pipe] select on pipe write fails from '0' end o docs/93683 chinsan [patch] some typos in klist(1) o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o kern/93634 vwe [msdosfs] False access to renamed files/directories (c o gnu/93629 GNU sort(1) tool dumps core within non-regular locale f i386/93615 gavin [install] Operating system wont install. Problem with o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s o bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o kern/93461 [smp] [regression] Intel 440LX SMP freeze (regression o kern/93396 dlopen crash with locked page o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o kern/93381 reboot(8) works but 'reboot -n' hangs f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o kern/93331 [kernel] [patch] broken asm in kernel o bin/93317 ld-elf.so doesn't translate unresolved weak symbol int o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o kern/93305 Machine freezes solid running dhcpclient after suspend o kern/93300 ipfw [ipfw] ipfw pipe lost packets o ports/93279 skv devel/cvsmonitor: not useable (/dev/mem: Permission de o bin/93275 sysinstall(8): Failure to install after restarting ins o power/93203 ppc FreeBSD PPC Can't Write to Partitions. o kern/93197 [libc] strptime(3) succeeds on formats it should fail o usb/93155 usb [ulpt] /dev/ulpt0: device busy, USB printer does not w o kern/93128 scottl [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o bin/92866 portmgr pkg_add(1) should return a different result code if pa o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/92795 [panic] lockmgr panic during sys_exit file cleanup o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92751 [reboot] camcontrol(8): 5.4 crashes after camcontrol d o kern/92716 [hifn] [hang] hifn driver hangs after a short while wh o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o kern/92675 yongari [fxp] [patch] fxp(4) unable to recover from occasional o ports/92651 stas graphics/gmt - WITH_EVERYTHING doesn't fetch o docs/92626 doc jail manpage should mention disabling some periodic sc f kern/92552 net A serious bug in most network drivers from 5.X to 6.X o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o kern/92518 [hptmv] Intense disk activity (large FS newfs and/or m o kern/92512 multimedia [sound] distorted mono output with emu10k1 s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces o kern/92238 [ata] [patch] Spurious "atapci1: failed to enable memo o i386/92193 i386 [boot] Can't boot from 6.0 Installation CD: BTX halted o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o kern/92164 scottl [ips] [lor] SCSI target mode LOR o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o kern/92104 des [panic] kernel panic near readlink syscall o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/92090 net [bge] bge0: watchdog timeout -- resetting o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o bin/92062 phk mdconfig(8): mdconfig -l shows 95 entries max. o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o bin/91993 sam dhclient(8) option missing, script incompability o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/91910 scottl [aac] [regression] aac driver hangs on Dell PE800 with o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 o kern/91847 ipfw [ipfw] ipfw with vlanX as the device o ports/91838 danfe graphics/svgalib: tty switching is broken o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an s i386/91748 acpi acpi problem on Acer TravelMare 4652LMi (nvidia panic, o i386/91745 i386 [smp] Second processor not detected on Proliant ML530 o conf/91732 [patch] 800.loginfail: fix log message grep expression o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin o usb/91629 usb [usb] usbd_abort_pipe() may result in infinite loop o bin/91606 sha1(1): sha1 /dev is suspended o kern/91594 net [em] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/10 o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi f kern/91568 fs [ufs] [panic] writing to UFS/softupdates DVD media in o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work s www/91539 www FreeBSD web site renders very badly o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o bin/91536 burncd(8): burncd -t feature strangeness o docs/91506 doc ndis(4) man page should be more specific about support f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 o bin/91393 window(1) changes console cursor shape to blink o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o conf/91342 [devfs] Errors in devfs.rules files don't get logged o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/91311 net [aue] aue interface hanging o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o docs/91174 doc [REQUEST] Handbook: Addition of Oracle 9i installation o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o kern/91134 fs [smbfs] [patch] Preserve access and modification time f conf/91106 i18n [locale] date definitions in pl_PL locale are wrong o bin/91101 edwin [patch] whereis(1): make more readable s kern/91038 acpi [panic] [ata] [acpi] 6.0-RELEASE on Fujitsu Siemens Am o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/91023 [sysctl] cpufreq/p4tcc: sysctl: dev.cpu.0.freq: Device o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad o kern/90890 net [vr] Problems with network: vr0: tx shutdown timeout o kern/90837 [sound] PCM - ICH6 - device is busy, but old process d a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90687 avg [patch] side effect of -delete option of find(1) o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90656 sysinstall(8): 6.0-RELEASE (i386) cannot be installed o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree p kern/90580 jilles [libc] wordexp(3) fails to check for EINTR o bin/90524 reset(1) doesn't fully restore terminal state o kern/90442 [panic] kmem_alloc fails kmem_map: too small, on a RAI o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o bin/90384 [patch] chroot patch for sftp-server(8) o kern/90368 [pxeboot] pxeboot misses ${class} parameter when booti s bin/90367 [request] libmap.conf needs exclusivity support o bin/90311 [patch] add "eject" to mt(1) o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o bin/90266 philip bsnmpd(1) returns bad data during a snmpwalk of the en s kern/90243 acpi Laptop fan doesn't turn off (ACPI enabled) (Packard Be o kern/90237 [drm] [panic] panic in sis DRM o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 o bin/90093 geom fdisk(8) incapable of altering in-core geometry s kern/90086 net [hang] 5.4p8 on supermicro P8SCT hangs during boot if s bin/90082 matteo [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix p kern/89966 rodrigc [ntfs] [panic] mounting ntfs causes kernel panic in so o bin/89959 brooks dhclient(8): dhcp: ip length 314 disagrees with bytes o usb/89954 usb [umass] [panic] USB Disk driver race condition? o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o kern/89837 [pci] PCI code outputs superfluous "failed to enable/d o bin/89799 [patch] Making natd(8) not require a newline at the en o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks f kern/89738 [ndis] [hang] Can't make WL8000PCM wifi card work with a kern/89660 geom [vinum] [patch] [panic] due to g_malloc returning null a conf/89589 secteam virecover follows hardlinks, possibly exposing sensiti o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/89546 geom [geom] GEOM error o kern/89522 6.0-RELEASE will not boot on some Compaqs with mouse c o amd64/89501 amd64 [install] System crashes on install using ftp on local o docs/89492 attilio vfs doc: some VOP_*(9) manual pages are outdated with o ports/89441 hrs TeX support in FreeBSD is problematic. o bin/89410 [patch] sh(1) missing \u interpolation and bug/fix in o bin/89403 fetch(1) doesn't honour authentication credentials whe o kern/89396 [reboot] remounting cdrom causes reboot o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco s kern/89305 vwe [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net s kern/89271 [radeon] [agp] [hang] X.org hangs when heavily using R o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr o kern/89179 Random reboots on Dell PowerEdge 6300 o kern/89166 [mouse] jumpy mouse movement o kern/89070 [panic] NULL m passed to m_copym() in ip_fragment() o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement s usb/89003 usb [request] LaCie Firewire drive not properly supported o kern/88962 [panic] Kernel panic with ACPI is enabled o kern/88914 [hang] system freeze during file transfer o conf/88913 rc [patch] wrapper support for rc.subr o bin/88826 randi sysinstall(8): sysinstall infinity wait for da0 o bin/88821 pjd [patch] IPv6 support for ggated(8) o amd64/88790 amd64 [panic] kernel panic on first boot (after the FreeBSD o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not s i386/88755 i386 [install] FreeBSD R6.0 on ThinkPad R40 installation re o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o misc/88680 [build] !compiling freebsd components o kern/88659 ipfw [modules] ipfw and ip6fw do not work properly as modul o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( o kern/88601 geom [geli] geli cause kernel panic under heavy disk usage o bin/88599 ifconfig(8): change in default behavior with ifconfig o amd64/88568 amd64 [panic] 6.0-RELEASE install cd does not boot with usb o kern/88555 [panic] ffs_blkfree: freeing free frag on AMD 64 a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o bin/88524 openssl(1) can not work with smtp.gmail.com o kern/88518 rodrigc cannot mount root rw at boot o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar s i386/88491 i386 [install] Panic when boot installation CD1 (Acer Trave o kern/88487 [panic] softdep_setup_inomapdep: found inode o kern/88450 andre SYN+ACK reports strange size of window o usb/88408 usb [axe] axe0 read PHY failed o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode o kern/88150 des [pam] PAM does not search /usr/local/lib for modules s i386/88139 i386 [i386] [request] 53C875 Chipset HP 5064-6016 doesn't w o gnu/88087 c++filt(1) dumps core on a trivial string "STYLEPROP_" f kern/88082 net [ath] [panic] cts protection for ath0 causes panic o bin/88056 [patch] [request] cp(1) could really use Linux's -x op o kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP and asr o kern/88020 cannot boot unless: hint.apic.0.disabled="1" is set on o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 [patch] newfs(8): introduce -A flag for newfs to enabl o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o conf/87925 [patch] [request] modify output of 405.status_ata_raid o kern/87859 fs [smbfs] System reboot while umount smbfs. o docs/87857 doc ifconfig(8) wireless options order matters p bin/87841 murray fetch(1) should have options to set http "if-modified- o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup o kern/87729 phk [libc] [patch] most calls to malloc(3) generate warnin o bin/87726 dfr gssapi.h is not c++ aware o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo s bin/87529 [request] pw(8): "pw lock", "pw unlock" should support o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/87515 Splash screen fails to load on boot o kern/87506 net [vr] [patch] Fix alias support on vr interfaces o kern/87421 [netgraph] [panic]: ng_ether + ng_eiface + if_bridge s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so f kern/87368 bde [msdosfs] fat32 is very slow f amd64/87316 yongari [vge] "vge0 attach returned 6" on FreeBSD 6.0-RC1 amd6 o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in o usb/87224 usb [usb] Cannot mount USB Zip750 p conf/87196 matteo human readable disk free in daily output run o www/87119 hrs [patch] encode copyright and such symbolically s kern/87094 5.4 system with SMP and IPFW crashes under load (mbuf o kern/87074 mlaier pf does not log dropped packets when max-* stateful tr o kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface implementation o bin/87022 telnet(1) hang in ptcout o kern/87010 pjd Reading kernel memory & pagefault under non-root o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress o i386/86880 i386 [hang] 6.0 hangs or reboots whilst 5.4 is stable (ASUS o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s o bin/86859 kensmith sysinstall(8): Installer should ask about Linux earlie o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86765 bsdlabel(8) assigning wrong fs type. o kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERROR a kern/86752 mlaier pf does not use default timeouts when reloading config o bin/86665 randi sysinstall(8): sysinstall binary upgrade clobbers name o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o kern/86619 [linux] linux emulator interacts oddly with cp o bin/86600 matteo sysinstall(8): Sysinstall boot manager screen is misle o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o bin/86485 [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o bin/86454 sysinstall(8): sysinstall terminates with signal 10 if o kern/86427 gnn [lor] Deadlock with FASTIPSEC and nat o kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 o bin/86405 more(1) segmentation fault s ports/86401 stas new ports multimedia/zapping s bin/86388 [patch] periodic(8) daily should backup bsdlabel(8) / o docs/86342 doc bikeshed entry of Handbook is wrong s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur o usb/86298 usb [mouse] Known good USB mouse won't work with correct s o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o kern/86055 FreeBSD 6.0 beta4 install panic:bio already on queue o bin/86012 kpasswd(1) fails if one of the KDC are unreachable. o kern/86003 Startup reports "failed to attach P_CNT" s kern/85975 [cam] devfs does not create entries when removable med o kern/85971 jeff [uma] [patch] minor optimization to uma o kern/85931 panic: "vm_fault: fault on nofault entry" when using m o gnu/85895 [patch] cc -print-search-dirs returns (null) o kern/85894 [nfs] [panic] nfs_timer / nfs_socket.c:1146 panic o kern/85886 [an] [patch] an0: timeouts with Cisco 350 minipci o gnu/85824 obrien gas crashes when assembling this file o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/85816 maxproc=1 in login.conf causes kernel panic when loggi o kern/85813 timeout waiting for read DRQTrying to mount root from o kern/85809 darrenr panic: mutex "ipf state entry" already initialized o kern/85780 net 'panic: bogus refcnt 0' in routing/ipv6 o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o kern/85751 [devfs] [panic] panic in devfs_setattr() when running o bin/85712 uncompress(1) program emits bogus "overwrite?" prompt f ports/85707 pav port www/linuxpluginwrapper makes mozilla coredump 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 o i386/85656 i386 [i386] [patch] expose more i386 specific CPU informati o i386/85655 i386 [i386] [patch] expose cpu info for i386 systems o i386/85653 i386 [i386] [patch] relieve hangs in tight loops in process o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o bin/85494 fsck_ffs: unchecked use of cg_inosused macro etc. o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o kern/85464 Cannot unmount file-backed disk imported from NFS or S o kern/85450 [ata] [panic] subdisk6 detached (appears to be a sata o bin/85445 net ifconfig(8): deprecated keyword to ifconfig inoperativ s kern/85444 vwe [stf] IPv6 crash, possibly related to destroying stf i o i386/85423 i386 [ex] ex(4) does not correctly recognize NIC in PnP mod o i386/85417 i386 [i386] [npx] [patch] Possible bug in ia32 floating-poi o alpha/85346 alpha PREEMPTION causes unstability in Alpha4000 SMP kernel o kern/85326 fs [smbfs] [panic] saving a file via samba to an overquot p kern/85320 gonzo [gre] [patch] possible depletion of kernel stack in ip s amd64/85273 amd64 [install] FreeBSD (NetBSD or OpenBSD) not install on l o kern/85266 net [xe] [patch] xe(4) driver does not recognise Xircom XE o kern/85258 mux [fxp] changing promisc mode on nic can lead to kernel o kern/85257 [boot] BTX boot loader fails on USB CDROM (HP DL145 Op o kern/85137 des [pseudofs] [patch] panic due to sleep with held mutex o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85123 [iir] Improper serialization in iir_ioctl() allows iir o bin/85115 byacc generates uncompileable file o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le s i386/85072 i386 [psm] ps/2 Mouse detection failure on compaq chipset s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device o bin/85011 restore(8) on 5.4 will not read Solaris-sparc dumps, w o kern/84981 [headers] [patch] header protection for with aroun p kern/78179 alc [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o bin/78170 [patch] Fix signal handler in bootpd(8) o bin/78131 geom gbde(8) "destroy" not working. o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/78021 sem_open(3) doesn't mention fnctl.h include requiremen p kern/77913 net [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo o kern/77662 diskless hostname set via DHCP only if ACPI off o bin/77651 init(8) can loose shutdown related signals o kern/77493 [pipe] freebsd 5.3 + bash process substitution fails d o bin/77445 ntpd(8): too many recvbufs(40) when ntpd started with o kern/77355 [i386] [patch] Detect i*86 subarches for uname o kern/77341 net [ip6] problems with IPV6 implementation o usb/77294 usb [ucom] [panic] ucom + ulpcom panic o kern/77273 net [ipf] ipfilter breaks ipv6 statefull filtering on 5.3 o bin/77261 login(1) doesn't chdir into a group-protected home dir s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o usb/77184 usb [umass] [panic] kernel panic on USB device disconnect, o kern/77181 mckusick [newfs] [patch] newfs -g largevalue, mkdir, panic o kern/77156 FreeBSD does not redirect packets on proper interface. o kern/77091 [keyboard] Keyboard quits working under X with MAXCONS o bin/77089 natd(8) ignores -u with passive FTP s bin/77082 portmgr pkg_install(1) - Add 3 new macros to clean pkg-plist p bin/77031 [patch] comm(1) unable to handle lines greater than LI o bin/77001 randi sysinstall(8): sysinstall binary upgrade clobbers /etc o kern/76972 64-bit integer overflow computing user cpu time in cal o kern/76950 acpi ACPI wrongly blacklisted on Micron ClientPro 766Xi sys o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o kern/76893 [cam] [patch] Fatal divide in booting processes with B o kern/76848 [amr] amr hangs o bin/76756 des function pw_equal in pw_util.c does not test pw_passwd o bin/76736 dwmalone syslogd(8) pipelines losing messages o usb/76732 usb [ums] Mouse problems with USB KVM Switch o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o bin/76697 edwin newsyslog(8) keeps one more archive files than documen s threa/76694 threads fork cause hang in dup()/close() function in child (-l s threa/76690 threads fork hang in child for -lc_r o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc f kern/76663 gnn panic with FAST_IPSEC and IPv6 o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o bin/76590 adding -mapall in nfs exports requires reboot o bin/76588 openssl(1) fails on loading keyfiles from BIO resource o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver o kern/76504 silby Keep-alives doesn't work on half-closed sockets. s conf/76491 Addition into /etc/security few new functions o kern/76485 [libc] sched_getparam(2) returns weird priority number o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o kern/76398 [libc] stdio can lose data in the presence of signals o usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 o bin/76362 [patch] sys directory link points to wrong location p docs/76333 trhodes [patch] ferror(3): EOF indicator can be cleared by not o conf/76226 Default local.9600 gettytab initially uses parity o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system o gnu/76169 [patch] Add PAM support to cvs pserver o kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed o amd64/76136 amd64 [hang] system halts before reboot o bin/76134 fetch(1) doesn't like 401 errors with -A o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel video/ke o kern/75873 net Usability problem with non-RFC-compliant IP spoof prot o kern/75855 adrian [libc] getpwent(3) functions on 5.3 with large passwor o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/75797 usb [sound] [regression] 5.3-STABLE(2005 1/4) detect USB h s bin/75767 [libc] [request] "fdclose" function in libc o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o kern/75710 [cue] cue0 device configuration causes kernel panic o usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) s kern/75407 net [an] an(4): no carrier after short time o bin/75378 login(1): login/wtmp/utmp not updating properly o threa/75374 threads pthread_kill() ignores SA_SIGINFO flag o bin/75362 mount_smbfs(8) No buffer space available o threa/75273 threads FBSD 5.3 libpthread (KSE) bug o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/75249 [boot] 5.x install CD hangs on VirtualPC Version 7 (Ma s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o bin/75177 philip Bug selecting psm operation level in moused(8) o kern/75157 Cannot print to /dev/lpt0 with HP Laserjet 1005 : Devi o conf/75137 jhb [sound] add snd_* modules support to /etc/rc.d/mixer o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula o kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 gifs? s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74827 [fdc] Problem writing data to floppies a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o bin/74779 Background-fsck checks one filesystem twice and omits o usb/74771 usb [umass] [hang] mounting write-protected umass device a o amd64/74747 amd64 [panic] System panic on shutdown when process will not s kern/74708 [umapfs] [panic] UMAPFS kernel panic o gnu/74654 libsupc++.a lacks necessary functions o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 o conf/74610 Hostname resolution failure causes firewall rules to s o gnu/74531 gcc doesn't link correctly if -pg specified 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 a bin/74387 mount(8) linprocfs can be mounted on top of itself man o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma s kern/74352 NFSCLIENT and booting to an mfsroot via TFTP are mutua o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection s kern/74242 rwatson Write to fifo with no reader fails in 6.0 current o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst o bin/74127 [patch] patch(1) may misapply hunks with too little co o kern/74104 ipfw [ipfw] ipfw2/1 conflict not detected or reported, manp o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect o i386/74008 i386 [boot] IBM eServer x225 cannot boot any v5.x - endless o conf/74004 [patch] add fam support to inetd.conf o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o kern/73910 ipfw [ipfw] serious bug on forwarding of packets after NAT o bin/73884 Add NetBSD's rawrite32 to install tools s kern/73823 acpi [request] acpi / power-on by timer support o conf/73786 [patch] added WARNING in spanish to stable-supfile o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o kern/73744 [lpt] printing via cups causes "Interrupt storm" warni f kern/73740 [ata] [panic] 5-3-R#3 panic when accessing nfs exporte o conf/73677 rc [patch] add support for powernow states to power_profi o bin/73617 sysinstall(8): fdisk editor unmarks active partition s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/73549 brd [request] fix mail list archive navigation difficulty f kern/73538 net [bge] problem with the Broadcom BCM5788 Gigabit Ethern o gnu/73512 marcel gdb -> Abort trap (core dumped) o bin/73511 sysinstall(8): SCSI drive install failure - RC2 s kern/73496 [request] A more flexible version of mkstemp() s kern/73492 [request] Reliable Temporary Files o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o bin/73422 portmap forks ad infinitum when the NIS domain name is s bin/73411 [request] ftpd(8) could set attributes to 0600 while u o bin/73410 sysinstall(8): Sysinstall could not allocate disklabel f conf/73337 delphij [nsswitch.conf] [patch] potential invalid free o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o kern/73313 simokawa [firewire] Maxtor Onetouch drivers hang or corrupt dat o usb/73307 usb [panic] Kernel panics on USB disconnect o kern/73289 [sym] Interrupt storm on sym0 o bin/73261 Suspending su(1) sometimes hangs s kern/73177 geom kldload geom_* causes panic due to memory exhaustion o kern/73171 imp fwohci driver stating cardbus firewire card has incorr o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/72987 ipfw [ipfw] ipfw/dummynet pipe/queue 'queue [BYTES]KBytes ( o i386/72960 i386 [boot] BTX halted with Promise Tx2000 Raid o threa/72953 threads fork() unblocks blocked signals w/o PTHREAD_SCOPE_SYST a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/72906 [twe] twe0 idefinite wait buffer o conf/72901 [patch]: dot.profile: prevent printing when doing an s o bin/72895 rink sysinstall(8): Sysinstall generates invalid partition o bin/72875 des Some utilities used in debugging do not function prope o kern/72850 apm suspend handling partial broken with 5.3-STABLE o kern/72838 system freezes when trying to umount my digital camera o bin/72793 [patch] wicontrol(8) prints out non-printable chars in s usb/72733 usb [ucom] [request] Kyocera 7135 Palm OS connection probl o kern/72660 machine locks up shortly after abnornal shutdown & sub o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o bin/72588 [patch] iostat(8) tty stats field concatenation o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o i386/72566 acpi ACPI, FreeBSD disables fan on Compaq Armada 1750 o bin/72501 cperciva script(1) loops after EOF is read o conf/72465 [patch] United States International keyboard layout fo o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o bin/72398 whatis(8): emulators/mtools man pages are too funky fo o bin/72355 Can't run strings(1) on a (disk) device, even if you w o conf/72277 [patch] update for /usr/share/skel o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/72210 darrenr ipnat problem with IP Fastforward enabled o kern/72208 panic: bio_completed can't be greater than bio_length s ports/72202 simon portaudit warns about the CVS server vulnerability whi f kern/72194 stack backtrace after wakeup from sleeping state o bin/72173 csplit(1) ver 1.9 wrong behaviour with negative offset s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o conf/71994 [patch] dot.login: login shell may unnecessarily print s kern/71965 andre TCP MSS issue in combination with ipfw fwd o conf/71952 missing past participles in /usr/share/dict/words o bin/71928 Disk quota doesn't work with numeric login s bin/71855 [patch] making kdump(1) WARNS=6 clean o kern/71833 multiple process disc access / injustice o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem o kern/71771 [amr] Hang during heavy load with amr raid controller o bin/71749 [patch] truss -f causes circular wait when traced proc o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC o bin/71671 [patch] cleanup of the usr.sbin/apmd code 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/71629 [patch] cleanup of the usr.sbin/pppstats 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/71621 [patch] sliplogin(8): cleanup of the usr.sbin/sliplogi 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/71613 [patch] traceroute(8): cleanup of the usr.sbin/tracero o bin/71602 [patch] uninitialized "len" used instead of "slen" wit o kern/71532 Multiple SCSI-Busses are seen differently by BIOS, loa a kern/71474 bms route lookup does not skip interfaces marked down o kern/71469 net default route to internet magically disappears with mu o usb/71455 usb [umass] Slow USB umass performance of 5.3 o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o conf/71386 loader.conf: hint.apic.0.disabled="YES" doesn't work. o kern/71366 ipfw [ipfw] "ipfw fwd" sometimes rewrites destination mac a s bin/71290 des [patch] passwd(1) cannot change passwords other than N o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o kern/71258 alc [vm] [patch] anonymous mmappings not always page align o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) o kern/71219 /proc/*/map dont tell file offset o gnu/71210 Update to GNU sdiff: add user-preference for merge key o kern/71198 Lack of PUC device in GENERIC kernel causes interupt l o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o kern/71045 [rl] [vr] DHCP-Request is sets other device's ip to nu o i386/71000 i386 [boot] BTX halted when booting from CD on a machine wi o threa/70975 threads [sysvipc] unexpected and unreliable behaviour when usi o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o i386/70832 yongari [re] re0: watchdog timeout on Evo N1015v o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o bin/70756 indent(1) mishandles code that is protected for c++ co f kern/70753 gavin [boot] Device for firewire hard disk not created in ti o conf/70715 [periodic] Lack of year in dates in auth.log can cause o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea o kern/70649 [rtc] system clock slows down when heavily loaded o bin/70600 fsck(8) throws files away when it can't grow lost+foun o bin/70536 reboot(8) -dp tries to dump when powering off o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o kern/70511 [libc] When fread(3)ing with buffering turned off, man o bin/70476 reboot(8) change, -p behavior default for halt o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k o bin/70336 telnetd(8) always exits with value 1 o bin/70335 inetd(8) inconsistent syslog behavior when max childre o i386/70330 marcel Re-Open 33262? - gdb does not handle pending signals p o bin/70297 amd(8) request to make amd timeouts per-mount local o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 trhodes [msdosfs] [patch] full msdos file system causes corrup o bin/70002 sysinstall(8): fails to locate FTP dirs if the OS has o kern/69989 killing process that uses snp + unloading module + lis o bin/69986 sysinstall(8): [patch] no job control in fixit shell o o kern/69963 ipfw [ipfw] install_state warning about already existing en o bin/69942 sysinstall(8): sysinstall changes /etc/rc.conf after i o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o i386/69750 acpi Boot without ACPI failed on ASUS L5 o bin/69723 sysinstall(8): [request] allow to continue from packag o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi f bin/69362 mbr amd(8) does not properly detect the local network sett o ports/69309 ale mysql database backup script for periodic/daily o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge s i386/69218 simokawa [boot] failure: 4.10-BETA and later do not boot on Asu o bin/69164 marcel gdb(1) amd64: coredump while debugging a core file. o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o kern/69066 panic: nmdm page fault when slattach on a null modem d s threa/69020 threads pthreads library leaks _gc_mutex o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po a kern/68905 secteam [patch] core dumps are assigned wrong ownership a bin/68904 portmgr pkg_install(1) fixes (_PATH_*, sprintf -> snprintf, st o kern/68889 kmacy [panic] m_copym, length > size of mbuf chain o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68727 marcel gdb(1) coredumps after recent CURRENT upgrade o kern/68690 [libc] write(2) returns wrong value when EFAULT o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por p conf/68525 matteo Loader's verbose boot mode has rc.d/localdaemon not na o kern/68458 Burning DVD causes lots of FAILURE - READ_SUBCHANNEL I 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 usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction p kern/68189 bz [arp] [jail] [patch] arp -a discloses non-jail interfa o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/68076 [modules] Page fault when the sequence "kldunload ucom o bin/68062 standalone repeat(1) command o bin/67943 find(1) fails when current directory is not readable b o kern/67919 imagemagicks convert image to movie conversion kills 5 o alpha/67903 alpha hw.chipset.memory: 1099511627776 - thats way to much : o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67723 restore(8) FreeBSD 5.x restore cannot handle other pla s alpha/67626 alpha X crashes an alpha machine, resulting reboot s kern/67580 [request] add hints for boot failures o bin/67550 [patch] tftpd(8) Add BLK_SIZE option to tftpd server s kern/67545 [nfs] NFS Diskless Mount Option Suggestion o misc/67502 cvsadm cvs-all commit message did not include all files touch p bin/67365 sysinstall(8) doesn't find latinamerican keymap o conf/67328 [ppp] Usermode PPP hangs on boot when NIS configured o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o usb/67301 usb [uftdi] [panic] RTS and system panic o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/67172 w(1) finger(1) display the remote host incorrectly o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o i386/67050 imp CardBus (PCI ?) resource allocation problem (still on o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/66677 mv(1) incorrectly copies somedir/.. to ./.. when it cr s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o docs/66505 trhodes escaping '~' and '$' characters in login.conf setenv o o stand/66357 standards make POSIX conformance problem ('sh -e' & '+' command- o bin/66350 matteo sysinstall(8): sysinstall creates a partition of subty o kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does not work for 4. s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o kern/66270 [hang] dump(8) causes machine freeze o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message a kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/66162 phk [gbde] gbde destroy error o bin/66103 ppp(8) macro HISADDR is not sticky in filters o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o bin/65774 randi sysinstall(8): cannot run repair disk when booted from o i386/65648 imp cardbus("TI1131") won't work on Dell Latitude CP 233XT o kern/65616 gnn IPSEC can't detunnel GRE packets after real ESP encryp o bin/65483 vi(1) -r crashes o kern/65448 jhb _mtx_unlock_sleep() race condition if ADAPTIVE_MUTEXES o kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65299 vi(1) temp path contains double / o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined o java/65054 glewis Diablo 1.3.1 JVM runs out of file descriptors at 1021 s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on s kern/64588 [joy] [request] Extend joystick driver architecture to o kern/64556 net [sis] [patch] if_sis short cable fix problems with Net o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN 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 f usb/63837 linimon [uhid] [patch] USB: hid_is_collection() only looks for o kern/63629 thomas [atapicam] mounting atapicam volume through cd0c cause o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes o bin/63608 Add a -c option to time(1) to display csh output o docs/63570 doc [patch] Language cleanup for the Handbook's DNS sectio o www/63552 gabor Validation errors due to CAPs in attribute values o bin/63489 top(1) finger(1) segfault when using NIS groups to res o kern/63431 [rtc] motherboard going to suspend mode stops system c o docs/63215 jeff Wrong prototypes in mi_switch(9) (ref docs/24311) o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o a bin/63197 [patch] tftp(1) Bus error, core dumped o docs/63084 des Several Man-pages reference non-existant pam.conf(5) a s bin/62965 portmgr pkg_add(1) -r fails if fetching multiple packages at a o kern/62890 ups proc pointer set by fork1 can be stale in fork,rfork,v f bin/62885 des pam_radius(8) doesn't maintain multiple state fields s stand/62858 standards malloc(0) not C99 compliant s java/62837 java linux-sun-jdk14 executables hang with COMPAT_LINUX in o bin/62833 sysinstall(8): can't install: integer divide fault o bin/62766 systat(1) -vm does not work on diskless machines o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o bin/62711 kensmith sysinstall(8): installation: "Insert Next CD" Prompt i o bin/62702 sysinstall(8): backup of /etc and /root during sysinst o kern/62468 panic: system crashes when serial getty enabled and se o conf/62417 luigi diskless op script failed o docs/62412 trhodes one of the diskless boot methods described in the Hand o bin/62367 sysinstall(8): 5.2.1-RC installation problems a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o kern/62102 alc obreak update o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME o alpha/61973 alpha Machine Check on boot-up of AlphaServer 2100A RM o bin/61971 kinit(1) --renewable fails f kern/61960 linimon [ata] [patch] BigDrive support for PC-98 architecture o alpha/61940 alpha sysinstall(8): Can't disklabel new disk from FreeBSD/a o kern/61909 5.2-Current fails to notice change of CD in drive o bin/61890 sysinstall(8): fdisk(8) uses incorrect calculations fo s kern/61810 mounts done within a chroot show up wrong and can't be a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat o kern/61733 imp panic: resource_list_release: resource entry is not bu o bin/61716 mckusick newfs(8) code and manpage are out of sync s kern/61677 Unable to open CDROM tray if boot_cdrom is in loader.c s kern/61622 Intel Pro/100 Intelligent Server Adapter unsupported N o docs/61605 doc [request] Improve documentation for i386 disk geometry s bin/61603 randi sysinstall(8): wrong geometry guessed o kern/61503 fs [smbfs] mount_smbfs does not work as non-root s kern/61497 ups [kernel] [patch] __elfN(map_insert) bug s i386/61481 [patch] a mechanism to wire io-channel-check to userla o bin/61438 randi sysinstall(8): 5.2 nfs tasks running by default after o kern/61404 silby RFC1323 timestamps with HZ > 1000 o bin/61355 login(1) does not restore terminal ownership on exit s misc/61322 [build] [patch] bsd.dep.mk disallows shell generated f o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o conf/61289 /etc/pccard_ether: please use ifn value on pccard scri o bin/61264 sysinstall(8): unable To Use VT100 Terminal Emulator ( o bin/61239 [patch] bootp enhancement, places the dhcp tags into t s kern/61165 scsi [panic] kernel page fault after calling cam_send_ccb o bin/61152 randi sysinstall(8): installer refuses to mount USB-floppy o o bin/60892 [patch] added -p option to kldxref(8) to allow creatio s kern/60874 [request] auto-assign devfs ruleset numbers o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong f kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load o bin/60632 sysinstall(8): UI bug in partition label screen in sys s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/60598 scsi wire down of scsi devices conflicts with config s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o docs/60529 ume resolver(5) man page is badly out of date o misc/60503 [modules] small error in modules installation f bin/60350 kensmith sysinstall(8): in Choose Distributions screen, "All" d o bin/60349 scottl sysinstall(8): 5.2-RC1 cannot do NFS installation p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o kern/60235 phk some /dev-entries missing for newly auto-added disks o kern/60174 marcel debugging a kernel module in load/attach routines o kern/60089 scottl [udf] UDF filesystem appends garbage to files o gnu/59971 peter assertion "strncmp (repository, current_parsed_root->d o kern/59912 alc mremap() implementation lacking o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o docs/59735 kensmith [patch] Adding a reference to Icelandic Rsync to mirro o bin/59708 sysinstall(8): [patch] add sSMTP support for Mail sele o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans s bin/59638 des passwd(1) does not use PAM to change the password o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o docs/59477 doc Outdated Info Documents at http://docs.freebsd.org/inf o kern/59456 fdescfs stat / compress creates only empty files o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget s ports/59254 linimon ports that write something after bsd.port.mk o docs/59240 blackend [patch] handbook update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o kern/59183 imp [wi] wi problems with wi_cmd o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour p bin/58970 truss(1) coredumps for the no significant reason o kern/58967 Kernel kills processes in spite of cputime parameter i o bin/58951 sysinstall(8): some problems with 4.9-RELEASE installa o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc o bin/58483 [patch] mount(8): allow type special or node relative o bin/58390 bsdlabel(8) fails to display an error message if the l o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 o bin/58293 vi(1) replace with CR (ASCII 13) doesn't work o kern/58154 mckusick Snapshots prevent disk sync on shutdown o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement a stand/57911 fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) returns FNM_ o kern/57832 scottl [ips] softdep_deallocate_dependencies: dangling deps o bin/57715 [patch] tcopy(1) enhancement a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets p bin/57630 lptcontrol(8) gives "device busy" if device turned off o kern/57603 [bktr] bktr driver: freeze on SMP machine o bin/57554 sh(1) incorrect handling of quoted parameter expansion o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s ports/57498 portmgr HEIMDAL_HOME should be defined in src or ports Makefil o misc/57464 [boot] loader(8) seems to confuse files [4.7] s bin/57407 [patch] Better NTP support for dhclient(8) and friends s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o kern/57350 [panic] using old monocrome printer port (IO_LPT3 / 0x o docs/57298 blackend [patch] add using compact flash cards info to handbook o stand/57295 harti make's handling of MAKEFLAGS is not POSIX conform s bin/57255 usb [patch] usbd(8) and multi-function devices s amd64/57250 kmacy [amd64] [patch] Broken PTRACE_GETFPREGS and PTRACE_SET o kern/57206 [panic] softdep_lock locks against itself, causing ker o bin/57089 w(1) does not honor the -n option s bin/57088 [cam] [patch] for a possible fd leak in libcam.c o bin/57054 let test(1) compare the mtime of a file to a string o bin/57045 trpt(8) option -t was disabled on -current s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface s ports/56928 java jce-aba port should install to $JAVA_HOME/jre/lib/ext s kern/56720 [libc] [request] UNICODE support in Resolver o kern/56664 bad file# in MTIO status buffer after MTEOD until MTRE o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards cd9660 unicode support simple hack s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux o kern/56451 emulation [linprocfs] /compat/linux/proc/cpuinfo gives wrong CPU o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56339 select() call (poll() too) hangs, yet call works perfe o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o bin/56249 obrien ftpd(8) has two bugs (motd, munged utmp) o kern/56245 [bktr] Distorted and choppy video with bktr-driver on a kern/56233 gnn IPsec tunnel (ESP) over IPv6: MTU computation is wrong o kern/56031 luigi [ipfw] ipfw hangs on every invocation o kern/56024 acpi ACPI suspend drains battery while in S3 o kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s bin/55965 sshd(8) problems with HostBasedAuthentication and NSS o gnu/55936 bugmeister send-pr(1) does not set mail envelope from o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR s kern/55802 [request] Make kernel.GENERIC suitable for diskless us o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o i386/55661 acpi ACPI suspend/resume problem on ARMADA M700 o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o i386/55603 [mly] unable to reboot when system runs from Mylex A35 o bin/55546 cdcontrol(1) play tr m:s.f interface is partially brok a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o bin/55539 [patch] Parse fstab(5) with spaces in path names o bin/55457 marcel GDB gets confused debugging libc_r threaded processes. o kern/55448 dbm(3): dbm_nextkey() misbehaves after dbm_store() in o misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi f bin/55349 mbr amd(8) mixes up symlinks in its virtual filesystem. o bin/55346 stefanf sh(1) eats memory and CPU infinitely p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/54884 mckusick FreeBSD -stable and -current free space handling for U o stand/54839 standards [pcvt] pcvt deficits o stand/54833 standards [pcvt] more pcvt deficits o bin/54784 find(1) -ls wastes space o i386/54756 acpi ACPI suspend/resume problem on CF-W2 laptop s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o bin/54683 sh(1) redundant history o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o java/54463 glewis Apparent bug in jdk13 o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o stand/54410 standards one-true-awk not POSIX compliant (no extended REs) o bin/54401 [patch] pppstats(8) prints 0 for absolute values in ra o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o bin/54365 [patch] add -u option to install(1) for SysV compatibi o kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o conf/54170 [patch] error from weekly periodic script 330.catman o bin/54141 wrong behavour of cu(1) o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o bin/53839 sysinstall(8): disklabel editor fails on post-install o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW s stand/53682 [feature request] [patch] add fuser(1) utility o docs/53596 doc Updates to mt(1) manual page o bin/53560 logging domain names in wtmp is retarded o bin/53520 su(1) to another user does not update utmp o kern/53506 [partial patch] support gzipped modules o bin/53475 cp(1) copies files in reverse order to destination o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX o bin/53341 sysinstall(8): [patch] dump frequency in sysinstall is o bin/53288 edwin tail(1) will sometimes display more lines than it is t o docs/53271 doc bus_dma(9) fails to document alignment restrictions o kern/53137 [panic] background fscking causing ffs_valloc panic. o bin/53131 randi sysinstall(8): "ALL" could not turn check BOXes ON at s bin/52826 portmgr [request] Adding Timestamps to pkg info upon pkg_add(1 s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a f bin/52746 tcsh(1) fails to handle large arguements o bin/52743 ppp(8) /etc/ppp/ppp.linkup instability issues o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52638 scsi [panic] SCSI U320 on SMP server won't run faster than o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 murray New functionality for mail(1) o bin/52469 ppp(8) Multiple devices using UDP don't work. o kern/52445 [mfs] panic when mounting floppy on MFS filesystem o bin/52343 [nis] login(1) problem on the server o misc/52256 embedded [picobsd] picobsd build script does not read in user/s s docs/52071 delphij [patch] Add more information about soft updates into a s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o kern/51982 remko [sio] sio1: interrupt-level buffer overflows s usb/51958 usb [urio] [patch] update for urio driver o kern/51685 fs [hang] Unbounded inode allocation causes kernel to loc o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/51583 fs [nullfs] [patch] allow to work with devices and socket o docs/51480 dds Multiple undefined references in the FreeBSD manual pa s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o bin/51296 calendar(1) wrong for dates based on day+-num o kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee s bin/51137 [patch] config(8) should check if a scheduler is selec s www/51135 www Problems with the mailing-lists search interface p docs/51133 murray RSH environmental variable not described in rcmd(3) o kern/51120 MSGBUF_SIZE doesn't work in makefiles o bin/51070 [patch] add -p option to pom(6) o kern/51009 [aue] [patch] buggy aue driver fixed. p conf/50956 matteo daily_status_disks_df_flags in /etc/defaults/periodic. o bin/50949 mtree(8) doesn't honor the -P when checking/changing o s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o kern/50687 ioctl(.., CDIOCCAPABILITY, ...) always reports "Inappr p bin/50656 cp(1) - wrong error on copying of multiple files o bin/50569 sh(1) doesn't handles ${HOME}/.profile correctly o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o bin/50118 calendar(1) dumps core if there is ./calendar/ o misc/50106 [build] [patch] make 'make release' more flexible behi s threa/49087 threads Signals lost in programs linked with libc_r o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename o bin/48989 sysinstall(8): Sysinstall's partition editor gets con f kern/48976 gavin [modules] nwfs.ko oddity s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu s threa/48856 threads Setting SIGCHLD to SIG_IGN still leaves zombies under o kern/48741 darrenr ipnat corrupts packets on gre interface with rul p bin/48730 obrien [patch] burncd(8) does not handle signals and causes d o alpha/48676 alpha Changing the baud rate of serial consoles for Alpha sy o gnu/48638 [libdialog] [patch] some bug fixes in libdialog 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 kern/48425 Tape drive EOT handling problems in 4.7 o kern/48393 mckusick [ufs] ufs2 snapshot code bugs o bin/48341 sysinstall(8): changes the active slice flag when it p o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w p bin/48318 stefanf Segmentation fault in sh with attached script o bin/48309 ppp(8) pppoe connections fail to establish if throughp s kern/48279 [bktr] Brooktre878 may cause freeze o conf/48195 /var/db/mounttab error on diskless boot o bin/48183 marcel [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 to the FAQ o kern/48062 mckusick mount -o snapshot doesn't work on +100GB disks p docs/47818 trhodes [patch] ln(1) manpage is confusing o bin/47815 [patch] stty(1) -all should work. s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with o conf/47596 [periodic] daily security run complains if timezone ch o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit o bin/47384 sysinstall(8): sysinstall ignores intended destination o kern/47286 [request] make device probing verbose when using boot o kern/46973 [syscons] [patch] [request] syscons virtual terminals s conf/46913 darrenr ipf denied packets of security run output contains non o bin/46905 sysinstall(8): FreeBSD 5.x cannot be installed from mu o bin/46888 gad [patch] Add script run hook to newsyslog(8) o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o bin/46758 [patch] moused(8) enhancements s conf/46746 No way to set link addresses through rc.conf o kern/46694 imp Getting DUP packets when in Promiscous mode on wi0 o bin/46676 ru [patch] [build] bsd.dep.mk restricts domain of tags co a kern/46647 silby Failure to initialize MII on 3Com NIC results in panic o conf/46453 [internationalization] cons25l2, ISO8859-2 and console o stand/46441 stefanf /bin/sh does not do parameter expansion in PS1, PS2, P o conf/46409 Certain periodic scripts check broken NFS mounts. o i386/46371 usb USB controller cannot be initialized on IBM Netfinity o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o bin/46235 matteo sysinstall(8): NTP servers for Finland require updatin o bin/46163 gad lpc(8) problem. Only root can modify despite man page o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o stand/46119 standards Priority problems for SCHED_OTHER using pthreads o conf/46062 remko Remove skel from BSD.root.dist. s kern/46036 [RFE] select is unsuitable for implementing a periodic o bin/45995 markm telnet(1) fails to properly handle SIGPIPE on its term o bin/45990 dwmalone top(1) dumps core if specific errors in password file o kern/45896 dwmalone setnetgrent(3) should return error code o bin/45830 [kerberos] KDC has problems when listening to IPv6 and f i386/45773 net [bge] Softboot causes autoconf failure on Broadcom 570 o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45608 randi sysinstall(8): install should config all ether devices s kern/45568 gibbs [ahc] ahc(A19160) pci parity error o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang s bin/45547 [patch] make burncd(8) handle .wav files. o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o i386/45525 imp Dell Inspiron 7000 does not recognize PC-CARDs after r o kern/45373 mckusick softupdate / fs damaged after loss of power / CG 8: Ba o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o docs/45303 remko Bug in PDF DocBook rendering o kern/45293 [libc] kevent denies to observe /dev/tty o bin/45272 dump(8) / restore(8) problem o conf/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/45222 [patch] daily rejected mail hosts report too long p bin/45193 [patch] truss(1) can't truss itself p gnu/45168 Buffer overflow in /usr/bin/dialog o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o bin/44915 randi sysinstall(8): 'choose installation media' choose CD-R o bin/44894 markm telnet(1): as a local non-root user and remote it's po o conf/44717 [patch] update login.conf and unify login capabilities o kern/44587 scsi dev/dpt/dpt.h is missing defines required for DPT_HAND o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o gnu/44564 peter [patch] Aborted cvs session causes an endless loop in o docs/44519 obrien ftpd.conf(5) contains references to ftpd(8) when it is s bin/44518 yar ftpd(8) does not show OPIE OTP challenge o stand/44425 standards getcwd() succeeds even if current dir has perm 000. o kern/44372 roberto some kernel options prevent NTP clock synchronization o kern/44365 [headers] [patch] introduce ulong and unchar types o conf/44286 roberto /etc/defaults/rc.conf uses the obsolete ntpdate o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o bin/44212 [request] Unify 'recursive' options -r and -R o kern/44202 [rp] [patch] -stable rp driver does not work with mult o www/44181 re www "Release Information" organization o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start s bin/44122 ppp(8) tun0 gets a second ip adress after a disconnect o docs/44034 trhodes Multiple sysctl variables are not documented o java/43924 glewis writing from JAVA to a pipe sometimes hangs o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o kern/43625 imp [wi] wi(4) driver hangs after long data transfers o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto a kern/43605 luigi enabling polling in the kernel causes page fault/crash o kern/43592 mktime(3) rejects dates at the start of daylight savin o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o kern/43576 imp Problem with wi driver and Lucent Orinoco Silver wirel o kern/43501 getpwnam(3), getpwuid fail when linking against Berkle o conf/43500 [patch] rc.syscons "allscreens" improvements s bin/43497 mount(8): mount -t nfs -> crunchgen incompatible o docs/43470 blackend solid-state article out of date (x109). o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43368 portmgr pkg_create(1) fails if target directory does not exist o bin/43367 incorrect report from who(1) after 'shutdown now' from a i386/43366 cy Cannot format media in USB floppy devices o kern/43355 idad driver will work if logical drives dont start at o bin/43337 des fetch(1) -s fails if -4 or possibly other options give o kern/42983 imp wi0 sporadically freezes the system for 1-2 seconds o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42956 [libc] dlclose gives "invalid shared object handle" wh o kern/42801 [hang] FreeBSD freezes when opening cuaa0 with a motor o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o gnu/42726 cvsadm cvs -R pserver & val-tags: story continues o bin/42658 markm recompile telnetd(8) and log NULL ip in /var/wtmp o kern/42621 imp Dell Inspiron 5000e hangs when using Orinoco or Cisco o kern/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_resume/device_s o kern/42442 problem in idlequeue/debugging mode ? 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 bin/42407 ppp(8) IPV6CP fails o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o kern/42386 [libkvm] [patch] cleaning code from warnings in libkvm o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o bin/42162 randi sysinstall(8): after restart, installation crashes, md o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o kern/42089 phk ntp_gettime returns time in wrong scale o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o bin/42022 randi sysinstall(8): non-interactive mode prompts when only o bin/42018 portmgr pkg_info(1) with PKG_PATH searches through tarred pkgs s bin/42004 mpp [quotas] quota is still IPv4 only, and not INET indepe o bin/41949 sysinstall(8): sysinstall sorts /etc/rc.conf during ne s bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41919 blackend MINI kernel for bootfloppy (Handbook p.342) contains e o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o bin/41850 sysinstall(8): sysinstall fails to create root filesys o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login o conf/41777 [patch] /etc/periodic/daily/100.clean-disks removes li o bin/41674 [patch] iostat(8) column formatting overlaps s bin/41647 net ifconfig(8) doesn't accept lladdr along with inet addr o kern/41632 luigi bridging when one interface has no carrier a bin/41583 [patch] mtree(8) assorted mtree bugs p stand/41576 standards POSIX compliance of ln(1) o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o bin/41526 mount(8) symlinked mount points get mounted more than o bin/41410 stefanf sh(1) bug on expanding $? in here-documents o i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card w/ Advansys o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41297 mp tcsh(1)/csh(1) backquote/braces expansion bug o bin/41271 matteo [patch] non-suid crontab(1) o conf/41242 periodic scripts make unwarranted assumptions about PA o kern/41216 [nfs] Get "NFS append race" error o kern/41215 [keyboard] console revert back to kbd0 (AT) after KVM o bin/41213 top(1) blocks if NIS-related entries in passwd(5) are o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin s misc/41179 [request] LD_LIBRARY_PATH security checks o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o docs/41089 doc pax(1) -B option does not mention interaction with -z o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o kern/40895 scsi wierd kernel / device driver bug o conf/40777 [patch] disktab does not support 2.88MB floppies s threa/40671 threads pthread_cancel doesn't remove thread from condition qu o bin/40597 [patch] add fdisk(8) ability of showing extended parti o bin/40572 vipw(8) prints silly message if $EDITOR fails o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > a bin/40282 [patch] kill(1) has bad error checking for command lin o bin/40260 sysinstall(8): hang when detecting devices (No CD/DVD o bin/40215 [nis] NIS host search not terminate o kern/40206 Can not assign alias to any POINTOPOINT interface o gnu/40057 bugmeister send-pr -a flag does not work with -f s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di o conf/39976 vi recovery halting boot process s kern/39937 net ipstealth issue o kern/39928 imp [wi] wi0 timeouts and hangs the system while sending d s threa/39922 threads [threads] [patch] Threaded applications executed with o bin/39849 restore(8) fails to overwrite files with schg flag set o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR s conf/39580 insecure default settings o kern/39527 dwmalone getcwd() and unreadable parent directory o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o bin/39439 tcopy(1) will not duplicate tapes with block size larg o kern/39388 scsi ncr/sym drivers fail with 53c810 and more than 256MB m o kern/39329 [mount] '..' at mountpoint is subject to the permissio o stand/39256 standards snprintf/vsnprintf aren't POSIX-conformant for strings o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro f kern/39233 bz [ipsec]: NonConforming IPsec implementation from FreeB o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix o bin/38940 [request] an option to *stat to allow supressing of he o misc/38937 delay between tracks in digital audio dumps from CD wi o bin/38854 sysinstall(8): resetting during setup causes the targe o kern/38828 scsi [dpt] [request] DPT PM2012B/90 doesn't work o kern/38749 kientzle Diskless booting fails with some DHCP servers (no root s kern/38730 philip Memorex scrollpro mouse is not fully functional o bin/38727 [patch] mptable(1) should complain about garbage argum o kern/38626 luigi dummynet/traffic shaper: RED: max_th and min_th are li o bin/38610 randi sysinstall(8): should be able to mount ISO images on D s bin/38609 sysinstall(8): [request] sysinstall should know the si s ports/38593 portmgr [request] Third level ports o docs/38556 doc EPS file of beastie, as addition to existing examples a kern/38554 net [patch] changing interface ipaddress doesn't seem to w o bin/38478 sysinstall(8): In Choose Distributions screen, it's di s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38256 [patch] linking pax(1) to pax_{cpio|tar} o bin/38168 [patch] [request] installing curses-based versions of o docs/38061 ume [patch] typos in man pages for faith(4) & faithd(8) o bin/38057 sysinstall(8): "install" document doesn't display corr o bin/38056 sysinstall(8): User (creation)'s "Member groups" item o bin/38055 sysinstall(8): Groups (creation) item should be before o alpha/38031 alpha osf1.ko not loaded during boot-time of linux-emu enabl o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o docs/37719 kensmith [request] Detail VOP_ naming in a relevant man-page o bin/37710 sysinstall(8): LAN interface in wrong state after atte s threa/37676 threads libc_r: msgsnd(), msgrcv(), pread(), pwrite() need wra o bin/37672 pw(8) prints warnings after successful NIS map updates o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/37589 imp Kernel panics upon resume from zzz on my IBM ThinkPad o conf/37569 matteo [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" o bin/37160 sysinstall(8): coredumps when trying to load package d o bin/37083 [patch] [request] small improvement to talk(1): add cl o bin/37013 [patch] ls(1) directory name output trailing slash dup o bin/36960 calendar(1) doesn't effect -t option. o kern/36952 ldd comand of linux does not work o gnu/36926 bugmeister [patch] send-pr destroys PR if emacs interrupt charact o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36911 [ata] ATA cannot be disabled with hints or through BIO o kern/36902 [libc] [patch] proposed new format code %N for strftim s ports/36901 glewis WITHOUT_X11 Knob for port java/jdk13 s bin/36786 make ps(1) use 24-hour time by default o kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo-tty s bin/36740 make ps(1) obey locale (particularly for times) o docs/36724 darrenr ipnat(5) manpage grammar is incomplete and inconsisten o kern/36626 login_cap(3) incorrectly claims that all resources fre o kern/36566 fs [smbfs] System reboot with dead smb mount and umount o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) o bin/36501 calendar(1) can't handle recurring items in the next m s gnu/36460 cu(1) program does not work very well. a kern/36451 [bktr] [patch] Japan IF frequency is incorrect f docs/36432 gabor Proposal for doc/share/mk: make folded books using psu o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36385 luigi crunchgen(1) does not handle Makefiles with includes p o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce o bin/36118 sysinstall(8): 4.5 Upgrade says it won't touch /usr/sr a bin/36110 dmesg(8) output corrupt if /dev/console is busy s stand/36076 standards Implementation of POSIX fuser command a bin/35985 sysinstall(8): swap double mount o bin/35886 [patch] pax(1) enhancement: custom time format for lis o gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f o bin/35769 w(1) does not correctly interpret X sessions o bin/35717 which(1) returns wrong exit status for multiple argum s docs/35678 doc docproj Makefiles for web are broken for paths with sp o kern/35669 [nfs] NFSROOT breaks without a gateway o docs/35652 trhodes bsd.README seriously obsolete o bin/35568 make(1) declares target out of date, but $? is empty o conf/35545 [patch] enhanced periodic scripts: 100.clean-disks, 10 o misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35442 net [sis] [patch] Problem transmitting runts in if_sis dri o kern/35429 select(2)/poll(2)/kevent(2) can't/don't notice lost co o bin/35400 randi sysinstall(8): sysinstall could improve manipulation o o kern/35399 poll(2) botches revents on dropped socket connections o kern/35396 poll(2) doesn't set POLLERR for failed connect(2) atte o kern/35377 process gets unkillable (-9) in "ttywai" state o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/35262 [boot2] [patch] generation of boot block for headless o kern/35234 scsi World access to /dev/pass? (for scanner) requires acce o bin/35214 obrien dump(8) program hangs while exiting o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34880 luigi Impossibility of grouping IP into a pipe for traffic s o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34811 sh(1) "jobs" is not pipeable o bin/34788 dwmalone dmesg(8) issues with console output o bin/34728 DHCP hostname set as Hexadecimal string o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md s threa/34536 threads accept() blocks other threads o bin/34497 calendar(1) does not understand calendars o kern/34470 bde Modem gets sio1 interrupt-level buffer overflows' o bin/34412 [patch] tftp(1) will still try and receive traffic eve o bin/34309 gad lpd(8) does not garantie that controlfiles begin with o bin/34270 man(1) -k could be used to execute any command. o docs/34239 trhodes tunefs(8) man page doesn't describe arguments. s bin/34171 yar ftpd(8) indiscrete about unprivileged user accounts o bin/34146 newfs(8) defaults and vfs.usermount=1 tug at one anoth o gnu/34128 sdiff "e" doesn't work with some editors o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o kern/33834 strptime(3) is misleading o bin/33809 mux [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) a bin/33661 PAP AuthAck/AuthNak parsing problem in pppd(8) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o kern/33464 soft update inconsistencies after system crash o kern/33203 [nfs] "got bad cookie" errors on NFS client o bin/33182 marcel gdb(1) seg faults when given handle SIGALRM nopass for o bin/33066 kensmith sysinstall(8): does not write to new disks as expected o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/32667 systat(1) waste too much time reading input o bin/32619 des libfetch does not use RFC 1738's definiton of ftp: URL o bin/32501 maxim quot(8) is stupid regarding the filesystem option a bin/32411 shutdown(8) absolute-time handling could be more usefu a bin/32375 sysinstall(8): sysinstall doesn't respect User generat o bin/32374 vi(1) -r doesn't work, file contained unexpected binar s threa/32295 threads [libc_r] [patch] pthread(3) dont dequeue signals s conf/32108 Proposed Firewall (IPv4) configuration script o bin/31987 [patch] allow dump(1) to notify operators by mail(1) o bin/31985 New /etc/remote flag for tip(1) to append LF to CR o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31940 kmacy ip queue length too short o bin/31933 pw(8) can interpret numeric name as userid during user o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31890 [syscons] [patch] new syscons font o gnu/31772 New option in dialog(1) o kern/31708 VM system / fsync / flushing delayed indefinitely? s kern/31686 andre Problem with the timestamp option when flag equals zer o kern/31647 net [libc] socket calls can return undocumented EINVAL o bin/31588 change request to allow mount(8) to set the MNT_IGNORE o bin/31387 mailwrapper(8): When getuid(2)=0, mailwrapper should d o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o bin/31363 sysinstall(8): "partition editor" silently corrects pa s bin/31304 [patch] fix crunchgen(1) to work with more contrib-kin o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o kern/31048 des [linprocfs] /proc/meminfo cannot handle multiple swap o bin/31034 dwmalone regularly add original address logging for tcpwrappers o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30863 bootpd(8) dovend.c Win95 compatibility improvement and o bin/30854 bootpd(8) bootpgw change - skip ARP modifications by o o conf/30812 [patch] giant termcap database update a bin/30737 sysinstall(8): sysinstall leaks file descriptors on re o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o conf/30590 /etc/hosts.equiv and ~/.rhosts interaction violates PO o bin/30542 [patch] add -q option to shut up killall(1) o bin/30517 randi sysinstall(8): using sysinstall with install.cfg has n s threa/30464 threads pthread mutex attributes -- pshared o bin/30424 Generalization of vipw(8) to lock pwdb while being edi o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari o bin/30360 vmstat(8) returns impossible data o kern/30321 [patch] strftime(3) '%s' format does not work properly s i386/30206 mdodd [boot] PS/2 server 85 can't boot kern.flp o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o kern/30052 archie [dc] [patch] dc driver queues outgoing pkts indefinite a docs/30008 doc [patch] French softupdates document should be translat o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt p bin/29893 kensmith sysinstall(8): suggestions for 4.4 sysinstall o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o bin/29516 markm telnet(1) from an non FreeBSD host still uses /etc/tty s kern/29423 [request] [patch] new feature: kernel security hooks i f kern/29421 alc Update a file with mmap will cause mtime/ctime changin o bin/29375 sysinstall(8): disk editor gets confused by slices tha o bin/29363 gad [patch] newsyslog(8) can support time as extension o kern/29355 mux [kernel] [patch] add lchflags support s bin/29292 [patch] addition to burncd(8) for specific handling of a bin/29253 natd(8) forgets about udp connections o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol s i386/28975 [rp] RocketPort problems s kern/28840 gibbs [cam] Possible interrupt masking trouble in sys/cam/ca o bin/28798 mail(1) with a pager (more) requires fg/Ctrl-Z/fg to r o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28620 ru xinstall(1) has no way to pass options to strip o bin/28424 remko mtree(8) fails to report directory hierarchy mismatch o bin/28364 [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u a bin/28223 remko su(1) doesn't look at login.conf all the time o bin/27972 losing information with talk(1) a conf/27896 Error in /etc/exports invalidates entire line, not jus o kern/27835 standards [libc] execve() doesn't conform to execve(2) spec in s o bin/27829 pax(1) uid/gid cache is read-only o bin/27687 fsck(8) wrapper is not properly passing options to fsc o kern/27660 Kernel does not return error if adding duplicate addre o docs/27605 doc [patch] Cross-document references () o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c o kern/27403 [lpt] lpt driver doesn't handle flags anymore o bin/27319 obrien df(1) displays amd pid processes o bin/27306 marcel [patch] hw watchpoints work unreliable under gdb(1) o bin/27281 vidcontrol(1) does not have error codes o bin/27258 getty(8) didn't check if if= isn't empty o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o bin/27216 randi sysinstall(8): can not get to shell prompt from serial o kern/27008 kernel function sysbeep(xxx, 0) does produce sound s bin/26803 des fetch(1) Fix fetch to allow FTP puts in '-o' & allow ' o kern/26787 [patch] sysctl change request o bin/26695 change request: kill(1)/killall(1) -l output o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain a gnu/26362 "cvs server" doesn't honour the global --allow-root a kern/26348 [pcvt] scon -s, page fault in HP mode o docs/26286 doc *printf(3) etc should gain format string warnings o kern/26261 [sio] silo overflow problem in sio driver f kern/26142 vwe [nfs] Unlink fails on NFS mounted filesystem o bin/26005 vis(1)/unvis(1) MIME quoted-printable encoding added t a docs/26003 standards getgroups(2) lists NGROUPS_MAX but not syslimits.h f kern/25986 silby Socket would hang at LAST_ACK forever. o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o bin/25736 ac(8) -d option probrem with overdays logon o kern/25733 [intpm] mismatch between error reporting in smbus fram s bin/25598 yar patch to let ftpd(8) output message when changing dire p bin/25542 sh(1) null char in quoted string s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password o kern/25445 kernel statistics are displayed in wrong types and wra o alpha/25284 alpha PC164 won't reboot with graphics console o bin/25218 mailwrapper(8) invokes sendmail when resources are tig o bin/25015 cp(1) options -i and -f do not work as documented o bin/25013 mv(1) cannot move unresolvable symlinks across devices f kern/24959 kmacy [patch] proper TCP_NOPUSH/TCP_CORK compatibility o docs/24786 doc missing FILES descriptions in sa(4) o bin/24757 yar ftpd(8) not RFC compliant s threa/24632 threads libc_r delicate deviation from libc in handling SIGCHL f kern/24629 harti ng_socket failes to declare connected data sockets as s stand/24590 standards timezone function not compatible witn Single Unix Spec o kern/24528 Bad tracking of Modem status o bin/24513 peter new options for pppd(8) o bin/24485 [patch] to make cron(8) handle clock jumps s threa/24472 threads libc_r does not honor SO_SNDTIMEO/SO_RCVTIMEO socket o o bin/24461 [nis] Being able to increase the YP timeout without re o kern/24435 [libdisk] [patch] changing slice type causes Auto-part o bin/24390 standards ln(1) Replacing old dir-symlinks when using /bin/ln o bin/24066 marcel gdb(1) can't detach from programs linked with libc_r a bin/23912 vi(1) underflow of cnt in vs_paint() by O_NUMBER_LENGT o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23402 sysinstall(8): upgrade ought to check partition sizes a bin/23254 [patch] yacc(1) accepts bad grammer o bin/23098 sysinstall(8): [patch] if installing on a serial conso o conf/23063 net [arp] [patch] for static ARP tables in rc.network s i386/22944 alc [vm] [patch] isa_dmainit fails on machines with 512MB o misc/22914 [bootinst] bootinst messages are not updated s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted o bin/22182 vi(1) options noprint/print/octal broken s bin/22034 [request] nfsstat(1) lacks useful features found in So o kern/21998 kmacy [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o i386/21672 obrien [i386] AMD Duron Rev. A0 reports incorrect L2 cache si o stand/21519 standards sys/dir.h should be deprecated some more o kern/21463 emulation [linux] Linux compatability mode should not allow setu o bin/21315 Shells often behave oddly when executing shell scripts a bin/21089 [patch] vi(1) silently corrupts open file on SIGINT wh o bin/21008 gad lpr(1) Fix for lpr's handling of lots of jobs in a que o bin/20944 natd(8) enhancements, default config file and manpage o bin/20633 fdisk(8) doesn't handle LBA correctly o kern/20529 [ti] gigabit cards fail to link s bin/20521 rmt(8) /etc/rmt several problems o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o bin/20391 jhb sysinstall(8): sysinstall should check debug.boothowto s kern/20333 des [libpam] ftp login fails on unix password when s/key a o bin/20282 randi sysinstall(8): sysinstall does not recover some /etc f o bin/20172 yacc(1) byacc 1.9 fails to generate $default transitio o bin/20054 yar ftpd(8) rotating _PATH_FTPDSTATFILE losts xferlog s docs/20028 doc ASCII docs should reflect tags in the sourc f kern/19913 silby add SYN+FIN counter o gnu/19882 obrien ld does not detect all undefined symbols! o bin/19837 ambrisko sysinstall(8): [patch] run Fix It floppy from serial p a kern/19782 mkisofs 1.12.1 (i386-unknown-freebsd4.0) doesn't prese s bin/19773 markm [patch] telnet(1) infinite loop depending on how fds a o bin/19772 df(1) output wrong for union-mounts o kern/19756 Inability to use linux extended partition (type 0x85) o bin/19683 mount(8) displays incorrect mount point on failed moun s conf/19573 des Dot Files for Optional Shells s kern/19535 [procfs] [patch] procfs_rlimit tidyup s kern/19402 Signals 127 and 128 cannot be detected in wait4() inte o kern/18909 dwmalone select(2) timeout limited to 100000000 seconds o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t o gnu/18857 peter Enable GSSAPI in CVS if available s kern/18704 GLOB_ERR not handled correctly by glob() s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad o bin/18498 jhb allowing ELF_VERBOSE in /etc/make.conf o bin/18326 dwmalone no /usr/libdata/lint/llib-lc.ln o bin/18319 dump(8) fails with "cannot reopen disk: interrupted sy o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation o kern/18271 [patch] simplelock: klds not portable across UP and SM o kern/18200 mdodd 3com 3c509b recognized twice during boot s bin/18114 iostat(8): msps from iostat is wrong s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o conf/17993 obrien improving on the default /etc/amd.map s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo o bin/17623 date(1) -v doesn't handle time changes (DST) correctly s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 matteo crontab(1) leaves files in /var/cron/tabs when interru o bin/17289 gad [patch] wrong permissions on /var/run/printer s kern/17109 darrenr fastroute crashes for lo0 udp s kern/17108 [nfs] SecureRPC not supported in mount_nfs command o bin/16948 sysinstall(8): sysinstall/disklabel: bad partition tab o kern/16765 bde Add support for mark/space parity o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. p misc/15876 edwin [picobsd] PicoBSD message of the day problems o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15619 peter [patch] standard pppd(8) doesn't authenticate users wi s kern/15478 incorrect utmp/wtmp records update upon connection bei s kern/15436 [syscons] syscons extension: "propellers" o bin/15205 [patch] Addition to random(6) o bin/15168 [patch] Adding tracklist support to fdformat(1) a kern/15095 silby TCP's advertised window is not scaled immediately upon o bin/15038 sysinstall(8): easy to not notice that selection lists p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k s bin/14925 standards getsubopt isn't poisonous enough a bin/14682 gad lprm(1) unaware of lp(1) Environment Variables (LPDEST o kern/14646 kern.boottime affected by APM suspend/resume s kern/14562 ioctl() codes should be provided for ejecting all remo o bin/14318 randi sysinstall(8): sysinstall upon install has some counte s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai o bin/13882 mount(8) mount -p is missing the quota options s bin/13869 man(1) program saves multiple cached copies of the sam s conf/13775 multi-user boot may hang in NIS environment o bin/13397 vi(1) nvi mishandles tags files under certain conditio f kern/13326 kmacy [headers] [patch] additional timeval interfaces for .root fails to become root s bin/3170 vi(1): vi freaks and dump core if user doesn't exist s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2137 vm statistics are bad s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 linimon [patch] Extraneous warning from mv(1) 6109 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 15:40:05 2010 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 0CA90106568B for ; Mon, 4 Jan 2010 15:40:05 +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 CB5238FC13 for ; Mon, 4 Jan 2010 15:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04Fe4FV006787 for ; Mon, 4 Jan 2010 15:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04Fe457006786; Mon, 4 Jan 2010 15:40:04 GMT (envelope-from gnats) Date: Mon, 4 Jan 2010 15:40:04 GMT Message-Id: <201001041540.o04Fe457006786@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Nick Hibma Cc: Subject: Re: bin/121287: dd(1) ignores any conversions if 'bs' was specified X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Nick Hibma List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2010 15:40:05 -0000 The following reply was made to PR bin/121287; it has been noted by GNATS. From: Nick Hibma To: bug-followup@FreeBSD.org, nick@anywi.com Cc: Subject: Re: bin/121287: dd(1) ignores any conversions if 'bs' was specified Date: Mon, 4 Jan 2010 16:14:14 +0100 This can be closed. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 16:14:57 2010 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 240161065672; Mon, 4 Jan 2010 16:14:57 +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 EE4B08FC14; Mon, 4 Jan 2010 16:14:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04GEuoI042941; Mon, 4 Jan 2010 16:14:56 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04GEuua042937; Mon, 4 Jan 2010 16:14:56 GMT (envelope-from linimon) Date: Mon, 4 Jan 2010 16:14:56 GMT Message-Id: <201001041614.o04GEuua042937@freefall.freebsd.org> To: nick@anywi.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/121287: dd(1) ignores any conversions if 'bs' was specified 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, 04 Jan 2010 16:14:57 -0000 Synopsis: dd(1) ignores any conversions if 'bs' was specified State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Jan 4 16:14:41 UTC 2010 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=121287 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 16:30:05 2010 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 11D261065670 for ; Mon, 4 Jan 2010 16:30:05 +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 A5CB18FC16 for ; Mon, 4 Jan 2010 16:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04GU4MH055519 for ; Mon, 4 Jan 2010 16:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04GU4hw055512; Mon, 4 Jan 2010 16:30:04 GMT (envelope-from gnats) Date: Mon, 4 Jan 2010 16:30:04 GMT Message-Id: <201001041630.o04GU4hw055512@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Efstratios Karatzas Cc: Subject: Re: bin/142155: dumpfs(8) drops leading 0 (zero) from superblock id X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Efstratios Karatzas List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2010 16:30:05 -0000 The following reply was made to PR bin/142155; it has been noted by GNATS. From: Efstratios Karatzas To: bug-followup@FreeBSD.org, tigger@lvlworld.com Cc: Subject: Re: bin/142155: dumpfs(8) drops leading 0 (zero) from superblock id Date: Mon, 4 Jan 2010 17:51:17 +0200 --0016e6d9a0e81b15e7047c58b1cd Content-Type: text/plain; charset=ISO-8859-1 Hi. Not sure if this qualifies as a bug, but it's certainly a little misleading if you want to manipulate ufsids. The only issue here is that ufsid is the result of concatenating two fs ids, in your example the hex numbers "4ae2d4ec" and "6f7fec5" Each id number has a max length of 8 digits so when concatenating the two ids to create the ufsid, a 0 is added in front of "6f7fec5" to maintain a length of 16 characters total and actually keep the original numbers in the ufsid. Two possible fixes: 1) Change the way you interpret the output of dumpfs(8) in a way similar to the one described in the following link http://www.mail-archive.com/freebsd-stable@freebsd.org/msg106566.html Notice the "printf %0x $((0x\1 << 32 | 0x\2))/p" part, simple bitwise operations 2) Apply my patch and recompile dumpfs so that if one of the ids has fewer than 8 digits, leading zeros are always printed. That way your script doesn't have to do anything "special" Elaboration: In dumpfs.c, line 153 printf("superblock location\t%jd\tid\t[ %x %x ]\n", (intmax_t)afs.fs_sblockloc, afs.fs_id[0], afs.fs_id[1]); You can see it's printing two variables in hex (%x = unsigned hex number) The fs_id array is of type int32_t so the maximum value has 8 digits. Hope this helps, reply if somehow you still have a problem. -- Efstratios "GPF" Karatzas --0016e6d9a0e81b15e7047c58b1cd Content-Type: application/octet-stream; name="dumpfs_patch.diff" Content-Disposition: attachment; filename="dumpfs_patch.diff" Content-Transfer-Encoding: base64 X-Attachment-Id: f_g41fb7k30 KioqIGR1bXBmcy5vcmlnLmMJTW9uIEphbiAgNCAxNzowNToxNCAyMDEwCi0tLSBkdW1wZnMuYwlN b24gSmFuICA0IDE3OjA3OjA1IDIwMTAKKioqKioqKioqKioqKioqCioqKiAxNTAsMTU2ICoqKioK ICAJCWZzdGltZSA9IGFmcy5mc190aW1lOwogIAkJcHJpbnRmKCJtYWdpY1x0JXggKFVGUzIpXHR0 aW1lXHQlcyIsCiAgCQkgICAgYWZzLmZzX21hZ2ljLCBjdGltZSgmZnN0aW1lKSk7CiEgCQlwcmlu dGYoInN1cGVyYmxvY2sgbG9jYXRpb25cdCVqZFx0aWRcdFsgJXggJXggXVxuIiwKICAJCSAgICAo aW50bWF4X3QpYWZzLmZzX3NibG9ja2xvYywgYWZzLmZzX2lkWzBdLCBhZnMuZnNfaWRbMV0pOwog IAkJcHJpbnRmKCJuY2dcdCVkXHRzaXplXHQlamRcdGJsb2Nrc1x0JWpkXG4iLAogIAkJICAgIGFm cy5mc19uY2csIChpbnRtYXhfdClmc3NpemUsIChpbnRtYXhfdClhZnMuZnNfZHNpemUpOwotLS0g MTUwLDE1NiAtLS0tCiAgCQlmc3RpbWUgPSBhZnMuZnNfdGltZTsKICAJCXByaW50ZigibWFnaWNc dCV4IChVRlMyKVx0dGltZVx0JXMiLAogIAkJICAgIGFmcy5mc19tYWdpYywgY3RpbWUoJmZzdGlt ZSkpOwohIAkJcHJpbnRmKCJzdXBlcmJsb2NrIGxvY2F0aW9uXHQlamRcdGlkXHRbICUwOHggJTA4 eCBdXG4iLAogIAkJICAgIChpbnRtYXhfdClhZnMuZnNfc2Jsb2NrbG9jLCBhZnMuZnNfaWRbMF0s IGFmcy5mc19pZFsxXSk7CiAgCQlwcmludGYoIm5jZ1x0JWRcdHNpemVcdCVqZFx0YmxvY2tzXHQl amRcbiIsCiAgCQkgICAgYWZzLmZzX25jZywgKGludG1heF90KWZzc2l6ZSwgKGludG1heF90KWFm cy5mc19kc2l6ZSk7Cg== --0016e6d9a0e81b15e7047c58b1cd-- From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 18:00:39 2010 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 A3FFD106566C; Mon, 4 Jan 2010 18:00:39 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7A48E8FC16; Mon, 4 Jan 2010 18:00:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04I0dVu036194; Mon, 4 Jan 2010 18:00:39 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04I0dXQ036190; Mon, 4 Jan 2010 18:00:39 GMT (envelope-from delphij) Date: Mon, 4 Jan 2010 18:00:39 GMT Message-Id: <201001041800.o04I0dXQ036190@freefall.freebsd.org> To: delphij@FreeBSD.org, freebsd-bugs@FreeBSD.org, delphij@FreeBSD.org From: delphij@FreeBSD.org Cc: Subject: Re: bin/141838: [patch] rtsold(8): Limits in usr.sbin/rtsold/probe.c false 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, 04 Jan 2010 18:00:39 -0000 Synopsis: [patch] rtsold(8): Limits in usr.sbin/rtsold/probe.c false Responsible-Changed-From-To: freebsd-bugs->delphij Responsible-Changed-By: delphij Responsible-Changed-When: Mon Jan 4 18:00:23 UTC 2010 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=141838 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 19:40:02 2010 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 654931065672 for ; Mon, 4 Jan 2010 19:40:02 +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 22DCB8FC1B for ; Mon, 4 Jan 2010 19:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04Je1hs021337 for ; Mon, 4 Jan 2010 19:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04Je1Xa021336; Mon, 4 Jan 2010 19:40:01 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jan 2010 19:40:01 GMT Resent-Message-Id: <201001041940.o04Je1Xa021336@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48F3F1065692 for ; Mon, 4 Jan 2010 19:35:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 37A1F8FC2B for ; Mon, 4 Jan 2010 19:35:23 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o04JZNrA054315 for ; Mon, 4 Jan 2010 19:35:23 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o04JZNFo054314; Mon, 4 Jan 2010 19:35:23 GMT (envelope-from nobody) Message-Id: <201001041935.o04JZNFo054314@www.freebsd.org> Date: Mon, 4 Jan 2010 19:35:23 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/142325: update port: security/opensaml2 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, 04 Jan 2010 19:40:02 -0000 >Number: 142325 >Category: misc >Synopsis: update port: security/opensaml2 >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 04 19:40:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: 8.0-amd64 >Organization: >Environment: >Description: update port, see attached >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # security/opensaml2 # security/opensaml2/files # security/opensaml2/files/patch-doc_Makefile.in # security/opensaml2/Makefile # security/opensaml2/distinfo # security/opensaml2/pkg-descr # security/opensaml2/pkg-plist # echo c - security/opensaml2 mkdir -p security/opensaml2 > /dev/null 2>&1 echo c - security/opensaml2/files mkdir -p security/opensaml2/files > /dev/null 2>&1 echo x - security/opensaml2/files/patch-doc_Makefile.in sed 's/^X//' >security/opensaml2/files/patch-doc_Makefile.in << 'f051c71e4a83ec8248a26806e95c2998' X X$FreeBSD: ports/security/opensaml2/files/patch-doc_Makefile.in,v 1.1 2008/11/22 15:56:15 miwi Exp $ X X--- doc/Makefile.in.orig X+++ doc/Makefile.in X@@ -231,7 +231,7 @@ X LOG4CPP.LICENSE X X pkgdoc_DATA = $(docfiles) X-EXTRA_DIST = $(docfiles) api X+EXTRA_DIST = $(docfiles) X all: all-am X X .SUFFIXES: f051c71e4a83ec8248a26806e95c2998 echo x - security/opensaml2/Makefile sed 's/^X//' >security/opensaml2/Makefile << '3cc4b753c22ea84debb03aab9ce2f563' X# New ports collection makefile for: opensaml2 X# Date created: 15 September 2008 X# Whom: Janos Mohacsi X# X# $FreeBSD: ports/security/opensaml2/Makefile,v 1.8 2009/07/10 01:16:10 wxs Exp $ X# X XPORTNAME= opensaml2 XPORTVERSION= 2.3 XCATEGORIES= security XMASTER_SITES= http://shibboleth.internet2.edu/downloads/opensaml/cpp/${PORTVERSION}/ XDISTNAME= opensaml-${PORTVERSION} X XMAINTAINER= janos.mohacsi@bsd.hu XCOMMENT= Open source implentation of SAML2 X XLIB_DEPENDS= curl.5:${PORTSDIR}/ftp/curl \ X log4shib.1:${PORTSDIR}/devel/log4shib \ X xerces-c.28:${PORTSDIR}/textproc/xerces-c2-devel \ X xmltooling.4:${PORTSDIR}/devel/xmltooling X XGNU_CONFIGURE= yes XCONFIGURE_ARGS+=--with-log4shib=${LOCALBASE} --with-openssl=${OPENSSLBASE} \ X --with-xmltooling=${LOCALBASE} --disable-doxygen-doc XUSE_GMAKE= yes XUSE_LDCONFIG= yes X Xpost-patch: X @${REINPLACE_CMD} -e 's,^pkgdocdir.*=.*,pkgdocdir = ${DOCSDIR},' \ X ${WRKSRC}/doc/Makefile.in X @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \ X ${WRKSRC}/configure X X.if defined(NOPORTDOCS) X @${REINPLACE_CMD} -e '/^SUBDIRS/s,doc ,,' ${WRKSRC}/Makefile.in X.endif X X.include 3cc4b753c22ea84debb03aab9ce2f563 echo x - security/opensaml2/distinfo sed 's/^X//' >security/opensaml2/distinfo << 'a786123b516a03923b6ea4a9e6b1359e' XMD5 (opensaml-2.3.tar.gz) = 9695d40cb28519c2cde8211cd1c3dc69 XSHA256 (opensaml-2.3.tar.gz) = 027b3b9a6f5c147dd434d52e674ca238672412595dfa18675a70bafc5495e2fd XSIZE (opensaml-2.3.tar.gz) = 926057 a786123b516a03923b6ea4a9e6b1359e echo x - security/opensaml2/pkg-descr sed 's/^X//' >security/opensaml2/pkg-descr << 'cafb1cbb9d0f94bb27e054689094e5f9' XOpenSAML 2, a re-rewrite of OpenSAML 1, supports SAML 1.0, 1.1, 2.0 but is Xnot backwards compatible with OpenSAML 1. X XWWW: https://spaces.internet2.edu/display/OpenSAML/Home cafb1cbb9d0f94bb27e054689094e5f9 echo x - security/opensaml2/pkg-plist sed 's/^X//' >security/opensaml2/pkg-plist << '76bb42af7b66067a4f73e88f9f03ba95' Xbin/samlsign Xinclude/saml/encryption/EncryptedKeyResolver.h Xinclude/saml/Assertion.h Xinclude/saml/base.h Xinclude/saml/exceptions.h Xinclude/saml/version.h Xinclude/saml/RootObject.h Xinclude/saml/SAMLConfig.h Xinclude/saml/saml1/binding/SAMLArtifactType0001.h Xinclude/saml/saml1/binding/SAMLArtifactType0002.h Xinclude/saml/saml1/binding/SAML1MessageDecoder.h Xinclude/saml/saml1/binding/SAML1SOAPClient.h Xinclude/saml/saml1/core/Assertions.h Xinclude/saml/saml1/core/Protocols.h Xinclude/saml/saml1/profile/AssertionValidator.h Xinclude/saml/saml1/profile/BrowserSSOProfileValidator.h Xinclude/saml/saml2/binding/SAML2Artifact.h Xinclude/saml/saml2/binding/SAML2ArtifactType0004.h Xinclude/saml/saml2/binding/SAML2MessageDecoder.h Xinclude/saml/saml2/binding/SAML2Redirect.h Xinclude/saml/saml2/binding/SAML2SOAPClient.h Xinclude/saml/saml2/core/Assertions.h Xinclude/saml/saml2/core/Protocols.h Xinclude/saml/saml2/metadata/AbstractMetadataProvider.h Xinclude/saml/saml2/metadata/DynamicMetadataProvider.h Xinclude/saml/saml2/metadata/EndpointManager.h Xinclude/saml/saml2/metadata/Metadata.h Xinclude/saml/saml2/metadata/MetadataCredentialContext.h Xinclude/saml/saml2/metadata/MetadataCredentialCriteria.h Xinclude/saml/saml2/metadata/MetadataFilter.h Xinclude/saml/saml2/metadata/MetadataProvider.h Xinclude/saml/saml2/metadata/ObservableMetadataProvider.h Xinclude/saml/saml2/profile/AssertionValidator.h Xinclude/saml/saml2/profile/BrowserSSOProfileValidator.h Xinclude/saml/saml2/profile/SAML2AssertionPolicy.h Xinclude/saml/binding/ArtifactMap.h Xinclude/saml/binding/MessageDecoder.h Xinclude/saml/binding/MessageEncoder.h Xinclude/saml/binding/SAMLArtifact.h Xinclude/saml/binding/SecurityPolicy.h Xinclude/saml/binding/SecurityPolicyRule.h Xinclude/saml/binding/SOAPClient.h Xinclude/saml/signature/ContentReference.h Xinclude/saml/signature/SignableObject.h Xinclude/saml/signature/SignatureProfileValidator.h Xinclude/saml/util/CommonDomainCookie.h Xinclude/saml/util/SAMLConstants.h Xlib/libsaml.so.6 Xlib/libsaml.so X%%PORTDOCS%%%%DOCSDIR%%/README.txt X%%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt X%%PORTDOCS%%%%DOCSDIR%%/NOTICE.txt X%%PORTDOCS%%%%DOCSDIR%%/LOG4CPP.LICENSE Xshare/xml/opensaml/saml20-catalog.xml Xshare/xml/opensaml/saml10-catalog.xml Xshare/xml/opensaml/saml11-catalog.xml Xshare/xml/opensaml/sstc-metadata-attr.xsd Xshare/xml/opensaml/sstc-saml-attribute-ext.xsd Xshare/xml/opensaml/sstc-saml-delegation.xsd Xshare/xml/opensaml/cs-sstc-schema-assertion-01.xsd Xshare/xml/opensaml/cs-sstc-schema-protocol-01.xsd Xshare/xml/opensaml/cs-sstc-schema-assertion-1.1.xsd Xshare/xml/opensaml/cs-sstc-schema-protocol-1.1.xsd Xshare/xml/opensaml/saml-schema-assertion-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-auth-telephony-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-ip-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-pgp-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-ippword-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-kerberos-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-mobileonefactor-reg-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-mobileonefactor-unreg-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-mobiletwofactor-reg-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-mobiletwofactor-unreg-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-nomad-telephony-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-personal-telephony-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-ppt-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-pword-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-session-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-smartcard-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-smartcardpki-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-softwarepki-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-spki-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-srp-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-sslcert-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-telephony-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-timesync-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-types-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-x509-2.0.xsd Xshare/xml/opensaml/saml-schema-authn-context-xmldsig-2.0.xsd Xshare/xml/opensaml/saml-schema-dce-2.0.xsd Xshare/xml/opensaml/saml-schema-ecp-2.0.xsd Xshare/xml/opensaml/saml-schema-metadata-2.0.xsd Xshare/xml/opensaml/saml-schema-protocol-2.0.xsd Xshare/xml/opensaml/saml-schema-x500-2.0.xsd Xshare/xml/opensaml/saml-schema-xacml-2.0.xsd Xshare/xml/opensaml/sstc-saml1x-metadata.xsd Xshare/xml/opensaml/sstc-saml-metadata-ext-query.xsd Xshare/xml/opensaml/sstc-saml-protocol-ext-thirdparty.xsd X@dirrm share/xml/opensaml X%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/api X%%PORTDOCS%%@dirrm %%DOCSDIR%% X@dirrm include/saml/util X@dirrm include/saml/signature X@dirrm include/saml/saml2/profile X@dirrm include/saml/saml2/metadata X@dirrm include/saml/saml2/core X@dirrm include/saml/saml2/binding X@dirrm include/saml/saml2 X@dirrm include/saml/saml1/profile X@dirrm include/saml/saml1/core X@dirrm include/saml/saml1/binding X@dirrm include/saml/saml1 X@dirrm include/saml/encryption X@dirrm include/saml/binding X@dirrm include/saml 76bb42af7b66067a4f73e88f9f03ba95 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 20:02:05 2010 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 A54091065676; Mon, 4 Jan 2010 20:02:05 +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 7D4B58FC1B; Mon, 4 Jan 2010 20:02:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04K25Ba046000; Mon, 4 Jan 2010 20:02:05 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04K255r045996; Mon, 4 Jan 2010 20:02:05 GMT (envelope-from gavin) Date: Mon, 4 Jan 2010 20:02:05 GMT Message-Id: <201001042002.o04K255r045996@freefall.freebsd.org> To: gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/136661: [patch] ndp(8) ignores -f option 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, 04 Jan 2010 20:02:05 -0000 Synopsis: [patch] ndp(8) ignores -f option Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: gavin Responsible-Changed-When: Mon Jan 4 20:00:59 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). Patch looks good (and fits the style of the rest of the file), but I'm not in any position to test it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136661 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 4 20:20:03 2010 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 4D3681065670 for ; Mon, 4 Jan 2010 20:20:03 +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 22A8A8FC08 for ; Mon, 4 Jan 2010 20:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04KK3cD055348 for ; Mon, 4 Jan 2010 20:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04KK2xM055346; Mon, 4 Jan 2010 20:20:02 GMT (envelope-from gnats) Date: Mon, 4 Jan 2010 20:20:02 GMT Message-Id: <201001042020.o04KK2xM055346@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Welch, Brent" Cc: Subject: Re: kern/140932: fork+exec from threaded FreeBSD 7.2 application X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Welch, Brent" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2010 20:20:03 -0000 The following reply was made to PR kern/140932; it has been noted by GNATS. From: "Welch, Brent" To: bug-followup@FreeBSD.org, welch@panasas.com Cc: Subject: Re: kern/140932: fork+exec from threaded FreeBSD 7.2 application Date: Mon, 04 Jan 2010 12:12:45 -0800 Let's leave this as its own case. I still need to confirm the effectiveness of the other patch. I may also choose to use an unwrapped sysfork(). -- Brent Welch Director, Software Architecture, Panasas Inc The Leader in Parallel Storage www.panasas.com welch@panasas.com From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 02:51:33 2010 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 DA0B5106566C; Tue, 5 Jan 2010 02:51:33 +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 B06778FC15; Tue, 5 Jan 2010 02:51:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o052pXQQ010463; Tue, 5 Jan 2010 02:51:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o052pX1K010459; Tue, 5 Jan 2010 02:51:33 GMT (envelope-from linimon) Date: Tue, 5 Jan 2010 02:51:33 GMT Message-Id: <201001050251.o052pX1K010459@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/142325: update port: security/opensaml2 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 02:51:33 -0000 Synopsis: update port: security/opensaml2 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jan 5 02:51:18 UTC 2010 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=142325 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 05:54:21 2010 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 790711065670 for ; Tue, 5 Jan 2010 05:54:21 +0000 (UTC) (envelope-from nobody@witness.propagation.net) Received: from witness.propagation.net (witness.propagation.net [66.34.10.1]) by mx1.freebsd.org (Postfix) with ESMTP id 48D3D8FC12 for ; Tue, 5 Jan 2010 05:54:21 +0000 (UTC) Received: from witness.propagation.net (localhost [127.0.0.1]) by witness.propagation.net (8.13.4/8.13.4) with ESMTP id o04L0v5U029700 for ; Mon, 4 Jan 2010 15:00:57 -0600 Received: (from nobody@localhost) by witness.propagation.net (8.13.4/8.13.3/Submit) id o04L0vV1029698; Mon, 4 Jan 2010 15:00:57 -0600 Date: Mon, 4 Jan 2010 15:00:57 -0600 Message-Id: <201001042100.o04L0vV1029698@witness.propagation.net> To: freebsd-bugs@freebsd.org From: Mr frank Edward MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Subject: ATM Payment Department X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: frankedward@live.co.za List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 05:54:21 -0000 Office Of The Director Of Operation International Credit Settlement, ATM Payment Department. Absa International Bank South Africa. Registered No: 1026167. URGENT ATTENTION: This is to officially inform you that you have been selected among the winners for the oncoming FIFA world cup 2010 online grand lottery held by Absa bank international, your email address has been selected and we have verified your file and found out why you have not received your payment is because you have not fulfilled the necessary obligations in respect of your lottery payment. The ATM CARD PAYMENT DEPARTMENT has been mandated to issue out $1,000,000,00 as part payment for this fiscal year 2010. Secondly we have arranged your payment through our Swift Card Payment Centre through Asia Pacific that is the latest instruction from Absa International Bank. (A Division of Barclays international Bank Plc) as well as the INTERPOL and FBI. The ATM CARD can be use as withdrawal in any ATM MACHINE in any part of the world with the daily limit of $5,000 (Five Thousand Dollars) Per Day, kindly let us have your information by contacting the Card Payment Centre with the following information’s below. 1. Your full name………….. 2. Phone number…………. 3. Address where you want the ATM CARD to be delivered……. 4. Your age and current occupation…………. 5. Attach any copy of your identification………. You can call and email me as soon as you receive this message for further directions. Note: Upon the receipt of your information from ATM Payment Department (Absa International Bank). we will deliver your Approval letter inclusive with your ATM card to your nominated address in case you are on unable to come for your pick up in our head office here at the Atm department, and we will send and deliver to you your ATM CARD through our courier service team. The delivery service is three hundred and fifty united state dollars ($350usd). Contact Information: Mr. Frank Edward Tel: +27 76-380-7121 Fax Number: 0865045977 Email: frankedward@live.co.za Regards, Absa International Bank From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 08:00:07 2010 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 376C41065692 for ; Tue, 5 Jan 2010 08:00:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0DBA38FC20 for ; Tue, 5 Jan 2010 08:00:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o05806Qs002392 for ; Tue, 5 Jan 2010 08:00:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o05806MS002391; Tue, 5 Jan 2010 08:00:06 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jan 2010 08:00:06 GMT Resent-Message-Id: <201001050800.o05806MS002391@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, Henning Petersen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F26241065679 for ; Tue, 5 Jan 2010 07:57:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id E238B8FC14 for ; Tue, 5 Jan 2010 07:57:44 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o057viqd018866 for ; Tue, 5 Jan 2010 07:57:44 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o057vinm018865; Tue, 5 Jan 2010 07:57:44 GMT (envelope-from nobody) Message-Id: <201001050757.o057vinm018865@www.freebsd.org> Date: Tue, 5 Jan 2010 07:57:44 GMT From: Henning Petersen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/142339: Double free in getnetpath.c. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 08:00:07 -0000 >Number: 142339 >Category: misc >Synopsis: Double free in getnetpath.c. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jan 05 08:00:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Henning Petersen >Release: Freebsd-current >Organization: >Environment: >Description: np_sessionp is freed at line 102 and line 123. >How-To-Repeat: >Fix: diff -u -r1.8 getnetpath.c --- lib/libc/rpc/getnetpath.c 20 Sep 2007 22:35:24 -0000 1.8 +++ lib/libc/rpc/getnetpath.c 5 Jan 2010 05:52:21 -0000 @@ -101,7 +101,7 @@ if ((np_sessionp->nc_handlep = setnetconfig()) == NULL) { free(np_sessionp); syslog (LOG_ERR, "rpc: failed to open " NETCONFIG); - goto failed; + return (NULL); } np_sessionp->valid = NP_VALID; np_sessionp->ncp_list = NULL; Patch attached with submission follows: Index: lib/libc/rpc/getnetpath.c =================================================================== RCS file: /usr/ncvs/src/lib/libc/rpc/getnetpath.c,v retrieving revision 1.8 diff -u -r1.8 getnetpath.c --- lib/libc/rpc/getnetpath.c 20 Sep 2007 22:35:24 -0000 1.8 +++ lib/libc/rpc/getnetpath.c 5 Jan 2010 05:52:21 -0000 @@ -101,7 +101,7 @@ if ((np_sessionp->nc_handlep = setnetconfig()) == NULL) { free(np_sessionp); syslog (LOG_ERR, "rpc: failed to open " NETCONFIG); - goto failed; + return (NULL); } np_sessionp->valid = NP_VALID; np_sessionp->ncp_list = NULL; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 09:40:02 2010 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 C77331065670 for ; Tue, 5 Jan 2010 09:40:02 +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 896E28FC16 for ; Tue, 5 Jan 2010 09:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o059e2hT093455 for ; Tue, 5 Jan 2010 09:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o059e2uO093454; Tue, 5 Jan 2010 09:40:02 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jan 2010 09:40:02 GMT Resent-Message-Id: <201001050940.o059e2uO093454@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, Vedad KAJTAZ Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09299106566C for ; Tue, 5 Jan 2010 09:32:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id ED2398FC0A for ; Tue, 5 Jan 2010 09:32:25 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o059WPUr004403 for ; Tue, 5 Jan 2010 09:32:25 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o059WP0F004402; Tue, 5 Jan 2010 09:32:25 GMT (envelope-from nobody) Message-Id: <201001050932.o059WP0F004402@www.freebsd.org> Date: Tue, 5 Jan 2010 09:32:25 GMT From: Vedad KAJTAZ To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/142341: Jail escape when cwd is moved from the host system X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 09:40:02 -0000 >Number: 142341 >Category: misc >Synopsis: Jail escape when cwd is moved from the host system >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jan 05 09:40:02 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Vedad KAJTAZ >Release: 7.2-RELEASE-p4 >Organization: Vedad KAJTAZ >Environment: FreeBSD kenny.osilex.net 7.2-RELEASE-p4 FreeBSD 7.2-RELEASE-p4 #0: Fri Oct 2 12:21:39 UTC 2009 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Given the following setup: - A host system - A jail system located in /usr/local/jails/J1 on the host system - A shell open in the jail system, with cwd set to /some/path (therefore, /usr/local/jails/J1/some/path on the host system). When the root moves the /usr/local/jails/J1/some/path folder somewhere else (say in /usr/local/jails/J2/some/path), the jail shell (as any other jail process) in no longer rooted and has access to the whole filesystem on the host. Though this is not a common situation, it may happen (and did happen to me). Best regards, >How-To-Repeat: Always repeatable >Fix: None known >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 12:50:04 2010 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 7D66110656A9 for ; Tue, 5 Jan 2010 12:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6ADB38FC17 for ; Tue, 5 Jan 2010 12:50:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o05Co4HF061782 for ; Tue, 5 Jan 2010 12:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o05Co4rv061773; Tue, 5 Jan 2010 12:50:04 GMT (envelope-from gnats) Date: Tue, 5 Jan 2010 12:50:04 GMT Message-Id: <201001051250.o05Co4rv061773@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Michael Grant Cc: Subject: Re: kern/122046: [psm] Synaptics touchpad freezes (psm0: lost interrupt?) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Grant List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 12:50:04 -0000 The following reply was made to PR kern/122046; it has been noted by GNATS. From: Michael Grant To: bug-followup@FreeBSD.org, artur.zabronski@gmail.com Cc: Subject: Re: kern/122046: [psm] Synaptics touchpad freezes (psm0: lost interrupt?) Date: Tue, 05 Jan 2010 14:14:40 +0200 Dear Sir/Madam, I am reproducing this problem on an HP 8710p with 8.0-RELEASE. The notebook has a Synaptic pad+stick combo. I find it interesting that this hardware was working on 7.2 without any problems, but now in 8.0 there is this pain: the mouse freezes up for a few seconds, particularly when switching between consoles and X. As per Artur's original description, I have increased the log level and confirm that I have exactly the same problem... with some interesting additions. Seems that button 9 (right mouse button) on the touch pad also generates button 4 events. This is happening at the moused layer and this then gets passed up (so things like xev report 4 and 9 Button Release events while the button is held down). Regards, Mike Grant.

This communication is intended for the addressee only. It is confidential. If you have received this communication in error, please notify us immediately and destroy the original message. You may not copy or disseminate this communication without the permission of the University. Only authorized signatories are competent to enter into agreements on behalf of the University and recipients are thus advised that the content of this message may not be legally binding on the University and may contain the personal views and opinions of the author, which are not necessarily the views and opinions of The University of the Witwatersrand, Johannesburg. All agreements between the University and outsiders are subject to South African Law unless the University agrees in writing to the contrary.

From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 14:00:11 2010 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 C0BF1106568B for ; Tue, 5 Jan 2010 14:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 960B48FC0C for ; Tue, 5 Jan 2010 14:00:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o05E0Bqq021971 for ; Tue, 5 Jan 2010 14:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o05E0Bt7021970; Tue, 5 Jan 2010 14:00:11 GMT (envelope-from gnats) Date: Tue, 5 Jan 2010 14:00:11 GMT Message-Id: <201001051400.o05E0Bt7021970@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Steve Polyack Cc: Subject: Re: bin/141683: nfsd(8) appears to hold onto closed connections indefinitely X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Steve Polyack List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 14:00:11 -0000 The following reply was made to PR bin/141683; it has been noted by GNATS. From: Steve Polyack To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/141683: nfsd(8) appears to hold onto closed connections indefinitely Date: Tue, 05 Jan 2010 08:52:15 -0500 Feel free to close this. The issue has mysteriously disappeared. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 16:00:10 2010 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 0C7831065694 for ; Tue, 5 Jan 2010 16:00: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 B907C8FC1F for ; Tue, 5 Jan 2010 16:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o05G099P025769 for ; Tue, 5 Jan 2010 16:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o05G09hU025768; Tue, 5 Jan 2010 16:00:09 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jan 2010 16:00:09 GMT Resent-Message-Id: <201001051600.o05G09hU025768@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, Baginski Darren Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 429BE106566C for ; Tue, 5 Jan 2010 15:57:15 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 17DBF8FC1C for ; Tue, 5 Jan 2010 15:57:15 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o05FvEoc080965 for ; Tue, 5 Jan 2010 15:57:14 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o05FvEi2080964; Tue, 5 Jan 2010 15:57:14 GMT (envelope-from nobody) Message-Id: <201001051557.o05FvEi2080964@www.freebsd.org> Date: Tue, 5 Jan 2010 15:57:14 GMT From: Baginski Darren To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/142351: LSILogic driver performance - mpt X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 16:00:10 -0000 >Number: 142351 >Category: kern >Synopsis: LSILogic driver performance - mpt >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jan 05 16:00:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Baginski Darren >Release: 8.0-RELEASE >Organization: >Environment: FreeBSD freepc.local 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Sat Nov 21 15:02:08 UTC 2009 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Hi! I have a Dell 1435 with folowing LSI config: mpt0:vol0(mpt0:0:0): Settings ( Hot-Plug-Spares High-Priority-ReSync ) mpt0:vol0(mpt0:0:0): Using Spare Pool: 0 mpt0:vol0(mpt0:0:0): 2 Members: (mpt0:1:32:0): Primary Online (mpt0:1:1:0): Secondary Online mpt0:vol0(mpt0:0:0): RAID-1 - Optimal mpt0:vol0(mpt0:0:0): Status ( Enabled ) (mpt0:vol0:1): Physical (mpt0:0:1:0), Pass-thru (mpt0:1:0:0) (mpt0:vol0:1): Online (mpt0:vol0:0): Physical (mpt0:0:32:0), Pass-thru (mpt0:1:1:0) (mpt0:vol0:0): Online da0 at mpt0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-5 device da0: 300.000MB/s transfers da0: Command Queueing enabled da0: 237464MB (486326272 512 byte sectors: 255H 63S/T 30272C) Here is simple test [root@FreeBSD tmp]# dd if=/dev/zero of=1g bs=1M count=1000 conv=sync 1000+0 records in 1000+0 records out 1048576000 bytes transferred in 196.386202 secs (5339357 bytes/sec) [root@FreeBSD tmp]# time $(dd if=/dev/zero of=1g bs=1M count=1000 ; sync) 1000+0 records in 1000+0 records out 1048576000 bytes transferred in 198.980241 secs (5269749 bytes/sec) real 3m24.876s user 0m0.002s sys 0m1.869s So I've got _only_ 5Megabytes per second. Now is the same server under RHEL5 [root@RHEL5 tmp]# dd if=/dev/zero of=1g bs=1M count=1000 conv=sync 1000+0 records in 1000+0 records out 1048576000 bytes (1.0 GB) copied, 5.34952 seconds, 196 MB/s [root@RHEL5 tmp]# time $(dd if=/dev/zero of=1g bs=1M count=1000 ; sync) 1000+0 records in 1000+0 records out 1048576000 bytes (1.0 GB) copied, 4.70584 seconds, 223 MB/s real 0m42.567s user 0m0.007s sys 0m6.038s Both systems default install, no tweaking or custom kernels. FreeBSD 8.0-release is on UFS, RHEL is on ext3. I've tried same test on zfs/ufs FreeBSD 7.2 and 8.0 and got always about 6megabytes per sec. >How-To-Repeat: Perform tests on hardware described. >Fix: N/A >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 16:34:45 2010 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 B7083106566C; Tue, 5 Jan 2010 16:34:45 +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 8D9388FC08; Tue, 5 Jan 2010 16:34:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o05GYjq7061796; Tue, 5 Jan 2010 16:34:45 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o05GYj2N061792; Tue, 5 Jan 2010 16:34:45 GMT (envelope-from linimon) Date: Tue, 5 Jan 2010 16:34:45 GMT Message-Id: <201001051634.o05GYj2N061792@freefall.freebsd.org> To: spolyack@collaborativefusion.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/141683: nfsd(8) appears to hold onto closed connections indefinitely X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 16:34:45 -0000 Synopsis: nfsd(8) appears to hold onto closed connections indefinitely State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Tue Jan 5 16:34:33 UTC 2010 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=141683 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 16:43:28 2010 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 8F825106566B; Tue, 5 Jan 2010 16:43:28 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F0A448FC13; Tue, 5 Jan 2010 16:43:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o05GhR4s069905; Tue, 5 Jan 2010 16:43:27 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o05GhRsf069901; Tue, 5 Jan 2010 16:43:27 GMT (envelope-from linimon) Date: Tue, 5 Jan 2010 16:43:27 GMT Message-Id: <201001051643.o05GhRsf069901@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-scsi@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/142351: [mpt] LSILogic driver performance problems X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 16:43:28 -0000 Old Synopsis: LSILogic driver performance - mpt New Synopsis: [mpt] LSILogic driver performance problems Responsible-Changed-From-To: freebsd-bugs->freebsd-scsi Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jan 5 16:42:43 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=142351 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 16:45:59 2010 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 3C9FF106568F; Tue, 5 Jan 2010 16:45:59 +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 13B378FC12; Tue, 5 Jan 2010 16:45:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o05GjwNI070004; Tue, 5 Jan 2010 16:45:58 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o05Gjwf9070000; Tue, 5 Jan 2010 16:45:58 GMT (envelope-from linimon) Date: Tue, 5 Jan 2010 16:45:58 GMT Message-Id: <201001051645.o05Gjwf9070000@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-jail@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/142341: [jail] Jail escape when cwd is moved from the host system X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 16:45:59 -0000 Old Synopsis: Jail escape when cwd is moved from the host system New Synopsis: [jail] Jail escape when cwd is moved from the host system Responsible-Changed-From-To: freebsd-bugs->freebsd-jail Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jan 5 16:44:47 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=142341 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 20:19:33 2010 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 3FA1F1065676; Tue, 5 Jan 2010 20:19:33 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 164E38FC1A; Tue, 5 Jan 2010 20:19:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o05KJW4W060117; Tue, 5 Jan 2010 20:19:32 GMT (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o05KJVRd060113; Tue, 5 Jan 2010 21:19:31 +0100 (CET) (envelope-from brueffer) Date: Tue, 5 Jan 2010 21:19:31 +0100 (CET) Message-Id: <201001052019.o05KJVRd060113@freefall.freebsd.org> To: henning.petersen@t-online.de, brueffer@FreeBSD.org, freebsd-bugs@FreeBSD.org, brueffer@FreeBSD.org From: brueffer@FreeBSD.org Cc: Subject: Re: kern/142339: [libc] [patch] Double free in getnetpath.c. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 20:19:33 -0000 Synopsis: [libc] [patch] Double free in getnetpath.c. State-Changed-From-To: open->patched State-Changed-By: brueffer State-Changed-When: Tue Jan 5 21:18:53 CET 2010 State-Changed-Why: Committed, thanks! Responsible-Changed-From-To: freebsd-bugs->brueffer Responsible-Changed-By: brueffer Responsible-Changed-When: Tue Jan 5 21:18:53 CET 2010 Responsible-Changed-Why: MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=142339 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 21:50:03 2010 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 021881065679 for ; Tue, 5 Jan 2010 21:50:03 +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 B89988FC18 for ; Tue, 5 Jan 2010 21:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o05Lo2Bt039538 for ; Tue, 5 Jan 2010 21:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o05Lo2mg039537; Tue, 5 Jan 2010 21:50:02 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jan 2010 21:50:02 GMT Resent-Message-Id: <201001052150.o05Lo2mg039537@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, Marko Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BCC6B106566B for ; Tue, 5 Jan 2010 21:45:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id ABC7C8FC0A for ; Tue, 5 Jan 2010 21:45:44 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o05Ljihq077778 for ; Tue, 5 Jan 2010 21:45:44 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o05Lji35077777; Tue, 5 Jan 2010 21:45:44 GMT (envelope-from nobody) Message-Id: <201001052145.o05Lji35077777@www.freebsd.org> Date: Tue, 5 Jan 2010 21:45:44 GMT From: Marko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/142365: FreeBSD RAID1 (gmirror) is much slower than Linux RAID1! X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 21:50:03 -0000 >Number: 142365 >Category: misc >Synopsis: FreeBSD RAID1 (gmirror) is much slower than Linux RAID1! >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jan 05 21:50:02 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Marko >Release: 7.1 >Organization: www.cursor.si >Environment: 32bit and 64 bit >Description: I run many servers with double hard-disk for lowering the risk of data loss. I normally use software RAID1 on these systems (RAID1 is giving me very simple situation if one disk fails, software RAID1 is making my hardware cheaper). After doing extensive performance testing in FreeBSD 7.1 I found out, that FreeBSD is much faster in arithmetic calculations than Linux. But when I tried to store data in the database (PostgreSQL) I was very dissapointed. The same hardware configuration is by factor 2 or 3 times slower than Linux, because of very slow gmirror. Gmirror is even slower than disk access without RAID at all... (although 2 disks are available and therefore reads should be 2x faster). I compared Scientific Linux 5.4 (based on Red Hat Enterprise 5.4) with FreeBSD 7.1. I googled much on this topic, but there is no solution. One issue-ticked on this topic got very low priority. I had to decide to use Linux instead, because it was much faster for my servers. Please make GMIRROR faster in the next releases. >How-To-Repeat: 1) Install GMIRROR on FreeBSD according to the User Manual. 2) Do performance measurements (disk access). 3) Then install CentOS 5.4 or Scientific Linux 5.4 and make software RAID1 within the installation wizard. 4) Do performance measurements (disk access). 5) Compare performance measurements. >Fix: not known (at least for software RAID1) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 22:30:04 2010 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 3D3C11065693 for ; Tue, 5 Jan 2010 22:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 09CD68FC1E for ; Tue, 5 Jan 2010 22:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o05MU3bd077412 for ; Tue, 5 Jan 2010 22:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o05MU3uG077409; Tue, 5 Jan 2010 22:30:03 GMT (envelope-from gnats) Date: Tue, 5 Jan 2010 22:30:03 GMT Message-Id: <201001052230.o05MU3uG077409@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Andrew Thompson Cc: Subject: Re: misc/142365: FreeBSD RAID1 (gmirror) is much slower than Linux RAID1! X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andrew Thompson List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 22:30:04 -0000 The following reply was made to PR misc/142365; it has been noted by GNATS. From: Andrew Thompson To: Gnats Cc: Subject: Re: misc/142365: FreeBSD RAID1 (gmirror) is much slower than Linux RAID1! Date: Wed, 6 Jan 2010 11:08:41 +1300 Hi, You may want to look at this change that will be in 7.3, http://svn.freebsd.org/viewvc/base?view=revision&revision=200286 It should be easy to apply the changes to g_mirror.c and g_mirror.h in your 7.1 system and recompile. Andrew From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 23:44:24 2010 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 27328106568F for ; Tue, 5 Jan 2010 23:44:24 +0000 (UTC) (envelope-from KeithB@cfl.rr.com) Received: from cdptpa-omtalb.mail.rr.com (cdptpa-omtalb.mail.rr.com [75.180.132.123]) by mx1.freebsd.org (Postfix) with ESMTP id DACF98FC0C for ; Tue, 5 Jan 2010 23:44:23 +0000 (UTC) Received: from cdptpa-omtalb.mail.rr.com ([10.127.143.52]) by cdptpa-qmta04.mail.rr.com with ESMTP id <20100105203115355.USLD21689@cdptpa-qmta04.mail.rr.com> for ; Tue, 5 Jan 2010 20:31:15 +0000 X-Authority-Analysis: v=1.0 c=1 a=7tCRPKC8AAAA:8 a=BIkrqNV6RFi2r5Z1t1kA:9 a=xrlCzNHTa_2U2qmGq96ktBZAz6EA:4 a=SSmOFEACAAAA:8 a=Km82rVLsjfDWz86Jwk4A:9 a=pYcfZoeOtWdBGTdrY5oA:7 a=EXLZZejfkmNqIyD2on1SAcB9fhgA:4 X-Cloudmark-Score: 0 X-Originating-IP: 72.189.145.223 Received: from [72.189.145.223] ([72.189.145.223:1456] helo=pulsar) by cdptpa-oedge02.mail.rr.com (envelope-from ) (ecelerity 2.2.2.39 r()) with ESMTP id 6A/A6-08392-051A34B4; Tue, 05 Jan 2010 20:30:08 +0000 From: "KeithB" To: Date: Tue, 5 Jan 2010 15:30:02 -0500 Message-ID: <5E364B086F874F60867BD48EA6D0F724@pulsar> MIME-Version: 1.0 X-Priority: 1 (Highest) X-MSMail-Priority: High X-Mailer: Microsoft Office Outlook 11 Importance: High Thread-Index: AcqORdwGaqfTtCoZQvKmYFX73tQKKA== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.4325 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: FreeBSD 7.2 and KDE4 port X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 23:44:24 -0000 Dear FreeBSD, I though you may be able to suggest a solution for the following problem. ... as you will tell, I'm new to this install of ports. The make install of KDE4-4.3.4 in OS FreeBSD 7.2 fails, installed from the FreeBSD ports collection (KDE4). The file http://www.mega-nerd.com/libsndfile/libsndfile-1.2.20.tar.gz is not found. Indeed, I can't seem to find this file anywhere on the web. Apparently, libsndfile-1.2.30.tar.gz is a deprecated version of libsndfile-1.0.21.tar.gz www.mega-nerd.com/libsndfile/). Just FYI, when I downloaded libsndfile-1.0.21.tar.gz, the file downloads with the name libsndfile-1.0.21.tar.tar (note the tar on the end, vice gz). Can I get this version so that I can install your KDE desktop? I looked for a way to modify the Makefile or somthing to point the installer to the new file, libsndfile-1.2.20.tar.tar, but I don't seem to find any help in this area. Thanks, Keith From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 5 23:52:23 2010 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 C1DBB106568B; Tue, 5 Jan 2010 23:52:23 +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 9910C8FC08; Tue, 5 Jan 2010 23:52:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o05NqNeN055348; Tue, 5 Jan 2010 23:52:23 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o05NqNsS055344; Tue, 5 Jan 2010 23:52:23 GMT (envelope-from linimon) Date: Tue, 5 Jan 2010 23:52:23 GMT Message-Id: <201001052352.o05NqNsS055344@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-geom@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/142365: [geom] FreeBSD RAID1 (gmirror) is much slower than Linux RAID1! X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2010 23:52:23 -0000 Old Synopsis: FreeBSD RAID1 (gmirror) is much slower than Linux RAID1! New Synopsis: [geom] FreeBSD RAID1 (gmirror) is much slower than Linux RAID1! Responsible-Changed-From-To: freebsd-bugs->freebsd-geom Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jan 5 23:51:53 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=142365 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 00:11:40 2010 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 41BEB1065679 for ; Wed, 6 Jan 2010 00:11:40 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from smtp.lamaiziere.net (net.lamaiziere.net [91.121.44.19]) by mx1.freebsd.org (Postfix) with ESMTP id 084128FC19 for ; Wed, 6 Jan 2010 00:11:39 +0000 (UTC) Received: from baby-jane.lamaiziere.net (11.158.192-77.rev.gaoland.net [77.192.158.11]) by smtp.lamaiziere.net (Postfix) with ESMTPA id 21D6963317E; Wed, 6 Jan 2010 01:11:38 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by baby-jane.lamaiziere.net (Postfix) with ESMTP id E551A2CF6FC; Wed, 6 Jan 2010 01:11:44 +0100 (CET) Date: Wed, 6 Jan 2010 01:11:44 +0100 From: Patrick Lamaiziere To: "KeithB" Message-ID: <20100106011144.4f9cc2cd@davenulle.org> In-Reply-To: <5E364B086F874F60867BD48EA6D0F724@pulsar> References: <5E364B086F874F60867BD48EA6D0F724@pulsar> X-Mailer: Claws Mail 3.7.3 (GTK+ 2.18.5; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Cc: freebsd-bugs@FreeBSD.org Subject: Re: FreeBSD 7.2 and KDE4 port X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 00:11:40 -0000 Le Tue, 5 Jan 2010 15:30:02 -0500, "KeithB" a écrit : Hi, > Can I get this version so that I can install your KDE desktop? I > looked for a way to modify the Makefile or somthing to point the > installer to the new file, libsndfile-1.2.20.tar.tar, but I don't > seem to find any help in this area. The version in the port tree libsndfile 1.0.20, Looks to work here, the distfile is available on FreeBSD's FTP. /<1>ports/audio/libsndfile# make fetch ===> Found saved configuration for libsndfile-1.0.18 => libsndfile-1.0.20.tar.gz doesn't seem to exist in /usr/pkg/distfiles/. => Attempting to fetch from http://www.mega-nerd.com/libsndfile/. fetch: http://www.mega-nerd.com/libsndfile/libsndfile-1.0.20.tar.gz: Not Found => Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. libsndfile-1.0.20.tar.gz 100% of 905 kB 341 kBps Please use the freebsd-ports@freebsd.org or the freebsd-questions@freebsd.org mailing lists instead this one (related to problems reports tracking). Thanks. Regards. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 02:50:06 2010 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 5F2EA106566C for ; Wed, 6 Jan 2010 02:50:06 +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 33F968FC0C for ; Wed, 6 Jan 2010 02:50:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o062o6VU002930 for ; Wed, 6 Jan 2010 02:50:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o062o59b002929; Wed, 6 Jan 2010 02:50:06 GMT (envelope-from gnats) Date: Wed, 6 Jan 2010 02:50:06 GMT Message-Id: <201001060250.o062o59b002929@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Dan Mahoney, System Admin" Cc: Subject: Re: bin/128725: [patch] whois(1) does not correctly send queries regarding IPv6 addresses to the RIR whois servers X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Dan Mahoney, System Admin" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 02:50:06 -0000 The following reply was made to PR bin/128725; it has been noted by GNATS. From: "Dan Mahoney, System Admin" To: bug-followup@FreeBSD.org, mdh_lists@yahoo.com Cc: Subject: Re: bin/128725: [patch] whois(1) does not correctly send queries regarding IPv6 addresses to the RIR whois servers Date: Tue, 5 Jan 2010 21:42:21 -0500 (EST) From a quick query of ARIN, this issue appears to be mostly fixed. The stubs are in place in the arin DB and the referral server fields are populated. FreeBSD 8 still lacks the ability to have whois(1) "just work" with a v6 address, as it does with a v4 (although the -6 option is now gone). 2001:610:240:22::c100:687 == whois.ripe.net prime# whois -a 2001:610:240:22::c100:687 OrgName: RIPE Network Coordination Centre OrgID: RIPE Address: P.O. Box 10096 City: Amsterdam StateProv: PostalCode: 1001EB Country: NL ReferralServer: whois://whois.ripe.net:43 NetRange: 2001:0600:0000:0000:0000:0000:0000:0000 - 2001:07FF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF CIDR: 2001:0600:0000:0000:0000:0000:0000:0000/23 NetName: EU-ZZ-2001-0600 NetHandle: NET6-2001-600-1 Parent: NetType: Allocated to RIPE NCC Comment: RegDate: 1999-07-01 Updated: 2008-11-14 The problem is, using -a seems to disable the following of referral servers. (As I tried with a v4 ip as well). There should PROBABLY be some mention of the special treatment of the "Referral Server" field in the manpage as well, as well as perhaps an option to continue following referrals even when a specific server is used as a starting point. -Dan Mahoney -- "No mowore webooting!!!" -Paul, 10-16-99, 10 PM --------Dan Mahoney-------- Techie, Sysadmin, WebGeek Gushi on efnet/undernet IRC ICQ: 13735144 AIM: LarpGM Site: http://www.gushi.org --------------------------- From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 10:20:08 2010 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 7680310656C8 for ; Wed, 6 Jan 2010 10:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4CB448FC1A for ; Wed, 6 Jan 2010 10:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06AK8YL031184 for ; Wed, 6 Jan 2010 10:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06AK8ag031183; Wed, 6 Jan 2010 10:20:08 GMT (envelope-from gnats) Date: Wed, 6 Jan 2010 10:20:08 GMT Message-Id: <201001061020.o06AK8ag031183@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: mato Cc: Subject: Re: bin/141901: gstat(8) fails on 8.0-RELEASE X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mato List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 10:20:08 -0000 The following reply was made to PR bin/141901; it has been noted by GNATS. From: mato To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/141901: gstat(8) fails on 8.0-RELEASE Date: Wed, 06 Jan 2010 11:14:51 +0100 This PR seems to be a duplicate of kern/104389 that's been reported repeatedly for years. If not fixed, it should be mentioned in BUGS section of respective man pages at least since it affects various system utilities and have not been fixed in a very long time. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 12:17:52 2010 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 4719F106566B; Wed, 6 Jan 2010 12:17:52 +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 1F2898FC1F; Wed, 6 Jan 2010 12:17:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06CHp34036917; Wed, 6 Jan 2010 12:17:51 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06CHpk5036913; Wed, 6 Jan 2010 12:17:51 GMT (envelope-from gavin) Date: Wed, 6 Jan 2010 12:17:51 GMT Message-Id: <201001061217.o06CHpk5036913@freefall.freebsd.org> To: gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, gavin@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/142155: dumpfs(8) drops leading 0 (zero) from superblock id X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 12:17:52 -0000 Synopsis: dumpfs(8) drops leading 0 (zero) from superblock id Responsible-Changed-From-To: freebsd-bugs->gavin Responsible-Changed-By: gavin Responsible-Changed-When: Wed Jan 6 12:08:34 UTC 2010 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=142155 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 13:58:07 2010 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 7C73D1065697; Wed, 6 Jan 2010 13:58:07 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 54BA08FC16; Wed, 6 Jan 2010 13:58:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06Dw76J022596; Wed, 6 Jan 2010 13:58:07 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06Dw7DV022592; Wed, 6 Jan 2010 13:58:07 GMT (envelope-from jh) Date: Wed, 6 Jan 2010 13:58:07 GMT Message-Id: <201001061358.o06Dw7DV022592@freefall.freebsd.org> To: gamato@users.sf.net, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: bin/141901: gstat(8) fails on 8.0-RELEASE X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 13:58:07 -0000 Synopsis: gstat(8) fails on 8.0-RELEASE State-Changed-From-To: open->closed State-Changed-By: jh State-Changed-When: Wed Jan 6 13:58:06 UTC 2010 State-Changed-Why: Duplicate of kern/104389. http://www.freebsd.org/cgi/query-pr.cgi?pr=141901 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 14:39:34 2010 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 EB3741065693; Wed, 6 Jan 2010 14:39:34 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C40338FC15; Wed, 6 Jan 2010 14:39:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06EdYJc057914; Wed, 6 Jan 2010 14:39:34 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06EdY4i057909; Wed, 6 Jan 2010 14:39:34 GMT (envelope-from jh) Date: Wed, 6 Jan 2010 14:39:34 GMT Message-Id: <201001061439.o06EdY4i057909@freefall.freebsd.org> To: Andre.Albsmeier@siemens.com, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: bin/84041: [patch] fix for wall(1) error message X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 14:39:35 -0000 Synopsis: [patch] fix for wall(1) error message State-Changed-From-To: open->closed State-Changed-By: jh State-Changed-When: Wed Jan 6 14:39:34 UTC 2010 State-Changed-Why: Fixed by r155875. http://www.freebsd.org/cgi/query-pr.cgi?pr=84041 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 17:00:16 2010 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 369BC1065672 for ; Wed, 6 Jan 2010 17:00:16 +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 11B3E8FC12 for ; Wed, 6 Jan 2010 17:00:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06H0F9E077649 for ; Wed, 6 Jan 2010 17:00:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06H0F5J077641; Wed, 6 Jan 2010 17:00:15 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jan 2010 17:00:15 GMT Resent-Message-Id: <201001061700.o06H0F5J077641@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, Pedro Giffuni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FF47106566B for ; Wed, 6 Jan 2010 16:50:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 5F4478FC25 for ; Wed, 6 Jan 2010 16:50:45 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o06GoiMl049797 for ; Wed, 6 Jan 2010 16:50:44 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o06GoiXv049794; Wed, 6 Jan 2010 16:50:44 GMT (envelope-from nobody) Message-Id: <201001061650.o06GoiXv049794@www.freebsd.org> Date: Wed, 6 Jan 2010 16:50:44 GMT From: Pedro Giffuni To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 17:00:16 -0000 >Number: 142384 >Category: bin >Synopsis: sync fsck_msdosfs with OpenBSD >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jan 06 17:00:15 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Pedro Giffuni >Release: 8-0 Release >Organization: >Environment: FreeBSD mogwai.giffuni.net 8.0-RELEASE FreeBSD 8.0-RELEASE #12: Tue Dec 1 23:31:27 UTC 2009 pedro@mogwai.giffuni.net:/usr/src/sys/i386/compile/GENERIC i386 >Description: Take some minor changes from OpenBSD's fsck_msdos. In particular: Revision 1.13 (boot.c) Check reads and lseek correctly for unsigned return Revision 1.17 (fat.c) - Partial use calloc() to avoid malloc(n * m) overflow >How-To-Repeat: Unfortunately someone has to review this carefully since fsck_msdosfs doesn't seem to work properly on my system: mogwai# fsck_msdosfs -p /dev/da0s1 Can't open (No such file or directory) /dev/ad0s1: UNEXPECTED INCONSISTENCY; RUN fsck_msdosfs MANUALLY. >Fix: diff -ru fsck_msdosfs.orig/boot.c fsck_msdosfs/boot.c --- fsck_msdosfs.orig/boot.c 2010-01-06 11:07:24.000000000 +0000 +++ fsck_msdosfs/boot.c 2010-01-06 11:19:21.000000000 +0000 @@ -55,9 +55,9 @@ u_char block[DOSBOOTBLOCKSIZE]; u_char fsinfo[2 * DOSBOOTBLOCKSIZE]; u_char backup[DOSBOOTBLOCKSIZE]; - int ret = FSOK; + int n, ret = FSOK; - if (read(dosfs, block, sizeof block) < sizeof block) { + if ((n=(read(dosfs, block, sizeof block) < sizeof block)) == -1 || n != sizeof block) { perror("could not read boot block"); return FSFATAL; } @@ -106,10 +106,10 @@ boot->FSInfo = block[48] + (block[49] << 8); boot->Backup = block[50] + (block[51] << 8); - if (lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET) - != boot->FSInfo * boot->BytesPerSec - || read(dosfs, fsinfo, sizeof fsinfo) - != sizeof fsinfo) { + if ((n = lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET)) == -1 + || n != boot->FSInfo * boot->BytesPerSec + || (n = read(dosfs, fsinfo, sizeof fsinfo)) == -1 + || n != sizeof fsinfo) { perror("could not read fsinfo block"); return FSFATAL; } @@ -133,10 +133,10 @@ fsinfo[0x3fc] = fsinfo[0x3fd] = 0; fsinfo[0x3fe] = 0x55; fsinfo[0x3ff] = 0xaa; - if (lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET) - != boot->FSInfo * boot->BytesPerSec - || write(dosfs, fsinfo, sizeof fsinfo) - != sizeof fsinfo) { + if ((n = lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET)) == -1 + || n != boot->FSInfo * boot->BytesPerSec + || (n = write(dosfs, fsinfo, sizeof fsinfo)) == -1 + || n != sizeof fsinfo) { perror("Unable to write FSInfo"); return FSFATAL; } @@ -153,9 +153,10 @@ + (fsinfo[0x1ef] << 24); } - if (lseek(dosfs, boot->Backup * boot->BytesPerSec, SEEK_SET) - != boot->Backup * boot->BytesPerSec - || read(dosfs, backup, sizeof backup) != sizeof backup) { + if ((n = lseek(dosfs, boot->Backup * boot->BytesPerSec, SEEK_SET)) == -1 + || n != boot->Backup * boot->BytesPerSec + || (n = read(dosfs, backup, sizeof backup)) == -1 + || n != sizeof backup) { perror("could not read backup bootblock"); return FSFATAL; } @@ -235,10 +236,12 @@ struct bootblock *boot; { u_char fsinfo[2 * DOSBOOTBLOCKSIZE]; - - if (lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET) - != boot->FSInfo * boot->BytesPerSec - || read(dosfs, fsinfo, sizeof fsinfo) != sizeof fsinfo) { + int n; + + if ((n = lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET)) == -1 + || n != boot->FSInfo * boot->BytesPerSec + || (n = read(dosfs, fsinfo, sizeof fsinfo)) == -1 + || n != sizeof fsinfo) { perror("could not read fsinfo block"); return FSFATAL; } @@ -250,10 +253,10 @@ fsinfo[0x1ed] = (u_char)(boot->FSNext >> 8); fsinfo[0x1ee] = (u_char)(boot->FSNext >> 16); fsinfo[0x1ef] = (u_char)(boot->FSNext >> 24); - if (lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET) - != boot->FSInfo * boot->BytesPerSec - || write(dosfs, fsinfo, sizeof fsinfo) - != sizeof fsinfo) { + if ((n = lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET)) == -1 + || n != boot->FSInfo * boot->BytesPerSec + || (n = write(dosfs, fsinfo, sizeof fsinfo)) == -1 + || n != sizeof fsinfo) { perror("Unable to write FSInfo"); return FSFATAL; } diff -ru fsck_msdosfs.orig/ext.h fsck_msdosfs/ext.h --- fsck_msdosfs.orig/ext.h 2010-01-06 11:07:24.000000000 +0000 +++ fsck_msdosfs/ext.h 2010-01-06 11:26:33.000000000 +0000 @@ -82,7 +82,7 @@ #define FSFIXFAT 64 /* Fix file system FAT */ /* - * read a boot block in a machine independend fashion and translate + * read a boot block in a machine independent fashion and translate * it into our struct bootblock. */ int readboot(int, struct bootblock *); diff -ru fsck_msdosfs.orig/fat.c fsck_msdosfs/fat.c --- fsck_msdosfs.orig/fat.c 2010-01-06 11:07:24.000000000 +0000 +++ fsck_msdosfs/fat.c 2010-01-06 11:30:23.000000000 +0000 @@ -547,7 +547,8 @@ off_t off; int ret = FSOK; - buffer = malloc(fatsz = boot->FATsecs * boot->BytesPerSec); + fatsz = boot->FATsecs * boot->BytesPerSec; + buffer = calloc(boot->FATsecs, boot->BytesPerSec); if (buffer == NULL) { perror("No space for FAT"); return FSFATAL; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 18:00:21 2010 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 79CE810656A3 for ; Wed, 6 Jan 2010 18: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 1F4718FC17 for ; Wed, 6 Jan 2010 18:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06I0KLl029394 for ; Wed, 6 Jan 2010 18:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06I0JfO029393; Wed, 6 Jan 2010 18:00:20 GMT (envelope-from gnats) Date: Wed, 6 Jan 2010 18:00:20 GMT Message-Id: <201001061800.o06I0JfO029393@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Antoine Brodin Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Antoine Brodin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 18:00:21 -0000 The following reply was made to PR bin/142384; it has been noted by GNATS. From: Antoine Brodin To: Pedro Giffuni Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD Date: Wed, 6 Jan 2010 18:24:20 +0100 On Wed, Jan 6, 2010 at 5:50 PM, Pedro Giffuni wrote: [snip] > diff -ru fsck_msdosfs.orig/boot.c fsck_msdosfs/boot.c > --- fsck_msdosfs.orig/boot.c =A0 =A02010-01-06 11:07:24.000000000 +0000 > +++ fsck_msdosfs/boot.c 2010-01-06 11:19:21.000000000 +0000 > @@ -55,9 +55,9 @@ > =A0 =A0 =A0 =A0u_char block[DOSBOOTBLOCKSIZE]; > =A0 =A0 =A0 =A0u_char fsinfo[2 * DOSBOOTBLOCKSIZE]; > =A0 =A0 =A0 =A0u_char backup[DOSBOOTBLOCKSIZE]; > - =A0 =A0 =A0 int ret =3D FSOK; > + =A0 =A0 =A0 int n, ret =3D FSOK; > > - =A0 =A0 =A0 if (read(dosfs, block, sizeof block) < sizeof block) { > + =A0 =A0 =A0 if ((n=3D(read(dosfs, block, sizeof block) < sizeof block))= =3D=3D -1 || n !=3D sizeof block) { > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0perror("could not read boot block"); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0return FSFATAL; > =A0 =A0 =A0 =A0} This does not look right, you probably want: if ((n =3D read(dosfs, block, sizeof(block))) =3D=3D -1 || n !=3D sizeof(b= lock)) Cheers, Antoine From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 18:40:07 2010 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 4ED7D1065670 for ; Wed, 6 Jan 2010 18:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2489B8FC0A for ; Wed, 6 Jan 2010 18:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06Ie6Cg064544 for ; Wed, 6 Jan 2010 18:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06Ie6vm064543; Wed, 6 Jan 2010 18:40:06 GMT (envelope-from gnats) Date: Wed, 6 Jan 2010 18:40:06 GMT Message-Id: <201001061840.o06Ie6vm064543@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Pedro F. Giffuni" Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Pedro F. Giffuni" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 18:40:07 -0000 The following reply was made to PR bin/142384; it has been noted by GNATS. From: "Pedro F. Giffuni" To: Antoine Brodin Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD Date: Wed, 6 Jan 2010 10:05:33 -0800 (PST) ----- Original Message ---- ... > > This does not look right, you probably want: > if ((n = read(dosfs, block, sizeof(block))) == -1 || n != sizeof(block)) > Hmm... It was taken as-is from OpenBSD's CVS http://www.openbsd.org/cgi-bin/cvsweb/src/sbin/fsck_msdos/boot.c.diff?r1=1.12;r2=1.13 but I have no objection with adding the parenthesis. cheers, Pedro. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 18:40:08 2010 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 EE151106568B for ; Wed, 6 Jan 2010 18:40: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 DD9088FC16 for ; Wed, 6 Jan 2010 18:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06Ie8Wn064570 for ; Wed, 6 Jan 2010 18:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06Ie8B3064569; Wed, 6 Jan 2010 18:40:08 GMT (envelope-from gnats) Date: Wed, 6 Jan 2010 18:40:08 GMT Message-Id: <201001061840.o06Ie8B3064569@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Antoine Brodin Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Antoine Brodin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 18:40:09 -0000 The following reply was made to PR bin/142384; it has been noted by GNATS. From: Antoine Brodin To: "Pedro F. Giffuni" Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD Date: Wed, 6 Jan 2010 19:38:06 +0100 On Wed, Jan 6, 2010 at 7:05 PM, Pedro F. Giffuni wrote: >> This does not look right, you probably want: >> if ((n = read(dosfs, block, sizeof(block))) == -1 || n != sizeof(block)) >> > > Hmm... It was taken as-is from OpenBSD's CVS > > http://www.openbsd.org/cgi-bin/cvsweb/src/sbin/fsck_msdos/boot.c.diff?r1=1.12;r2=1.13 > > but I have no objection with adding the parenthesis. My problem was with the parenthesis between "n=" and "read" in your patch. Cheers, Antoine From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 19:10:09 2010 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 C77EB1065694 for ; Wed, 6 Jan 2010 19:10: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 9D4418FC21 for ; Wed, 6 Jan 2010 19:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06JA97L089003 for ; Wed, 6 Jan 2010 19:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06JA9Ni089001; Wed, 6 Jan 2010 19:10:09 GMT (envelope-from gnats) Date: Wed, 6 Jan 2010 19:10:09 GMT Message-Id: <201001061910.o06JA9Ni089001@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Pedro F. Giffuni" Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Pedro F. Giffuni" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 19:10:09 -0000 The following reply was made to PR bin/142384; it has been noted by GNATS. From: "Pedro F. Giffuni" To: Antoine Brodin Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD Date: Wed, 6 Jan 2010 11:03:23 -0800 (PST) --0-437212032-1262804603=:89207 Content-Type: text/plain; charset=us-ascii ----- Original Message ---- ... > > My problem was with the parenthesis between "n=" and "read" in your patch. > Ooops.. my bad, sorry! New patch attached. --0-437212032-1262804603=:89207 Content-Type: application/octet-stream; name=patch-fsck_msdosfs Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-fsck_msdosfs" ZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvYm9vdC5jIGZzY2tfbXNkb3Nm cy9ib290LmMKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL2Jvb3QuYwkyMDEwLTAx LTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19tc2Rvc2Zz L2Jvb3QuYwkyMDEwLTAxLTA2IDEzOjU3OjUzLjAwMDAwMDAwMCArMDAwMApA QCAtNTUsOSArNTUsOSBAQAogCXVfY2hhciBibG9ja1tET1NCT09UQkxPQ0tT SVpFXTsKIAl1X2NoYXIgZnNpbmZvWzIgKiBET1NCT09UQkxPQ0tTSVpFXTsK IAl1X2NoYXIgYmFja3VwW0RPU0JPT1RCTE9DS1NJWkVdOwotCWludCByZXQg PSBGU09LOworCWludCBuLCByZXQgPSBGU09LOwogCQotCWlmIChyZWFkKGRv c2ZzLCBibG9jaywgc2l6ZW9mIGJsb2NrKSA8IHNpemVvZiBibG9jaykgewor CWlmICgobiA9IHJlYWQoZG9zZnMsIGJsb2NrLCBzaXplb2YgYmxvY2spIDwg c2l6ZW9mIGJsb2NrKSA9PSAtMSB8fCBuICE9IHNpemVvZiBibG9jaykgewog CQlwZXJyb3IoImNvdWxkIG5vdCByZWFkIGJvb3QgYmxvY2siKTsKIAkJcmV0 dXJuIEZTRkFUQUw7CiAJfQpAQCAtMTA2LDEwICsxMDYsMTAgQEAKIAkJYm9v dC0+RlNJbmZvID0gYmxvY2tbNDhdICsgKGJsb2NrWzQ5XSA8PCA4KTsKIAkJ Ym9vdC0+QmFja3VwID0gYmxvY2tbNTBdICsgKGJsb2NrWzUxXSA8PCA4KTsK IAotCQlpZiAobHNlZWsoZG9zZnMsIGJvb3QtPkZTSW5mbyAqIGJvb3QtPkJ5 dGVzUGVyU2VjLCBTRUVLX1NFVCkKLQkJICAgICE9IGJvb3QtPkZTSW5mbyAq IGJvb3QtPkJ5dGVzUGVyU2VjCi0JCSAgICB8fCByZWFkKGRvc2ZzLCBmc2lu Zm8sIHNpemVvZiBmc2luZm8pCi0JCSAgICAhPSBzaXplb2YgZnNpbmZvKSB7 CisJCWlmICgobiA9IGxzZWVrKGRvc2ZzLCBib290LT5GU0luZm8gKiBib290 LT5CeXRlc1BlclNlYywgU0VFS19TRVQpKSA9PSAtMQorIAkJICAgIHx8IG4g IT0gYm9vdC0+RlNJbmZvICogYm9vdC0+Qnl0ZXNQZXJTZWMKKyAJCSAgICB8 fCAobiA9IHJlYWQoZG9zZnMsIGZzaW5mbywgc2l6ZW9mIGZzaW5mbykpID09 IC0xCisgCQkgICAgfHwgbiAhPSBzaXplb2YgZnNpbmZvKSB7CiAJCQlwZXJy b3IoImNvdWxkIG5vdCByZWFkIGZzaW5mbyBibG9jayIpOwogCQkJcmV0dXJu IEZTRkFUQUw7CiAJCX0KQEAgLTEzMywxMCArMTMzLDEwIEBACiAJCQkJZnNp bmZvWzB4M2ZjXSA9IGZzaW5mb1sweDNmZF0gPSAwOwogCQkJCWZzaW5mb1sw eDNmZV0gPSAweDU1OwogCQkJCWZzaW5mb1sweDNmZl0gPSAweGFhOwotCQkJ CWlmIChsc2Vlayhkb3NmcywgYm9vdC0+RlNJbmZvICogYm9vdC0+Qnl0ZXNQ ZXJTZWMsIFNFRUtfU0VUKQotCQkJCSAgICAhPSBib290LT5GU0luZm8gKiBi b290LT5CeXRlc1BlclNlYwotCQkJCSAgICB8fCB3cml0ZShkb3NmcywgZnNp bmZvLCBzaXplb2YgZnNpbmZvKQotCQkJCSAgICAhPSBzaXplb2YgZnNpbmZv KSB7CisgCQkJCWlmICgobiA9IGxzZWVrKGRvc2ZzLCBib290LT5GU0luZm8g KiBib290LT5CeXRlc1BlclNlYywgU0VFS19TRVQpKSA9PSAtMQorIAkJCQkg ICAgfHwgbiAhPSBib290LT5GU0luZm8gKiBib290LT5CeXRlc1BlclNlYwor IAkJCQkgICAgfHwgKG4gPSB3cml0ZShkb3NmcywgZnNpbmZvLCBzaXplb2Yg ZnNpbmZvKSkgPT0gLTEKKwkJCQkgICAgfHwgbiAhPSBzaXplb2YgZnNpbmZv KSB7CiAJCQkJCXBlcnJvcigiVW5hYmxlIHRvIHdyaXRlIEZTSW5mbyIpOwog CQkJCQlyZXR1cm4gRlNGQVRBTDsKIAkJCQl9CkBAIC0xNTMsOSArMTUzLDEw IEBACiAJCQkJICAgICAgICsgKGZzaW5mb1sweDFlZl0gPDwgMjQpOwogCQl9 CiAKLQkJaWYgKGxzZWVrKGRvc2ZzLCBib290LT5CYWNrdXAgKiBib290LT5C eXRlc1BlclNlYywgU0VFS19TRVQpCi0JCSAgICAhPSBib290LT5CYWNrdXAg KiBib290LT5CeXRlc1BlclNlYwotCQkgICAgfHwgcmVhZChkb3NmcywgYmFj a3VwLCBzaXplb2YgYmFja3VwKSAhPSBzaXplb2YgIGJhY2t1cCkgeworIAkJ aWYgKChuID0gbHNlZWsoZG9zZnMsIGJvb3QtPkJhY2t1cCAqIGJvb3QtPkJ5 dGVzUGVyU2VjLCBTRUVLX1NFVCkpID09IC0xCisgCQkgICAgfHwgbiAhPSBi b290LT5CYWNrdXAgKiBib290LT5CeXRlc1BlclNlYworIAkJICAgIHx8IChu ID0gcmVhZChkb3NmcywgYmFja3VwLCBzaXplb2YgYmFja3VwKSkgPT0gLTEK KyAJCSAgICB8fCBuICE9IHNpemVvZiBiYWNrdXApIHsKIAkJCXBlcnJvcigi Y291bGQgbm90IHJlYWQgYmFja3VwIGJvb3RibG9jayIpOwogCQkJcmV0dXJu IEZTRkFUQUw7CiAJCX0KQEAgLTIzNSwxMCArMjM2LDEyIEBACiAJc3RydWN0 IGJvb3RibG9jayAqYm9vdDsKIHsKIAl1X2NoYXIgZnNpbmZvWzIgKiBET1NC T09UQkxPQ0tTSVpFXTsKLQotCWlmIChsc2Vlayhkb3NmcywgYm9vdC0+RlNJ bmZvICogYm9vdC0+Qnl0ZXNQZXJTZWMsIFNFRUtfU0VUKQotCSAgICAhPSBi b290LT5GU0luZm8gKiBib290LT5CeXRlc1BlclNlYwotCSAgICB8fCByZWFk KGRvc2ZzLCBmc2luZm8sIHNpemVvZiBmc2luZm8pICE9IHNpemVvZiBmc2lu Zm8pIHsKKyAJaW50IG47CisgIAorIAlpZiAoKG4gPSBsc2Vlayhkb3Nmcywg Ym9vdC0+RlNJbmZvICogYm9vdC0+Qnl0ZXNQZXJTZWMsIFNFRUtfU0VUKSkg PT0gLTEKKyAJICAgIHx8IG4gIT0gYm9vdC0+RlNJbmZvICogYm9vdC0+Qnl0 ZXNQZXJTZWMKKyAJICAgIHx8IChuID0gcmVhZChkb3NmcywgZnNpbmZvLCBz aXplb2YgZnNpbmZvKSkgPT0gLTEKKyAJICAgIHx8IG4gIT0gc2l6ZW9mIGZz aW5mbykgewogCQlwZXJyb3IoImNvdWxkIG5vdCByZWFkIGZzaW5mbyBibG9j ayIpOwogCQlyZXR1cm4gRlNGQVRBTDsKIAl9CkBAIC0yNTAsMTAgKzI1Mywx MCBAQAogCWZzaW5mb1sweDFlZF0gPSAodV9jaGFyKShib290LT5GU05leHQg Pj4gOCk7CiAJZnNpbmZvWzB4MWVlXSA9ICh1X2NoYXIpKGJvb3QtPkZTTmV4 dCA+PiAxNik7CiAJZnNpbmZvWzB4MWVmXSA9ICh1X2NoYXIpKGJvb3QtPkZT TmV4dCA+PiAyNCk7Ci0JaWYgKGxzZWVrKGRvc2ZzLCBib290LT5GU0luZm8g KiBib290LT5CeXRlc1BlclNlYywgU0VFS19TRVQpCi0JICAgICE9IGJvb3Qt PkZTSW5mbyAqIGJvb3QtPkJ5dGVzUGVyU2VjCi0JICAgIHx8IHdyaXRlKGRv c2ZzLCBmc2luZm8sIHNpemVvZiBmc2luZm8pCi0JICAgICE9IHNpemVvZiBm c2luZm8pIHsKKyAJaWYgKChuID0gbHNlZWsoZG9zZnMsIGJvb3QtPkZTSW5m byAqIGJvb3QtPkJ5dGVzUGVyU2VjLCBTRUVLX1NFVCkpID09IC0xCisJICAg IHx8IG4gIT0gYm9vdC0+RlNJbmZvICogYm9vdC0+Qnl0ZXNQZXJTZWMKKyAJ ICAgIHx8IChuID0gd3JpdGUoZG9zZnMsIGZzaW5mbywgc2l6ZW9mIGZzaW5m bykpID09IC0xCisgCSAgICB8fCBuICE9IHNpemVvZiBmc2luZm8pIHsKIAkJ cGVycm9yKCJVbmFibGUgdG8gd3JpdGUgRlNJbmZvIik7CiAJCXJldHVybiBG U0ZBVEFMOwogCX0KZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvZXh0Lmgg ZnNja19tc2Rvc2ZzL2V4dC5oCi0tLSBmc2NrX21zZG9zZnMub3JpZy9leHQu aAkyMDEwLTAxLTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNj a19tc2Rvc2ZzL2V4dC5oCTIwMTAtMDEtMDYgMTE6MjY6MzMuMDAwMDAwMDAw ICswMDAwCkBAIC04Miw3ICs4Miw3IEBACiAjZGVmaW5lIEZTRklYRkFUCTY0 CQkvKiBGaXggZmlsZSBzeXN0ZW0gRkFUICovCiAKIC8qCi0gKiByZWFkIGEg Ym9vdCBibG9jayBpbiBhIG1hY2hpbmUgaW5kZXBlbmRlbmQgZmFzaGlvbiBh bmQgdHJhbnNsYXRlCisgKiByZWFkIGEgYm9vdCBibG9jayBpbiBhIG1hY2hp bmUgaW5kZXBlbmRlbnQgZmFzaGlvbiBhbmQgdHJhbnNsYXRlCiAgKiBpdCBp bnRvIG91ciBzdHJ1Y3QgYm9vdGJsb2NrLgogICovCiBpbnQgcmVhZGJvb3Qo aW50LCBzdHJ1Y3QgYm9vdGJsb2NrICopOwpkaWZmIC1ydSBmc2NrX21zZG9z ZnMub3JpZy9mYXQuYyBmc2NrX21zZG9zZnMvZmF0LmMKLS0tIGZzY2tfbXNk b3Nmcy5vcmlnL2ZhdC5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvZmF0LmMJMjAxMC0wMS0wNiAxMToz MDoyMy4wMDAwMDAwMDAgKzAwMDAKQEAgLTU0Nyw3ICs1NDcsOCBAQAogCW9m Zl90IG9mZjsKIAlpbnQgcmV0ID0gRlNPSzsKIAotCWJ1ZmZlciA9IG1hbGxv YyhmYXRzeiA9IGJvb3QtPkZBVHNlY3MgKiBib290LT5CeXRlc1BlclNlYyk7 CisJZmF0c3ogPSBib290LT5GQVRzZWNzICogYm9vdC0+Qnl0ZXNQZXJTZWM7 CisJYnVmZmVyID0gY2FsbG9jKGJvb3QtPkZBVHNlY3MsIGJvb3QtPkJ5dGVz UGVyU2VjKTsKIAlpZiAoYnVmZmVyID09IE5VTEwpIHsKIAkJcGVycm9yKCJO byBzcGFjZSBmb3IgRkFUIik7CiAJCXJldHVybiBGU0ZBVEFMOwo= --0-437212032-1262804603=:89207-- From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 21:00:17 2010 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 E158610656A5 for ; Wed, 6 Jan 2010 21:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A546D8FC17 for ; Wed, 6 Jan 2010 21:00:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06L0HMZ084719 for ; Wed, 6 Jan 2010 21:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06L0Hbb084712; Wed, 6 Jan 2010 21:00:17 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jan 2010 21:00:17 GMT Resent-Message-Id: <201001062100.o06L0Hbb084712@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, Edward Capriolo Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 162C8106568B for ; Wed, 6 Jan 2010 20:54:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 0653F8FC2F for ; Wed, 6 Jan 2010 20:54:43 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o06KshPN065423 for ; Wed, 6 Jan 2010 20:54:43 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o06KshgM065408; Wed, 6 Jan 2010 20:54:43 GMT (envelope-from nobody) Message-Id: <201001062054.o06KshgM065408@www.freebsd.org> Date: Wed, 6 Jan 2010 20:54:43 GMT From: Edward Capriolo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/142389: libc LDAP problem after 7.2-RELEASE-p1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 21:00:18 -0000 >Number: 142389 >Category: misc >Synopsis: libc LDAP problem after 7.2-RELEASE-p1 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jan 06 21:00:17 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Edward Capriolo >Release: 7.2-RELEASE-p4 >Organization: About.com >Environment: [I have no name!@bmysql1-new /]$ uname -a FreeBSD bmysql1-new 7.2-RELEASE-p4 FreeBSD 7.2-RELEASE-p4 #0: Fri Oct 2 08:22:32 UTC 2009 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: 7.2-release-p4 is unable to reverse resolve my LDAP based username from my uid, even though it can resolve my ldap based group information. I am assuming this is a problem with libc/nscd/ldap: >How-To-Repeat: [ecapriolo@laptop1 ~]$ ssh -l ecapriolo bmysql1-new [I have no name!@bmysql1-new /]$ [I have no name!@bmysql1-new /]$ whoami 3000 [I have no name!@bmysql1-new /]$ uname -r 7.2-RELEASE-p4 [I have no name!@bmysql1-new /]$ id uid=3000 gid=3000(ecapriolo) groups=3000(ecapriolo),4000(sysops) [ecapriolo@laptop1 ~]$ ssh -l ecapriolo amysql1 [ecapriolo@amysql1 /]$ whoami ecapriolo [ecapriolo@amysql1 /]$ uname -r 7.2-RELEASE-p1 [ecapriolo@amysql1 /]$ id uid=3000(ecapriolo) gid=3000(ecapriolo) groups=3000(ecapriolo),4000(sysops) >Fix: Downgrade to p1 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 21:40:05 2010 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 0FD6B106566C for ; Wed, 6 Jan 2010 21:40:05 +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 D3F8F8FC19 for ; Wed, 6 Jan 2010 21:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06Le4YO020467 for ; Wed, 6 Jan 2010 21:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06Le4wN020466; Wed, 6 Jan 2010 21:40:04 GMT (envelope-from gnats) Date: Wed, 6 Jan 2010 21:40:04 GMT Message-Id: <201001062140.o06Le4wN020466@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Pedro F. Giffuni" Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Pedro F. Giffuni" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 21:40:05 -0000 The following reply was made to PR bin/142384; it has been noted by GNATS. From: "Pedro F. Giffuni" To: FreeBSD-gnats-submit@FreeBSD.org Cc: Bruce Evans Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD Date: Wed, 6 Jan 2010 13:31:35 -0800 (PST) --0-365583171-1262813495=:15260 Content-Type: text/plain; charset=us-ascii As Bruce Evans has kindly noted, the OpenBSD changes are plagued with style errors so we should use the NetBSD changes instead. This patch is bigger but cleans real bugs. In general: - fix sign-compare issues - Move to 2 clause license, approved by Wolfgang Solfrank In boot.c: - Change mismatch of bytes 11 to 90 to be a warning, not an error - print out the values of the bytes that do not match. - Add comment explaining that there is no documented rationale for the check. - removes unused ctype.h header in dir.c: - use bounded string op - the root directory of non fat32 filesystems is stored in a special area. a couple of corner cases can cause it to fail to write out that area after it performs repairs. in fat.c: - don't leak memory on allocation failure. - Do not crash when boot->FSNext contains garbage (i.e. -1). - don't use uint32_t when you mean size_t. --0-365583171-1262813495=:15260 Content-Type: application/octet-stream; name=patch-fsck_msdosfs Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-fsck_msdosfs" ZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvYm9vdC5jIGZzY2tfbXNkb3Nm cy9ib290LmMKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL2Jvb3QuYwkyMDEwLTAx LTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19tc2Rvc2Zz L2Jvb3QuYwkyMDEwLTAxLTA2IDE1OjE5OjMzLjAwMDAwMDAwMCArMDAwMApA QCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBi aW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0 CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0 aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVu dGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0 aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5nIG1hdGVy aWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3 YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3ds ZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUg ZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdvbGZnYW5n IFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5p dmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLSAq ICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0 cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0aG91dCBz cGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgogICogVEhJ UyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBgYEFTIElT JycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMs IElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1QTElFRCBX QVJSQU5USUVTCkBAIC00MCw3ICszMyw2IEBACiAKICNpbmNsdWRlIDxzdGRs aWIuaD4KICNpbmNsdWRlIDxzdHJpbmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5o PgogI2luY2x1ZGUgPHN0ZGlvLmg+CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAK QEAgLTU2LDggKzQ4LDkgQEAKIAl1X2NoYXIgZnNpbmZvWzIgKiBET1NCT09U QkxPQ0tTSVpFXTsKIAl1X2NoYXIgYmFja3VwW0RPU0JPT1RCTE9DS1NJWkVd OwogCWludCByZXQgPSBGU09LOworCWludCBpOwogCQotCWlmIChyZWFkKGRv c2ZzLCBibG9jaywgc2l6ZW9mIGJsb2NrKSA8IHNpemVvZiBibG9jaykgewor CWlmIChyZWFkKChzaXplX3QpZG9zZnMsIGJsb2NrLCBzaXplb2YgYmxvY2sp ICE9IHNpemVvZiBibG9jaykgewogCQlwZXJyb3IoImNvdWxkIG5vdCByZWFk IGJvb3QgYmxvY2siKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQpAQCAtMTYx LDEyICsxNTQsMjIgQEAKIAkJfQogCQliYWNrdXBbNjVdID0gYmxvY2tbNjVd OwkJCQkvKiBYWFggKi8KIAkJaWYgKG1lbWNtcChibG9jayArIDExLCBiYWNr dXAgKyAxMSwgNzkpKSB7Ci0JCQkvKiBDb3JyZWN0PwkJCQkJWFhYICovCi0J CQlwZmF0YWwoImJhY2t1cCBkb2Vzbid0IGNvbXBhcmUgdG8gcHJpbWFyeSBi b290YmxvY2siKTsKLQkJCWlmIChhbHdheXNubykKLQkJCQlwZmF0YWwoIlxu Iik7Ci0JCQllbHNlCi0JCQkJcmV0dXJuIEZTRkFUQUw7CisJCQkvKgorCQkJ ICogWFhYIFdlIHJlcXVpcmUgYSByZWZlcmVuY2UgdGhhdCBleHBsYWlucwor CQkJICogdGhhdCB0aGVzZSBieXRlcyBuZWVkIHRvIG1hdGNoLCBvciBzaG91 bGQKKwkJCSAqIGRyb3AgdGhlIGNoZWNrLiAgZ2R0QE5ldEJTRCBoYXMgb2Jz ZXJ2ZWQKKwkJCSAqIGZpbGVzeXN0ZW1zIHRoYXQgd29yayBmaW5lIHVuZGVy IFdpbmRvd3MgWFAKKwkJCSAqIGFuZCBOZXRCU0QgdGhhdCBkbyBub3QgbWF0 Y2gsIHNvIHRoZQorCQkJICogcmVxdWlyZW1lbnQgaXMgc3VzcGVjdC4gIEZv ciBub3csIGp1c3QKKwkJCSAqIHByaW50IG91dCB1c2VmdWwgaW5mb3JtYXRp b24gYW5kIGNvbnRpbnVlLgorCQkJICovCisJCQlwZmF0YWwoImJhY2t1cCAo YmxvY2sgJWQpIG1pc21hdGNoIHdpdGggcHJpbWFyeSBib290YmxvY2s6XG4i LAorCQkJICAgICAgICBib290LT5CYWNrdXApOworCQkJZm9yIChpID0gMTE7 IGkgPCAxMSArIDkwOyBpKyspIHsKKwkJCQlpZiAoYmxvY2tbaV0gIT0gYmFj a3VwW2ldKQorCQkJCQlwZmF0YWwoIlx0aT0lZFx0cHJpbWFyeSAweCUwMnhc dGJhY2t1cCAweCUwMnhcbiIsCisJCQkJCSAgICAgICBpLCBibG9ja1tpXSwg YmFja3VwW2ldKTsKKwkJCX0KIAkJfQogCQkvKiBDaGVjayBiYWNrdXAgRlNJ bmZvPwkJCQkJWFhYICovCiAJfQpkaWZmIC1ydSBmc2NrX21zZG9zZnMub3Jp Zy9jaGVjay5jIGZzY2tfbXNkb3Nmcy9jaGVjay5jCi0tLSBmc2NrX21zZG9z ZnMub3JpZy9jaGVjay5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvY2hlY2suYwkyMDEwLTAxLTA2IDE2 OjEwOjM5LjAwMDAwMDAwMCArMDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAq IDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJv ZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMg bGlzdCBvZiBjb25kaXRpb25zIGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWlt ZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBt YXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICog My4gQWxsIGFkdmVydGlzaW5nIG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1 cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3Bs YXkgdGhlIGZvbGxvd2luZyBhY2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHBy b2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBI dXNlbWFubgotICoJYW5kIFdvbGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVp dGhlciB0aGUgbmFtZSBvZiB0aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVz IG9mIGl0cyBjb250cmlidXRvcnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVu ZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBz b2Z0d2FyZQotICogICAgd2l0aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVu IHBlcm1pc3Npb24uCiAgKgogICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURF RCBCWSBUSEUgQVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9S CiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBM SU1JVEVEIFRPLCBUSEUgSU1QTElFRCBXQVJSQU5USUVTCkBAIC00MCw3ICsz Myw2IEBACiAKICNpbmNsdWRlIDxzdGRsaWIuaD4KICNpbmNsdWRlIDxzdHJp bmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5oPgogI2luY2x1ZGUgPHN0ZGlvLmg+ CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAjaW5jbHVkZSA8ZmNudGwuaD4KQEAg LTU0LDcgKzQ2LDggQEAKIAlpbnQgZG9zZnM7CiAJc3RydWN0IGJvb3RibG9j ayBib290OwogCXN0cnVjdCBmYXRFbnRyeSAqZmF0ID0gTlVMTDsKLQlpbnQg aSwgZmluaXNoX2Rvc2RpcnNlY3Rpb249MDsKKwlpbnQgZmluaXNoX2Rvc2Rp cnNlY3Rpb249MDsKKwl1X2ludCBpOwogCWludCBtb2QgPSAwOwogCWludCBy ZXQgPSA4OwogCmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Rpci5jIGZz Y2tfbXNkb3Nmcy9kaXIuYwotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZGlyLmMJ MjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tf bXNkb3Nmcy9kaXIuYwkyMDEwLTAxLTA2IDE2OjE3OjE3LjAwMDAwMDAwMCAr MDAwMApAQCAtMTIsMTMgKzEyLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC00NCw3ICszNyw2IEBACiAjaW5jbHVkZSA8 c3RkbGliLmg+CiAjaW5jbHVkZSA8c3RyaW5nLmg+CiAjaW5jbHVkZSA8Y3R5 cGUuaD4KLSNpbmNsdWRlIDxzdGRpby5oPgogI2luY2x1ZGUgPHVuaXN0ZC5o PgogI2luY2x1ZGUgPHRpbWUuaD4KIApAQCAtMjI2LDE2ICsyMTgsMjkgQEAK IAlpbnQgYjEsIGIyOwogCWNsX3QgY2w7CiAJaW50IHJldCA9IEZTT0s7CisJ c2l6ZV90IGxlbjsKIAogCWIxID0gYm9vdC0+Um9vdERpckVudHMgKiAzMjsK IAliMiA9IGJvb3QtPlNlY1BlckNsdXN0ICogYm9vdC0+Qnl0ZXNQZXJTZWM7 CiAKLQlpZiAoIShidWZmZXIgPSBtYWxsb2MoYjEgPiBiMiA/IGIxIDogYjIp KQotCSAgICB8fCAhKGRlbGJ1ZiA9IG1hbGxvYyhiMikpCi0JICAgIHx8ICEo cm9vdERpciA9IG5ld0Rvc0RpckVudHJ5KCkpKSB7Ci0JCXBlcnJvcigiTm8g c3BhY2UgZm9yIGRpcmVjdG9yeSIpOworCWlmICgoYnVmZmVyID0gbWFsbG9j KGxlbiA9IGIxID4gYjIgPyBiMSA6IGIyKSkgPT0gTlVMTCkgeworCQlwZXJy b3IoIk5vIHNwYWNlIGZvciBkaXJlY3RvcnkgYnVmZmVyIik7CiAJCXJldHVy biBGU0ZBVEFMOwogCX0KKworCWlmICgoZGVsYnVmID0gbWFsbG9jKGxlbiA9 IGIyKSkgPT0gTlVMTCkgeworCQlmcmVlKGJ1ZmZlcik7CisJCXBlcnJvcigi Tm8gc3BhY2UgZm9yIGRpcmVjdG9yeSBkZWxidWYiKTsKKwkJcmV0dXJuIEZT RkFUQUw7CisJfQorCisJaWYgKChyb290RGlyID0gbmV3RG9zRGlyRW50cnko KSkgPT0gTlVMTCkgeworCQlmcmVlKGJ1ZmZlcik7CisJCWZyZWUoZGVsYnVm KTsKKwkJcGVycm9yKCJObyBzcGFjZSBmb3IgZGlyZWN0b3J5IGVudHJ5Iik7 CisJCXJldHVybiBGU0ZBVEFMOworCX0KKwogCW1lbXNldChyb290RGlyLCAw LCBzaXplb2YgKnJvb3REaXIpOwogCWlmIChib290LT5mbGFncyAmIEZBVDMy KSB7CiAJCWlmIChib290LT5Sb290Q2wgPCBDTFVTVF9GSVJTVCB8fCBib290 LT5Sb290Q2wgPj0gYm9vdC0+TnVtQ2x1c3RlcnMpIHsKQEAgLTM2Nyw3ICsz NzIsOCBAQAogCQkJCXJldHVybiBGU0ZBVEFMOwogCQkJc3RhcnQgPSBidWZm ZXI7CiAJCX0KLQkJaWYgKGVuZGNsID09IGN1cmNsKQorCQkvKiBzdGFydGNs IGlzIDwgQ0xVU1RfRklSU1QgZm9yICFmYXQzMiByb290ICovCisJCWlmICgo ZW5kY2wgPT0gY3VyY2wpIHx8IChzdGFydGNsIDwgQ0xVU1RfRklSU1QpKQog CQkJZm9yICg7IHN0YXJ0IDwgZW5kOyBzdGFydCArPSAzMikKIAkJCQkqc3Rh cnQgPSBTTE9UX0RFTEVURUQ7CiAJCXJldHVybiBGU0RJUk1PRDsKQEAgLTM4 NSw3ICszOTEsNyBAQAogCS8qCiAJICogQ2hlY2sgc2l6ZSBvbiBvcmRpbmFy eSBmaWxlcwogCSAqLwotCWludDMyX3QgcGh5c2ljYWxTaXplOworCXVfaW50 MzJfdCBwaHlzaWNhbFNpemU7CiAKIAlpZiAoZGlyLT5oZWFkID09IENMVVNU X0ZSRUUpCiAJCXBoeXNpY2FsU2l6ZSA9IDA7CkBAIC02NDQsNyArNjUwLDgg QEAKIAkJCQlkaXJlbnQuaGVhZCB8PSAocFsyMF0gPDwgMTYpIHwgKHBbMjFd IDw8IDI0KTsKIAkJCWRpcmVudC5zaXplID0gcFsyOF0gfCAocFsyOV0gPDwg OCkgfCAocFszMF0gPDwgMTYpIHwgKHBbMzFdIDw8IDI0KTsKIAkJCWlmICh2 YWxsZm4pIHsKLQkJCQlzdHJjcHkoZGlyZW50LmxuYW1lLCBsb25nTmFtZSk7 CisJCQkJc3RybGNweShkaXJlbnQubG5hbWUsIGxvbmdOYW1lLAorCQkJCSAg ICBzaXplb2YoZGlyZW50LmxuYW1lKSk7CiAJCQkJbG9uZ05hbWVbMF0gPSAn XDAnOwogCQkJCXNob3J0U3VtID0gLTE7CiAJCQl9CkBAIC04MzIsNiArODM5 LDEwIEBACiAJCQl9CiAJCQlib290LT5OdW1GaWxlcysrOwogCQl9CisKKwkJ aWYgKCEoYm9vdC0+ZmxhZ3MgJiBGQVQzMikgJiYgIWRpci0+cGFyZW50KQor CQkJYnJlYWs7CisKIAkJaWYgKG1vZCAmIFRISVNNT0QpIHsKIAkJCWxhc3Qg Kj0gMzI7CiAJCQlpZiAobHNlZWsoZiwgb2ZmLCBTRUVLX1NFVCkgIT0gb2Zm CkBAIC04NDcsNiArODU4LDE5IEBACiAJCQkJaW52bGZuID8gaW52bGZuIDog dmFsbGZuLCBwLAogCQkJCWludmxmbiA/IGludmNsIDogdmFsY2wsIC0xLCAw LAogCQkJCWZ1bGxwYXRoKGRpciksIDEpOworCisJLyogVGhlIHJvb3QgZGly ZWN0b3J5IG9mIG5vbiBmYXQzMiBmaWxlc3lzdGVtcyBpcyBpbiBhIHNwZWNp YWwKKwkgKiBhcmVhIGFuZCBtYXkgaGF2ZSBiZWVuIG1vZGlmaWVkIGFib3Zl IHdpdGhvdXQgYmVpbmcgd3JpdHRlbiBvdXQuCisJICovCisJaWYgKChtb2Qg JiBGU0RJUk1PRCkgJiYgIShib290LT5mbGFncyAmIEZBVDMyKSAmJiAhZGly LT5wYXJlbnQpIHsKKwkJbGFzdCAqPSAzMjsKKwkJaWYgKGxzZWVrKGYsIG9m ZiwgU0VFS19TRVQpICE9IG9mZgorCQkgICAgfHwgd3JpdGUoZiwgYnVmZmVy LCBsYXN0KSAhPSBsYXN0KSB7CisJCQlwZXJyb3IoIlVuYWJsZSB0byB3cml0 ZSBkaXJlY3RvcnkiKTsKKwkJCXJldHVybiBGU0ZBVEFMOworCQl9CisJCW1v ZCAmPSB+VEhJU01PRDsKKwl9CiAJcmV0dXJuIG1vZCAmIH5USElTTU9EOwog fQogCkBAIC05MzYsNyArOTYwLDcgQEAKIAkJbGZvZmYgPSBsZmNsICogYm9v dC0+Q2x1c3RlclNpemUKIAkJICAgICsgYm9vdC0+Q2x1c3Rlck9mZnNldCAq IGJvb3QtPkJ5dGVzUGVyU2VjOwogCQlpZiAobHNlZWsoZG9zZnMsIGxmb2Zm LCBTRUVLX1NFVCkgIT0gbGZvZmYKLQkJICAgIHx8IHJlYWQoZG9zZnMsIGxm YnVmLCBib290LT5DbHVzdGVyU2l6ZSkgIT0gYm9vdC0+Q2x1c3RlclNpemUp IHsKKwkJICAgIHx8IChzaXplX3QpcmVhZChkb3NmcywgbGZidWYsIGJvb3Qt PkNsdXN0ZXJTaXplKSAhPSBib290LT5DbHVzdGVyU2l6ZSkgewogCQkJcGVy cm9yKCJjb3VsZCBub3QgcmVhZCBMT1NULkRJUiIpOwogCQkJcmV0dXJuIEZT RkFUQUw7CiAJCX0KQEAgLTk2Niw3ICs5OTAsNyBAQAogCXBbMzFdID0gKHVf Y2hhcikoZC5zaXplID4+IDI0KTsKIAlmYXRbaGVhZF0uZmxhZ3MgfD0gRkFU X1VTRUQ7CiAJaWYgKGxzZWVrKGRvc2ZzLCBsZm9mZiwgU0VFS19TRVQpICE9 IGxmb2ZmCi0JICAgIHx8IHdyaXRlKGRvc2ZzLCBsZmJ1ZiwgYm9vdC0+Q2x1 c3RlclNpemUpICE9IGJvb3QtPkNsdXN0ZXJTaXplKSB7CisJICAgIHx8IChz aXplX3Qpd3JpdGUoZG9zZnMsIGxmYnVmLCBib290LT5DbHVzdGVyU2l6ZSkg IT0gYm9vdC0+Q2x1c3RlclNpemUpIHsKIAkJcGVycm9yKCJjb3VsZCBub3Qg d3JpdGUgTE9TVC5ESVIiKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQpkaWZm IC1ydSBmc2NrX21zZG9zZnMub3JpZy9kb3Nmcy5oIGZzY2tfbXNkb3Nmcy9k b3Nmcy5oCi0tLSBmc2NrX21zZG9zZnMub3JpZy9kb3Nmcy5oCTIwMTAtMDEt MDYgMTE6MDc6MjQuMDAwMDAwMDAwICswMDAwCisrKyBmc2NrX21zZG9zZnMv ZG9zZnMuaAkyMDEwLTAxLTA2IDE1OjQ2OjQ1LjAwMDAwMDAwMCArMDAwMApA QCAtMTIsMTMgKzEyLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBi aW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0 CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0 aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVu dGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0 aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5nIG1hdGVy aWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3 YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3ds ZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUg ZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdvbGZnYW5n IFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5p dmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLSAq ICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0 cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0aG91dCBz cGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgogICogVEhJ UyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBgYEFTIElT JycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMs IElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1QTElFRCBX QVJSQU5USUVTCmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2V4dC5oIGZz Y2tfbXNkb3Nmcy9leHQuaAotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZXh0LmgJ MjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tf bXNkb3Nmcy9leHQuaAkyMDEwLTAxLTA2IDE2OjE1OjM1LjAwMDAwMDAwMCAr MDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC04Miw3ICs3NSw3IEBACiAjZGVmaW5lIEZT RklYRkFUCTY0CQkvKiBGaXggZmlsZSBzeXN0ZW0gRkFUICovCiAKIC8qCi0g KiByZWFkIGEgYm9vdCBibG9jayBpbiBhIG1hY2hpbmUgaW5kZXBlbmRlbmQg ZmFzaGlvbiBhbmQgdHJhbnNsYXRlCisgKiByZWFkIGEgYm9vdCBibG9jayBp biBhIG1hY2hpbmUgaW5kZXBlbmRlbnQgZmFzaGlvbiBhbmQgdHJhbnNsYXRl CiAgKiBpdCBpbnRvIG91ciBzdHJ1Y3QgYm9vdGJsb2NrLgogICovCiBpbnQg cmVhZGJvb3QoaW50LCBzdHJ1Y3QgYm9vdGJsb2NrICopOwpAQCAtOTYsMTMg Kzg5LDEzIEBACiAgKiBSZWFkIG9uZSBvZiB0aGUgRkFUIGNvcGllcyBhbmQg cmV0dXJuIGEgcG9pbnRlciB0byB0aGUgbmV3CiAgKiBhbGxvY2F0ZWQgYXJy YXkgaG9sZGluZyBvdXIgZGVzY3JpcHRpb24gb2YgaXQuCiAgKi8KLWludCBy ZWFkZmF0KGludCwgc3RydWN0IGJvb3RibG9jayAqLCBpbnQsIHN0cnVjdCBm YXRFbnRyeSAqKik7CitpbnQgcmVhZGZhdChpbnQsIHN0cnVjdCBib290Ymxv Y2sgKiwgdV9pbnQsIHN0cnVjdCBmYXRFbnRyeSAqKik7CiAKIC8qCiAgKiBD aGVjayB0d28gRkFUIGNvcGllcyBmb3IgY29uc2lzdGVuY3kgYW5kIG1lcmdl IGNoYW5nZXMgaW50byB0aGUKICAqIGZpcnN0IGlmIG5lY2Nlc3NhcnkuCiAg Ki8KLWludCBjb21wYXJlZmF0KHN0cnVjdCBib290YmxvY2sgKiwgc3RydWN0 IGZhdEVudHJ5ICosIHN0cnVjdCBmYXRFbnRyeSAqLCBpbnQpOworaW50IGNv bXBhcmVmYXQoc3RydWN0IGJvb3RibG9jayAqLCBzdHJ1Y3QgZmF0RW50cnkg Kiwgc3RydWN0IGZhdEVudHJ5ICosIHVfaW50KTsKIAogLyoKICAqIENoZWNr IGEgRkFUCmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2ZhdC5jIGZzY2tf bXNkb3Nmcy9mYXQuYwotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZmF0LmMJMjAx MC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tfbXNk b3Nmcy9mYXQuYwkyMDEwLTAxLTA2IDE2OjI1OjIzLjAwMDAwMDAwMCArMDAw MApAQCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9ucyBp biBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29weXJp Z2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFu ZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBkb2N1 bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0 aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5nIG1h dGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlzIHNv ZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tu b3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29mdHdh cmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdvbGZn YW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUg VW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMK LSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBwcm9k dWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0aG91 dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgogICog VEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBgYEFT IElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJBTlRJ RVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1QTElF RCBXQVJSQU5USUVTCkBAIC00NywxMCArNDAsMTAgQEAKICNpbmNsdWRlICJl eHQuaCIKICNpbmNsdWRlICJmc3V0aWwuaCIKIAotc3RhdGljIGludCBjaGVj a2NsbnVtKHN0cnVjdCBib290YmxvY2sgKiwgaW50LCBjbF90LCBjbF90ICop Owotc3RhdGljIGludCBjbHVzdGRpZmZlcihjbF90LCBjbF90ICosIGNsX3Qg KiwgaW50KTsKK3N0YXRpYyBpbnQgY2hlY2tjbG51bShzdHJ1Y3QgYm9vdGJs b2NrICosIHVfaW50LCBjbF90LCBjbF90ICopOworc3RhdGljIGludCBjbHVz dGRpZmZlcihjbF90LCBjbF90ICosIGNsX3QgKiwgdV9pbnQpOwogc3RhdGlj IGludCB0cnljbGVhcihzdHJ1Y3QgYm9vdGJsb2NrICosIHN0cnVjdCBmYXRF bnRyeSAqLCBjbF90LCBjbF90ICopOwotc3RhdGljIGludCBfcmVhZGZhdChp bnQsIHN0cnVjdCBib290YmxvY2sgKiwgaW50LCB1X2NoYXIgKiopOworc3Rh dGljIGludCBfcmVhZGZhdChpbnQsIHN0cnVjdCBib290YmxvY2sgKiwgdV9p bnQsIHVfY2hhciAqKik7CiAKIC8qLQogICogVGhlIGZpcnN0IDIgRkFUIGVu dHJpZXMgY29udGFpbiBwc2V1ZG8tY2x1c3RlciBudW1iZXJzIHdpdGggdGhl IGZvbGxvd2luZwpAQCAtMTM1LDcgKzEyOCw3IEBACiAgKiBDaGVjayBhIGNs dXN0ZXIgbnVtYmVyIGZvciB2YWxpZCB2YWx1ZQogICovCiBzdGF0aWMgaW50 Ci1jaGVja2NsbnVtKHN0cnVjdCBib290YmxvY2sgKmJvb3QsIGludCBmYXQs IGNsX3QgY2wsIGNsX3QgKm5leHQpCitjaGVja2NsbnVtKHN0cnVjdCBib290 YmxvY2sgKmJvb3QsIHVfaW50IGZhdCwgY2xfdCBjbCwgY2xfdCAqbmV4dCkK IHsKIAlpZiAoKm5leHQgPj0gKENMVVNUX1JTUlZEJmJvb3QtPkNsdXN0TWFz aykpCiAJCSpuZXh0IHw9IH5ib290LT5DbHVzdE1hc2s7CkBAIC0xNjYsNyAr MTU5LDcgQEAKICAqIFJlYWQgYSBGQVQgZnJvbSBkaXNrLiBSZXR1cm5zIDEg aWYgc3VjY2Vzc2Z1bCwgMCBvdGhlcndpc2UuCiAgKi8KIHN0YXRpYyBpbnQK LV9yZWFkZmF0KGludCBmcywgc3RydWN0IGJvb3RibG9jayAqYm9vdCwgaW50 IG5vLCB1X2NoYXIgKipidWZmZXIpCitfcmVhZGZhdChpbnQgZnMsIHN0cnVj dCBib290YmxvY2sgKmJvb3QsIHVfaW50IG5vLCB1X2NoYXIgKipidWZmZXIp CiB7CiAJb2ZmX3Qgb2ZmOwogCkBAIC0xODQsNyArMTc3LDcgQEAKIAkJZ290 byBlcnI7CiAJfQogCi0JaWYgKHJlYWQoZnMsICpidWZmZXIsIGJvb3QtPkZB VHNlY3MgKiBib290LT5CeXRlc1BlclNlYykKKwlpZiAoKHNpemVfdClyZWFk KGZzLCAqYnVmZmVyLCBib290LT5GQVRzZWNzICogYm9vdC0+Qnl0ZXNQZXJT ZWMpCiAJICAgICE9IGJvb3QtPkZBVHNlY3MgKiBib290LT5CeXRlc1BlclNl YykgewogCQlwZXJyb3IoIlVuYWJsZSB0byByZWFkIEZBVCIpOwogCQlnb3Rv IGVycjsKQEAgLTIwMSwyNCArMTk0LDI2IEBACiAgKiBSZWFkIGEgRkFUIGFu ZCBkZWNvZGUgaXQgaW50byBpbnRlcm5hbCBmb3JtYXQKICAqLwogaW50Ci1y ZWFkZmF0KGludCBmcywgc3RydWN0IGJvb3RibG9jayAqYm9vdCwgaW50IG5v LCBzdHJ1Y3QgZmF0RW50cnkgKipmcCkKK3JlYWRmYXQoaW50IGZzLCBzdHJ1 Y3QgYm9vdGJsb2NrICpib290LCB1X2ludCBubywgc3RydWN0IGZhdEVudHJ5 ICoqZnApCiB7CiAJc3RydWN0IGZhdEVudHJ5ICpmYXQ7CiAJdV9jaGFyICpi dWZmZXIsICpwOwogCWNsX3QgY2w7CiAJaW50IHJldCA9IEZTT0s7CisJc2l6 ZV90IGxlbjsKIAogCWJvb3QtPk51bUZyZWUgPSBib290LT5OdW1CYWQgPSAw OwogCiAJaWYgKCFfcmVhZGZhdChmcywgYm9vdCwgbm8sICZidWZmZXIpKQog CQlyZXR1cm4gRlNGQVRBTDsKIAkJCi0JZmF0ID0gY2FsbG9jKGJvb3QtPk51 bUNsdXN0ZXJzLCBzaXplb2Yoc3RydWN0IGZhdEVudHJ5KSk7CisJZmF0ID0g bWFsbG9jKGxlbiA9IGJvb3QtPk51bUNsdXN0ZXJzICogc2l6ZW9mKHN0cnVj dCBmYXRFbnRyeSkpOwogCWlmIChmYXQgPT0gTlVMTCkgewogCQlwZXJyb3Io Ik5vIHNwYWNlIGZvciBGQVQiKTsKIAkJZnJlZShidWZmZXIpOwogCQlyZXR1 cm4gRlNGQVRBTDsKIAl9CisJKHZvaWQpbWVtc2V0KGZhdCwgMCwgbGVuKTsK IAogCWlmIChidWZmZXJbMF0gIT0gYm9vdC0+TWVkaWEKIAkgICAgfHwgYnVm ZmVyWzFdICE9IDB4ZmYgfHwgYnVmZmVyWzJdICE9IDB4ZmYKQEAgLTMzMSw3 ICszMjYsNyBAQAogfQogCiBzdGF0aWMgaW50Ci1jbHVzdGRpZmZlcihjbF90 IGNsLCBjbF90ICpjcDEsIGNsX3QgKmNwMiwgaW50IGZhdG51bSkKK2NsdXN0 ZGlmZmVyKGNsX3QgY2wsIGNsX3QgKmNwMSwgY2xfdCAqY3AyLCB1X2ludCBm YXRudW0pCiB7CiAJaWYgKCpjcDEgPT0gQ0xVU1RfRlJFRSB8fCAqY3AxID49 IENMVVNUX1JTUlZEKSB7CiAJCWlmICgqY3AyID09IENMVVNUX0ZSRUUgfHwg KmNwMiA+PSBDTFVTVF9SU1JWRCkgewpAQCAtMzQ2LDEzICszNDEsMTMgQEAK IAkJCQl9CiAJCQkJcmV0dXJuIEZTRkFUQUw7CiAJCQl9Ci0JCQlwd2Fybigi Q2x1c3RlciAldSBpcyBtYXJrZWQgJXMgaW4gRkFUIDAsICVzIGluIEZBVCAl ZFxuIiwKKwkJCXB3YXJuKCJDbHVzdGVyICV1IGlzIG1hcmtlZCAlcyBpbiBG QVQgMCwgJXMgaW4gRkFUICV1XG4iLAogCQkJICAgICAgY2wsIHJzcnZkY2x0 eXBlKCpjcDEpLCByc3J2ZGNsdHlwZSgqY3AyKSwgZmF0bnVtKTsKIAkJCWlm IChhc2soMCwgIlVzZSBGQVQgMCdzIGVudHJ5IikpIHsKIAkJCQkqY3AyID0g KmNwMTsKIAkJCQlyZXR1cm4gRlNGQVRNT0Q7CiAJCQl9Ci0JCQlpZiAoYXNr KDAsICJVc2UgRkFUICVkJ3MgZW50cnkiLCBmYXRudW0pKSB7CisJCQlpZiAo YXNrKDAsICJVc2UgRkFUICV1J3MgZW50cnkiLCBmYXRudW0pKSB7CiAJCQkJ KmNwMSA9ICpjcDI7CiAJCQkJcmV0dXJuIEZTRkFUTU9EOwogCQkJfQpAQCAt MzYwLDcgKzM1NSw3IEBACiAJCX0KIAkJcHdhcm4oIkNsdXN0ZXIgJXUgaXMg bWFya2VkICVzIGluIEZBVCAwLCBidXQgY29udGludWVzIHdpdGggY2x1c3Rl ciAldSBpbiBGQVQgJWRcbiIsCiAJCSAgICAgIGNsLCByc3J2ZGNsdHlwZSgq Y3AxKSwgKmNwMiwgZmF0bnVtKTsKLQkJaWYgKGFzaygwLCAiVXNlIGNvbnRp bnVhdGlvbiBmcm9tIEZBVCAlZCIsIGZhdG51bSkpIHsKKwkJaWYgKGFzaygw LCAiVXNlIGNvbnRpbnVhdGlvbiBmcm9tIEZBVCAldSIsIGZhdG51bSkpIHsK IAkJCSpjcDEgPSAqY3AyOwogCQkJcmV0dXJuIEZTRkFUTU9EOwogCQl9CkBA IC0zNzEsNyArMzY2LDcgQEAKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQogCWlm ICgqY3AyID09IENMVVNUX0ZSRUUgfHwgKmNwMiA+PSBDTFVTVF9SU1JWRCkg ewotCQlwd2FybigiQ2x1c3RlciAldSBjb250aW51ZXMgd2l0aCBjbHVzdGVy ICV1IGluIEZBVCAwLCBidXQgaXMgbWFya2VkICVzIGluIEZBVCAlZFxuIiwK KwkJcHdhcm4oIkNsdXN0ZXIgJXUgY29udGludWVzIHdpdGggY2x1c3RlciAl dSBpbiBGQVQgMCwgYnV0IGlzIG1hcmtlZCAlcyBpbiBGQVQgJXVcbiIsCiAJ CSAgICAgIGNsLCAqY3AxLCByc3J2ZGNsdHlwZSgqY3AyKSwgZmF0bnVtKTsK IAkJaWYgKGFzaygwLCAiVXNlIGNvbnRpbnVhdGlvbiBmcm9tIEZBVCAwIikp IHsKIAkJCSpjcDIgPSAqY3AxOwpAQCAtMzgzLDEzICszNzgsMTMgQEAKIAkJ fQogCQlyZXR1cm4gRlNFUlJPUjsKIAl9Ci0JcHdhcm4oIkNsdXN0ZXIgJXUg Y29udGludWVzIHdpdGggY2x1c3RlciAldSBpbiBGQVQgMCwgYnV0IHdpdGgg Y2x1c3RlciAldSBpbiBGQVQgJWRcbiIsCisJcHdhcm4oIkNsdXN0ZXIgJXUg Y29udGludWVzIHdpdGggY2x1c3RlciAldSBpbiBGQVQgMCwgYnV0IHdpdGgg Y2x1c3RlciAldSBpbiBGQVQgJXVcbiIsCiAJICAgICAgY2wsICpjcDEsICpj cDIsIGZhdG51bSk7CiAJaWYgKGFzaygwLCAiVXNlIGNvbnRpbnVhdGlvbiBm cm9tIEZBVCAwIikpIHsKIAkJKmNwMiA9ICpjcDE7CiAJCXJldHVybiBGU0ZB VE1PRDsKIAl9Ci0JaWYgKGFzaygwLCAiVXNlIGNvbnRpbnVhdGlvbiBmcm9t IEZBVCAlZCIsIGZhdG51bSkpIHsKKwlpZiAoYXNrKDAsICJVc2UgY29udGlu dWF0aW9uIGZyb20gRkFUICV1IiwgZmF0bnVtKSkgewogCQkqY3AxID0gKmNw MjsKIAkJcmV0dXJuIEZTRkFUTU9EOwogCX0KQEAgLTQwMSw4ICszOTYsOCBA QAogICogaW50byB0aGUgZmlyc3Qgb25lLgogICovCiBpbnQKLWNvbXBhcmVm YXQoc3RydWN0IGJvb3RibG9jayAqYm9vdCwgc3RydWN0IGZhdEVudHJ5ICpm aXJzdCwgCi0gICAgc3RydWN0IGZhdEVudHJ5ICpzZWNvbmQsIGludCBmYXRu dW0pCitjb21wYXJlZmF0KHN0cnVjdCBib290YmxvY2sgKmJvb3QsIHN0cnVj dCBmYXRFbnRyeSAqZmlyc3QsCisgICAgc3RydWN0IGZhdEVudHJ5ICpzZWNv bmQsIHVfaW50IGZhdG51bSkKIHsKIAljbF90IGNsOwogCWludCByZXQgPSBG U09LOwpAQCAtNTQyLDggKzUzNyw4IEBACiB7CiAJdV9jaGFyICpidWZmZXIs ICpwOwogCWNsX3QgY2w7Ci0JaW50IGk7Ci0JdV9pbnQzMl90IGZhdHN6Owor CXVfaW50IGk7CisJc2l6ZV90IGZhdHN6OwogCW9mZl90IG9mZjsKIAlpbnQg cmV0ID0gRlNPSzsKIApAQCAtNjMzLDcgKzYyOCw3IEBACiAJCW9mZiA9IGJv b3QtPlJlc1NlY3RvcnMgKyBpICogYm9vdC0+RkFUc2VjczsKIAkJb2ZmICo9 IGJvb3QtPkJ5dGVzUGVyU2VjOwogCQlpZiAobHNlZWsoZnMsIG9mZiwgU0VF S19TRVQpICE9IG9mZgotCQkgICAgfHwgd3JpdGUoZnMsIGJ1ZmZlciwgZmF0 c3opICE9IGZhdHN6KSB7CisJCSAgICB8fCAoc2l6ZV90KXdyaXRlKGZzLCBi dWZmZXIsIGZhdHN6KSAhPSBmYXRzeikgewogCQkJcGVycm9yKCJVbmFibGUg dG8gd3JpdGUgRkFUIik7CiAJCQlyZXQgPSBGU0ZBVEFMOyAvKiBSZXR1cm4g aW1tZWRpYXRlbHk/CQlYWFggKi8KIAkJfQpAQCAtNjgzLDkgKzY3OCwxMCBA QAogCQkJCXJldCA9IDE7CiAJCQl9CiAJCX0KLQkJaWYgKGJvb3QtPk51bUZy ZWUgJiYgZmF0W2Jvb3QtPkZTTmV4dF0ubmV4dCAhPSBDTFVTVF9GUkVFKSB7 Ci0JCQlwd2FybigiTmV4dCBmcmVlIGNsdXN0ZXIgaW4gRlNJbmZvIGJsb2Nr ICgldSkgbm90IGZyZWVcbiIsCi0JCQkgICAgICBib290LT5GU05leHQpOwor CQlpZiAoYm9vdC0+RlNOZXh0ID49IGJvb3QtPk51bUNsdXN0ZXJzIHx8IChi b290LT5OdW1GcmVlICYmIGZhdFtib290LT5GU05leHRdLm5leHQgIT0gQ0xV U1RfRlJFRSkpIHsKKwkJCXB3YXJuKCJOZXh0IGZyZWUgY2x1c3RlciBpbiBG U0luZm8gYmxvY2sgKCV1KSAlc1xuIiwKKwkJCSAgICAgIGJvb3QtPkZTTmV4 dCwKKwkJCSAgICAgIChib290LT5GU05leHQgPj0gYm9vdC0+TnVtQ2x1c3Rl cnMpID8gImludmFsaWQiIDogIm5vdCBmcmVlIik7CiAJCQlpZiAoYXNrKDEs ICJGaXgiKSkKIAkJCQlmb3IgKGhlYWQgPSBDTFVTVF9GSVJTVDsgaGVhZCA8 IGJvb3QtPk51bUNsdXN0ZXJzOyBoZWFkKyspCiAJCQkJCWlmIChmYXRbaGVh ZF0ubmV4dCA9PSBDTFVTVF9GUkVFKSB7CmRpZmYgLXJ1IGZzY2tfbXNkb3Nm cy5vcmlnL2ZzY2tfbXNkb3Nmcy44IGZzY2tfbXNkb3Nmcy9mc2NrX21zZG9z ZnMuOAotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZnNja19tc2Rvc2ZzLjgJMjAx MC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tfbXNk b3Nmcy9mc2NrX21zZG9zZnMuOAkyMDEwLTAxLTA2IDE2OjAzOjI5LjAwMDAw MDAwMCArMDAwMApAQCAtMTEsMTMgKzExLDYgQEAKIC5cIiAyLiBSZWRpc3Ry aWJ1dGlvbnMgaW4gYmluYXJ5IGZvcm0gbXVzdCByZXByb2R1Y2UgdGhlIGFi b3ZlIGNvcHlyaWdodAogLlwiICAgIG5vdGljZSwgdGhpcyBsaXN0IG9mIGNv bmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBpbiB0aGUK IC5cIiAgICBkb2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMg cHJvdmlkZWQgd2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotLlwiIDMuIEFsbCBh ZHZlcnRpc2luZyBtYXRlcmlhbHMgbWVudGlvbmluZyBmZWF0dXJlcyBvciB1 c2Ugb2YgdGhpcyBzb2Z0d2FyZQotLlwiICAgIG11c3QgZGlzcGxheSB0aGUg Zm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLS5cIglUaGlzIHByb2R1Y3Qg aW5jbHVkZXMgc29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFu bgotLlwiCWFuZCBXb2xmZ2FuZyBTb2xmcmFuay4KLS5cIiA0LiBOZWl0aGVy IHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2Yg aXRzIGNvbnRyaWJ1dG9ycwotLlwiICAgIG1heSBiZSB1c2VkIHRvIGVuZG9y c2Ugb3IgcHJvbW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0 d2FyZQotLlwiICAgIHdpdGhvdXQgc3BlY2lmaWMgcHJpb3Igd3JpdHRlbiBw ZXJtaXNzaW9uLgogLlwiCiAuXCIgVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURF RCBCWSBUSEUgQVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9S CiAuXCIgSU1QTElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1Qg TElNSVRFRCBUTywgVEhFIElNUExJRUQgV0FSUkFOVElFUwpkaWZmIC1ydSBm c2NrX21zZG9zZnMub3JpZy9tYWluLmMgZnNja19tc2Rvc2ZzL21haW4uYwot LS0gZnNja19tc2Rvc2ZzLm9yaWcvbWFpbi5jCTIwMTAtMDEtMDYgMTE6MDc6 MjQuMDAwMDAwMDAwICswMDAwCisrKyBmc2NrX21zZG9zZnMvbWFpbi5jCTIw MTAtMDEtMDYgMTY6MDI6NTQuMDAwMDAwMDAwICswMDAwCkBAIC0xMCwxMyAr MTAsNiBAQAogICogMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3Jt IG11c3QgcmVwcm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5v dGljZSwgdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dp bmcgZGlzY2xhaW1lciBpbiB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5k L29yIG90aGVyIG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmli dXRpb24uCi0gKiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRp b25pbmcgZmVhdHVyZXMgb3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAg IG11c3QgZGlzcGxheSB0aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoK LSAqCVRoaXMgcHJvZHVjdCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQg YnkgTWFydGluIEh1c2VtYW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsu Ci0gKiA0LiBOZWl0aGVyIHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5v ciB0aGUgbmFtZXMgb2YgaXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJl IHVzZWQgdG8gZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQg ZnJvbSB0aGlzIHNvZnR3YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHBy aW9yIHdyaXR0ZW4gcGVybWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJF IElTIFBST1ZJREVEIEJZIFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5Z IEVYUFJFU1MgT1IKICAqIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5H LCBCVVQgTk9UIExJTUlURUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMK QEAgLTQwLDcgKzMzLDYgQEAKIAogI2luY2x1ZGUgPHN0ZGxpYi5oPgogI2lu Y2x1ZGUgPHN0cmluZy5oPgotI2luY2x1ZGUgPGN0eXBlLmg+CiAjaW5jbHVk ZSA8c3RkaW8uaD4KICNpbmNsdWRlIDx1bmlzdGQuaD4KICNpbmNsdWRlIDxl cnJuby5oPgo= --0-365583171-1262813495=:15260-- From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 22:20:02 2010 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 35C4F106568F for ; Wed, 6 Jan 2010 22:20:02 +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 EE8388FC1C for ; Wed, 6 Jan 2010 22:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06MK1u3054598 for ; Wed, 6 Jan 2010 22:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06MK16R054597; Wed, 6 Jan 2010 22:20:01 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jan 2010 22:20:01 GMT Resent-Message-Id: <201001062220.o06MK16R054597@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, Erich Enke Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 367AF106566B for ; Wed, 6 Jan 2010 22:13:50 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 25B9D8FC14 for ; Wed, 6 Jan 2010 22:13:50 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o06MDnSo029043 for ; Wed, 6 Jan 2010 22:13:49 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o06MDnPf029042; Wed, 6 Jan 2010 22:13:49 GMT (envelope-from nobody) Message-Id: <201001062213.o06MDnPf029042@www.freebsd.org> Date: Wed, 6 Jan 2010 22:13:49 GMT From: Erich Enke To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/142390: 30th console switch hangs computer completely, no panic X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 22:20:02 -0000 >Number: 142390 >Category: kern >Synopsis: 30th console switch hangs computer completely, no panic >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jan 06 22:20:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Erich Enke >Release: 7.2_RELEASE >Organization: >Environment: FreeBSD hotsoup 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fir May 1 08:49:13 UTC 2009 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: I just installed FREEBSD 7.2 RELEASE on this thing yesterday. I've compiled and installed xorg, plus a few other programs, but other than that, it's vanilla. At first it seemed that it was hanging when shutting down Xorg, or switching from Xorg, until I ran the simple test below, several times. EVERY SINGLE TIME I boot, I can switch consoles 29 times, but the 30th time hangs my machine utterly. It doesn't respond to ping or ssh. Unplugging and replugging in my keyboard has no effect. There is no kernel panic. There's nothing in /var/log/messages about the hang. I can't use 8.0 RELEASE yet, because of the rum0 issues. rum0 works fine for me on 7.2, but has link timeouts in 8.0, so upgrading is not an option for me. >How-To-Repeat: 1) Freshly boot computer, no x environment 2) Switch to a different console. Repeat. It doesn't matter the order. Pick any of the virtual consoles to switch to. Pressing the key for the console you're on doesn't count. It has to switch the console. 3) On the 29th switch, it still works. You can input with the keyboard and such. 4) The 30th time you try to switch consoles, the block cursor disappears, but the screen doesn't actually switch. >Fix: I'm not sure where to begin in debugging this problem. It is 100% reproducible, though, and I'd be surprised if a significant number of other people out there don't have this issue. I'm pretty experienced in various linuxes and NetBSD, but I'm fairly new to FreeBSD. Programmer by profession, though, and I'm willing to help. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 23:00:11 2010 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 A7B681065694 for ; Wed, 6 Jan 2010 23:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7D3428FC28 for ; Wed, 6 Jan 2010 23:00:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06N0BaK089278 for ; Wed, 6 Jan 2010 23:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06N0BN8089277; Wed, 6 Jan 2010 23:00:11 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jan 2010 23:00:11 GMT Resent-Message-Id: <201001062300.o06N0BN8089277@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, Michael Moll Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 952C81065679 for ; Wed, 6 Jan 2010 22:51:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 843B58FC08 for ; Wed, 6 Jan 2010 22:51:06 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o06Mp5BA053989 for ; Wed, 6 Jan 2010 22:51:05 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o06Mp5Mc053988; Wed, 6 Jan 2010 22:51:05 GMT (envelope-from nobody) Message-Id: <201001062251.o06Mp5Mc053988@www.freebsd.org> Date: Wed, 6 Jan 2010 22:51:05 GMT From: Michael Moll To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/142391: bsnmpd triggers kernel panic when a second cloned WLAN interface was created before starting X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 23:00:11 -0000 >Number: 142391 >Category: kern >Synopsis: bsnmpd triggers kernel panic when a second cloned WLAN interface was created before starting >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jan 06 23:00:11 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Michael Moll >Release: 8.0-RELEASE >Organization: >Environment: FreeBSD geode.kvedulv.de 8.0-RELEASE-p1 FreeBSD 8.0-RELEASE-p1 #0: Wed Jan 6 23:12:22 CET 2010 root@buildhost.kvedulv.de:/usr/obj/usr/src/sys/GEODE_DB i386 >Description: I use following rc.conf entries to create a wlan0 interface: wlans_ath0="wlan0" create_args_wlan0="wlanmode hostap mode 11g country DE channel 3 ssid Kvedulv" ifconfig_wlan0="inet 192.168.201.1 netmask 255.255.255.0" ipv6_ifconfig_wlan0="2001:6f8:12f2:2::1/64" bsnmpd is running perfectly with this config. Now let's add a second VAP: root@geode # ifconfig wlan1 create wlandev ath0 wlanmode hostap bssid mode 11g country DE channel 3 ssid IPV6 ifconfig: SIOCS80211: Device busy root@geode # ifconfig wlan1 inet6 2001:6f8:12f2:3::1/64 root@geode # ifconfig wlan1 up root@geode # ifconfig wlan1 wlan1: flags=8843 metric 0 mtu 1500 ether 06:0b:6b:81:d4:5b inet6 2001:6f8:12f2:3::1 prefixlen 64 inet6 fe80::40b:6bff:fe81:d45b%wlan1 prefixlen 64 scopeid 0xb media: IEEE 802.11 Wireless Ethernet autoselect mode 11g status: running ssid IPV6 channel 3 (2422 Mhz 11g) bssid 06:0b:6b:81:d4:5b regdomain ETSI country DE ecm authmode OPEN privacy OFF txpower 30 scanvalid 60 protmode CTS wme burst dtimperiod 1 -dfs Everything OK, until (re)starting bsnmpd: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x44 fault code = supervisor read, page not present instruction pointer = 0x20:0xc05c9479 stack pointer = 0x28:0xcd0e4afc frame pointer = 0x28:0xcd0e4b6c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 1721 (bsnmpd) [thread pid 1721 tid 100082 ] Stopped at sysctl_rtsock+0x4f9: movl 0x44(%eax),%eax db> bt Tracing pid 1721 tid 100082 td 0xc24e86c0 sysctl_rtsock(c07f60e0,cd0e4c20,4,cd0e4bac,6,...) at sysctl_rtsock+0x4f9 sysctl_root(cd0e4bac,c24e86c0,1,0,0,...) at sysctl_root+0xc7 userland_sysctl(c24e86c0,cd0e4c18,6,0,bfbfc558,0,0,0,cd0e4c78,0) at userland_sysctl+0x126 __sysctl(c24e86c0,cd0e4cf8,c07e4c78,c24e86c0,297,...) at __sysctl+0x63 syscall(cd0e4d38) at syscall+0x194 Xint0x80_syscall() at Xint0x80_syscall+0x20 --- syscall (202, FreeBSD ELF32, __sysctl), eip = 0x281a5177, esp = 0xbfbfc48c, ebp = 0xbfbfc4c8 --- >How-To-Repeat: See example commands in the problem description >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 6 23:00:12 2010 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 064621065696 for ; Wed, 6 Jan 2010 23:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CD0938FC2C for ; Wed, 6 Jan 2010 23:00:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o06N0Btl089287 for ; Wed, 6 Jan 2010 23:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o06N0BEN089286; Wed, 6 Jan 2010 23:00:11 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jan 2010 23:00:11 GMT Resent-Message-Id: <201001062300.o06N0BEN089286@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, Michael Moll Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B78610656AD for ; Wed, 6 Jan 2010 22:58:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 1AEB18FC15 for ; Wed, 6 Jan 2010 22:58:05 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o06Mw4Ib064803 for ; Wed, 6 Jan 2010 22:58:04 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o06Mw4KO064802; Wed, 6 Jan 2010 22:58:04 GMT (envelope-from nobody) Message-Id: <201001062258.o06Mw4KO064802@www.freebsd.org> Date: Wed, 6 Jan 2010 22:58:04 GMT From: Michael Moll To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/142392: rtadvd triggers kernel panic when started for a hardware WLAN interface X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2010 23:00:12 -0000 >Number: 142392 >Category: kern >Synopsis: rtadvd triggers kernel panic when started for a hardware WLAN interface >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jan 06 23:00:11 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Michael Moll >Release: 8.0-RELEASE >Organization: >Environment: FreeBSD geode.kvedulv.de 8.0-RELEASE-p1 FreeBSD 8.0-RELEASE-p1 #0: Wed Jan 6 23:12:22 CET 2010 root@buildhost.kvedulv.de:/usr/obj/usr/src/sys/GEODE_DB i386 >Description: When upgrading from 7.2 to 8.0 I experienced a panic, before changing the interface for rtadvd from ath0 to wlan0: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x8 fault code = supervisor read, page not present instruction pointer = 0x20:0xc0776c20 stack pointer = 0x28:0xcd0f9064 frame pointer = 0x28:0xcd0f90dc code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 1662 (rtadvd) [thread pid 1662 tid 100084 ] Stopped at bcmp+0x14: repe cmpsl (%esi),%es:(%edi) db> bt Tracing pid 1662 tid 100084 td 0xc24ac240 bcmp(c20b2800,cd0f9178,c24cc400,cd0f9168,0) at bcmp+0x14 ip6_setmoptions(c23e1e9c) at ip6_setmoptions+0xb3d ip6_ctloutput(c24d0000) at ip6_ctloutput+0x55c sosetopt(c24d0000,cd0f9c44,1,29,c,...) at sosetopt+0x2a kern_setsockopt(c24ac240,4,29,c,bfbfece0,...) at kern_setsockopt+0x99 setsockopt(c24ac240,cd0f9cf8,c07e41dc,c24ac240,292,...) at setsockopt+0x1e syscall(cd0f9d38) at syscall+0x194 Xint0x80_syscall() at Xint0x80_syscall+0x20 --- syscall (105, FreeBSD ELF32, setsockopt), eip = 0x281363b7, esp = 0xbfbfe41c, ebp = 0xbfbfed08 --- When using wlan0 as interface everything is fine, but this may bite other people when upgrading to 8. >How-To-Repeat: I can easily reproduce this with "rtadvd ath0". >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 00:07:26 2010 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 9E0BC106566C; Thu, 7 Jan 2010 00:07:26 +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 757158FC1E; Thu, 7 Jan 2010 00:07:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o0707QRH049208; Thu, 7 Jan 2010 00:07:26 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o0707QOh049204; Thu, 7 Jan 2010 00:07:26 GMT (envelope-from linimon) Date: Thu, 7 Jan 2010 00:07:26 GMT Message-Id: <201001070007.o0707QOh049204@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/142391: [panic] bsnmpd(8) triggers kernel panic when a second cloned WLAN interface was created before starting X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 00:07:26 -0000 Old Synopsis: bsnmpd triggers kernel panic when a second cloned WLAN interface was created before starting New Synopsis: [panic] bsnmpd(8) triggers kernel panic when a second cloned WLAN interface was created before starting Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 7 00:06:58 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=142391 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 00:08:54 2010 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 1F06A106568F; Thu, 7 Jan 2010 00:08:54 +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 EAD9F8FC15; Thu, 7 Jan 2010 00:08:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o0708rra049296; Thu, 7 Jan 2010 00:08:53 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o0708rFQ049292; Thu, 7 Jan 2010 00:08:53 GMT (envelope-from linimon) Date: Thu, 7 Jan 2010 00:08:53 GMT Message-Id: <201001070008.o0708rFQ049292@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/142392: [panic] rtadvd(8) triggers kernel panic when started for a hardware WLAN interface X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 00:08:54 -0000 Old Synopsis: rtadvd triggers kernel panic when started for a hardware WLAN interface New Synopsis: [panic] rtadvd(8) triggers kernel panic when started for a hardware WLAN interface Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 7 00:08:19 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=142392 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 03:20:07 2010 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 C38301065697 for ; Thu, 7 Jan 2010 03:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A065D8FC1C for ; Thu, 7 Jan 2010 03:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o073K7Op016255 for ; Thu, 7 Jan 2010 03:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o073K7DF016254; Thu, 7 Jan 2010 03:20:07 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jan 2010 03:20:07 GMT Resent-Message-Id: <201001070320.o073K7DF016254@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, "Pedro F. Giffuni" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8730D106568F for ; Thu, 7 Jan 2010 03:15:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 5CB528FC08 for ; Thu, 7 Jan 2010 03:15:47 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o073Fk7F032717 for ; Thu, 7 Jan 2010 03:15:46 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o073FkTN032716; Thu, 7 Jan 2010 03:15:46 GMT (envelope-from nobody) Message-Id: <201001070315.o073FkTN032716@www.freebsd.org> Date: Thu, 7 Jan 2010 03:15:46 GMT From: "Pedro F. Giffuni" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/142401: Minor updates to NTFS from NetBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 03:20:07 -0000 >Number: 142401 >Category: kern >Synopsis: Minor updates to NTFS from NetBSD >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jan 07 03:20:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 8.0-RELEASE >Organization: >Environment: FreeBSD mogwai.giffuni.net 8.0-RELEASE FreeBSD 8.0-RELEASE #12: Tue Dec 1 23:31:27 UTC 2009 pedro@mogwai.giffuni.net:/usr/src/sys/i386/compile/GENERIC i386 >Description: I caught some insignificant changes from NetBSD but it's good to keep both codebases as near as possible: - bzero -> memset - rename variables to avoid shadowing. >How-To-Repeat: >Fix: diff -ru ntfs.orig/ntfs_compr.c ntfs/ntfs_compr.c --- ntfs.orig/ntfs_compr.c 2010-01-06 14:23:19.000000000 +0000 +++ ntfs/ntfs_compr.c 2010-01-06 14:28:18.000000000 +0000 @@ -42,7 +42,7 @@ int ntfs_uncompblock( - u_int8_t * buf, + u_int8_t * dbuf, u_int8_t * cbuf) { u_int32_t ctag; @@ -60,8 +60,8 @@ dprintf(("ntfs_uncompblock: len: %x instead of %d\n", len, 0xfff)); } - memcpy(buf, cbuf + 2, len + 1); - bzero(buf + len + 1, NTFS_COMPBLOCK_SIZE - 1 - len); + memcpy(dbuf, cbuf + 2, len + 1); + memset(dbuf + len + 1, 0, NTFS_COMPBLOCK_SIZE - 1 - len); return len + 3; } cpos = 2; @@ -78,12 +78,12 @@ boff = -1 - (GET_UINT16(cbuf + cpos) >> dshift); blen = 3 + (GET_UINT16(cbuf + cpos) & lmask); for (j = 0; (j < blen) && (pos < NTFS_COMPBLOCK_SIZE); j++) { - buf[pos] = buf[pos + boff]; + dbuf[pos] = dbuf[pos + boff]; pos++; } cpos += 2; } else { - buf[pos++] = cbuf[cpos++]; + dbuf[pos++] = cbuf[cpos++]; } ctag >>= 1; } diff -ru ntfs.orig/ntfs_subr.c ntfs/ntfs_subr.c --- ntfs.orig/ntfs_subr.c 2010-01-06 14:23:19.000000000 +0000 +++ ntfs/ntfs_subr.c 2010-01-06 14:33:39.000000000 +0000 @@ -1639,7 +1639,7 @@ for(; remains; remains--) uiomove("", 1, uio); } else - bzero(data, tocopy); + memset(data, 0, tocopy); data = data + tocopy; } cnt++; @@ -1786,7 +1786,7 @@ uiomove("", 1, uio); } else - bzero(data, tocopy); + memset(data, 0, tocopy); } else { error = ntfs_uncompunit(ntmp, uup, cup); if (error) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 04:09:30 2010 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 EE92B1065676; Thu, 7 Jan 2010 04:09:30 +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 C5E958FC0C; Thu, 7 Jan 2010 04:09:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o0749UsG058380; Thu, 7 Jan 2010 04:09:30 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o0749UOk058376; Thu, 7 Jan 2010 04:09:30 GMT (envelope-from linimon) Date: Thu, 7 Jan 2010 04:09:30 GMT Message-Id: <201001070409.o0749UOk058376@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/142401: [ntfs] [patch] Minor updates to NTFS from NetBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 04:09:31 -0000 Old Synopsis: Minor updates to NTFS from NetBSD New Synopsis: [ntfs] [patch] Minor updates to NTFS from NetBSD Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 7 04:09:12 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=142401 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 04:20:01 2010 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 8A5BC1065695 for ; Thu, 7 Jan 2010 04:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 622E78FC1D for ; Thu, 7 Jan 2010 04:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o074K1X3067610 for ; Thu, 7 Jan 2010 04:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o074K1c7067609; Thu, 7 Jan 2010 04:20:01 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jan 2010 04:20:01 GMT Resent-Message-Id: <201001070420.o074K1c7067609@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, Sevan Janiyan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B54FC106566C for ; Thu, 7 Jan 2010 04:11:11 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id A32AC8FC14 for ; Thu, 7 Jan 2010 04:11:11 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o074BBHS078205 for ; Thu, 7 Jan 2010 04:11:11 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o074BB3k078204; Thu, 7 Jan 2010 04:11:11 GMT (envelope-from nobody) Message-Id: <201001070411.o074BB3k078204@www.freebsd.org> Date: Thu, 7 Jan 2010 04:11:11 GMT From: Sevan Janiyan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/142403: [patch] arabic/ae_fonts_ttf use $SUB_FILES to dynamically adjust pkg-message X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 04:20:01 -0000 >Number: 142403 >Category: misc >Synopsis: [patch] arabic/ae_fonts_ttf use $SUB_FILES to dynamically adjust pkg-message >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jan 07 04:20:00 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sevan Janiyan >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/arabic/ae_fonts_ttf/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 22 Aug 2009 00:12:52 -0000 1.13 +++ Makefile 7 Jan 2010 04:02:43 -0000 @@ -7,7 +7,7 @@ PORTNAME= ae_fonts1_ttf PORTVERSION= 1.1 -PORTREVISION= 2 +PORTREVISION= 2 CATEGORIES= arabic x11-fonts MASTER_SITES= SF/arabeyes/Fonts/ae_fonts DISTNAME= ae_fonts1_ttf_${PORTVERSION} @@ -19,6 +19,7 @@ USE_BZIP2= yes WRKSRC= ${WRKDIR}/ae_fonts1-${PORTVERSION} +SUB_FILES= pkg-message .if !defined(WITHOUT_AAHS) FONTS= AAHS @@ -71,7 +72,6 @@ .endfor post-install: - @${CAT} ${PKGMESSAGE} | ${SED} "s|LOCALBASE|${LOCALBASE}|g" \ - | ${SED} "s|PORTNAME|ae_fonts1|g" + @${CAT} ${PKGMESSAGE} .include Index: pkg-message =================================================================== RCS file: pkg-message diff -N pkg-message --- pkg-message 19 Apr 2008 17:46:05 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,14 +0,0 @@ ------------------------------------------------------------------- - To get XFree86 to recognize your new fonts you will need to - add a line to your XF86Config file. Please consult XF86Config(5) - for more information on where to find the configuration file. - - Add the following line to the "Files" section and restart XFree86. - - FontPath "LOCALBASE/lib/X11/fonts/PORTNAME/AAHS" - FontPath "LOCALBASE/lib/X11/fonts/PORTNAME/AGA" - FontPath "LOCALBASE/lib/X11/fonts/PORTNAME/FS" - FontPath "LOCALBASE/lib/X11/fonts/PORTNAME/Kasr" - FontPath "LOCALBASE/lib/X11/fonts/PORTNAME/MCS" - FontPath "LOCALBASE/lib/X11/fonts/PORTNAME/Shmookh" ------------------------------------------------------------------- Index: files/pkg-message.in =================================================================== RCS file: files/pkg-message.in diff -N files/pkg-message.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/pkg-message.in 7 Jan 2010 04:02:43 -0000 @@ -0,0 +1,14 @@ +------------------------------------------------------------------ + To get XFree86 to recognize your new fonts you will need to + add a line to your XF86Config file. Please consult XF86Config(5) + for more information on where to find the configuration file. + + Add the following line to the "Files" section and restart XFree86. + + FontPath "%%PREFIX%%/lib/X11/fonts/ae_fonts1/AAHS" + FontPath "%%PREFIX%%/lib/X11/fonts/ae_fonts1/AGA" + FontPath "%%PREFIX%%/lib/X11/fonts/ae_fonts1/FS" + FontPath "%%PREFIX%%/lib/X11/fonts/ae_fonts1/Kasr" + FontPath "%%PREFIX%%/lib/X11/fonts/ae_fonts1/MCS" + FontPath "%%PREFIX%%/lib/X11/fonts/ae_fonts1/Shmookh" +------------------------------------------------------------------ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 04:39:04 2010 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 1E0A51065697; Thu, 7 Jan 2010 04:39:04 +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 E816D8FC16; Thu, 7 Jan 2010 04:39:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o074d3Mx085592; Thu, 7 Jan 2010 04:39:03 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o074d31h085588; Thu, 7 Jan 2010 04:39:03 GMT (envelope-from linimon) Date: Thu, 7 Jan 2010 04:39:03 GMT Message-Id: <201001070439.o074d31h085588@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/142403: [patch] arabic/ae_fonts_ttf use $SUB_FILES to dynamically adjust pkg-message X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 04:39:04 -0000 Synopsis: [patch] arabic/ae_fonts_ttf use $SUB_FILES to dynamically adjust pkg-message Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 7 04:38:35 UTC 2010 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=142403 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 08:50:05 2010 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 69F32106568B for ; Thu, 7 Jan 2010 08:50:05 +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 460838FC22 for ; Thu, 7 Jan 2010 08:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o078o4M6043502 for ; Thu, 7 Jan 2010 08:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o078o4ja043501; Thu, 7 Jan 2010 08:50:04 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jan 2010 08:50:04 GMT Resent-Message-Id: <201001070850.o078o4ja043501@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Naylor Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49D73106568B for ; Thu, 7 Jan 2010 08:47:46 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 396EE8FC20 for ; Thu, 7 Jan 2010 08:47:46 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o078lkDA087499 for ; Thu, 7 Jan 2010 08:47:46 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o078lj4t087498; Thu, 7 Jan 2010 08:47:45 GMT (envelope-from nobody) Message-Id: <201001070847.o078lj4t087498@www.freebsd.org> Date: Thu, 7 Jan 2010 08:47:45 GMT From: David Naylor To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/142418: [PATCH] sbin/newfs_msdos doc fix X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 08:50:05 -0000 >Number: 142418 >Category: bin >Synopsis: [PATCH] sbin/newfs_msdos doc fix >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Jan 07 08:50:04 UTC 2010 >Closed-Date: >Last-Modified: >Originator: David Naylor >Release: FreeBSD 8 >Organization: Private >Environment: FreeBSD dragon.dg 8.0-STABLE FreeBSD 8.0-STABLE #0: Thu Dec 24 08:51:17 SAST 2009 root@dragon.dg:/tmp/usr/src/sys/GENERIC amd64 >Description: Documentation says bytes per sector are valid from 128 but the program says 512 >How-To-Repeat: (Well, -S doesn't work to well, in my experience but:) newfs_msdos -S 256 /dev/null >Fix: See patch Patch attached with submission follows: --- /usr/src/sbin/newfs_msdos/newfs_msdos.8 2009-09-03 08:43:57.000000000 +0200 +++ newfs_msdos.8 2010-01-07 10:31:28.000000000 +0200 @@ -116,7 +116,7 @@ .It Fl S Ar sector-size Number of bytes per sector. Acceptable values are powers of 2 -in the range 128 through 32768. +in the range 512 through 32768, inclusive. .It Fl a Ar FAT-size Number of sectors per FAT. .It Fl b Ar block-size >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 15:31:31 2010 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 4326E1065694; Thu, 7 Jan 2010 15:31:31 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1B3498FC20; Thu, 7 Jan 2010 15:31:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o07FVUSh001631; Thu, 7 Jan 2010 15:31:30 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o07FVUUL001627; Thu, 7 Jan 2010 15:31:30 GMT (envelope-from linimon) Date: Thu, 7 Jan 2010 15:31:30 GMT Message-Id: <201001071531.o07FVUUL001627@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: docs/142418: [PATCH] newfs_msdos(8) doc fix X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 15:31:31 -0000 Old Synopsis: [PATCH] sbin/newfs_msdos doc fix New Synopsis: [PATCH] newfs_msdos(8) doc fix Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 7 15:30:52 UTC 2010 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=142418 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 17:20:05 2010 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 F3F221065672 for ; Thu, 7 Jan 2010 17:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C9D678FC13 for ; Thu, 7 Jan 2010 17:20:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o07HK4kP087525 for ; Thu, 7 Jan 2010 17:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o07HK4W8087524; Thu, 7 Jan 2010 17:20:04 GMT (envelope-from gnats) Date: Thu, 7 Jan 2010 17:20:04 GMT Message-Id: <201001071720.o07HK4W8087524@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Efstratios Karatzas Cc: Subject: Re: bin/139606: pkg_add(1) coredumps silently on atlantis symlink X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Efstratios Karatzas List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 17:20:05 -0000 The following reply was made to PR bin/139606; it has been noted by GNATS. From: Efstratios Karatzas To: bug-followup@freebsd.org, phk@critter.freebsd.dk Cc: Subject: Re: bin/139606: pkg_add(1) coredumps silently on atlantis symlink Date: Thu, 7 Jan 2010 19:13:06 +0200 --0016e6d784ee4cb473047c962fe0 Content-Type: text/plain; charset=UTF-8 Hello! Why pkg_add crashes: The problem exists in function fexists() which resides in file src/usr.sbin/pkg_install/lib/file.c The function is supposed to check if a file exists, but lstat(2) is being used instead of stat(2). lstat(2) checks only if the symbolic link file exists and not the actual file that the symbolic link points to. So, the symbolic link file exists, lstat returns 0. In src/usr.sbin/pkg_install/add/main.c we pass the check in line #247 and strdup(3) crashes because realpath(3) returns NULL. realpath() returns NULL because the actual file does not really exist. Fix: Instead of lstat(2) in file.c use stat(2). There is no reason to use lstat since we don't want to perform any special checks in case it is a sym link. So we use stat(2) which checks if the actual file that the symlink points to exists. This is done in patch-a-1.diff But the strdup(realpath()) call is still likely to cause a seg fault because there is a race condition: Check done (ok) -> file erased somehow -> realpath returns NULL -> strdup goes boom. So we check for the return value of the realpath() function too. This is done in patch-b-1.diff With these patches, the utility will just exist gracefully with an appropriate error message when, in pkg_perform, it cannot stat the actual file, so no crashes: ps: A lot of race conditions still exist in this utility but that is for another pr, another time. don't know if these are of any use but the original files I used are: main.c SVN rev 201226 file.c SVN rev 198460 Cheers -- Efstratios "GPF" Karatzas --0016e6d784ee4cb473047c962fe0 Content-Type: application/octet-stream; name="patch-a-1.diff" Content-Disposition: attachment; filename="patch-a-1.diff" Content-Transfer-Encoding: base64 X-Attachment-Id: f_g45ryqr81 LS0tIGZpbGUub3JpZy5jCTIwMTAtMDEtMDcgMTc6NTg6MTkuMDAwMDAwMDAwICswMjAwCisrKyBm aWxlLmMJMjAxMC0wMS0wNyAxNzo1OToyNy4wMDAwMDAwMDAgKzAyMDAKQEAgLTMyLDcgKzMyLDcg QEAKIGZleGlzdHMoY29uc3QgY2hhciAqZm5hbWUpCiB7CiAgICAgc3RydWN0IHN0YXQgZHVtbXk7 Ci0gICAgaWYgKCFsc3RhdChmbmFtZSwgJmR1bW15KSkKKyAgICBpZiAoIXN0YXQoZm5hbWUsICZk dW1teSkpCiAJcmV0dXJuIFRSVUU7CiAgICAgcmV0dXJuIEZBTFNFOwogfQo= --0016e6d784ee4cb473047c962fe0 Content-Type: application/octet-stream; name="patch-b-1.diff" Content-Disposition: attachment; filename="patch-b-1.diff" Content-Transfer-Encoding: base64 X-Attachment-Id: f_g45rz8tm2 LS0tIG1haW4ub3JpZy5jCTIwMTAtMDEtMDcgMTg6Mjg6NTguMDAwMDAwMDAwICswMjAwCisrKyBt YWluLmMJMjAxMC0wMS0wNyAxODozNjoxNC4wMDAwMDAwMDAgKzAyMDAKQEAgLTI0NCw4ICsyNDQs MTIgQEAKIAkJICAgIGVycngoMSwgInBhY2thZ2UgbmFtZSB0b28gbG9uZyIpOwogCQlwa2dzW2No XSA9IHN0cmR1cCh0ZW1wKTsKIAkgICAgfSBlbHNlIHsJCQkvKiBleHBhbmQgYWxsIHBhdGhuYW1l cyB0byBmdWxsbmFtZXMgKi8KLQkJaWYgKGZleGlzdHMoKmFyZ3YpKSAvKiByZWZlcnMgdG8gYSBm aWxlIGRpcmVjdGx5ICovCi0JCSAgICBwa2dzW2NoXSA9IHN0cmR1cChyZWFscGF0aCgqYXJndiwg dGVtcCkpOworCQlpZiAoZmV4aXN0cygqYXJndikpIHsgLyogcmVmZXJzIHRvIGEgZmlsZSBkaXJl Y3RseSAqLworCQkgICAgLyogcmFjZSBjb25kaXRpb24gc28gY2hlY2sgZm9yIHJldHVybiB2YWx1 ZSBvZiByZWFscGF0aCgpICovCisJCSAgICBpZiAocmVhbHBhdGgoKmFyZ3YsIHRlbXApKSB7CisJ CQlwa2dzW2NoXSA9IHN0cmR1cCh0ZW1wKTsKKwkJICAgIH0KKwkJfQogCQllbHNlIHsJCS8qIGxv b2sgZm9yIHRoZSBmaWxlIGluIHRoZSBleHBlY3RlZCBwbGFjZXMgKi8KIAkJICAgIGlmICghKGNw ID0gZmlsZUZpbmRCeVBhdGgoTlVMTCwgKmFyZ3YpKSkgewogCQkJLyogbGV0IHBrZ19kbygpIGZh aWwgbGF0ZXIsIHNvIHRoYXQgZXJyb3IgaXMgcmVwb3J0ZWQgKi8K --0016e6d784ee4cb473047c962fe0-- From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 18:40:01 2010 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 27515106566C for ; Thu, 7 Jan 2010 18:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0420A8FC17 for ; Thu, 7 Jan 2010 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o07Ie02m057564 for ; Thu, 7 Jan 2010 18:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o07Ie0al057563; Thu, 7 Jan 2010 18:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jan 2010 18:40:00 GMT Resent-Message-Id: <201001071840.o07Ie0al057563@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, Miroslav Lachman <000.fbsd@quip.cz> Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 947301065676 for ; Thu, 7 Jan 2010 18:30:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 837068FC0C for ; Thu, 7 Jan 2010 18:30:35 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o07IUZTe050896 for ; Thu, 7 Jan 2010 18:30:35 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o07IUY5n050895; Thu, 7 Jan 2010 18:30:34 GMT (envelope-from nobody) Message-Id: <201001071830.o07IUY5n050895@www.freebsd.org> Date: Thu, 7 Jan 2010 18:30:34 GMT From: Miroslav Lachman <000.fbsd@quip.cz> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: conf/142434: [patch] Add cpuset(1) support to rc.subr X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 18:40:01 -0000 >Number: 142434 >Category: conf >Synopsis: [patch] Add cpuset(1) support to rc.subr >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jan 07 18:40:00 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Miroslav Lachman >Release: 7.2-RELEASE >Organization: codeLab.cz >Environment: tested on: 7.2-RELEASE-p4 GENERIC amd64 9.0-CURRENT-200912 GENERIC i386 >Description: Add support for cpuset(1) to rc.subr If ${name}_cpuset is specified, command will be runned on specified CPUs. cpuset is available in STABLE branch for more than one year (7.1+), but is still not widely known / used and there is no general support to use cpuset in rc scripts. FreeBSD can benefit from feature like this compared to other OSes. >How-To-Repeat: >Fix: Apply attached patch and try something like this in /etc/rc.conf sshd_enable="YES" sshd_cpuset="0" mysql_enable="YES" mysql_cpuset="1-3" lighttpd_enable="YES" lighttpd_cpuset="2" proftpd_enable="YES" proftpd_cpuset="1,2" Then after boot or restart of services, you will have services assigned to defined CPUs like this: # /usr/local/etc/rc.d/mysql-server status mysql is running as pid 11952. on CPU(s) 1,2,3 # /usr/local/etc/rc.d/lighttpd status lighttpd is running as pid 12011. on CPU(s) 2 # /usr/local/etc/rc.d/proftpd status proftpd is running as pid 11882. on CPU(s) 1,2 The patch is not fully tested, but allows most currently available services to be assigned to CPUs without modification of existing rc scripts. Note: some complex rc scripts can not use cpuset, for example rc.d/jail patch is for 9-CURRENT but should work on older releases too Patch attached with submission follows: --- /etc/rc.subr.orig 2009-12-10 07:01:55.000000000 +0100 +++ /etc/rc.subr 2010-01-07 18:43:15.000000000 +0100 @@ -58,6 +58,7 @@ IDCMD="if [ -x $ID ]; then $ID -un; fi" PS="/bin/ps -ww" JID=`$PS -p $$ -o jid=` +CPUSET="/usr/bin/cpuset" case ${OSTYPE} in FreeBSD) @@ -464,6 +465,9 @@ # ${name}_chdir n Directory to cd to before running ${command} # (if not using ${name}_chroot). # +# ${name}_cpuset n A list of CPUs to run ${command} on. +# Requires /usr to be mounted. +# # ${name}_flags n Arguments to call ${command} with. # NOTE: $flags from the parent environment # can be used to override this. @@ -623,6 +627,17 @@ _pidcmd= _procname=${procname:-${command}} + eval _cpuset=\$${name}_cpuset + # fix for background-fsck problem / check if value start with number + case "$_cpuset" in + [0-9]*) ;; + *) _cpuset="" ;; + esac + _cpusetcmd= + if [ -n "$_cpuset" -a -x $CPUSET ]; then + _cpusetcmd="$CPUSET -l $_cpuset" + fi + # setup pid check command if [ -n "$_procname" ]; then if [ -n "$pidfile" ]; then @@ -686,7 +701,7 @@ if [ -n "$_cmd" ]; then _run_rc_precmd || return 1 - _run_rc_doit "$_cmd $rc_extra_args" || return 1 + _run_rc_doit "$_cpusetcmd $_cmd $rc_extra_args" || return 1 _run_rc_postcmd return $_return fi @@ -697,6 +712,11 @@ _run_rc_precmd || return 1 if [ -n "$rc_pid" ]; then echo "${name} is running as pid $rc_pid." + # for cpuset debug only, not committable (cut) + if [ -n "$_cpuset" -a -x $CPUSET ]; then + echo -n "on CPU(s)" + $CPUSET -g -p "$rc_pid" | cut -s -d: -f 2 + fi else echo "${name} is not running." return 1 @@ -725,13 +745,13 @@ check_startmsgs && echo "Starting ${name}." if [ -n "$_chroot" ]; then _doit="\ -${_nice:+nice -n $_nice }\ +${_nice:+nice -n $_nice } $_cpusetcmd\ chroot ${_user:+-u $_user }${_group:+-g $_group }${_groups:+-G $_groups }\ $_chroot $command $rc_flags $command_args" else _doit="\ ${_chdir:+cd $_chdir && }\ -$command $rc_flags $command_args" +$_cpusetcmd $command $rc_flags $command_args" if [ -n "$_user" ]; then _doit="su -m $_user -c 'sh -c \"$_doit\"'" fi >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 19:00:13 2010 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 0416710656AC for ; Thu, 7 Jan 2010 19:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D18C18FC0C for ; Thu, 7 Jan 2010 19:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o07J08ul073771 for ; Thu, 7 Jan 2010 19:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o07J088e073769; Thu, 7 Jan 2010 19:00:08 GMT (envelope-from gnats) Date: Thu, 7 Jan 2010 19:00:08 GMT Message-Id: <201001071900.o07J088e073769@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Miroslav Lachman <000.fbsd@quip.cz> Cc: Subject: Re: conf/142434: [patch] Add cpuset(1) support to rc.subr X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Miroslav Lachman <000.fbsd@quip.cz> List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 19:00:13 -0000 The following reply was made to PR conf/142434; it has been noted by GNATS. From: Miroslav Lachman <000.fbsd@quip.cz> To: bug-followup@FreeBSD.org Cc: Subject: Re: conf/142434: [patch] Add cpuset(1) support to rc.subr Date: Thu, 07 Jan 2010 19:58:46 +0100 This is a multi-part message in MIME format. --------------000406030203050904060109 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Attached patch is for 7.2-RELEASE --------------000406030203050904060109 Content-Type: text/plain; name="cpuset_rc.subr_72.patch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="cpuset_rc.subr_72.patch.txt" --- /etc/rc.subr.orig 2009-05-28 17:17:57.000000000 +0200 +++ /etc/rc.subr 2010-01-07 18:27:27.000000000 +0100 @@ -58,6 +58,7 @@ IDCMD="if [ -x $ID ]; then $ID -un; fi" PS="/bin/ps -ww" JID=`$PS -p $$ -o jid=` +CPUSET="/usr/bin/cpuset" case ${OSTYPE} in FreeBSD) @@ -421,6 +422,9 @@ # ${name}_chdir n Directory to cd to before running ${command} # (if not using ${name}_chroot). # +# ${name}_cpuset n A list of CPUs to run ${command} on. +# Requires /usr to be mounted. +# # ${name}_flags n Arguments to call ${command} with. # NOTE: $flags from the parent environment # can be used to override this. @@ -572,6 +576,17 @@ _pidcmd= _procname=${procname:-${command}} + eval _cpuset=\$${name}_cpuset + # fix for background-fsck problem / check if value start with number + case "$_cpuset" in + [0-9]*) ;; + *) _cpuset="" ;; + esac + _cpusetcmd= + if [ -n "$_cpuset" -a -x $CPUSET ]; then + _cpusetcmd="$CPUSET -l $_cpuset" + fi + # setup pid check command if [ -n "$_procname" ]; then if [ -n "$pidfile" ]; then @@ -629,7 +644,7 @@ if [ -n "$_cmd" ]; then _run_rc_precmd || return 1 - _run_rc_doit "$_cmd $rc_extra_args" || return 1 + _run_rc_doit "$_cpusetcmd $_cmd $rc_extra_args" || return 1 _run_rc_postcmd return $_return fi @@ -640,6 +655,11 @@ _run_rc_precmd || return 1 if [ -n "$rc_pid" ]; then echo "${name} is running as pid $rc_pid." + # for cpuset debug only, not committable (cut) + if [ -n "$_cpuset" -a -x $CPUSET ]; then + echo -n "on CPU(s)" + $CPUSET -g -p "$rc_pid" | cut -s -d: -f 2 + fi else echo "${name} is not running." return 1 @@ -665,13 +685,13 @@ echo "Starting ${name}." if [ -n "$_chroot" ]; then _doit="\ -${_nice:+nice -n $_nice }\ +${_nice:+nice -n $_nice } $_cpusetcmd\ chroot ${_user:+-u $_user }${_group:+-g $_group }${_groups:+-G $_groups }\ $_chroot $command $rc_flags $command_args" else _doit="\ ${_chdir:+cd $_chdir && }\ -$command $rc_flags $command_args" +$_cpusetcmd $command $rc_flags $command_args" if [ -n "$_user" ]; then _doit="su -m $_user -c 'sh -c \"$_doit\"'" fi --------------000406030203050904060109-- From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 19:15:39 2010 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 E90AD1065698; Thu, 7 Jan 2010 19:15:39 +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 8B6F48FC12; Thu, 7 Jan 2010 19:15:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o07JFd19091174; Thu, 7 Jan 2010 19:15:39 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o07JFdTG091170; Thu, 7 Jan 2010 19:15:39 GMT (envelope-from linimon) Date: Thu, 7 Jan 2010 19:15:39 GMT Message-Id: <201001071915.o07JFdTG091170@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: conf/142434: [patch] Add cpuset(1) support to rc.subr(8) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 19:15:40 -0000 Old Synopsis: [patch] Add cpuset(1) support to rc.subr New Synopsis: [patch] Add cpuset(1) support to rc.subr(8) Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 7 19:15:18 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=142434 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 7 21:40:03 2010 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 1114F106568F for ; Thu, 7 Jan 2010 21:40:03 +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 D3C3A8FC1E for ; Thu, 7 Jan 2010 21:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o07Le2Zt012438 for ; Thu, 7 Jan 2010 21:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o07Le2OI012437; Thu, 7 Jan 2010 21:40:02 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jan 2010 21:40:02 GMT Resent-Message-Id: <201001072140.o07Le2OI012437@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eric Masson Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 375C41065676 for ; Thu, 7 Jan 2010 21:33:11 +0000 (UTC) (envelope-from emss.mail@gmail.com) Received: from mail-ew0-f226.google.com (mail-ew0-f226.google.com [209.85.219.226]) by mx1.freebsd.org (Postfix) with ESMTP id 9CAA18FC17 for ; Thu, 7 Jan 2010 21:33:10 +0000 (UTC) Received: by ewy26 with SMTP id 26so17136505ewy.3 for ; Thu, 07 Jan 2010 13:33:04 -0800 (PST) Received: by 10.213.41.70 with SMTP id n6mr2155852ebe.82.1262899983805; Thu, 07 Jan 2010 13:33:03 -0800 (PST) Received: from srvbsdfenssv.interne.associated-bears.org ([72.14.240.162]) by mx.google.com with ESMTPS id 10sm44435353eyz.7.2010.01.07.13.32.59 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 07 Jan 2010 13:32:59 -0800 (PST) Received: from srvbsdfenssv.interne.associated-bears.org (localhost [127.0.0.1]) by srvbsdfenssv.interne.associated-bears.org (Postfix) with ESMTP id 47AB51D0E7 for ; Thu, 7 Jan 2010 22:32:58 +0100 (CET) Received: from srvbsdfenssv.interne.associated-bears.org ([127.0.0.1]) by srvbsdfenssv.interne.associated-bears.org (srvbsdfenssv.interne.associated-bears.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UaBs1N2w1Yta for ; Thu, 7 Jan 2010 22:32:54 +0100 (CET) Received: by srvbsdfenssv.interne.associated-bears.org (Postfix, from userid 1001) id C31AD1D0D5; Thu, 7 Jan 2010 22:32:54 +0100 (CET) Message-Id: <20100107213254.C31AD1D0D5@srvbsdfenssv.interne.associated-bears.org> Date: Thu, 7 Jan 2010 22:32:54 +0100 (CET) From: Eric Masson Sender: Eric Masson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/142439: Add NForce 8200 SMBus support to nfsmb X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eric Masson List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 21:40:03 -0000 >Number: 142439 >Category: kern >Synopsis: Add NForce 8200 SMBus support to nfsmb >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jan 07 21:40:02 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Eric Masson >Release: FreeBSD 8.0-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD srvbsdfenssv.interne.associated-bears.org 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #0: Thu Jan 7 15:19:11 CET 2010 emss@srvbsdfenssv.interne.associated-bears.org:/vol0/build/obj/vol0/build/src/sys/K8MMV amd64 >Description: Add NForce 8200 SMBus support to nfsmb >How-To-Repeat: N/A >Fix: --- /sys/pci/nfsmb.c 2009-10-25 02:10:29.000000000 +0100 +++ /sys/pci/nfsmb.c 2010-01-07 22:21:10.000000000 +0100 @@ -65,6 +65,7 @@ #define NFSMB_DEVICEID_NF4_55_SMB 0x0368 #define NFSMB_DEVICEID_NF4_61_SMB 0x03eb #define NFSMB_DEVICEID_NF4_65_SMB 0x0446 +#define NFSMB_DEVICEID_NF8200_SMB 0x0752 /* PCI Configuration space registers */ #define NF2PCI_SMBASE_1 PCIR_BAR(4) @@ -158,6 +159,7 @@ case NFSMB_DEVICEID_NF4_55_SMB: case NFSMB_DEVICEID_NF4_61_SMB: case NFSMB_DEVICEID_NF4_65_SMB: + case NFSMB_DEVICEID_NF8200_SMB: device_set_desc(dev, "nForce2/3/4 MCP SMBus Controller"); return (BUS_PROBE_DEFAULT); } @@ -245,6 +247,7 @@ case NFSMB_DEVICEID_NF4_55_SMB: case NFSMB_DEVICEID_NF4_61_SMB: case NFSMB_DEVICEID_NF4_65_SMB: + case NFSMB_DEVICEID_NF8200_SMB: /* Trying to add secondary device as slave */ nfsmb_sc->subdev = device_add_child(dev, "nfsmb", -1); if (!nfsmb_sc->subdev) { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 03:20:05 2010 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 C65321065670 for ; Fri, 8 Jan 2010 03:20:05 +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 9C1EF8FC16 for ; Fri, 8 Jan 2010 03:20:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o083K5EN007463 for ; Fri, 8 Jan 2010 03:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o083K5pb007462; Fri, 8 Jan 2010 03:20:05 GMT (envelope-from gnats) Date: Fri, 8 Jan 2010 03:20:05 GMT Message-Id: <201001080320.o083K5pb007462@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Pedro F. Giffuni" Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Pedro F. Giffuni" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 03:20:05 -0000 The following reply was made to PR bin/142384; it has been noted by GNATS. From: "Pedro F. Giffuni" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD Date: Thu, 7 Jan 2010 19:18:44 -0800 (PST) --0-3016821-1262920724=:92513 Content-Type: text/plain; charset=us-ascii A new, and hopefully final, update: -Added a fix to a bug coverity found on NetBSD. -Removed bogus check that attempted to clear the sector after FSInfo in a valid FAT32 filesystem. --0-3016821-1262920724=:92513 Content-Type: application/octet-stream; name=patch-fsck_msdosfs Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename=patch-fsck_msdosfs ZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvYm9vdC5jIGZzY2tfbXNkb3Nm cy9ib290LmMKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL2Jvb3QuYwkyMDEwLTAx LTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19tc2Rvc2Zz L2Jvb3QuYwkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAwMApA QCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBi aW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0 CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0 aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVu dGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0 aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5nIG1hdGVy aWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3 YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3ds ZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUg ZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdvbGZnYW5n IFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5p dmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLSAq ICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0 cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0aG91dCBz cGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgogICogVEhJ UyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBgYEFTIElT JycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMs IElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1QTElFRCBX QVJSQU5USUVTCkBAIC00MCw3ICszMyw2IEBACiAKICNpbmNsdWRlIDxzdGRs aWIuaD4KICNpbmNsdWRlIDxzdHJpbmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5o PgogI2luY2x1ZGUgPHN0ZGlvLmg+CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAK QEAgLTU2LDggKzQ4LDkgQEAKIAl1X2NoYXIgZnNpbmZvWzIgKiBET1NCT09U QkxPQ0tTSVpFXTsKIAl1X2NoYXIgYmFja3VwW0RPU0JPT1RCTE9DS1NJWkVd OwogCWludCByZXQgPSBGU09LOworCWludCBpOwogCQotCWlmIChyZWFkKGRv c2ZzLCBibG9jaywgc2l6ZW9mIGJsb2NrKSA8IHNpemVvZiBibG9jaykgewor CWlmIChyZWFkKChzaXplX3QpZG9zZnMsIGJsb2NrLCBzaXplb2YgYmxvY2sp ICE9IHNpemVvZiBibG9jaykgewogCQlwZXJyb3IoImNvdWxkIG5vdCByZWFk IGJvb3QgYmxvY2siKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQpAQCAtMTYx LDEyICsxNTQsMjIgQEAKIAkJfQogCQliYWNrdXBbNjVdID0gYmxvY2tbNjVd OwkJCQkvKiBYWFggKi8KIAkJaWYgKG1lbWNtcChibG9jayArIDExLCBiYWNr dXAgKyAxMSwgNzkpKSB7Ci0JCQkvKiBDb3JyZWN0PwkJCQkJWFhYICovCi0J CQlwZmF0YWwoImJhY2t1cCBkb2Vzbid0IGNvbXBhcmUgdG8gcHJpbWFyeSBi b290YmxvY2siKTsKLQkJCWlmIChhbHdheXNubykKLQkJCQlwZmF0YWwoIlxu Iik7Ci0JCQllbHNlCi0JCQkJcmV0dXJuIEZTRkFUQUw7CisJCQkvKgorCQkJ ICogWFhYIFdlIHJlcXVpcmUgYSByZWZlcmVuY2UgdGhhdCBleHBsYWlucwor CQkJICogdGhhdCB0aGVzZSBieXRlcyBuZWVkIHRvIG1hdGNoLCBvciBzaG91 bGQKKwkJCSAqIGRyb3AgdGhlIGNoZWNrLiAgZ2R0QE5ldEJTRCBoYXMgb2Jz ZXJ2ZWQKKwkJCSAqIGZpbGVzeXN0ZW1zIHRoYXQgd29yayBmaW5lIHVuZGVy IFdpbmRvd3MgWFAKKwkJCSAqIGFuZCBOZXRCU0QgdGhhdCBkbyBub3QgbWF0 Y2gsIHNvIHRoZQorCQkJICogcmVxdWlyZW1lbnQgaXMgc3VzcGVjdC4gIEZv ciBub3csIGp1c3QKKwkJCSAqIHByaW50IG91dCB1c2VmdWwgaW5mb3JtYXRp b24gYW5kIGNvbnRpbnVlLgorCQkJICovCisJCQlwZmF0YWwoImJhY2t1cCAo YmxvY2sgJWQpIG1pc21hdGNoIHdpdGggcHJpbWFyeSBib290YmxvY2s6XG4i LAorCQkJICAgICAgICBib290LT5CYWNrdXApOworCQkJZm9yIChpID0gMTE7 IGkgPCAxMSArIDkwOyBpKyspIHsKKwkJCQlpZiAoYmxvY2tbaV0gIT0gYmFj a3VwW2ldKQorCQkJCQlwZmF0YWwoIlx0aT0lZFx0cHJpbWFyeSAweCUwMnhc dGJhY2t1cCAweCUwMnhcbiIsCisJCQkJCSAgICAgICBpLCBibG9ja1tpXSwg YmFja3VwW2ldKTsKKwkJCX0KIAkJfQogCQkvKiBDaGVjayBiYWNrdXAgRlNJ bmZvPwkJCQkJWFhYICovCiAJfQpkaWZmIC1ydSBmc2NrX21zZG9zZnMub3Jp Zy9jaGVjay5jIGZzY2tfbXNkb3Nmcy9jaGVjay5jCi0tLSBmc2NrX21zZG9z ZnMub3JpZy9jaGVjay5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvY2hlY2suYwkyMDEwLTAxLTA3IDIy OjA5OjEzLjAwMDAwMDAwMCArMDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAq IDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJv ZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMg bGlzdCBvZiBjb25kaXRpb25zIGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWlt ZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBt YXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICog My4gQWxsIGFkdmVydGlzaW5nIG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1 cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3Bs YXkgdGhlIGZvbGxvd2luZyBhY2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHBy b2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBI dXNlbWFubgotICoJYW5kIFdvbGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVp dGhlciB0aGUgbmFtZSBvZiB0aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVz IG9mIGl0cyBjb250cmlidXRvcnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVu ZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBz b2Z0d2FyZQotICogICAgd2l0aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVu IHBlcm1pc3Npb24uCiAgKgogICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURF RCBCWSBUSEUgQVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9S CiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBM SU1JVEVEIFRPLCBUSEUgSU1QTElFRCBXQVJSQU5USUVTCkBAIC00MCw3ICsz Myw2IEBACiAKICNpbmNsdWRlIDxzdGRsaWIuaD4KICNpbmNsdWRlIDxzdHJp bmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5oPgogI2luY2x1ZGUgPHN0ZGlvLmg+ CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAjaW5jbHVkZSA8ZmNudGwuaD4KQEAg LTU0LDcgKzQ2LDggQEAKIAlpbnQgZG9zZnM7CiAJc3RydWN0IGJvb3RibG9j ayBib290OwogCXN0cnVjdCBmYXRFbnRyeSAqZmF0ID0gTlVMTDsKLQlpbnQg aSwgZmluaXNoX2Rvc2RpcnNlY3Rpb249MDsKKwlpbnQgZmluaXNoX2Rvc2Rp cnNlY3Rpb249MDsKKwl1X2ludCBpOwogCWludCBtb2QgPSAwOwogCWludCBy ZXQgPSA4OwogCmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Rpci5jIGZz Y2tfbXNkb3Nmcy9kaXIuYwotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZGlyLmMJ MjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tf bXNkb3Nmcy9kaXIuYwkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCAr MDAwMApAQCAtMTIsMTMgKzEyLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC00NCw3ICszNyw2IEBACiAjaW5jbHVkZSA8 c3RkbGliLmg+CiAjaW5jbHVkZSA8c3RyaW5nLmg+CiAjaW5jbHVkZSA8Y3R5 cGUuaD4KLSNpbmNsdWRlIDxzdGRpby5oPgogI2luY2x1ZGUgPHVuaXN0ZC5o PgogI2luY2x1ZGUgPHRpbWUuaD4KIApAQCAtMjI2LDE2ICsyMTgsMjkgQEAK IAlpbnQgYjEsIGIyOwogCWNsX3QgY2w7CiAJaW50IHJldCA9IEZTT0s7CisJ c2l6ZV90IGxlbjsKIAogCWIxID0gYm9vdC0+Um9vdERpckVudHMgKiAzMjsK IAliMiA9IGJvb3QtPlNlY1BlckNsdXN0ICogYm9vdC0+Qnl0ZXNQZXJTZWM7 CiAKLQlpZiAoIShidWZmZXIgPSBtYWxsb2MoYjEgPiBiMiA/IGIxIDogYjIp KQotCSAgICB8fCAhKGRlbGJ1ZiA9IG1hbGxvYyhiMikpCi0JICAgIHx8ICEo cm9vdERpciA9IG5ld0Rvc0RpckVudHJ5KCkpKSB7Ci0JCXBlcnJvcigiTm8g c3BhY2UgZm9yIGRpcmVjdG9yeSIpOworCWlmICgoYnVmZmVyID0gbWFsbG9j KGxlbiA9IGIxID4gYjIgPyBiMSA6IGIyKSkgPT0gTlVMTCkgeworCQlwZXJy b3IoIk5vIHNwYWNlIGZvciBkaXJlY3RvcnkgYnVmZmVyIik7CiAJCXJldHVy biBGU0ZBVEFMOwogCX0KKworCWlmICgoZGVsYnVmID0gbWFsbG9jKGxlbiA9 IGIyKSkgPT0gTlVMTCkgeworCQlmcmVlKGJ1ZmZlcik7CisJCXBlcnJvcigi Tm8gc3BhY2UgZm9yIGRpcmVjdG9yeSBkZWxidWYiKTsKKwkJcmV0dXJuIEZT RkFUQUw7CisJfQorCisJaWYgKChyb290RGlyID0gbmV3RG9zRGlyRW50cnko KSkgPT0gTlVMTCkgeworCQlmcmVlKGJ1ZmZlcik7CisJCWZyZWUoZGVsYnVm KTsKKwkJcGVycm9yKCJObyBzcGFjZSBmb3IgZGlyZWN0b3J5IGVudHJ5Iik7 CisJCXJldHVybiBGU0ZBVEFMOworCX0KKwogCW1lbXNldChyb290RGlyLCAw LCBzaXplb2YgKnJvb3REaXIpOwogCWlmIChib290LT5mbGFncyAmIEZBVDMy KSB7CiAJCWlmIChib290LT5Sb290Q2wgPCBDTFVTVF9GSVJTVCB8fCBib290 LT5Sb290Q2wgPj0gYm9vdC0+TnVtQ2x1c3RlcnMpIHsKQEAgLTM2Nyw3ICsz NzIsOCBAQAogCQkJCXJldHVybiBGU0ZBVEFMOwogCQkJc3RhcnQgPSBidWZm ZXI7CiAJCX0KLQkJaWYgKGVuZGNsID09IGN1cmNsKQorCQkvKiBzdGFydGNs IGlzIDwgQ0xVU1RfRklSU1QgZm9yICFmYXQzMiByb290ICovCisJCWlmICgo ZW5kY2wgPT0gY3VyY2wpIHx8IChzdGFydGNsIDwgQ0xVU1RfRklSU1QpKQog CQkJZm9yICg7IHN0YXJ0IDwgZW5kOyBzdGFydCArPSAzMikKIAkJCQkqc3Rh cnQgPSBTTE9UX0RFTEVURUQ7CiAJCXJldHVybiBGU0RJUk1PRDsKQEAgLTM4 NSw3ICszOTEsNyBAQAogCS8qCiAJICogQ2hlY2sgc2l6ZSBvbiBvcmRpbmFy eSBmaWxlcwogCSAqLwotCWludDMyX3QgcGh5c2ljYWxTaXplOworCXVfaW50 MzJfdCBwaHlzaWNhbFNpemU7CiAKIAlpZiAoZGlyLT5oZWFkID09IENMVVNU X0ZSRUUpCiAJCXBoeXNpY2FsU2l6ZSA9IDA7CkBAIC02NDQsNyArNjUwLDgg QEAKIAkJCQlkaXJlbnQuaGVhZCB8PSAocFsyMF0gPDwgMTYpIHwgKHBbMjFd IDw8IDI0KTsKIAkJCWRpcmVudC5zaXplID0gcFsyOF0gfCAocFsyOV0gPDwg OCkgfCAocFszMF0gPDwgMTYpIHwgKHBbMzFdIDw8IDI0KTsKIAkJCWlmICh2 YWxsZm4pIHsKLQkJCQlzdHJjcHkoZGlyZW50LmxuYW1lLCBsb25nTmFtZSk7 CisJCQkJc3RybGNweShkaXJlbnQubG5hbWUsIGxvbmdOYW1lLAorCQkJCSAg ICBzaXplb2YoZGlyZW50LmxuYW1lKSk7CiAJCQkJbG9uZ05hbWVbMF0gPSAn XDAnOwogCQkJCXNob3J0U3VtID0gLTE7CiAJCQl9CkBAIC04MzIsNiArODM5 LDEwIEBACiAJCQl9CiAJCQlib290LT5OdW1GaWxlcysrOwogCQl9CisKKwkJ aWYgKCEoYm9vdC0+ZmxhZ3MgJiBGQVQzMikgJiYgIWRpci0+cGFyZW50KQor CQkJYnJlYWs7CisKIAkJaWYgKG1vZCAmIFRISVNNT0QpIHsKIAkJCWxhc3Qg Kj0gMzI7CiAJCQlpZiAobHNlZWsoZiwgb2ZmLCBTRUVLX1NFVCkgIT0gb2Zm CkBAIC04NDcsNiArODU4LDE5IEBACiAJCQkJaW52bGZuID8gaW52bGZuIDog dmFsbGZuLCBwLAogCQkJCWludmxmbiA/IGludmNsIDogdmFsY2wsIC0xLCAw LAogCQkJCWZ1bGxwYXRoKGRpciksIDEpOworCisJLyogVGhlIHJvb3QgZGly ZWN0b3J5IG9mIG5vbiBmYXQzMiBmaWxlc3lzdGVtcyBpcyBpbiBhIHNwZWNp YWwKKwkgKiBhcmVhIGFuZCBtYXkgaGF2ZSBiZWVuIG1vZGlmaWVkIGFib3Zl IHdpdGhvdXQgYmVpbmcgd3JpdHRlbiBvdXQuCisJICovCisJaWYgKChtb2Qg JiBGU0RJUk1PRCkgJiYgIShib290LT5mbGFncyAmIEZBVDMyKSAmJiAhZGly LT5wYXJlbnQpIHsKKwkJbGFzdCAqPSAzMjsKKwkJaWYgKGxzZWVrKGYsIG9m ZiwgU0VFS19TRVQpICE9IG9mZgorCQkgICAgfHwgd3JpdGUoZiwgYnVmZmVy LCBsYXN0KSAhPSBsYXN0KSB7CisJCQlwZXJyb3IoIlVuYWJsZSB0byB3cml0 ZSBkaXJlY3RvcnkiKTsKKwkJCXJldHVybiBGU0ZBVEFMOworCQl9CisJCW1v ZCAmPSB+VEhJU01PRDsKKwl9CiAJcmV0dXJuIG1vZCAmIH5USElTTU9EOwog fQogCkBAIC05MzYsNyArOTYwLDcgQEAKIAkJbGZvZmYgPSBsZmNsICogYm9v dC0+Q2x1c3RlclNpemUKIAkJICAgICsgYm9vdC0+Q2x1c3Rlck9mZnNldCAq IGJvb3QtPkJ5dGVzUGVyU2VjOwogCQlpZiAobHNlZWsoZG9zZnMsIGxmb2Zm LCBTRUVLX1NFVCkgIT0gbGZvZmYKLQkJICAgIHx8IHJlYWQoZG9zZnMsIGxm YnVmLCBib290LT5DbHVzdGVyU2l6ZSkgIT0gYm9vdC0+Q2x1c3RlclNpemUp IHsKKwkJICAgIHx8IChzaXplX3QpcmVhZChkb3NmcywgbGZidWYsIGJvb3Qt PkNsdXN0ZXJTaXplKSAhPSBib290LT5DbHVzdGVyU2l6ZSkgewogCQkJcGVy cm9yKCJjb3VsZCBub3QgcmVhZCBMT1NULkRJUiIpOwogCQkJcmV0dXJuIEZT RkFUQUw7CiAJCX0KQEAgLTk2Niw3ICs5OTAsNyBAQAogCXBbMzFdID0gKHVf Y2hhcikoZC5zaXplID4+IDI0KTsKIAlmYXRbaGVhZF0uZmxhZ3MgfD0gRkFU X1VTRUQ7CiAJaWYgKGxzZWVrKGRvc2ZzLCBsZm9mZiwgU0VFS19TRVQpICE9 IGxmb2ZmCi0JICAgIHx8IHdyaXRlKGRvc2ZzLCBsZmJ1ZiwgYm9vdC0+Q2x1 c3RlclNpemUpICE9IGJvb3QtPkNsdXN0ZXJTaXplKSB7CisJICAgIHx8IChz aXplX3Qpd3JpdGUoZG9zZnMsIGxmYnVmLCBib290LT5DbHVzdGVyU2l6ZSkg IT0gYm9vdC0+Q2x1c3RlclNpemUpIHsKIAkJcGVycm9yKCJjb3VsZCBub3Qg d3JpdGUgTE9TVC5ESVIiKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQpkaWZm IC1ydSBmc2NrX21zZG9zZnMub3JpZy9kb3Nmcy5oIGZzY2tfbXNkb3Nmcy9k b3Nmcy5oCi0tLSBmc2NrX21zZG9zZnMub3JpZy9kb3Nmcy5oCTIwMTAtMDEt MDYgMTE6MDc6MjQuMDAwMDAwMDAwICswMDAwCisrKyBmc2NrX21zZG9zZnMv ZG9zZnMuaAkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAwMApA QCAtMTIsMTMgKzEyLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBi aW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0 CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0 aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVu dGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0 aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5nIG1hdGVy aWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3 YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3ds ZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUg ZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdvbGZnYW5n IFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5p dmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLSAq ICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0 cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0aG91dCBz cGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgogICogVEhJ UyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBgYEFTIElT JycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMs IElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1QTElFRCBX QVJSQU5USUVTCmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2V4dC5oIGZz Y2tfbXNkb3Nmcy9leHQuaAotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZXh0LmgJ MjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tf bXNkb3Nmcy9leHQuaAkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCAr MDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC03NywxMiArNzAsMTIgQEAKICNkZWZpbmUJ RlNESVJNT0QJMgkJLyogU29tZSBkaXJlY3Rvcnkgd2FzIG1vZGlmaWVkICov CiAjZGVmaW5lCUZTRkFUTU9ECTQJCS8qIFRoZSBGQVQgd2FzIG1vZGlmaWVk ICovCiAjZGVmaW5lCUZTRVJST1IJCTgJCS8qIFNvbWUgdW5yZWNvdmVyZWQg ZXJyb3IgcmVtYWlucyAqLwotI2RlZmluZQlGU0ZBVEFMCQkxNgkJLyogU29t ZSB1bnJlY292ZXJhYmxlIGVycm9yIG9jY3VyZWQgKi8KKyNkZWZpbmUJRlNG QVRBTAkJMTYJCS8qIFNvbWUgdW5yZWNvdmVyYWJsZSBlcnJvciBvY2N1cnJl ZCAqLwogI2RlZmluZSBGU0RJUlRZCQkzMgkJLyogRmlsZSBzeXN0ZW0gaXMg ZGlydHkgKi8KICNkZWZpbmUgRlNGSVhGQVQJNjQJCS8qIEZpeCBmaWxlIHN5 c3RlbSBGQVQgKi8KIAogLyoKLSAqIHJlYWQgYSBib290IGJsb2NrIGluIGEg bWFjaGluZSBpbmRlcGVuZGVuZCBmYXNoaW9uIGFuZCB0cmFuc2xhdGUKKyAq IHJlYWQgYSBib290IGJsb2NrIGluIGEgbWFjaGluZSBpbmRlcGVuZGVudCBm YXNoaW9uIGFuZCB0cmFuc2xhdGUKICAqIGl0IGludG8gb3VyIHN0cnVjdCBi b290YmxvY2suCiAgKi8KIGludCByZWFkYm9vdChpbnQsIHN0cnVjdCBib290 YmxvY2sgKik7CkBAIC05NiwxMyArODksMTMgQEAKICAqIFJlYWQgb25lIG9m IHRoZSBGQVQgY29waWVzIGFuZCByZXR1cm4gYSBwb2ludGVyIHRvIHRoZSBu ZXcKICAqIGFsbG9jYXRlZCBhcnJheSBob2xkaW5nIG91ciBkZXNjcmlwdGlv biBvZiBpdC4KICAqLwotaW50IHJlYWRmYXQoaW50LCBzdHJ1Y3QgYm9vdGJs b2NrICosIGludCwgc3RydWN0IGZhdEVudHJ5ICoqKTsKK2ludCByZWFkZmF0 KGludCwgc3RydWN0IGJvb3RibG9jayAqLCB1X2ludCwgc3RydWN0IGZhdEVu dHJ5ICoqKTsKIAogLyoKICAqIENoZWNrIHR3byBGQVQgY29waWVzIGZvciBj b25zaXN0ZW5jeSBhbmQgbWVyZ2UgY2hhbmdlcyBpbnRvIHRoZQotICogZmly c3QgaWYgbmVjY2Vzc2FyeS4KKyAqIGZpcnN0IGlmIG5lY2Vzc2FyeS4KICAq LwotaW50IGNvbXBhcmVmYXQoc3RydWN0IGJvb3RibG9jayAqLCBzdHJ1Y3Qg ZmF0RW50cnkgKiwgc3RydWN0IGZhdEVudHJ5ICosIGludCk7CitpbnQgY29t cGFyZWZhdChzdHJ1Y3QgYm9vdGJsb2NrICosIHN0cnVjdCBmYXRFbnRyeSAq LCBzdHJ1Y3QgZmF0RW50cnkgKiwgdV9pbnQpOwogCiAvKgogICogQ2hlY2sg YSBGQVQKZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvZmF0LmMgZnNja19t c2Rvc2ZzL2ZhdC5jCi0tLSBmc2NrX21zZG9zZnMub3JpZy9mYXQuYwkyMDEw LTAxLTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19tc2Rv c2ZzL2ZhdC5jCTIwMTAtMDEtMDcgMjI6MTM6MzEuMDAwMDAwMDAwICswMDAw CkBAIC0xMCwxMyArMTAsNiBAQAogICogMi4gUmVkaXN0cmlidXRpb25zIGlu IGJpbmFyeSBmb3JtIG11c3QgcmVwcm9kdWNlIHRoZSBhYm92ZSBjb3B5cmln aHQKICAqICAgIG5vdGljZSwgdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5k IHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBpbiB0aGUKICAqICAgIGRvY3Vt ZW50YXRpb24gYW5kL29yIG90aGVyIG1hdGVyaWFscyBwcm92aWRlZCB3aXRo IHRoZSBkaXN0cmlidXRpb24uCi0gKiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0 ZXJpYWxzIG1lbnRpb25pbmcgZmVhdHVyZXMgb3IgdXNlIG9mIHRoaXMgc29m dHdhcmUKLSAqICAgIG11c3QgZGlzcGxheSB0aGUgZm9sbG93aW5nIGFja25v d2xlZGdlbWVudDoKLSAqCVRoaXMgcHJvZHVjdCBpbmNsdWRlcyBzb2Z0d2Fy ZSBkZXZlbG9wZWQgYnkgTWFydGluIEh1c2VtYW5uCi0gKglhbmQgV29sZmdh bmcgU29sZnJhbmsuCi0gKiA0LiBOZWl0aGVyIHRoZSBuYW1lIG9mIHRoZSBV bml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2YgaXRzIGNvbnRyaWJ1dG9ycwot ICogICAgbWF5IGJlIHVzZWQgdG8gZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1 Y3RzIGRlcml2ZWQgZnJvbSB0aGlzIHNvZnR3YXJlCi0gKiAgICB3aXRob3V0 IHNwZWNpZmljIHByaW9yIHdyaXR0ZW4gcGVybWlzc2lvbi4KICAqCiAgKiBU SElTIFNPRlRXQVJFIElTIFBST1ZJREVEIEJZIFRIRSBBVVRIT1JTIGBgQVMg SVMnJyBBTkQgQU5ZIEVYUFJFU1MgT1IKICAqIElNUExJRUQgV0FSUkFOVElF UywgSU5DTFVESU5HLCBCVVQgTk9UIExJTUlURUQgVE8sIFRIRSBJTVBMSUVE IFdBUlJBTlRJRVMKQEAgLTQ3LDEwICs0MCwxMCBAQAogI2luY2x1ZGUgImV4 dC5oIgogI2luY2x1ZGUgImZzdXRpbC5oIgogCi1zdGF0aWMgaW50IGNoZWNr Y2xudW0oc3RydWN0IGJvb3RibG9jayAqLCBpbnQsIGNsX3QsIGNsX3QgKik7 Ci1zdGF0aWMgaW50IGNsdXN0ZGlmZmVyKGNsX3QsIGNsX3QgKiwgY2xfdCAq LCBpbnQpOworc3RhdGljIGludCBjaGVja2NsbnVtKHN0cnVjdCBib290Ymxv Y2sgKiwgdV9pbnQsIGNsX3QsIGNsX3QgKik7CitzdGF0aWMgaW50IGNsdXN0 ZGlmZmVyKGNsX3QsIGNsX3QgKiwgY2xfdCAqLCB1X2ludCk7CiBzdGF0aWMg aW50IHRyeWNsZWFyKHN0cnVjdCBib290YmxvY2sgKiwgc3RydWN0IGZhdEVu dHJ5ICosIGNsX3QsIGNsX3QgKik7Ci1zdGF0aWMgaW50IF9yZWFkZmF0KGlu dCwgc3RydWN0IGJvb3RibG9jayAqLCBpbnQsIHVfY2hhciAqKik7CitzdGF0 aWMgaW50IF9yZWFkZmF0KGludCwgc3RydWN0IGJvb3RibG9jayAqLCB1X2lu dCwgdV9jaGFyICoqKTsKIAogLyotCiAgKiBUaGUgZmlyc3QgMiBGQVQgZW50 cmllcyBjb250YWluIHBzZXVkby1jbHVzdGVyIG51bWJlcnMgd2l0aCB0aGUg Zm9sbG93aW5nCkBAIC0xMzUsNyArMTI4LDcgQEAKICAqIENoZWNrIGEgY2x1 c3RlciBudW1iZXIgZm9yIHZhbGlkIHZhbHVlCiAgKi8KIHN0YXRpYyBpbnQK LWNoZWNrY2xudW0oc3RydWN0IGJvb3RibG9jayAqYm9vdCwgaW50IGZhdCwg Y2xfdCBjbCwgY2xfdCAqbmV4dCkKK2NoZWNrY2xudW0oc3RydWN0IGJvb3Ri bG9jayAqYm9vdCwgdV9pbnQgZmF0LCBjbF90IGNsLCBjbF90ICpuZXh0KQog ewogCWlmICgqbmV4dCA+PSAoQ0xVU1RfUlNSVkQmYm9vdC0+Q2x1c3RNYXNr KSkKIAkJKm5leHQgfD0gfmJvb3QtPkNsdXN0TWFzazsKQEAgLTE2Niw3ICsx NTksNyBAQAogICogUmVhZCBhIEZBVCBmcm9tIGRpc2suIFJldHVybnMgMSBp ZiBzdWNjZXNzZnVsLCAwIG90aGVyd2lzZS4KICAqLwogc3RhdGljIGludAot X3JlYWRmYXQoaW50IGZzLCBzdHJ1Y3QgYm9vdGJsb2NrICpib290LCBpbnQg bm8sIHVfY2hhciAqKmJ1ZmZlcikKK19yZWFkZmF0KGludCBmcywgc3RydWN0 IGJvb3RibG9jayAqYm9vdCwgdV9pbnQgbm8sIHVfY2hhciAqKmJ1ZmZlcikK IHsKIAlvZmZfdCBvZmY7CiAKQEAgLTE4NCw3ICsxNzcsNyBAQAogCQlnb3Rv IGVycjsKIAl9CiAKLQlpZiAocmVhZChmcywgKmJ1ZmZlciwgYm9vdC0+RkFU c2VjcyAqIGJvb3QtPkJ5dGVzUGVyU2VjKQorCWlmICgoc2l6ZV90KXJlYWQo ZnMsICpidWZmZXIsIGJvb3QtPkZBVHNlY3MgKiBib290LT5CeXRlc1BlclNl YykKIAkgICAgIT0gYm9vdC0+RkFUc2VjcyAqIGJvb3QtPkJ5dGVzUGVyU2Vj KSB7CiAJCXBlcnJvcigiVW5hYmxlIHRvIHJlYWQgRkFUIik7CiAJCWdvdG8g ZXJyOwpAQCAtMjAxLDI0ICsxOTQsMjYgQEAKICAqIFJlYWQgYSBGQVQgYW5k IGRlY29kZSBpdCBpbnRvIGludGVybmFsIGZvcm1hdAogICovCiBpbnQKLXJl YWRmYXQoaW50IGZzLCBzdHJ1Y3QgYm9vdGJsb2NrICpib290LCBpbnQgbm8s IHN0cnVjdCBmYXRFbnRyeSAqKmZwKQorcmVhZGZhdChpbnQgZnMsIHN0cnVj dCBib290YmxvY2sgKmJvb3QsIHVfaW50IG5vLCBzdHJ1Y3QgZmF0RW50cnkg KipmcCkKIHsKIAlzdHJ1Y3QgZmF0RW50cnkgKmZhdDsKIAl1X2NoYXIgKmJ1 ZmZlciwgKnA7CiAJY2xfdCBjbDsKIAlpbnQgcmV0ID0gRlNPSzsKKwlzaXpl X3QgbGVuOwogCiAJYm9vdC0+TnVtRnJlZSA9IGJvb3QtPk51bUJhZCA9IDA7 CiAKIAlpZiAoIV9yZWFkZmF0KGZzLCBib290LCBubywgJmJ1ZmZlcikpCiAJ CXJldHVybiBGU0ZBVEFMOwogCQkKLQlmYXQgPSBjYWxsb2MoYm9vdC0+TnVt Q2x1c3RlcnMsIHNpemVvZihzdHJ1Y3QgZmF0RW50cnkpKTsKKwlmYXQgPSBt YWxsb2MobGVuID0gYm9vdC0+TnVtQ2x1c3RlcnMgKiBzaXplb2Yoc3RydWN0 IGZhdEVudHJ5KSk7CiAJaWYgKGZhdCA9PSBOVUxMKSB7CiAJCXBlcnJvcigi Tm8gc3BhY2UgZm9yIEZBVCIpOwogCQlmcmVlKGJ1ZmZlcik7CiAJCXJldHVy biBGU0ZBVEFMOwogCX0KKwkodm9pZCltZW1zZXQoZmF0LCAwLCBsZW4pOwog CiAJaWYgKGJ1ZmZlclswXSAhPSBib290LT5NZWRpYQogCSAgICB8fCBidWZm ZXJbMV0gIT0gMHhmZiB8fCBidWZmZXJbMl0gIT0gMHhmZgpAQCAtMzExLDcg KzMwNiwxMSBAQAogCX0KIAogCWZyZWUoYnVmZmVyKTsKLQkqZnAgPSBmYXQ7 CisJaWYgKHJldCAmIEZTRkFUQUwpIHsKKwkJZnJlZShmYXQpOworCQkqZnAg PSBOVUxMOworCX0gZWxzZQorCQkqZnAgPSBmYXQ7CiAJcmV0dXJuIHJldDsK IH0KIApAQCAtMzMxLDcgKzMzMCw3IEBACiB9CiAKIHN0YXRpYyBpbnQKLWNs dXN0ZGlmZmVyKGNsX3QgY2wsIGNsX3QgKmNwMSwgY2xfdCAqY3AyLCBpbnQg ZmF0bnVtKQorY2x1c3RkaWZmZXIoY2xfdCBjbCwgY2xfdCAqY3AxLCBjbF90 ICpjcDIsIHVfaW50IGZhdG51bSkKIHsKIAlpZiAoKmNwMSA9PSBDTFVTVF9G UkVFIHx8ICpjcDEgPj0gQ0xVU1RfUlNSVkQpIHsKIAkJaWYgKCpjcDIgPT0g Q0xVU1RfRlJFRSB8fCAqY3AyID49IENMVVNUX1JTUlZEKSB7CkBAIC0zNDYs MTMgKzM0NSwxMyBAQAogCQkJCX0KIAkJCQlyZXR1cm4gRlNGQVRBTDsKIAkJ CX0KLQkJCXB3YXJuKCJDbHVzdGVyICV1IGlzIG1hcmtlZCAlcyBpbiBGQVQg MCwgJXMgaW4gRkFUICVkXG4iLAorCQkJcHdhcm4oIkNsdXN0ZXIgJXUgaXMg bWFya2VkICVzIGluIEZBVCAwLCAlcyBpbiBGQVQgJXVcbiIsCiAJCQkgICAg ICBjbCwgcnNydmRjbHR5cGUoKmNwMSksIHJzcnZkY2x0eXBlKCpjcDIpLCBm YXRudW0pOwogCQkJaWYgKGFzaygwLCAiVXNlIEZBVCAwJ3MgZW50cnkiKSkg ewogCQkJCSpjcDIgPSAqY3AxOwogCQkJCXJldHVybiBGU0ZBVE1PRDsKIAkJ CX0KLQkJCWlmIChhc2soMCwgIlVzZSBGQVQgJWQncyBlbnRyeSIsIGZhdG51 bSkpIHsKKwkJCWlmIChhc2soMCwgIlVzZSBGQVQgJXUncyBlbnRyeSIsIGZh dG51bSkpIHsKIAkJCQkqY3AxID0gKmNwMjsKIAkJCQlyZXR1cm4gRlNGQVRN T0Q7CiAJCQl9CkBAIC0zNjAsNyArMzU5LDcgQEAKIAkJfQogCQlwd2Fybigi Q2x1c3RlciAldSBpcyBtYXJrZWQgJXMgaW4gRkFUIDAsIGJ1dCBjb250aW51 ZXMgd2l0aCBjbHVzdGVyICV1IGluIEZBVCAlZFxuIiwKIAkJICAgICAgY2ws IHJzcnZkY2x0eXBlKCpjcDEpLCAqY3AyLCBmYXRudW0pOwotCQlpZiAoYXNr KDAsICJVc2UgY29udGludWF0aW9uIGZyb20gRkFUICVkIiwgZmF0bnVtKSkg eworCQlpZiAoYXNrKDAsICJVc2UgY29udGludWF0aW9uIGZyb20gRkFUICV1 IiwgZmF0bnVtKSkgewogCQkJKmNwMSA9ICpjcDI7CiAJCQlyZXR1cm4gRlNG QVRNT0Q7CiAJCX0KQEAgLTM3MSw3ICszNzAsNyBAQAogCQlyZXR1cm4gRlNG QVRBTDsKIAl9CiAJaWYgKCpjcDIgPT0gQ0xVU1RfRlJFRSB8fCAqY3AyID49 IENMVVNUX1JTUlZEKSB7Ci0JCXB3YXJuKCJDbHVzdGVyICV1IGNvbnRpbnVl cyB3aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAsIGJ1dCBpcyBtYXJrZWQgJXMg aW4gRkFUICVkXG4iLAorCQlwd2FybigiQ2x1c3RlciAldSBjb250aW51ZXMg d2l0aCBjbHVzdGVyICV1IGluIEZBVCAwLCBidXQgaXMgbWFya2VkICVzIGlu IEZBVCAldVxuIiwKIAkJICAgICAgY2wsICpjcDEsIHJzcnZkY2x0eXBlKCpj cDIpLCBmYXRudW0pOwogCQlpZiAoYXNrKDAsICJVc2UgY29udGludWF0aW9u IGZyb20gRkFUIDAiKSkgewogCQkJKmNwMiA9ICpjcDE7CkBAIC0zODMsMTMg KzM4MiwxMyBAQAogCQl9CiAJCXJldHVybiBGU0VSUk9SOwogCX0KLQlwd2Fy bigiQ2x1c3RlciAldSBjb250aW51ZXMgd2l0aCBjbHVzdGVyICV1IGluIEZB VCAwLCBidXQgd2l0aCBjbHVzdGVyICV1IGluIEZBVCAlZFxuIiwKKwlwd2Fy bigiQ2x1c3RlciAldSBjb250aW51ZXMgd2l0aCBjbHVzdGVyICV1IGluIEZB VCAwLCBidXQgd2l0aCBjbHVzdGVyICV1IGluIEZBVCAldVxuIiwKIAkgICAg ICBjbCwgKmNwMSwgKmNwMiwgZmF0bnVtKTsKIAlpZiAoYXNrKDAsICJVc2Ug Y29udGludWF0aW9uIGZyb20gRkFUIDAiKSkgewogCQkqY3AyID0gKmNwMTsK IAkJcmV0dXJuIEZTRkFUTU9EOwogCX0KLQlpZiAoYXNrKDAsICJVc2UgY29u dGludWF0aW9uIGZyb20gRkFUICVkIiwgZmF0bnVtKSkgeworCWlmIChhc2so MCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgJXUiLCBmYXRudW0pKSB7 CiAJCSpjcDEgPSAqY3AyOwogCQlyZXR1cm4gRlNGQVRNT0Q7CiAJfQpAQCAt NDAxLDggKzQwMCw4IEBACiAgKiBpbnRvIHRoZSBmaXJzdCBvbmUuCiAgKi8K IGludAotY29tcGFyZWZhdChzdHJ1Y3QgYm9vdGJsb2NrICpib290LCBzdHJ1 Y3QgZmF0RW50cnkgKmZpcnN0LCAKLSAgICBzdHJ1Y3QgZmF0RW50cnkgKnNl Y29uZCwgaW50IGZhdG51bSkKK2NvbXBhcmVmYXQoc3RydWN0IGJvb3RibG9j ayAqYm9vdCwgc3RydWN0IGZhdEVudHJ5ICpmaXJzdCwKKyAgICBzdHJ1Y3Qg ZmF0RW50cnkgKnNlY29uZCwgdV9pbnQgZmF0bnVtKQogewogCWNsX3QgY2w7 CiAJaW50IHJldCA9IEZTT0s7CkBAIC01NDIsOCArNTQxLDggQEAKIHsKIAl1 X2NoYXIgKmJ1ZmZlciwgKnA7CiAJY2xfdCBjbDsKLQlpbnQgaTsKLQl1X2lu dDMyX3QgZmF0c3o7CisJdV9pbnQgaTsKKwlzaXplX3QgZmF0c3o7CiAJb2Zm X3Qgb2ZmOwogCWludCByZXQgPSBGU09LOwogCkBAIC02MzMsNyArNjMyLDcg QEAKIAkJb2ZmID0gYm9vdC0+UmVzU2VjdG9ycyArIGkgKiBib290LT5GQVRz ZWNzOwogCQlvZmYgKj0gYm9vdC0+Qnl0ZXNQZXJTZWM7CiAJCWlmIChsc2Vl ayhmcywgb2ZmLCBTRUVLX1NFVCkgIT0gb2ZmCi0JCSAgICB8fCB3cml0ZShm cywgYnVmZmVyLCBmYXRzeikgIT0gZmF0c3opIHsKKwkJICAgIHx8IChzaXpl X3Qpd3JpdGUoZnMsIGJ1ZmZlciwgZmF0c3opICE9IGZhdHN6KSB7CiAJCQlw ZXJyb3IoIlVuYWJsZSB0byB3cml0ZSBGQVQiKTsKIAkJCXJldCA9IEZTRkFU QUw7IC8qIFJldHVybiBpbW1lZGlhdGVseT8JCVhYWCAqLwogCQl9CkBAIC02 ODMsMTcgKzY4Miw2IEBACiAJCQkJcmV0ID0gMTsKIAkJCX0KIAkJfQotCQlp ZiAoYm9vdC0+TnVtRnJlZSAmJiBmYXRbYm9vdC0+RlNOZXh0XS5uZXh0ICE9 IENMVVNUX0ZSRUUpIHsKLQkJCXB3YXJuKCJOZXh0IGZyZWUgY2x1c3RlciBp biBGU0luZm8gYmxvY2sgKCV1KSBub3QgZnJlZVxuIiwKLQkJCSAgICAgIGJv b3QtPkZTTmV4dCk7Ci0JCQlpZiAoYXNrKDEsICJGaXgiKSkKLQkJCQlmb3Ig KGhlYWQgPSBDTFVTVF9GSVJTVDsgaGVhZCA8IGJvb3QtPk51bUNsdXN0ZXJz OyBoZWFkKyspCi0JCQkJCWlmIChmYXRbaGVhZF0ubmV4dCA9PSBDTFVTVF9G UkVFKSB7Ci0JCQkJCQlib290LT5GU05leHQgPSBoZWFkOwotCQkJCQkJcmV0 ID0gMTsKLQkJCQkJCWJyZWFrOwotCQkJCQl9Ci0JCX0KIAkJaWYgKHJldCkK IAkJCW1vZCB8PSB3cml0ZWZzaW5mbyhkb3NmcywgYm9vdCk7CiAJfQpkaWZm IC1ydSBmc2NrX21zZG9zZnMub3JpZy9mc2NrX21zZG9zZnMuOCBmc2NrX21z ZG9zZnMvZnNja19tc2Rvc2ZzLjgKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL2Zz Y2tfbXNkb3Nmcy44CTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAwICsw MDAwCisrKyBmc2NrX21zZG9zZnMvZnNja19tc2Rvc2ZzLjgJMjAxMC0wMS0w NyAyMjowOToxMy4wMDAwMDAwMDAgKzAwMDAKQEAgLTExLDEzICsxMSw2IEBA CiAuXCIgMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3Qg cmVwcm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKIC5cIiAgICBub3RpY2Us IHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0aGUgZm9sbG93aW5nIGRp c2NsYWltZXIgaW4gdGhlCiAuXCIgICAgZG9jdW1lbnRhdGlvbiBhbmQvb3Ig b3RoZXIgbWF0ZXJpYWxzIHByb3ZpZGVkIHdpdGggdGhlIGRpc3RyaWJ1dGlv bi4KLS5cIiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25p bmcgZmVhdHVyZXMgb3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLS5cIiAgICBt dXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3dsZWRnZW1lbnQ6Ci0u XCIJVGhpcyBwcm9kdWN0IGluY2x1ZGVzIHNvZnR3YXJlIGRldmVsb3BlZCBi eSBNYXJ0aW4gSHVzZW1hbm4KLS5cIglhbmQgV29sZmdhbmcgU29sZnJhbmsu Ci0uXCIgNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5pdmVyc2l0eSBu b3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLS5cIiAgICBtYXkg YmUgdXNlZCB0byBlbmRvcnNlIG9yIHByb21vdGUgcHJvZHVjdHMgZGVyaXZl ZCBmcm9tIHRoaXMgc29mdHdhcmUKLS5cIiAgICB3aXRob3V0IHNwZWNpZmlj IHByaW9yIHdyaXR0ZW4gcGVybWlzc2lvbi4KIC5cIgogLlwiIFRISVMgU09G VFdBUkUgSVMgUFJPVklERUQgQlkgVEhFIEFVVEhPUlMgYGBBUyBJUycnIEFO RCBBTlkgRVhQUkVTUyBPUgogLlwiIElNUExJRUQgV0FSUkFOVElFUywgSU5D TFVESU5HLCBCVVQgTk9UIExJTUlURUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJB TlRJRVMKZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvbWFpbi5jIGZzY2tf bXNkb3Nmcy9tYWluLmMKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL21haW4uYwky MDEwLTAxLTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19t c2Rvc2ZzL21haW4uYwkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCAr MDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC00MCw3ICszMyw2IEBACiAKICNpbmNsdWRl IDxzdGRsaWIuaD4KICNpbmNsdWRlIDxzdHJpbmcuaD4KLSNpbmNsdWRlIDxj dHlwZS5oPgogI2luY2x1ZGUgPHN0ZGlvLmg+CiAjaW5jbHVkZSA8dW5pc3Rk Lmg+CiAjaW5jbHVkZSA8ZXJybm8uaD4K --0-3016821-1262920724=:92513-- From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 03:45:27 2010 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 4CFE21065670 for ; Fri, 8 Jan 2010 03:45:27 +0000 (UTC) (envelope-from giffunip@tutopia.com) Received: from web113509.mail.gq1.yahoo.com (web113509.mail.gq1.yahoo.com [98.136.167.49]) by mx1.freebsd.org (Postfix) with SMTP id 25AA98FC0A for ; Fri, 8 Jan 2010 03:45:27 +0000 (UTC) Received: (qmail 93920 invoked by uid 60001); 8 Jan 2010 03:18:44 -0000 Message-ID: <143520.92513.qm@web113509.mail.gq1.yahoo.com> X-YMail-OSG: h_yOZOUVM1msfefisn0pCSYdHzE62G5WZMaXlChqm8T9t33knfXXS5ZuTmIX3S498KGfI14oFWTMJQ9hOSU2ivR3BDBReNRN71RMFJAYjv1zcyIQwG.Pj40bICDBGEATf.Ico0RT_Fuf7tiYzPtAGgftV106iQAih14BjjcNF2T8jrUYPaDW_oYAV6MD_QQl7BBsmTm8uHDX60wPiUsieCRkobGgTV01duDImKuKGOV.brtQVQ0yZf7Knbw9a.L2uMoFo_GoQfuV3v6nZZ.IdOwZzpIDoUmtrZlJEN7zNEusZyfTFJCVnWJiuhuhtblf2A_xnFzCvLOKwdoRPMZu8g-- Received: from [190.157.123.47] by web113509.mail.gq1.yahoo.com via HTTP; Thu, 07 Jan 2010 19:18:44 PST X-RocketYMMF: giffunip X-Mailer: YahooMailClassic/9.0.20 YahooMailWebService/0.8.100.260964 Date: Thu, 7 Jan 2010 19:18:44 -0800 (PST) From: "Pedro F. Giffuni" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-3016821-1262920724=:92513" Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: giffunip@tutopia.com List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 03:45:27 -0000 --0-3016821-1262920724=:92513 Content-Type: text/plain; charset=us-ascii A new, and hopefully final, update: -Added a fix to a bug coverity found on NetBSD. -Removed bogus check that attempted to clear the sector after FSInfo in a valid FAT32 filesystem. --0-3016821-1262920724=:92513 Content-Type: application/octet-stream; name=patch-fsck_msdosfs Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename=patch-fsck_msdosfs ZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvYm9vdC5jIGZzY2tfbXNkb3Nm cy9ib290LmMKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL2Jvb3QuYwkyMDEwLTAx LTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19tc2Rvc2Zz L2Jvb3QuYwkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAwMApA QCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBi aW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0 CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0 aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVu dGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0 aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5nIG1hdGVy aWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3 YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3ds ZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUg ZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdvbGZnYW5n IFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5p dmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLSAq ICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0 cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0aG91dCBz cGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgogICogVEhJ UyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBgYEFTIElT JycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMs IElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1QTElFRCBX QVJSQU5USUVTCkBAIC00MCw3ICszMyw2IEBACiAKICNpbmNsdWRlIDxzdGRs aWIuaD4KICNpbmNsdWRlIDxzdHJpbmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5o PgogI2luY2x1ZGUgPHN0ZGlvLmg+CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAK QEAgLTU2LDggKzQ4LDkgQEAKIAl1X2NoYXIgZnNpbmZvWzIgKiBET1NCT09U QkxPQ0tTSVpFXTsKIAl1X2NoYXIgYmFja3VwW0RPU0JPT1RCTE9DS1NJWkVd OwogCWludCByZXQgPSBGU09LOworCWludCBpOwogCQotCWlmIChyZWFkKGRv c2ZzLCBibG9jaywgc2l6ZW9mIGJsb2NrKSA8IHNpemVvZiBibG9jaykgewor CWlmIChyZWFkKChzaXplX3QpZG9zZnMsIGJsb2NrLCBzaXplb2YgYmxvY2sp ICE9IHNpemVvZiBibG9jaykgewogCQlwZXJyb3IoImNvdWxkIG5vdCByZWFk IGJvb3QgYmxvY2siKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQpAQCAtMTYx LDEyICsxNTQsMjIgQEAKIAkJfQogCQliYWNrdXBbNjVdID0gYmxvY2tbNjVd OwkJCQkvKiBYWFggKi8KIAkJaWYgKG1lbWNtcChibG9jayArIDExLCBiYWNr dXAgKyAxMSwgNzkpKSB7Ci0JCQkvKiBDb3JyZWN0PwkJCQkJWFhYICovCi0J CQlwZmF0YWwoImJhY2t1cCBkb2Vzbid0IGNvbXBhcmUgdG8gcHJpbWFyeSBi b290YmxvY2siKTsKLQkJCWlmIChhbHdheXNubykKLQkJCQlwZmF0YWwoIlxu Iik7Ci0JCQllbHNlCi0JCQkJcmV0dXJuIEZTRkFUQUw7CisJCQkvKgorCQkJ ICogWFhYIFdlIHJlcXVpcmUgYSByZWZlcmVuY2UgdGhhdCBleHBsYWlucwor CQkJICogdGhhdCB0aGVzZSBieXRlcyBuZWVkIHRvIG1hdGNoLCBvciBzaG91 bGQKKwkJCSAqIGRyb3AgdGhlIGNoZWNrLiAgZ2R0QE5ldEJTRCBoYXMgb2Jz ZXJ2ZWQKKwkJCSAqIGZpbGVzeXN0ZW1zIHRoYXQgd29yayBmaW5lIHVuZGVy IFdpbmRvd3MgWFAKKwkJCSAqIGFuZCBOZXRCU0QgdGhhdCBkbyBub3QgbWF0 Y2gsIHNvIHRoZQorCQkJICogcmVxdWlyZW1lbnQgaXMgc3VzcGVjdC4gIEZv ciBub3csIGp1c3QKKwkJCSAqIHByaW50IG91dCB1c2VmdWwgaW5mb3JtYXRp b24gYW5kIGNvbnRpbnVlLgorCQkJICovCisJCQlwZmF0YWwoImJhY2t1cCAo YmxvY2sgJWQpIG1pc21hdGNoIHdpdGggcHJpbWFyeSBib290YmxvY2s6XG4i LAorCQkJICAgICAgICBib290LT5CYWNrdXApOworCQkJZm9yIChpID0gMTE7 IGkgPCAxMSArIDkwOyBpKyspIHsKKwkJCQlpZiAoYmxvY2tbaV0gIT0gYmFj a3VwW2ldKQorCQkJCQlwZmF0YWwoIlx0aT0lZFx0cHJpbWFyeSAweCUwMnhc dGJhY2t1cCAweCUwMnhcbiIsCisJCQkJCSAgICAgICBpLCBibG9ja1tpXSwg YmFja3VwW2ldKTsKKwkJCX0KIAkJfQogCQkvKiBDaGVjayBiYWNrdXAgRlNJ bmZvPwkJCQkJWFhYICovCiAJfQpkaWZmIC1ydSBmc2NrX21zZG9zZnMub3Jp Zy9jaGVjay5jIGZzY2tfbXNkb3Nmcy9jaGVjay5jCi0tLSBmc2NrX21zZG9z ZnMub3JpZy9jaGVjay5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvY2hlY2suYwkyMDEwLTAxLTA3IDIy OjA5OjEzLjAwMDAwMDAwMCArMDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAq IDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJv ZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMg bGlzdCBvZiBjb25kaXRpb25zIGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWlt ZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBt YXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICog My4gQWxsIGFkdmVydGlzaW5nIG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1 cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3Bs YXkgdGhlIGZvbGxvd2luZyBhY2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHBy b2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBI dXNlbWFubgotICoJYW5kIFdvbGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVp dGhlciB0aGUgbmFtZSBvZiB0aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVz IG9mIGl0cyBjb250cmlidXRvcnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVu ZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBz b2Z0d2FyZQotICogICAgd2l0aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVu IHBlcm1pc3Npb24uCiAgKgogICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURF RCBCWSBUSEUgQVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9S CiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBM SU1JVEVEIFRPLCBUSEUgSU1QTElFRCBXQVJSQU5USUVTCkBAIC00MCw3ICsz Myw2IEBACiAKICNpbmNsdWRlIDxzdGRsaWIuaD4KICNpbmNsdWRlIDxzdHJp bmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5oPgogI2luY2x1ZGUgPHN0ZGlvLmg+ CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAjaW5jbHVkZSA8ZmNudGwuaD4KQEAg LTU0LDcgKzQ2LDggQEAKIAlpbnQgZG9zZnM7CiAJc3RydWN0IGJvb3RibG9j ayBib290OwogCXN0cnVjdCBmYXRFbnRyeSAqZmF0ID0gTlVMTDsKLQlpbnQg aSwgZmluaXNoX2Rvc2RpcnNlY3Rpb249MDsKKwlpbnQgZmluaXNoX2Rvc2Rp cnNlY3Rpb249MDsKKwl1X2ludCBpOwogCWludCBtb2QgPSAwOwogCWludCBy ZXQgPSA4OwogCmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Rpci5jIGZz Y2tfbXNkb3Nmcy9kaXIuYwotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZGlyLmMJ MjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tf bXNkb3Nmcy9kaXIuYwkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCAr MDAwMApAQCAtMTIsMTMgKzEyLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC00NCw3ICszNyw2IEBACiAjaW5jbHVkZSA8 c3RkbGliLmg+CiAjaW5jbHVkZSA8c3RyaW5nLmg+CiAjaW5jbHVkZSA8Y3R5 cGUuaD4KLSNpbmNsdWRlIDxzdGRpby5oPgogI2luY2x1ZGUgPHVuaXN0ZC5o PgogI2luY2x1ZGUgPHRpbWUuaD4KIApAQCAtMjI2LDE2ICsyMTgsMjkgQEAK IAlpbnQgYjEsIGIyOwogCWNsX3QgY2w7CiAJaW50IHJldCA9IEZTT0s7CisJ c2l6ZV90IGxlbjsKIAogCWIxID0gYm9vdC0+Um9vdERpckVudHMgKiAzMjsK IAliMiA9IGJvb3QtPlNlY1BlckNsdXN0ICogYm9vdC0+Qnl0ZXNQZXJTZWM7 CiAKLQlpZiAoIShidWZmZXIgPSBtYWxsb2MoYjEgPiBiMiA/IGIxIDogYjIp KQotCSAgICB8fCAhKGRlbGJ1ZiA9IG1hbGxvYyhiMikpCi0JICAgIHx8ICEo cm9vdERpciA9IG5ld0Rvc0RpckVudHJ5KCkpKSB7Ci0JCXBlcnJvcigiTm8g c3BhY2UgZm9yIGRpcmVjdG9yeSIpOworCWlmICgoYnVmZmVyID0gbWFsbG9j KGxlbiA9IGIxID4gYjIgPyBiMSA6IGIyKSkgPT0gTlVMTCkgeworCQlwZXJy b3IoIk5vIHNwYWNlIGZvciBkaXJlY3RvcnkgYnVmZmVyIik7CiAJCXJldHVy biBGU0ZBVEFMOwogCX0KKworCWlmICgoZGVsYnVmID0gbWFsbG9jKGxlbiA9 IGIyKSkgPT0gTlVMTCkgeworCQlmcmVlKGJ1ZmZlcik7CisJCXBlcnJvcigi Tm8gc3BhY2UgZm9yIGRpcmVjdG9yeSBkZWxidWYiKTsKKwkJcmV0dXJuIEZT RkFUQUw7CisJfQorCisJaWYgKChyb290RGlyID0gbmV3RG9zRGlyRW50cnko KSkgPT0gTlVMTCkgeworCQlmcmVlKGJ1ZmZlcik7CisJCWZyZWUoZGVsYnVm KTsKKwkJcGVycm9yKCJObyBzcGFjZSBmb3IgZGlyZWN0b3J5IGVudHJ5Iik7 CisJCXJldHVybiBGU0ZBVEFMOworCX0KKwogCW1lbXNldChyb290RGlyLCAw LCBzaXplb2YgKnJvb3REaXIpOwogCWlmIChib290LT5mbGFncyAmIEZBVDMy KSB7CiAJCWlmIChib290LT5Sb290Q2wgPCBDTFVTVF9GSVJTVCB8fCBib290 LT5Sb290Q2wgPj0gYm9vdC0+TnVtQ2x1c3RlcnMpIHsKQEAgLTM2Nyw3ICsz NzIsOCBAQAogCQkJCXJldHVybiBGU0ZBVEFMOwogCQkJc3RhcnQgPSBidWZm ZXI7CiAJCX0KLQkJaWYgKGVuZGNsID09IGN1cmNsKQorCQkvKiBzdGFydGNs IGlzIDwgQ0xVU1RfRklSU1QgZm9yICFmYXQzMiByb290ICovCisJCWlmICgo ZW5kY2wgPT0gY3VyY2wpIHx8IChzdGFydGNsIDwgQ0xVU1RfRklSU1QpKQog CQkJZm9yICg7IHN0YXJ0IDwgZW5kOyBzdGFydCArPSAzMikKIAkJCQkqc3Rh cnQgPSBTTE9UX0RFTEVURUQ7CiAJCXJldHVybiBGU0RJUk1PRDsKQEAgLTM4 NSw3ICszOTEsNyBAQAogCS8qCiAJICogQ2hlY2sgc2l6ZSBvbiBvcmRpbmFy eSBmaWxlcwogCSAqLwotCWludDMyX3QgcGh5c2ljYWxTaXplOworCXVfaW50 MzJfdCBwaHlzaWNhbFNpemU7CiAKIAlpZiAoZGlyLT5oZWFkID09IENMVVNU X0ZSRUUpCiAJCXBoeXNpY2FsU2l6ZSA9IDA7CkBAIC02NDQsNyArNjUwLDgg QEAKIAkJCQlkaXJlbnQuaGVhZCB8PSAocFsyMF0gPDwgMTYpIHwgKHBbMjFd IDw8IDI0KTsKIAkJCWRpcmVudC5zaXplID0gcFsyOF0gfCAocFsyOV0gPDwg OCkgfCAocFszMF0gPDwgMTYpIHwgKHBbMzFdIDw8IDI0KTsKIAkJCWlmICh2 YWxsZm4pIHsKLQkJCQlzdHJjcHkoZGlyZW50LmxuYW1lLCBsb25nTmFtZSk7 CisJCQkJc3RybGNweShkaXJlbnQubG5hbWUsIGxvbmdOYW1lLAorCQkJCSAg ICBzaXplb2YoZGlyZW50LmxuYW1lKSk7CiAJCQkJbG9uZ05hbWVbMF0gPSAn XDAnOwogCQkJCXNob3J0U3VtID0gLTE7CiAJCQl9CkBAIC04MzIsNiArODM5 LDEwIEBACiAJCQl9CiAJCQlib290LT5OdW1GaWxlcysrOwogCQl9CisKKwkJ aWYgKCEoYm9vdC0+ZmxhZ3MgJiBGQVQzMikgJiYgIWRpci0+cGFyZW50KQor CQkJYnJlYWs7CisKIAkJaWYgKG1vZCAmIFRISVNNT0QpIHsKIAkJCWxhc3Qg Kj0gMzI7CiAJCQlpZiAobHNlZWsoZiwgb2ZmLCBTRUVLX1NFVCkgIT0gb2Zm CkBAIC04NDcsNiArODU4LDE5IEBACiAJCQkJaW52bGZuID8gaW52bGZuIDog dmFsbGZuLCBwLAogCQkJCWludmxmbiA/IGludmNsIDogdmFsY2wsIC0xLCAw LAogCQkJCWZ1bGxwYXRoKGRpciksIDEpOworCisJLyogVGhlIHJvb3QgZGly ZWN0b3J5IG9mIG5vbiBmYXQzMiBmaWxlc3lzdGVtcyBpcyBpbiBhIHNwZWNp YWwKKwkgKiBhcmVhIGFuZCBtYXkgaGF2ZSBiZWVuIG1vZGlmaWVkIGFib3Zl IHdpdGhvdXQgYmVpbmcgd3JpdHRlbiBvdXQuCisJICovCisJaWYgKChtb2Qg JiBGU0RJUk1PRCkgJiYgIShib290LT5mbGFncyAmIEZBVDMyKSAmJiAhZGly LT5wYXJlbnQpIHsKKwkJbGFzdCAqPSAzMjsKKwkJaWYgKGxzZWVrKGYsIG9m ZiwgU0VFS19TRVQpICE9IG9mZgorCQkgICAgfHwgd3JpdGUoZiwgYnVmZmVy LCBsYXN0KSAhPSBsYXN0KSB7CisJCQlwZXJyb3IoIlVuYWJsZSB0byB3cml0 ZSBkaXJlY3RvcnkiKTsKKwkJCXJldHVybiBGU0ZBVEFMOworCQl9CisJCW1v ZCAmPSB+VEhJU01PRDsKKwl9CiAJcmV0dXJuIG1vZCAmIH5USElTTU9EOwog fQogCkBAIC05MzYsNyArOTYwLDcgQEAKIAkJbGZvZmYgPSBsZmNsICogYm9v dC0+Q2x1c3RlclNpemUKIAkJICAgICsgYm9vdC0+Q2x1c3Rlck9mZnNldCAq IGJvb3QtPkJ5dGVzUGVyU2VjOwogCQlpZiAobHNlZWsoZG9zZnMsIGxmb2Zm LCBTRUVLX1NFVCkgIT0gbGZvZmYKLQkJICAgIHx8IHJlYWQoZG9zZnMsIGxm YnVmLCBib290LT5DbHVzdGVyU2l6ZSkgIT0gYm9vdC0+Q2x1c3RlclNpemUp IHsKKwkJICAgIHx8IChzaXplX3QpcmVhZChkb3NmcywgbGZidWYsIGJvb3Qt PkNsdXN0ZXJTaXplKSAhPSBib290LT5DbHVzdGVyU2l6ZSkgewogCQkJcGVy cm9yKCJjb3VsZCBub3QgcmVhZCBMT1NULkRJUiIpOwogCQkJcmV0dXJuIEZT RkFUQUw7CiAJCX0KQEAgLTk2Niw3ICs5OTAsNyBAQAogCXBbMzFdID0gKHVf Y2hhcikoZC5zaXplID4+IDI0KTsKIAlmYXRbaGVhZF0uZmxhZ3MgfD0gRkFU X1VTRUQ7CiAJaWYgKGxzZWVrKGRvc2ZzLCBsZm9mZiwgU0VFS19TRVQpICE9 IGxmb2ZmCi0JICAgIHx8IHdyaXRlKGRvc2ZzLCBsZmJ1ZiwgYm9vdC0+Q2x1 c3RlclNpemUpICE9IGJvb3QtPkNsdXN0ZXJTaXplKSB7CisJICAgIHx8IChz aXplX3Qpd3JpdGUoZG9zZnMsIGxmYnVmLCBib290LT5DbHVzdGVyU2l6ZSkg IT0gYm9vdC0+Q2x1c3RlclNpemUpIHsKIAkJcGVycm9yKCJjb3VsZCBub3Qg d3JpdGUgTE9TVC5ESVIiKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQpkaWZm IC1ydSBmc2NrX21zZG9zZnMub3JpZy9kb3Nmcy5oIGZzY2tfbXNkb3Nmcy9k b3Nmcy5oCi0tLSBmc2NrX21zZG9zZnMub3JpZy9kb3Nmcy5oCTIwMTAtMDEt MDYgMTE6MDc6MjQuMDAwMDAwMDAwICswMDAwCisrKyBmc2NrX21zZG9zZnMv ZG9zZnMuaAkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAwMApA QCAtMTIsMTMgKzEyLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBi aW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0 CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0 aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVu dGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0 aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5nIG1hdGVy aWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3 YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3ds ZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUg ZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdvbGZnYW5n IFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5p dmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLSAq ICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0 cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0aG91dCBz cGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgogICogVEhJ UyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBgYEFTIElT JycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMs IElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1QTElFRCBX QVJSQU5USUVTCmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2V4dC5oIGZz Y2tfbXNkb3Nmcy9leHQuaAotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZXh0LmgJ MjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tf bXNkb3Nmcy9leHQuaAkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCAr MDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC03NywxMiArNzAsMTIgQEAKICNkZWZpbmUJ RlNESVJNT0QJMgkJLyogU29tZSBkaXJlY3Rvcnkgd2FzIG1vZGlmaWVkICov CiAjZGVmaW5lCUZTRkFUTU9ECTQJCS8qIFRoZSBGQVQgd2FzIG1vZGlmaWVk ICovCiAjZGVmaW5lCUZTRVJST1IJCTgJCS8qIFNvbWUgdW5yZWNvdmVyZWQg ZXJyb3IgcmVtYWlucyAqLwotI2RlZmluZQlGU0ZBVEFMCQkxNgkJLyogU29t ZSB1bnJlY292ZXJhYmxlIGVycm9yIG9jY3VyZWQgKi8KKyNkZWZpbmUJRlNG QVRBTAkJMTYJCS8qIFNvbWUgdW5yZWNvdmVyYWJsZSBlcnJvciBvY2N1cnJl ZCAqLwogI2RlZmluZSBGU0RJUlRZCQkzMgkJLyogRmlsZSBzeXN0ZW0gaXMg ZGlydHkgKi8KICNkZWZpbmUgRlNGSVhGQVQJNjQJCS8qIEZpeCBmaWxlIHN5 c3RlbSBGQVQgKi8KIAogLyoKLSAqIHJlYWQgYSBib290IGJsb2NrIGluIGEg bWFjaGluZSBpbmRlcGVuZGVuZCBmYXNoaW9uIGFuZCB0cmFuc2xhdGUKKyAq IHJlYWQgYSBib290IGJsb2NrIGluIGEgbWFjaGluZSBpbmRlcGVuZGVudCBm YXNoaW9uIGFuZCB0cmFuc2xhdGUKICAqIGl0IGludG8gb3VyIHN0cnVjdCBi b290YmxvY2suCiAgKi8KIGludCByZWFkYm9vdChpbnQsIHN0cnVjdCBib290 YmxvY2sgKik7CkBAIC05NiwxMyArODksMTMgQEAKICAqIFJlYWQgb25lIG9m IHRoZSBGQVQgY29waWVzIGFuZCByZXR1cm4gYSBwb2ludGVyIHRvIHRoZSBu ZXcKICAqIGFsbG9jYXRlZCBhcnJheSBob2xkaW5nIG91ciBkZXNjcmlwdGlv biBvZiBpdC4KICAqLwotaW50IHJlYWRmYXQoaW50LCBzdHJ1Y3QgYm9vdGJs b2NrICosIGludCwgc3RydWN0IGZhdEVudHJ5ICoqKTsKK2ludCByZWFkZmF0 KGludCwgc3RydWN0IGJvb3RibG9jayAqLCB1X2ludCwgc3RydWN0IGZhdEVu dHJ5ICoqKTsKIAogLyoKICAqIENoZWNrIHR3byBGQVQgY29waWVzIGZvciBj b25zaXN0ZW5jeSBhbmQgbWVyZ2UgY2hhbmdlcyBpbnRvIHRoZQotICogZmly c3QgaWYgbmVjY2Vzc2FyeS4KKyAqIGZpcnN0IGlmIG5lY2Vzc2FyeS4KICAq LwotaW50IGNvbXBhcmVmYXQoc3RydWN0IGJvb3RibG9jayAqLCBzdHJ1Y3Qg ZmF0RW50cnkgKiwgc3RydWN0IGZhdEVudHJ5ICosIGludCk7CitpbnQgY29t cGFyZWZhdChzdHJ1Y3QgYm9vdGJsb2NrICosIHN0cnVjdCBmYXRFbnRyeSAq LCBzdHJ1Y3QgZmF0RW50cnkgKiwgdV9pbnQpOwogCiAvKgogICogQ2hlY2sg YSBGQVQKZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvZmF0LmMgZnNja19t c2Rvc2ZzL2ZhdC5jCi0tLSBmc2NrX21zZG9zZnMub3JpZy9mYXQuYwkyMDEw LTAxLTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19tc2Rv c2ZzL2ZhdC5jCTIwMTAtMDEtMDcgMjI6MTM6MzEuMDAwMDAwMDAwICswMDAw CkBAIC0xMCwxMyArMTAsNiBAQAogICogMi4gUmVkaXN0cmlidXRpb25zIGlu IGJpbmFyeSBmb3JtIG11c3QgcmVwcm9kdWNlIHRoZSBhYm92ZSBjb3B5cmln aHQKICAqICAgIG5vdGljZSwgdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5k IHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBpbiB0aGUKICAqICAgIGRvY3Vt ZW50YXRpb24gYW5kL29yIG90aGVyIG1hdGVyaWFscyBwcm92aWRlZCB3aXRo IHRoZSBkaXN0cmlidXRpb24uCi0gKiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0 ZXJpYWxzIG1lbnRpb25pbmcgZmVhdHVyZXMgb3IgdXNlIG9mIHRoaXMgc29m dHdhcmUKLSAqICAgIG11c3QgZGlzcGxheSB0aGUgZm9sbG93aW5nIGFja25v d2xlZGdlbWVudDoKLSAqCVRoaXMgcHJvZHVjdCBpbmNsdWRlcyBzb2Z0d2Fy ZSBkZXZlbG9wZWQgYnkgTWFydGluIEh1c2VtYW5uCi0gKglhbmQgV29sZmdh bmcgU29sZnJhbmsuCi0gKiA0LiBOZWl0aGVyIHRoZSBuYW1lIG9mIHRoZSBV bml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2YgaXRzIGNvbnRyaWJ1dG9ycwot ICogICAgbWF5IGJlIHVzZWQgdG8gZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1 Y3RzIGRlcml2ZWQgZnJvbSB0aGlzIHNvZnR3YXJlCi0gKiAgICB3aXRob3V0 IHNwZWNpZmljIHByaW9yIHdyaXR0ZW4gcGVybWlzc2lvbi4KICAqCiAgKiBU SElTIFNPRlRXQVJFIElTIFBST1ZJREVEIEJZIFRIRSBBVVRIT1JTIGBgQVMg SVMnJyBBTkQgQU5ZIEVYUFJFU1MgT1IKICAqIElNUExJRUQgV0FSUkFOVElF UywgSU5DTFVESU5HLCBCVVQgTk9UIExJTUlURUQgVE8sIFRIRSBJTVBMSUVE IFdBUlJBTlRJRVMKQEAgLTQ3LDEwICs0MCwxMCBAQAogI2luY2x1ZGUgImV4 dC5oIgogI2luY2x1ZGUgImZzdXRpbC5oIgogCi1zdGF0aWMgaW50IGNoZWNr Y2xudW0oc3RydWN0IGJvb3RibG9jayAqLCBpbnQsIGNsX3QsIGNsX3QgKik7 Ci1zdGF0aWMgaW50IGNsdXN0ZGlmZmVyKGNsX3QsIGNsX3QgKiwgY2xfdCAq LCBpbnQpOworc3RhdGljIGludCBjaGVja2NsbnVtKHN0cnVjdCBib290Ymxv Y2sgKiwgdV9pbnQsIGNsX3QsIGNsX3QgKik7CitzdGF0aWMgaW50IGNsdXN0 ZGlmZmVyKGNsX3QsIGNsX3QgKiwgY2xfdCAqLCB1X2ludCk7CiBzdGF0aWMg aW50IHRyeWNsZWFyKHN0cnVjdCBib290YmxvY2sgKiwgc3RydWN0IGZhdEVu dHJ5ICosIGNsX3QsIGNsX3QgKik7Ci1zdGF0aWMgaW50IF9yZWFkZmF0KGlu dCwgc3RydWN0IGJvb3RibG9jayAqLCBpbnQsIHVfY2hhciAqKik7CitzdGF0 aWMgaW50IF9yZWFkZmF0KGludCwgc3RydWN0IGJvb3RibG9jayAqLCB1X2lu dCwgdV9jaGFyICoqKTsKIAogLyotCiAgKiBUaGUgZmlyc3QgMiBGQVQgZW50 cmllcyBjb250YWluIHBzZXVkby1jbHVzdGVyIG51bWJlcnMgd2l0aCB0aGUg Zm9sbG93aW5nCkBAIC0xMzUsNyArMTI4LDcgQEAKICAqIENoZWNrIGEgY2x1 c3RlciBudW1iZXIgZm9yIHZhbGlkIHZhbHVlCiAgKi8KIHN0YXRpYyBpbnQK LWNoZWNrY2xudW0oc3RydWN0IGJvb3RibG9jayAqYm9vdCwgaW50IGZhdCwg Y2xfdCBjbCwgY2xfdCAqbmV4dCkKK2NoZWNrY2xudW0oc3RydWN0IGJvb3Ri bG9jayAqYm9vdCwgdV9pbnQgZmF0LCBjbF90IGNsLCBjbF90ICpuZXh0KQog ewogCWlmICgqbmV4dCA+PSAoQ0xVU1RfUlNSVkQmYm9vdC0+Q2x1c3RNYXNr KSkKIAkJKm5leHQgfD0gfmJvb3QtPkNsdXN0TWFzazsKQEAgLTE2Niw3ICsx NTksNyBAQAogICogUmVhZCBhIEZBVCBmcm9tIGRpc2suIFJldHVybnMgMSBp ZiBzdWNjZXNzZnVsLCAwIG90aGVyd2lzZS4KICAqLwogc3RhdGljIGludAot X3JlYWRmYXQoaW50IGZzLCBzdHJ1Y3QgYm9vdGJsb2NrICpib290LCBpbnQg bm8sIHVfY2hhciAqKmJ1ZmZlcikKK19yZWFkZmF0KGludCBmcywgc3RydWN0 IGJvb3RibG9jayAqYm9vdCwgdV9pbnQgbm8sIHVfY2hhciAqKmJ1ZmZlcikK IHsKIAlvZmZfdCBvZmY7CiAKQEAgLTE4NCw3ICsxNzcsNyBAQAogCQlnb3Rv IGVycjsKIAl9CiAKLQlpZiAocmVhZChmcywgKmJ1ZmZlciwgYm9vdC0+RkFU c2VjcyAqIGJvb3QtPkJ5dGVzUGVyU2VjKQorCWlmICgoc2l6ZV90KXJlYWQo ZnMsICpidWZmZXIsIGJvb3QtPkZBVHNlY3MgKiBib290LT5CeXRlc1BlclNl YykKIAkgICAgIT0gYm9vdC0+RkFUc2VjcyAqIGJvb3QtPkJ5dGVzUGVyU2Vj KSB7CiAJCXBlcnJvcigiVW5hYmxlIHRvIHJlYWQgRkFUIik7CiAJCWdvdG8g ZXJyOwpAQCAtMjAxLDI0ICsxOTQsMjYgQEAKICAqIFJlYWQgYSBGQVQgYW5k IGRlY29kZSBpdCBpbnRvIGludGVybmFsIGZvcm1hdAogICovCiBpbnQKLXJl YWRmYXQoaW50IGZzLCBzdHJ1Y3QgYm9vdGJsb2NrICpib290LCBpbnQgbm8s IHN0cnVjdCBmYXRFbnRyeSAqKmZwKQorcmVhZGZhdChpbnQgZnMsIHN0cnVj dCBib290YmxvY2sgKmJvb3QsIHVfaW50IG5vLCBzdHJ1Y3QgZmF0RW50cnkg KipmcCkKIHsKIAlzdHJ1Y3QgZmF0RW50cnkgKmZhdDsKIAl1X2NoYXIgKmJ1 ZmZlciwgKnA7CiAJY2xfdCBjbDsKIAlpbnQgcmV0ID0gRlNPSzsKKwlzaXpl X3QgbGVuOwogCiAJYm9vdC0+TnVtRnJlZSA9IGJvb3QtPk51bUJhZCA9IDA7 CiAKIAlpZiAoIV9yZWFkZmF0KGZzLCBib290LCBubywgJmJ1ZmZlcikpCiAJ CXJldHVybiBGU0ZBVEFMOwogCQkKLQlmYXQgPSBjYWxsb2MoYm9vdC0+TnVt Q2x1c3RlcnMsIHNpemVvZihzdHJ1Y3QgZmF0RW50cnkpKTsKKwlmYXQgPSBt YWxsb2MobGVuID0gYm9vdC0+TnVtQ2x1c3RlcnMgKiBzaXplb2Yoc3RydWN0 IGZhdEVudHJ5KSk7CiAJaWYgKGZhdCA9PSBOVUxMKSB7CiAJCXBlcnJvcigi Tm8gc3BhY2UgZm9yIEZBVCIpOwogCQlmcmVlKGJ1ZmZlcik7CiAJCXJldHVy biBGU0ZBVEFMOwogCX0KKwkodm9pZCltZW1zZXQoZmF0LCAwLCBsZW4pOwog CiAJaWYgKGJ1ZmZlclswXSAhPSBib290LT5NZWRpYQogCSAgICB8fCBidWZm ZXJbMV0gIT0gMHhmZiB8fCBidWZmZXJbMl0gIT0gMHhmZgpAQCAtMzExLDcg KzMwNiwxMSBAQAogCX0KIAogCWZyZWUoYnVmZmVyKTsKLQkqZnAgPSBmYXQ7 CisJaWYgKHJldCAmIEZTRkFUQUwpIHsKKwkJZnJlZShmYXQpOworCQkqZnAg PSBOVUxMOworCX0gZWxzZQorCQkqZnAgPSBmYXQ7CiAJcmV0dXJuIHJldDsK IH0KIApAQCAtMzMxLDcgKzMzMCw3IEBACiB9CiAKIHN0YXRpYyBpbnQKLWNs dXN0ZGlmZmVyKGNsX3QgY2wsIGNsX3QgKmNwMSwgY2xfdCAqY3AyLCBpbnQg ZmF0bnVtKQorY2x1c3RkaWZmZXIoY2xfdCBjbCwgY2xfdCAqY3AxLCBjbF90 ICpjcDIsIHVfaW50IGZhdG51bSkKIHsKIAlpZiAoKmNwMSA9PSBDTFVTVF9G UkVFIHx8ICpjcDEgPj0gQ0xVU1RfUlNSVkQpIHsKIAkJaWYgKCpjcDIgPT0g Q0xVU1RfRlJFRSB8fCAqY3AyID49IENMVVNUX1JTUlZEKSB7CkBAIC0zNDYs MTMgKzM0NSwxMyBAQAogCQkJCX0KIAkJCQlyZXR1cm4gRlNGQVRBTDsKIAkJ CX0KLQkJCXB3YXJuKCJDbHVzdGVyICV1IGlzIG1hcmtlZCAlcyBpbiBGQVQg MCwgJXMgaW4gRkFUICVkXG4iLAorCQkJcHdhcm4oIkNsdXN0ZXIgJXUgaXMg bWFya2VkICVzIGluIEZBVCAwLCAlcyBpbiBGQVQgJXVcbiIsCiAJCQkgICAg ICBjbCwgcnNydmRjbHR5cGUoKmNwMSksIHJzcnZkY2x0eXBlKCpjcDIpLCBm YXRudW0pOwogCQkJaWYgKGFzaygwLCAiVXNlIEZBVCAwJ3MgZW50cnkiKSkg ewogCQkJCSpjcDIgPSAqY3AxOwogCQkJCXJldHVybiBGU0ZBVE1PRDsKIAkJ CX0KLQkJCWlmIChhc2soMCwgIlVzZSBGQVQgJWQncyBlbnRyeSIsIGZhdG51 bSkpIHsKKwkJCWlmIChhc2soMCwgIlVzZSBGQVQgJXUncyBlbnRyeSIsIGZh dG51bSkpIHsKIAkJCQkqY3AxID0gKmNwMjsKIAkJCQlyZXR1cm4gRlNGQVRN T0Q7CiAJCQl9CkBAIC0zNjAsNyArMzU5LDcgQEAKIAkJfQogCQlwd2Fybigi Q2x1c3RlciAldSBpcyBtYXJrZWQgJXMgaW4gRkFUIDAsIGJ1dCBjb250aW51 ZXMgd2l0aCBjbHVzdGVyICV1IGluIEZBVCAlZFxuIiwKIAkJICAgICAgY2ws IHJzcnZkY2x0eXBlKCpjcDEpLCAqY3AyLCBmYXRudW0pOwotCQlpZiAoYXNr KDAsICJVc2UgY29udGludWF0aW9uIGZyb20gRkFUICVkIiwgZmF0bnVtKSkg eworCQlpZiAoYXNrKDAsICJVc2UgY29udGludWF0aW9uIGZyb20gRkFUICV1 IiwgZmF0bnVtKSkgewogCQkJKmNwMSA9ICpjcDI7CiAJCQlyZXR1cm4gRlNG QVRNT0Q7CiAJCX0KQEAgLTM3MSw3ICszNzAsNyBAQAogCQlyZXR1cm4gRlNG QVRBTDsKIAl9CiAJaWYgKCpjcDIgPT0gQ0xVU1RfRlJFRSB8fCAqY3AyID49 IENMVVNUX1JTUlZEKSB7Ci0JCXB3YXJuKCJDbHVzdGVyICV1IGNvbnRpbnVl cyB3aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAsIGJ1dCBpcyBtYXJrZWQgJXMg aW4gRkFUICVkXG4iLAorCQlwd2FybigiQ2x1c3RlciAldSBjb250aW51ZXMg d2l0aCBjbHVzdGVyICV1IGluIEZBVCAwLCBidXQgaXMgbWFya2VkICVzIGlu IEZBVCAldVxuIiwKIAkJICAgICAgY2wsICpjcDEsIHJzcnZkY2x0eXBlKCpj cDIpLCBmYXRudW0pOwogCQlpZiAoYXNrKDAsICJVc2UgY29udGludWF0aW9u IGZyb20gRkFUIDAiKSkgewogCQkJKmNwMiA9ICpjcDE7CkBAIC0zODMsMTMg KzM4MiwxMyBAQAogCQl9CiAJCXJldHVybiBGU0VSUk9SOwogCX0KLQlwd2Fy bigiQ2x1c3RlciAldSBjb250aW51ZXMgd2l0aCBjbHVzdGVyICV1IGluIEZB VCAwLCBidXQgd2l0aCBjbHVzdGVyICV1IGluIEZBVCAlZFxuIiwKKwlwd2Fy bigiQ2x1c3RlciAldSBjb250aW51ZXMgd2l0aCBjbHVzdGVyICV1IGluIEZB VCAwLCBidXQgd2l0aCBjbHVzdGVyICV1IGluIEZBVCAldVxuIiwKIAkgICAg ICBjbCwgKmNwMSwgKmNwMiwgZmF0bnVtKTsKIAlpZiAoYXNrKDAsICJVc2Ug Y29udGludWF0aW9uIGZyb20gRkFUIDAiKSkgewogCQkqY3AyID0gKmNwMTsK IAkJcmV0dXJuIEZTRkFUTU9EOwogCX0KLQlpZiAoYXNrKDAsICJVc2UgY29u dGludWF0aW9uIGZyb20gRkFUICVkIiwgZmF0bnVtKSkgeworCWlmIChhc2so MCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgJXUiLCBmYXRudW0pKSB7 CiAJCSpjcDEgPSAqY3AyOwogCQlyZXR1cm4gRlNGQVRNT0Q7CiAJfQpAQCAt NDAxLDggKzQwMCw4IEBACiAgKiBpbnRvIHRoZSBmaXJzdCBvbmUuCiAgKi8K IGludAotY29tcGFyZWZhdChzdHJ1Y3QgYm9vdGJsb2NrICpib290LCBzdHJ1 Y3QgZmF0RW50cnkgKmZpcnN0LCAKLSAgICBzdHJ1Y3QgZmF0RW50cnkgKnNl Y29uZCwgaW50IGZhdG51bSkKK2NvbXBhcmVmYXQoc3RydWN0IGJvb3RibG9j ayAqYm9vdCwgc3RydWN0IGZhdEVudHJ5ICpmaXJzdCwKKyAgICBzdHJ1Y3Qg ZmF0RW50cnkgKnNlY29uZCwgdV9pbnQgZmF0bnVtKQogewogCWNsX3QgY2w7 CiAJaW50IHJldCA9IEZTT0s7CkBAIC01NDIsOCArNTQxLDggQEAKIHsKIAl1 X2NoYXIgKmJ1ZmZlciwgKnA7CiAJY2xfdCBjbDsKLQlpbnQgaTsKLQl1X2lu dDMyX3QgZmF0c3o7CisJdV9pbnQgaTsKKwlzaXplX3QgZmF0c3o7CiAJb2Zm X3Qgb2ZmOwogCWludCByZXQgPSBGU09LOwogCkBAIC02MzMsNyArNjMyLDcg QEAKIAkJb2ZmID0gYm9vdC0+UmVzU2VjdG9ycyArIGkgKiBib290LT5GQVRz ZWNzOwogCQlvZmYgKj0gYm9vdC0+Qnl0ZXNQZXJTZWM7CiAJCWlmIChsc2Vl ayhmcywgb2ZmLCBTRUVLX1NFVCkgIT0gb2ZmCi0JCSAgICB8fCB3cml0ZShm cywgYnVmZmVyLCBmYXRzeikgIT0gZmF0c3opIHsKKwkJICAgIHx8IChzaXpl X3Qpd3JpdGUoZnMsIGJ1ZmZlciwgZmF0c3opICE9IGZhdHN6KSB7CiAJCQlw ZXJyb3IoIlVuYWJsZSB0byB3cml0ZSBGQVQiKTsKIAkJCXJldCA9IEZTRkFU QUw7IC8qIFJldHVybiBpbW1lZGlhdGVseT8JCVhYWCAqLwogCQl9CkBAIC02 ODMsMTcgKzY4Miw2IEBACiAJCQkJcmV0ID0gMTsKIAkJCX0KIAkJfQotCQlp ZiAoYm9vdC0+TnVtRnJlZSAmJiBmYXRbYm9vdC0+RlNOZXh0XS5uZXh0ICE9 IENMVVNUX0ZSRUUpIHsKLQkJCXB3YXJuKCJOZXh0IGZyZWUgY2x1c3RlciBp biBGU0luZm8gYmxvY2sgKCV1KSBub3QgZnJlZVxuIiwKLQkJCSAgICAgIGJv b3QtPkZTTmV4dCk7Ci0JCQlpZiAoYXNrKDEsICJGaXgiKSkKLQkJCQlmb3Ig KGhlYWQgPSBDTFVTVF9GSVJTVDsgaGVhZCA8IGJvb3QtPk51bUNsdXN0ZXJz OyBoZWFkKyspCi0JCQkJCWlmIChmYXRbaGVhZF0ubmV4dCA9PSBDTFVTVF9G UkVFKSB7Ci0JCQkJCQlib290LT5GU05leHQgPSBoZWFkOwotCQkJCQkJcmV0 ID0gMTsKLQkJCQkJCWJyZWFrOwotCQkJCQl9Ci0JCX0KIAkJaWYgKHJldCkK IAkJCW1vZCB8PSB3cml0ZWZzaW5mbyhkb3NmcywgYm9vdCk7CiAJfQpkaWZm IC1ydSBmc2NrX21zZG9zZnMub3JpZy9mc2NrX21zZG9zZnMuOCBmc2NrX21z ZG9zZnMvZnNja19tc2Rvc2ZzLjgKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL2Zz Y2tfbXNkb3Nmcy44CTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAwICsw MDAwCisrKyBmc2NrX21zZG9zZnMvZnNja19tc2Rvc2ZzLjgJMjAxMC0wMS0w NyAyMjowOToxMy4wMDAwMDAwMDAgKzAwMDAKQEAgLTExLDEzICsxMSw2IEBA CiAuXCIgMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3Qg cmVwcm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKIC5cIiAgICBub3RpY2Us IHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0aGUgZm9sbG93aW5nIGRp c2NsYWltZXIgaW4gdGhlCiAuXCIgICAgZG9jdW1lbnRhdGlvbiBhbmQvb3Ig b3RoZXIgbWF0ZXJpYWxzIHByb3ZpZGVkIHdpdGggdGhlIGRpc3RyaWJ1dGlv bi4KLS5cIiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25p bmcgZmVhdHVyZXMgb3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLS5cIiAgICBt dXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3dsZWRnZW1lbnQ6Ci0u XCIJVGhpcyBwcm9kdWN0IGluY2x1ZGVzIHNvZnR3YXJlIGRldmVsb3BlZCBi eSBNYXJ0aW4gSHVzZW1hbm4KLS5cIglhbmQgV29sZmdhbmcgU29sZnJhbmsu Ci0uXCIgNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5pdmVyc2l0eSBu b3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLS5cIiAgICBtYXkg YmUgdXNlZCB0byBlbmRvcnNlIG9yIHByb21vdGUgcHJvZHVjdHMgZGVyaXZl ZCBmcm9tIHRoaXMgc29mdHdhcmUKLS5cIiAgICB3aXRob3V0IHNwZWNpZmlj IHByaW9yIHdyaXR0ZW4gcGVybWlzc2lvbi4KIC5cIgogLlwiIFRISVMgU09G VFdBUkUgSVMgUFJPVklERUQgQlkgVEhFIEFVVEhPUlMgYGBBUyBJUycnIEFO RCBBTlkgRVhQUkVTUyBPUgogLlwiIElNUExJRUQgV0FSUkFOVElFUywgSU5D TFVESU5HLCBCVVQgTk9UIExJTUlURUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJB TlRJRVMKZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvbWFpbi5jIGZzY2tf bXNkb3Nmcy9tYWluLmMKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL21haW4uYwky MDEwLTAxLTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19t c2Rvc2ZzL21haW4uYwkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCAr MDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC00MCw3ICszMyw2IEBACiAKICNpbmNsdWRl IDxzdGRsaWIuaD4KICNpbmNsdWRlIDxzdHJpbmcuaD4KLSNpbmNsdWRlIDxj dHlwZS5oPgogI2luY2x1ZGUgPHN0ZGlvLmg+CiAjaW5jbHVkZSA8dW5pc3Rk Lmg+CiAjaW5jbHVkZSA8ZXJybm8uaD4K --0-3016821-1262920724=:92513-- From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 08:04:41 2010 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 AA219106566C; Fri, 8 Jan 2010 08:04:41 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 823338FC1A; Fri, 8 Jan 2010 08:04:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o0884f5B089123; Fri, 8 Jan 2010 08:04:41 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o0884f2t089119; Fri, 8 Jan 2010 08:04:41 GMT (envelope-from jh) Date: Fri, 8 Jan 2010 08:04:41 GMT Message-Id: <201001080804.o0884f2t089119@freefall.freebsd.org> To: jh@FreeBSD.org, freebsd-bugs@FreeBSD.org, jh@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: bin/125678: [patch] ls(1) -h option doesn't work if the listing contains a device file X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 08:04:41 -0000 Synopsis: [patch] ls(1) -h option doesn't work if the listing contains a device file Responsible-Changed-From-To: freebsd-bugs->jh Responsible-Changed-By: jh Responsible-Changed-When: Fri Jan 8 08:04:41 UTC 2010 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=125678 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 08:05:08 2010 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 9ACF51065679; Fri, 8 Jan 2010 08:05:08 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 73E2E8FC12; Fri, 8 Jan 2010 08:05:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o08858U5089238; Fri, 8 Jan 2010 08:05:08 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o08858rT089234; Fri, 8 Jan 2010 08:05:08 GMT (envelope-from jh) Date: Fri, 8 Jan 2010 08:05:08 GMT Message-Id: <201001080805.o08858rT089234@freefall.freebsd.org> To: jh@FreeBSD.org, freebsd-bugs@FreeBSD.org, jh@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: bin/107515: [patch] ls(1) bug X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 08:05:08 -0000 Synopsis: [patch] ls(1) bug Responsible-Changed-From-To: freebsd-bugs->jh Responsible-Changed-By: jh Responsible-Changed-When: Fri Jan 8 08:05:08 UTC 2010 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=107515 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 10:20:01 2010 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 D10B5106568B for ; Fri, 8 Jan 2010 10:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AEF938FC1C for ; Fri, 8 Jan 2010 10:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o08AK1Aw083896 for ; Fri, 8 Jan 2010 10:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o08AK1KD083895; Fri, 8 Jan 2010 10:20:01 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jan 2010 10:20:01 GMT Resent-Message-Id: <201001081020.o08AK1KD083895@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, Peter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1AE941065676 for ; Fri, 8 Jan 2010 10:10:15 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 0AB1C8FC21 for ; Fri, 8 Jan 2010 10:10:15 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o08AAESI066649 for ; Fri, 8 Jan 2010 10:10:14 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o08AAE8V066633; Fri, 8 Jan 2010 10:10:14 GMT (envelope-from nobody) Message-Id: <201001081010.o08AAE8V066633@www.freebsd.org> Date: Fri, 8 Jan 2010 10:10:14 GMT From: Peter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/142466: Update 7.2 -> 8.0 on Raid 1 ends with screwed raid X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 10:20:01 -0000 >Number: 142466 >Category: misc >Synopsis: Update 7.2 -> 8.0 on Raid 1 ends with screwed raid >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jan 08 10:20:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Peter >Release: 7.2-RELEASE >Organization: >Environment: FreeBSD bsd.dudee.com 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 07:18:07 UTC 2009 root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: When using a rootserver (MSI K8T Neo 2 V2 Mainboard with VIA VT8237 Chip) with a configured raid 1 (/dev/ar0) - you might not want to do an upgrade to freebsd 8.0-RELEASE like described here: http://www.daemonology.net/blog/2009-07-11-freebsd-update-to-8.0-beta1.html You wont have any problens installing the kernel, userland and 3rd party apps - but after the last reboot the box fails with the message "Fatal Error Occured, Raid relationship and Content of all hdds ill be DESTROIED - Continue (C)" (Yes, with that typo). I doublechecked everything and repeated the whole procedure twice. After recovering my lost partitions, i found out that the fstab changed from /dev/ar0 to /dev/ad4 and /dev/ad6 somewhere during the upgrade process. This may be a lead to the problem. As I am just a user and not a skilled bsd admin, I am sorry if this issue is already known or may just be a result of my lack of knowledge. >How-To-Repeat: Upgrade just like written above using the same hardware... >Fix: no fix known... reverted to 7.2 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 10:40:02 2010 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 BA1BD1065670 for ; Fri, 8 Jan 2010 10:40:02 +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 7D40E8FC0A for ; Fri, 8 Jan 2010 10:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o08Ae2CK001931 for ; Fri, 8 Jan 2010 10:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o08Ae2ho001930; Fri, 8 Jan 2010 10:40:02 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jan 2010 10:40:02 GMT Resent-Message-Id: <201001081040.o08Ae2ho001930@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, Mister Olli Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50B9E106566B for ; Fri, 8 Jan 2010 10:31:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 407CA8FC0A for ; Fri, 8 Jan 2010 10:31:04 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o08AV4lJ084629 for ; Fri, 8 Jan 2010 10:31:04 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o08AV3xS084628; Fri, 8 Jan 2010 10:31:03 GMT (envelope-from nobody) Message-Id: <201001081031.o08AV3xS084628@www.freebsd.org> Date: Fri, 8 Jan 2010 10:31:03 GMT From: Mister Olli To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/142467: /var/log/auth.log may not be rotated for yours X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 10:40:02 -0000 >Number: 142467 >Category: misc >Synopsis: /var/log/auth.log may not be rotated for yours >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jan 08 10:40:02 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Mister Olli >Release: 8.0, 6.2, 7.0 >Organization: >Environment: FreeBSD SYSTEM 6.2-RELEASE-p9 FreeBSD 6.2-RELEASE-p9 #6: Fri Feb 22 16:11:56 CET 2008 SYSTEM:/usr/obj/usr/src/sys/CUSTOM i386 >Description: On system with rare logins /var/log/auth.log may not get rotated, as '/etc/newsyslog.conf' is configured to rotate if filesize > 100kb. As login attempts via SSH are saved without year information '/etc/periodic/security/800.loginfail' will report fail logins from past years. This heavily confuses users. >How-To-Repeat: - Make a default installation - Do some failed logins - Wait 1 year ;-) >Fix: '/var/log/auth.log' should be rotated at least once a year. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 13:37:17 2010 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 944971065670; Fri, 8 Jan 2010 13:37:17 +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 6B1108FC1D; Fri, 8 Jan 2010 13:37:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o08DbHQX060502; Fri, 8 Jan 2010 13:37:17 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o08DbHV0060498; Fri, 8 Jan 2010 13:37:17 GMT (envelope-from linimon) Date: Fri, 8 Jan 2010 13:37:17 GMT Message-Id: <201001081337.o08DbHV0060498@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/142466: Update 7.2 -> 8.0 on Raid 1 ends with screwed raid [regression] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 13:37:17 -0000 Old Synopsis: Update 7.2 -> 8.0 on Raid 1 ends with screwed raid New Synopsis: Update 7.2 -> 8.0 on Raid 1 ends with screwed raid [regression] Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jan 8 13:34:08 UTC 2010 Responsible-Changed-Why: I can't really figure out how to classify this one, since it talks about "/dev/ar0" as being a disk device, but it's clearly fs-related. http://www.freebsd.org/cgi/query-pr.cgi?pr=142466 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 20:34:40 2010 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 30416106566B for ; Fri, 8 Jan 2010 20:34:40 +0000 (UTC) (envelope-from giffunip@tutopia.com) Received: from web113517.mail.gq1.yahoo.com (web113517.mail.gq1.yahoo.com [98.136.167.57]) by mx1.freebsd.org (Postfix) with SMTP id 075DB8FC28 for ; Fri, 8 Jan 2010 20:34:39 +0000 (UTC) Received: (qmail 78006 invoked by uid 60001); 8 Jan 2010 20:34:36 -0000 Message-ID: <903235.77647.qm@web113517.mail.gq1.yahoo.com> X-YMail-OSG: o6MeOLYVM1mBzjZwIRQ9ThgTB0OqG7k6OOHlgcNgGqqBJtQ_cgW2w4j1CcER9TCEsT_uBAs1haM8IZTboLfQVfl6R.rl0VLIFTRKnCYBatgheNRddSaJVQRQhASkPJ6Z47dhsVZNirGcPL6gXkF3mkllRqW7iGtgNVfhEJ.WuaVfWDAD7d5rqoGCuSSzYpNWfYId739Bc79o.mwmjX9.B8ekRVJPZYb45ntVjAryOlkBaYhVZYlhq2oQBMjn5zGwBTjOQqM2pnyI.KnPnVYi1dIR4L7fw66hZAWC_In16JT51TCD4tEXhxcBS7lr0PPp8O2lquuUXOv9gggzx4.Aag-- Received: from [190.157.123.47] by web113517.mail.gq1.yahoo.com via HTTP; Fri, 08 Jan 2010 12:34:36 PST X-RocketYMMF: giffunip X-Mailer: YahooMailClassic/9.0.20 YahooMailWebService/0.8.100.260964 Date: Fri, 8 Jan 2010 12:34:36 -0800 (PST) From: "Pedro F. Giffuni" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-768091124-1262982876=:77647" Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: giffunip@tutopia.com List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 20:34:40 -0000 --0-768091124-1262982876=:77647 Content-Type: text/plain; charset=us-ascii (I spoke too soon) Remove unused variable len: This is used by NetBSD in error reports but we don't use it. --0-768091124-1262982876=:77647 Content-Type: application/octet-stream; name=patch-fsck_msdosfs Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-fsck_msdosfs" ZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvYm9vdC5jIGZzY2tfbXNkb3Nm cy9ib290LmMKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL2Jvb3QuYwkyMDEwLTAx LTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19tc2Rvc2Zz L2Jvb3QuYwkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAwMApA QCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBi aW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0 CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0 aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVu dGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0 aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5nIG1hdGVy aWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3 YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3ds ZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUg ZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdvbGZnYW5n IFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5p dmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLSAq ICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0 cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0aG91dCBz cGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgogICogVEhJ UyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBgYEFTIElT JycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMs IElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1QTElFRCBX QVJSQU5USUVTCkBAIC00MCw3ICszMyw2IEBACiAKICNpbmNsdWRlIDxzdGRs aWIuaD4KICNpbmNsdWRlIDxzdHJpbmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5o PgogI2luY2x1ZGUgPHN0ZGlvLmg+CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAK QEAgLTU2LDggKzQ4LDkgQEAKIAl1X2NoYXIgZnNpbmZvWzIgKiBET1NCT09U QkxPQ0tTSVpFXTsKIAl1X2NoYXIgYmFja3VwW0RPU0JPT1RCTE9DS1NJWkVd OwogCWludCByZXQgPSBGU09LOworCWludCBpOwogCQotCWlmIChyZWFkKGRv c2ZzLCBibG9jaywgc2l6ZW9mIGJsb2NrKSA8IHNpemVvZiBibG9jaykgewor CWlmIChyZWFkKChzaXplX3QpZG9zZnMsIGJsb2NrLCBzaXplb2YgYmxvY2sp ICE9IHNpemVvZiBibG9jaykgewogCQlwZXJyb3IoImNvdWxkIG5vdCByZWFk IGJvb3QgYmxvY2siKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQpAQCAtMTYx LDEyICsxNTQsMjIgQEAKIAkJfQogCQliYWNrdXBbNjVdID0gYmxvY2tbNjVd OwkJCQkvKiBYWFggKi8KIAkJaWYgKG1lbWNtcChibG9jayArIDExLCBiYWNr dXAgKyAxMSwgNzkpKSB7Ci0JCQkvKiBDb3JyZWN0PwkJCQkJWFhYICovCi0J CQlwZmF0YWwoImJhY2t1cCBkb2Vzbid0IGNvbXBhcmUgdG8gcHJpbWFyeSBi b290YmxvY2siKTsKLQkJCWlmIChhbHdheXNubykKLQkJCQlwZmF0YWwoIlxu Iik7Ci0JCQllbHNlCi0JCQkJcmV0dXJuIEZTRkFUQUw7CisJCQkvKgorCQkJ ICogWFhYIFdlIHJlcXVpcmUgYSByZWZlcmVuY2UgdGhhdCBleHBsYWlucwor CQkJICogdGhhdCB0aGVzZSBieXRlcyBuZWVkIHRvIG1hdGNoLCBvciBzaG91 bGQKKwkJCSAqIGRyb3AgdGhlIGNoZWNrLiAgZ2R0QE5ldEJTRCBoYXMgb2Jz ZXJ2ZWQKKwkJCSAqIGZpbGVzeXN0ZW1zIHRoYXQgd29yayBmaW5lIHVuZGVy IFdpbmRvd3MgWFAKKwkJCSAqIGFuZCBOZXRCU0QgdGhhdCBkbyBub3QgbWF0 Y2gsIHNvIHRoZQorCQkJICogcmVxdWlyZW1lbnQgaXMgc3VzcGVjdC4gIEZv ciBub3csIGp1c3QKKwkJCSAqIHByaW50IG91dCB1c2VmdWwgaW5mb3JtYXRp b24gYW5kIGNvbnRpbnVlLgorCQkJICovCisJCQlwZmF0YWwoImJhY2t1cCAo YmxvY2sgJWQpIG1pc21hdGNoIHdpdGggcHJpbWFyeSBib290YmxvY2s6XG4i LAorCQkJICAgICAgICBib290LT5CYWNrdXApOworCQkJZm9yIChpID0gMTE7 IGkgPCAxMSArIDkwOyBpKyspIHsKKwkJCQlpZiAoYmxvY2tbaV0gIT0gYmFj a3VwW2ldKQorCQkJCQlwZmF0YWwoIlx0aT0lZFx0cHJpbWFyeSAweCUwMnhc dGJhY2t1cCAweCUwMnhcbiIsCisJCQkJCSAgICAgICBpLCBibG9ja1tpXSwg YmFja3VwW2ldKTsKKwkJCX0KIAkJfQogCQkvKiBDaGVjayBiYWNrdXAgRlNJ bmZvPwkJCQkJWFhYICovCiAJfQpkaWZmIC1ydSBmc2NrX21zZG9zZnMub3Jp Zy9jaGVjay5jIGZzY2tfbXNkb3Nmcy9jaGVjay5jCi0tLSBmc2NrX21zZG9z ZnMub3JpZy9jaGVjay5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvY2hlY2suYwkyMDEwLTAxLTA3IDIy OjA5OjEzLjAwMDAwMDAwMCArMDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAq IDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJv ZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMg bGlzdCBvZiBjb25kaXRpb25zIGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWlt ZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBt YXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICog My4gQWxsIGFkdmVydGlzaW5nIG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1 cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3Bs YXkgdGhlIGZvbGxvd2luZyBhY2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHBy b2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBI dXNlbWFubgotICoJYW5kIFdvbGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVp dGhlciB0aGUgbmFtZSBvZiB0aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVz IG9mIGl0cyBjb250cmlidXRvcnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVu ZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBz b2Z0d2FyZQotICogICAgd2l0aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVu IHBlcm1pc3Npb24uCiAgKgogICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURF RCBCWSBUSEUgQVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9S CiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBM SU1JVEVEIFRPLCBUSEUgSU1QTElFRCBXQVJSQU5USUVTCkBAIC00MCw3ICsz Myw2IEBACiAKICNpbmNsdWRlIDxzdGRsaWIuaD4KICNpbmNsdWRlIDxzdHJp bmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5oPgogI2luY2x1ZGUgPHN0ZGlvLmg+ CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAjaW5jbHVkZSA8ZmNudGwuaD4KQEAg LTU0LDcgKzQ2LDggQEAKIAlpbnQgZG9zZnM7CiAJc3RydWN0IGJvb3RibG9j ayBib290OwogCXN0cnVjdCBmYXRFbnRyeSAqZmF0ID0gTlVMTDsKLQlpbnQg aSwgZmluaXNoX2Rvc2RpcnNlY3Rpb249MDsKKwlpbnQgZmluaXNoX2Rvc2Rp cnNlY3Rpb249MDsKKwl1X2ludCBpOwogCWludCBtb2QgPSAwOwogCWludCBy ZXQgPSA4OwogCmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Rpci5jIGZz Y2tfbXNkb3Nmcy9kaXIuYwotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZGlyLmMJ MjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tf bXNkb3Nmcy9kaXIuYwkyMDEwLTAxLTA4IDE1OjMwOjAzLjAwMDAwMDAwMCAr MDAwMApAQCAtMTIsMTMgKzEyLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC00NCw3ICszNyw2IEBACiAjaW5jbHVkZSA8 c3RkbGliLmg+CiAjaW5jbHVkZSA8c3RyaW5nLmg+CiAjaW5jbHVkZSA8Y3R5 cGUuaD4KLSNpbmNsdWRlIDxzdGRpby5oPgogI2luY2x1ZGUgPHVuaXN0ZC5o PgogI2luY2x1ZGUgPHRpbWUuaD4KIApAQCAtMjMwLDEyICsyMjIsMjQgQEAK IAliMSA9IGJvb3QtPlJvb3REaXJFbnRzICogMzI7CiAJYjIgPSBib290LT5T ZWNQZXJDbHVzdCAqIGJvb3QtPkJ5dGVzUGVyU2VjOwogCi0JaWYgKCEoYnVm ZmVyID0gbWFsbG9jKGIxID4gYjIgPyBiMSA6IGIyKSkKLQkgICAgfHwgIShk ZWxidWYgPSBtYWxsb2MoYjIpKQotCSAgICB8fCAhKHJvb3REaXIgPSBuZXdE b3NEaXJFbnRyeSgpKSkgewotCQlwZXJyb3IoIk5vIHNwYWNlIGZvciBkaXJl Y3RvcnkiKTsKKwlpZiAoKGJ1ZmZlciA9IG1hbGxvYyggYjEgPiBiMiA/IGIx IDogYjIpKSA9PSBOVUxMKSB7CisJCXBlcnJvcigiTm8gc3BhY2UgZm9yIGRp cmVjdG9yeSBidWZmZXIiKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQorCisJ aWYgKChkZWxidWYgPSBtYWxsb2MoYjIpKSA9PSBOVUxMKSB7CisJCWZyZWUo YnVmZmVyKTsKKwkJcGVycm9yKCJObyBzcGFjZSBmb3IgZGlyZWN0b3J5IGRl bGJ1ZiIpOworCQlyZXR1cm4gRlNGQVRBTDsKKwl9CisKKwlpZiAoKHJvb3RE aXIgPSBuZXdEb3NEaXJFbnRyeSgpKSA9PSBOVUxMKSB7CisJCWZyZWUoYnVm ZmVyKTsKKwkJZnJlZShkZWxidWYpOworCQlwZXJyb3IoIk5vIHNwYWNlIGZv ciBkaXJlY3RvcnkgZW50cnkiKTsKKwkJcmV0dXJuIEZTRkFUQUw7CisJfQor CiAJbWVtc2V0KHJvb3REaXIsIDAsIHNpemVvZiAqcm9vdERpcik7CiAJaWYg KGJvb3QtPmZsYWdzICYgRkFUMzIpIHsKIAkJaWYgKGJvb3QtPlJvb3RDbCA8 IENMVVNUX0ZJUlNUIHx8IGJvb3QtPlJvb3RDbCA+PSBib290LT5OdW1DbHVz dGVycykgewpAQCAtMzY3LDcgKzM3MSw4IEBACiAJCQkJcmV0dXJuIEZTRkFU QUw7CiAJCQlzdGFydCA9IGJ1ZmZlcjsKIAkJfQotCQlpZiAoZW5kY2wgPT0g Y3VyY2wpCisJCS8qIHN0YXJ0Y2wgaXMgPCBDTFVTVF9GSVJTVCBmb3IgIWZh dDMyIHJvb3QgKi8KKwkJaWYgKChlbmRjbCA9PSBjdXJjbCkgfHwgKHN0YXJ0 Y2wgPCBDTFVTVF9GSVJTVCkpCiAJCQlmb3IgKDsgc3RhcnQgPCBlbmQ7IHN0 YXJ0ICs9IDMyKQogCQkJCSpzdGFydCA9IFNMT1RfREVMRVRFRDsKIAkJcmV0 dXJuIEZTRElSTU9EOwpAQCAtMzg1LDcgKzM5MCw3IEBACiAJLyoKIAkgKiBD aGVjayBzaXplIG9uIG9yZGluYXJ5IGZpbGVzCiAJICovCi0JaW50MzJfdCBw aHlzaWNhbFNpemU7CisJdV9pbnQzMl90IHBoeXNpY2FsU2l6ZTsKIAogCWlm IChkaXItPmhlYWQgPT0gQ0xVU1RfRlJFRSkKIAkJcGh5c2ljYWxTaXplID0g MDsKQEAgLTY0NCw3ICs2NDksOCBAQAogCQkJCWRpcmVudC5oZWFkIHw9IChw WzIwXSA8PCAxNikgfCAocFsyMV0gPDwgMjQpOwogCQkJZGlyZW50LnNpemUg PSBwWzI4XSB8IChwWzI5XSA8PCA4KSB8IChwWzMwXSA8PCAxNikgfCAocFsz MV0gPDwgMjQpOwogCQkJaWYgKHZhbGxmbikgewotCQkJCXN0cmNweShkaXJl bnQubG5hbWUsIGxvbmdOYW1lKTsKKwkJCQlzdHJsY3B5KGRpcmVudC5sbmFt ZSwgbG9uZ05hbWUsCisJCQkJICAgIHNpemVvZihkaXJlbnQubG5hbWUpKTsK IAkJCQlsb25nTmFtZVswXSA9ICdcMCc7CiAJCQkJc2hvcnRTdW0gPSAtMTsK IAkJCX0KQEAgLTgzMiw2ICs4MzgsMTAgQEAKIAkJCX0KIAkJCWJvb3QtPk51 bUZpbGVzKys7CiAJCX0KKworCQlpZiAoIShib290LT5mbGFncyAmIEZBVDMy KSAmJiAhZGlyLT5wYXJlbnQpCisJCQlicmVhazsKKwogCQlpZiAobW9kICYg VEhJU01PRCkgewogCQkJbGFzdCAqPSAzMjsKIAkJCWlmIChsc2VlayhmLCBv ZmYsIFNFRUtfU0VUKSAhPSBvZmYKQEAgLTg0Nyw2ICs4NTcsMTkgQEAKIAkJ CQlpbnZsZm4gPyBpbnZsZm4gOiB2YWxsZm4sIHAsCiAJCQkJaW52bGZuID8g aW52Y2wgOiB2YWxjbCwgLTEsIDAsCiAJCQkJZnVsbHBhdGgoZGlyKSwgMSk7 CisKKwkvKiBUaGUgcm9vdCBkaXJlY3Rvcnkgb2Ygbm9uIGZhdDMyIGZpbGVz eXN0ZW1zIGlzIGluIGEgc3BlY2lhbAorCSAqIGFyZWEgYW5kIG1heSBoYXZl IGJlZW4gbW9kaWZpZWQgYWJvdmUgd2l0aG91dCBiZWluZyB3cml0dGVuIG91 dC4KKwkgKi8KKwlpZiAoKG1vZCAmIEZTRElSTU9EKSAmJiAhKGJvb3QtPmZs YWdzICYgRkFUMzIpICYmICFkaXItPnBhcmVudCkgeworCQlsYXN0ICo9IDMy OworCQlpZiAobHNlZWsoZiwgb2ZmLCBTRUVLX1NFVCkgIT0gb2ZmCisJCSAg ICB8fCB3cml0ZShmLCBidWZmZXIsIGxhc3QpICE9IGxhc3QpIHsKKwkJCXBl cnJvcigiVW5hYmxlIHRvIHdyaXRlIGRpcmVjdG9yeSIpOworCQkJcmV0dXJu IEZTRkFUQUw7CisJCX0KKwkJbW9kICY9IH5USElTTU9EOworCX0KIAlyZXR1 cm4gbW9kICYgflRISVNNT0Q7CiB9CiAKQEAgLTkzNiw3ICs5NTksNyBAQAog CQlsZm9mZiA9IGxmY2wgKiBib290LT5DbHVzdGVyU2l6ZQogCQkgICAgKyBi b290LT5DbHVzdGVyT2Zmc2V0ICogYm9vdC0+Qnl0ZXNQZXJTZWM7CiAJCWlm IChsc2Vlayhkb3NmcywgbGZvZmYsIFNFRUtfU0VUKSAhPSBsZm9mZgotCQkg ICAgfHwgcmVhZChkb3NmcywgbGZidWYsIGJvb3QtPkNsdXN0ZXJTaXplKSAh PSBib290LT5DbHVzdGVyU2l6ZSkgeworCQkgICAgfHwgKHNpemVfdClyZWFk KGRvc2ZzLCBsZmJ1ZiwgYm9vdC0+Q2x1c3RlclNpemUpICE9IGJvb3QtPkNs dXN0ZXJTaXplKSB7CiAJCQlwZXJyb3IoImNvdWxkIG5vdCByZWFkIExPU1Qu RElSIik7CiAJCQlyZXR1cm4gRlNGQVRBTDsKIAkJfQpAQCAtOTY2LDcgKzk4 OSw3IEBACiAJcFszMV0gPSAodV9jaGFyKShkLnNpemUgPj4gMjQpOwogCWZh dFtoZWFkXS5mbGFncyB8PSBGQVRfVVNFRDsKIAlpZiAobHNlZWsoZG9zZnMs IGxmb2ZmLCBTRUVLX1NFVCkgIT0gbGZvZmYKLQkgICAgfHwgd3JpdGUoZG9z ZnMsIGxmYnVmLCBib290LT5DbHVzdGVyU2l6ZSkgIT0gYm9vdC0+Q2x1c3Rl clNpemUpIHsKKwkgICAgfHwgKHNpemVfdCl3cml0ZShkb3NmcywgbGZidWYs IGJvb3QtPkNsdXN0ZXJTaXplKSAhPSBib290LT5DbHVzdGVyU2l6ZSkgewog CQlwZXJyb3IoImNvdWxkIG5vdCB3cml0ZSBMT1NULkRJUiIpOwogCQlyZXR1 cm4gRlNGQVRBTDsKIAl9CmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Rv c2ZzLmggZnNja19tc2Rvc2ZzL2Rvc2ZzLmgKLS0tIGZzY2tfbXNkb3Nmcy5v cmlnL2Rvc2ZzLmgJMjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAw MDAKKysrIGZzY2tfbXNkb3Nmcy9kb3Nmcy5oCTIwMTAtMDEtMDcgMjI6MDk6 MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMiwxMyArMTIsNiBAQAogICogMi4g UmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVwcm9kdWNl IHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhpcyBsaXN0 IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBp biB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVyIG1hdGVy aWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0gKiAzLiBB bGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVhdHVyZXMg b3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlzcGxheSB0 aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMgcHJvZHVj dCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGluIEh1c2Vt YW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBOZWl0aGVy IHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2Yg aXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8gZW5kb3Jz ZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlzIHNvZnR3 YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0ZW4gcGVy bWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJREVEIEJZ IFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1MgT1IKICAq IElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9UIExJTUlU RUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKZGlmZiAtcnUgZnNja19t c2Rvc2ZzLm9yaWcvZXh0LmggZnNja19tc2Rvc2ZzL2V4dC5oCi0tLSBmc2Nr X21zZG9zZnMub3JpZy9leHQuaAkyMDEwLTAxLTA2IDExOjA3OjI0LjAwMDAw MDAwMCArMDAwMAorKysgZnNja19tc2Rvc2ZzL2V4dC5oCTIwMTAtMDEtMDcg MjI6MDk6MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMCwxMyArMTAsNiBAQAog ICogMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVw cm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhp cyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xh aW1lciBpbiB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVy IG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0g KiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVh dHVyZXMgb3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlz cGxheSB0aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMg cHJvZHVjdCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGlu IEh1c2VtYW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBO ZWl0aGVyIHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFt ZXMgb2YgaXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8g ZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlz IHNvZnR3YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0 ZW4gcGVybWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJ REVEIEJZIFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1Mg T1IKICAqIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9U IExJTUlURUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKQEAgLTc3LDEy ICs3MCwxMiBAQAogI2RlZmluZQlGU0RJUk1PRAkyCQkvKiBTb21lIGRpcmVj dG9yeSB3YXMgbW9kaWZpZWQgKi8KICNkZWZpbmUJRlNGQVRNT0QJNAkJLyog VGhlIEZBVCB3YXMgbW9kaWZpZWQgKi8KICNkZWZpbmUJRlNFUlJPUgkJOAkJ LyogU29tZSB1bnJlY292ZXJlZCBlcnJvciByZW1haW5zICovCi0jZGVmaW5l CUZTRkFUQUwJCTE2CQkvKiBTb21lIHVucmVjb3ZlcmFibGUgZXJyb3Igb2Nj dXJlZCAqLworI2RlZmluZQlGU0ZBVEFMCQkxNgkJLyogU29tZSB1bnJlY292 ZXJhYmxlIGVycm9yIG9jY3VycmVkICovCiAjZGVmaW5lIEZTRElSVFkJCTMy CQkvKiBGaWxlIHN5c3RlbSBpcyBkaXJ0eSAqLwogI2RlZmluZSBGU0ZJWEZB VAk2NAkJLyogRml4IGZpbGUgc3lzdGVtIEZBVCAqLwogCiAvKgotICogcmVh ZCBhIGJvb3QgYmxvY2sgaW4gYSBtYWNoaW5lIGluZGVwZW5kZW5kIGZhc2hp b24gYW5kIHRyYW5zbGF0ZQorICogcmVhZCBhIGJvb3QgYmxvY2sgaW4gYSBt YWNoaW5lIGluZGVwZW5kZW50IGZhc2hpb24gYW5kIHRyYW5zbGF0ZQogICog aXQgaW50byBvdXIgc3RydWN0IGJvb3RibG9jay4KICAqLwogaW50IHJlYWRi b290KGludCwgc3RydWN0IGJvb3RibG9jayAqKTsKQEAgLTk2LDEzICs4OSwx MyBAQAogICogUmVhZCBvbmUgb2YgdGhlIEZBVCBjb3BpZXMgYW5kIHJldHVy biBhIHBvaW50ZXIgdG8gdGhlIG5ldwogICogYWxsb2NhdGVkIGFycmF5IGhv bGRpbmcgb3VyIGRlc2NyaXB0aW9uIG9mIGl0LgogICovCi1pbnQgcmVhZGZh dChpbnQsIHN0cnVjdCBib290YmxvY2sgKiwgaW50LCBzdHJ1Y3QgZmF0RW50 cnkgKiopOworaW50IHJlYWRmYXQoaW50LCBzdHJ1Y3QgYm9vdGJsb2NrICos IHVfaW50LCBzdHJ1Y3QgZmF0RW50cnkgKiopOwogCiAvKgogICogQ2hlY2sg dHdvIEZBVCBjb3BpZXMgZm9yIGNvbnNpc3RlbmN5IGFuZCBtZXJnZSBjaGFu Z2VzIGludG8gdGhlCi0gKiBmaXJzdCBpZiBuZWNjZXNzYXJ5LgorICogZmly c3QgaWYgbmVjZXNzYXJ5LgogICovCi1pbnQgY29tcGFyZWZhdChzdHJ1Y3Qg Ym9vdGJsb2NrICosIHN0cnVjdCBmYXRFbnRyeSAqLCBzdHJ1Y3QgZmF0RW50 cnkgKiwgaW50KTsKK2ludCBjb21wYXJlZmF0KHN0cnVjdCBib290YmxvY2sg Kiwgc3RydWN0IGZhdEVudHJ5ICosIHN0cnVjdCBmYXRFbnRyeSAqLCB1X2lu dCk7CiAKIC8qCiAgKiBDaGVjayBhIEZBVApkaWZmIC1ydSBmc2NrX21zZG9z ZnMub3JpZy9mYXQuYyBmc2NrX21zZG9zZnMvZmF0LmMKLS0tIGZzY2tfbXNk b3Nmcy5vcmlnL2ZhdC5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvZmF0LmMJMjAxMC0wMS0wNyAyMjox MzozMS4wMDAwMDAwMDAgKzAwMDAKQEAgLTEwLDEzICsxMCw2IEBACiAgKiAy LiBSZWRpc3RyaWJ1dGlvbnMgaW4gYmluYXJ5IGZvcm0gbXVzdCByZXByb2R1 Y2UgdGhlIGFib3ZlIGNvcHlyaWdodAogICogICAgbm90aWNlLCB0aGlzIGxp c3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZvbGxvd2luZyBkaXNjbGFpbWVy IGluIHRoZQogICogICAgZG9jdW1lbnRhdGlvbiBhbmQvb3Igb3RoZXIgbWF0 ZXJpYWxzIHByb3ZpZGVkIHdpdGggdGhlIGRpc3RyaWJ1dGlvbi4KLSAqIDMu IEFsbCBhZHZlcnRpc2luZyBtYXRlcmlhbHMgbWVudGlvbmluZyBmZWF0dXJl cyBvciB1c2Ugb2YgdGhpcyBzb2Z0d2FyZQotICogICAgbXVzdCBkaXNwbGF5 IHRoZSBmb2xsb3dpbmcgYWNrbm93bGVkZ2VtZW50OgotICoJVGhpcyBwcm9k dWN0IGluY2x1ZGVzIHNvZnR3YXJlIGRldmVsb3BlZCBieSBNYXJ0aW4gSHVz ZW1hbm4KLSAqCWFuZCBXb2xmZ2FuZyBTb2xmcmFuay4KLSAqIDQuIE5laXRo ZXIgdGhlIG5hbWUgb2YgdGhlIFVuaXZlcnNpdHkgbm9yIHRoZSBuYW1lcyBv ZiBpdHMgY29udHJpYnV0b3JzCi0gKiAgICBtYXkgYmUgdXNlZCB0byBlbmRv cnNlIG9yIHByb21vdGUgcHJvZHVjdHMgZGVyaXZlZCBmcm9tIHRoaXMgc29m dHdhcmUKLSAqICAgIHdpdGhvdXQgc3BlY2lmaWMgcHJpb3Igd3JpdHRlbiBw ZXJtaXNzaW9uLgogICoKICAqIFRISVMgU09GVFdBUkUgSVMgUFJPVklERUQg QlkgVEhFIEFVVEhPUlMgYGBBUyBJUycnIEFORCBBTlkgRVhQUkVTUyBPUgog ICogSU1QTElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1QgTElN SVRFRCBUTywgVEhFIElNUExJRUQgV0FSUkFOVElFUwpAQCAtNDcsMTAgKzQw LDEwIEBACiAjaW5jbHVkZSAiZXh0LmgiCiAjaW5jbHVkZSAiZnN1dGlsLmgi CiAKLXN0YXRpYyBpbnQgY2hlY2tjbG51bShzdHJ1Y3QgYm9vdGJsb2NrICos IGludCwgY2xfdCwgY2xfdCAqKTsKLXN0YXRpYyBpbnQgY2x1c3RkaWZmZXIo Y2xfdCwgY2xfdCAqLCBjbF90ICosIGludCk7CitzdGF0aWMgaW50IGNoZWNr Y2xudW0oc3RydWN0IGJvb3RibG9jayAqLCB1X2ludCwgY2xfdCwgY2xfdCAq KTsKK3N0YXRpYyBpbnQgY2x1c3RkaWZmZXIoY2xfdCwgY2xfdCAqLCBjbF90 ICosIHVfaW50KTsKIHN0YXRpYyBpbnQgdHJ5Y2xlYXIoc3RydWN0IGJvb3Ri bG9jayAqLCBzdHJ1Y3QgZmF0RW50cnkgKiwgY2xfdCwgY2xfdCAqKTsKLXN0 YXRpYyBpbnQgX3JlYWRmYXQoaW50LCBzdHJ1Y3QgYm9vdGJsb2NrICosIGlu dCwgdV9jaGFyICoqKTsKK3N0YXRpYyBpbnQgX3JlYWRmYXQoaW50LCBzdHJ1 Y3QgYm9vdGJsb2NrICosIHVfaW50LCB1X2NoYXIgKiopOwogCiAvKi0KICAq IFRoZSBmaXJzdCAyIEZBVCBlbnRyaWVzIGNvbnRhaW4gcHNldWRvLWNsdXN0 ZXIgbnVtYmVycyB3aXRoIHRoZSBmb2xsb3dpbmcKQEAgLTEzNSw3ICsxMjgs NyBAQAogICogQ2hlY2sgYSBjbHVzdGVyIG51bWJlciBmb3IgdmFsaWQgdmFs dWUKICAqLwogc3RhdGljIGludAotY2hlY2tjbG51bShzdHJ1Y3QgYm9vdGJs b2NrICpib290LCBpbnQgZmF0LCBjbF90IGNsLCBjbF90ICpuZXh0KQorY2hl Y2tjbG51bShzdHJ1Y3QgYm9vdGJsb2NrICpib290LCB1X2ludCBmYXQsIGNs X3QgY2wsIGNsX3QgKm5leHQpCiB7CiAJaWYgKCpuZXh0ID49IChDTFVTVF9S U1JWRCZib290LT5DbHVzdE1hc2spKQogCQkqbmV4dCB8PSB+Ym9vdC0+Q2x1 c3RNYXNrOwpAQCAtMTY2LDcgKzE1OSw3IEBACiAgKiBSZWFkIGEgRkFUIGZy b20gZGlzay4gUmV0dXJucyAxIGlmIHN1Y2Nlc3NmdWwsIDAgb3RoZXJ3aXNl LgogICovCiBzdGF0aWMgaW50Ci1fcmVhZGZhdChpbnQgZnMsIHN0cnVjdCBi b290YmxvY2sgKmJvb3QsIGludCBubywgdV9jaGFyICoqYnVmZmVyKQorX3Jl YWRmYXQoaW50IGZzLCBzdHJ1Y3QgYm9vdGJsb2NrICpib290LCB1X2ludCBu bywgdV9jaGFyICoqYnVmZmVyKQogewogCW9mZl90IG9mZjsKIApAQCAtMTg0 LDcgKzE3Nyw3IEBACiAJCWdvdG8gZXJyOwogCX0KIAotCWlmIChyZWFkKGZz LCAqYnVmZmVyLCBib290LT5GQVRzZWNzICogYm9vdC0+Qnl0ZXNQZXJTZWMp CisJaWYgKChzaXplX3QpcmVhZChmcywgKmJ1ZmZlciwgYm9vdC0+RkFUc2Vj cyAqIGJvb3QtPkJ5dGVzUGVyU2VjKQogCSAgICAhPSBib290LT5GQVRzZWNz ICogYm9vdC0+Qnl0ZXNQZXJTZWMpIHsKIAkJcGVycm9yKCJVbmFibGUgdG8g cmVhZCBGQVQiKTsKIAkJZ290byBlcnI7CkBAIC0yMDEsMjQgKzE5NCwyNiBA QAogICogUmVhZCBhIEZBVCBhbmQgZGVjb2RlIGl0IGludG8gaW50ZXJuYWwg Zm9ybWF0CiAgKi8KIGludAotcmVhZGZhdChpbnQgZnMsIHN0cnVjdCBib290 YmxvY2sgKmJvb3QsIGludCBubywgc3RydWN0IGZhdEVudHJ5ICoqZnApCity ZWFkZmF0KGludCBmcywgc3RydWN0IGJvb3RibG9jayAqYm9vdCwgdV9pbnQg bm8sIHN0cnVjdCBmYXRFbnRyeSAqKmZwKQogewogCXN0cnVjdCBmYXRFbnRy eSAqZmF0OwogCXVfY2hhciAqYnVmZmVyLCAqcDsKIAljbF90IGNsOwogCWlu dCByZXQgPSBGU09LOworCXNpemVfdCBsZW47CiAKIAlib290LT5OdW1GcmVl ID0gYm9vdC0+TnVtQmFkID0gMDsKIAogCWlmICghX3JlYWRmYXQoZnMsIGJv b3QsIG5vLCAmYnVmZmVyKSkKIAkJcmV0dXJuIEZTRkFUQUw7CiAJCQotCWZh dCA9IGNhbGxvYyhib290LT5OdW1DbHVzdGVycywgc2l6ZW9mKHN0cnVjdCBm YXRFbnRyeSkpOworCWZhdCA9IG1hbGxvYyhsZW4gPSBib290LT5OdW1DbHVz dGVycyAqIHNpemVvZihzdHJ1Y3QgZmF0RW50cnkpKTsKIAlpZiAoZmF0ID09 IE5VTEwpIHsKIAkJcGVycm9yKCJObyBzcGFjZSBmb3IgRkFUIik7CiAJCWZy ZWUoYnVmZmVyKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQorCSh2b2lkKW1l bXNldChmYXQsIDAsIGxlbik7CiAKIAlpZiAoYnVmZmVyWzBdICE9IGJvb3Qt Pk1lZGlhCiAJICAgIHx8IGJ1ZmZlclsxXSAhPSAweGZmIHx8IGJ1ZmZlclsy XSAhPSAweGZmCkBAIC0zMTEsNyArMzA2LDExIEBACiAJfQogCiAJZnJlZShi dWZmZXIpOwotCSpmcCA9IGZhdDsKKwlpZiAocmV0ICYgRlNGQVRBTCkgewor CQlmcmVlKGZhdCk7CisJCSpmcCA9IE5VTEw7CisJfSBlbHNlCisJCSpmcCA9 IGZhdDsKIAlyZXR1cm4gcmV0OwogfQogCkBAIC0zMzEsNyArMzMwLDcgQEAK IH0KIAogc3RhdGljIGludAotY2x1c3RkaWZmZXIoY2xfdCBjbCwgY2xfdCAq Y3AxLCBjbF90ICpjcDIsIGludCBmYXRudW0pCitjbHVzdGRpZmZlcihjbF90 IGNsLCBjbF90ICpjcDEsIGNsX3QgKmNwMiwgdV9pbnQgZmF0bnVtKQogewog CWlmICgqY3AxID09IENMVVNUX0ZSRUUgfHwgKmNwMSA+PSBDTFVTVF9SU1JW RCkgewogCQlpZiAoKmNwMiA9PSBDTFVTVF9GUkVFIHx8ICpjcDIgPj0gQ0xV U1RfUlNSVkQpIHsKQEAgLTM0NiwxMyArMzQ1LDEzIEBACiAJCQkJfQogCQkJ CXJldHVybiBGU0ZBVEFMOwogCQkJfQotCQkJcHdhcm4oIkNsdXN0ZXIgJXUg aXMgbWFya2VkICVzIGluIEZBVCAwLCAlcyBpbiBGQVQgJWRcbiIsCisJCQlw d2FybigiQ2x1c3RlciAldSBpcyBtYXJrZWQgJXMgaW4gRkFUIDAsICVzIGlu IEZBVCAldVxuIiwKIAkJCSAgICAgIGNsLCByc3J2ZGNsdHlwZSgqY3AxKSwg cnNydmRjbHR5cGUoKmNwMiksIGZhdG51bSk7CiAJCQlpZiAoYXNrKDAsICJV c2UgRkFUIDAncyBlbnRyeSIpKSB7CiAJCQkJKmNwMiA9ICpjcDE7CiAJCQkJ cmV0dXJuIEZTRkFUTU9EOwogCQkJfQotCQkJaWYgKGFzaygwLCAiVXNlIEZB VCAlZCdzIGVudHJ5IiwgZmF0bnVtKSkgeworCQkJaWYgKGFzaygwLCAiVXNl IEZBVCAldSdzIGVudHJ5IiwgZmF0bnVtKSkgewogCQkJCSpjcDEgPSAqY3Ay OwogCQkJCXJldHVybiBGU0ZBVE1PRDsKIAkJCX0KQEAgLTM2MCw3ICszNTks NyBAQAogCQl9CiAJCXB3YXJuKCJDbHVzdGVyICV1IGlzIG1hcmtlZCAlcyBp biBGQVQgMCwgYnV0IGNvbnRpbnVlcyB3aXRoIGNsdXN0ZXIgJXUgaW4gRkFU ICVkXG4iLAogCQkgICAgICBjbCwgcnNydmRjbHR5cGUoKmNwMSksICpjcDIs IGZhdG51bSk7Ci0JCWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJv bSBGQVQgJWQiLCBmYXRudW0pKSB7CisJCWlmIChhc2soMCwgIlVzZSBjb250 aW51YXRpb24gZnJvbSBGQVQgJXUiLCBmYXRudW0pKSB7CiAJCQkqY3AxID0g KmNwMjsKIAkJCXJldHVybiBGU0ZBVE1PRDsKIAkJfQpAQCAtMzcxLDcgKzM3 MCw3IEBACiAJCXJldHVybiBGU0ZBVEFMOwogCX0KIAlpZiAoKmNwMiA9PSBD TFVTVF9GUkVFIHx8ICpjcDIgPj0gQ0xVU1RfUlNSVkQpIHsKLQkJcHdhcm4o IkNsdXN0ZXIgJXUgY29udGludWVzIHdpdGggY2x1c3RlciAldSBpbiBGQVQg MCwgYnV0IGlzIG1hcmtlZCAlcyBpbiBGQVQgJWRcbiIsCisJCXB3YXJuKCJD bHVzdGVyICV1IGNvbnRpbnVlcyB3aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAs IGJ1dCBpcyBtYXJrZWQgJXMgaW4gRkFUICV1XG4iLAogCQkgICAgICBjbCwg KmNwMSwgcnNydmRjbHR5cGUoKmNwMiksIGZhdG51bSk7CiAJCWlmIChhc2so MCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgMCIpKSB7CiAJCQkqY3Ay ID0gKmNwMTsKQEAgLTM4MywxMyArMzgyLDEzIEBACiAJCX0KIAkJcmV0dXJu IEZTRVJST1I7CiAJfQotCXB3YXJuKCJDbHVzdGVyICV1IGNvbnRpbnVlcyB3 aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAsIGJ1dCB3aXRoIGNsdXN0ZXIgJXUg aW4gRkFUICVkXG4iLAorCXB3YXJuKCJDbHVzdGVyICV1IGNvbnRpbnVlcyB3 aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAsIGJ1dCB3aXRoIGNsdXN0ZXIgJXUg aW4gRkFUICV1XG4iLAogCSAgICAgIGNsLCAqY3AxLCAqY3AyLCBmYXRudW0p OwogCWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgMCIp KSB7CiAJCSpjcDIgPSAqY3AxOwogCQlyZXR1cm4gRlNGQVRNT0Q7CiAJfQot CWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgJWQiLCBm YXRudW0pKSB7CisJaWYgKGFzaygwLCAiVXNlIGNvbnRpbnVhdGlvbiBmcm9t IEZBVCAldSIsIGZhdG51bSkpIHsKIAkJKmNwMSA9ICpjcDI7CiAJCXJldHVy biBGU0ZBVE1PRDsKIAl9CkBAIC00MDEsOCArNDAwLDggQEAKICAqIGludG8g dGhlIGZpcnN0IG9uZS4KICAqLwogaW50Ci1jb21wYXJlZmF0KHN0cnVjdCBi b290YmxvY2sgKmJvb3QsIHN0cnVjdCBmYXRFbnRyeSAqZmlyc3QsIAotICAg IHN0cnVjdCBmYXRFbnRyeSAqc2Vjb25kLCBpbnQgZmF0bnVtKQorY29tcGFy ZWZhdChzdHJ1Y3QgYm9vdGJsb2NrICpib290LCBzdHJ1Y3QgZmF0RW50cnkg KmZpcnN0LAorICAgIHN0cnVjdCBmYXRFbnRyeSAqc2Vjb25kLCB1X2ludCBm YXRudW0pCiB7CiAJY2xfdCBjbDsKIAlpbnQgcmV0ID0gRlNPSzsKQEAgLTU0 Miw4ICs1NDEsOCBAQAogewogCXVfY2hhciAqYnVmZmVyLCAqcDsKIAljbF90 IGNsOwotCWludCBpOwotCXVfaW50MzJfdCBmYXRzejsKKwl1X2ludCBpOwor CXNpemVfdCBmYXRzejsKIAlvZmZfdCBvZmY7CiAJaW50IHJldCA9IEZTT0s7 CiAKQEAgLTYzMyw3ICs2MzIsNyBAQAogCQlvZmYgPSBib290LT5SZXNTZWN0 b3JzICsgaSAqIGJvb3QtPkZBVHNlY3M7CiAJCW9mZiAqPSBib290LT5CeXRl c1BlclNlYzsKIAkJaWYgKGxzZWVrKGZzLCBvZmYsIFNFRUtfU0VUKSAhPSBv ZmYKLQkJICAgIHx8IHdyaXRlKGZzLCBidWZmZXIsIGZhdHN6KSAhPSBmYXRz eikgeworCQkgICAgfHwgKHNpemVfdCl3cml0ZShmcywgYnVmZmVyLCBmYXRz eikgIT0gZmF0c3opIHsKIAkJCXBlcnJvcigiVW5hYmxlIHRvIHdyaXRlIEZB VCIpOwogCQkJcmV0ID0gRlNGQVRBTDsgLyogUmV0dXJuIGltbWVkaWF0ZWx5 PwkJWFhYICovCiAJCX0KQEAgLTY4MywxNyArNjgyLDYgQEAKIAkJCQlyZXQg PSAxOwogCQkJfQogCQl9Ci0JCWlmIChib290LT5OdW1GcmVlICYmIGZhdFti b290LT5GU05leHRdLm5leHQgIT0gQ0xVU1RfRlJFRSkgewotCQkJcHdhcm4o Ik5leHQgZnJlZSBjbHVzdGVyIGluIEZTSW5mbyBibG9jayAoJXUpIG5vdCBm cmVlXG4iLAotCQkJICAgICAgYm9vdC0+RlNOZXh0KTsKLQkJCWlmIChhc2so MSwgIkZpeCIpKQotCQkJCWZvciAoaGVhZCA9IENMVVNUX0ZJUlNUOyBoZWFk IDwgYm9vdC0+TnVtQ2x1c3RlcnM7IGhlYWQrKykKLQkJCQkJaWYgKGZhdFto ZWFkXS5uZXh0ID09IENMVVNUX0ZSRUUpIHsKLQkJCQkJCWJvb3QtPkZTTmV4 dCA9IGhlYWQ7Ci0JCQkJCQlyZXQgPSAxOwotCQkJCQkJYnJlYWs7Ci0JCQkJ CX0KLQkJfQogCQlpZiAocmV0KQogCQkJbW9kIHw9IHdyaXRlZnNpbmZvKGRv c2ZzLCBib290KTsKIAl9CmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Zz Y2tfbXNkb3Nmcy44IGZzY2tfbXNkb3Nmcy9mc2NrX21zZG9zZnMuOAotLS0g ZnNja19tc2Rvc2ZzLm9yaWcvZnNja19tc2Rvc2ZzLjgJMjAxMC0wMS0wNiAx MTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tfbXNkb3Nmcy9mc2Nr X21zZG9zZnMuOAkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAw MApAQCAtMTEsMTMgKzExLDYgQEAKIC5cIiAyLiBSZWRpc3RyaWJ1dGlvbnMg aW4gYmluYXJ5IGZvcm0gbXVzdCByZXByb2R1Y2UgdGhlIGFib3ZlIGNvcHly aWdodAogLlwiICAgIG5vdGljZSwgdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMg YW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBpbiB0aGUKIC5cIiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotLlwiIDMuIEFsbCBhZHZlcnRpc2lu ZyBtYXRlcmlhbHMgbWVudGlvbmluZyBmZWF0dXJlcyBvciB1c2Ugb2YgdGhp cyBzb2Z0d2FyZQotLlwiICAgIG11c3QgZGlzcGxheSB0aGUgZm9sbG93aW5n IGFja25vd2xlZGdlbWVudDoKLS5cIglUaGlzIHByb2R1Y3QgaW5jbHVkZXMg c29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotLlwiCWFu ZCBXb2xmZ2FuZyBTb2xmcmFuay4KLS5cIiA0LiBOZWl0aGVyIHRoZSBuYW1l IG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2YgaXRzIGNvbnRy aWJ1dG9ycwotLlwiICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJv bW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotLlwi ICAgIHdpdGhvdXQgc3BlY2lmaWMgcHJpb3Igd3JpdHRlbiBwZXJtaXNzaW9u LgogLlwiCiAuXCIgVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUg QVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAuXCIgSU1Q TElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1QgTElNSVRFRCBU TywgVEhFIElNUExJRUQgV0FSUkFOVElFUwpkaWZmIC1ydSBmc2NrX21zZG9z ZnMub3JpZy9tYWluLmMgZnNja19tc2Rvc2ZzL21haW4uYwotLS0gZnNja19t c2Rvc2ZzLm9yaWcvbWFpbi5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAw MDAwICswMDAwCisrKyBmc2NrX21zZG9zZnMvbWFpbi5jCTIwMTAtMDEtMDcg MjI6MDk6MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMCwxMyArMTAsNiBAQAog ICogMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVw cm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhp cyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xh aW1lciBpbiB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVy IG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0g KiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVh dHVyZXMgb3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlz cGxheSB0aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMg cHJvZHVjdCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGlu IEh1c2VtYW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBO ZWl0aGVyIHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFt ZXMgb2YgaXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8g ZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlz IHNvZnR3YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0 ZW4gcGVybWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJ REVEIEJZIFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1Mg T1IKICAqIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9U IExJTUlURUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKQEAgLTQwLDcg KzMzLDYgQEAKIAogI2luY2x1ZGUgPHN0ZGxpYi5oPgogI2luY2x1ZGUgPHN0 cmluZy5oPgotI2luY2x1ZGUgPGN0eXBlLmg+CiAjaW5jbHVkZSA8c3RkaW8u aD4KICNpbmNsdWRlIDx1bmlzdGQuaD4KICNpbmNsdWRlIDxlcnJuby5oPgo= --0-768091124-1262982876=:77647-- From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 20:40:03 2010 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 AFDE51065670 for ; Fri, 8 Jan 2010 20:40:03 +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 9EB198FC17 for ; Fri, 8 Jan 2010 20:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o08Ke3Ga024569 for ; Fri, 8 Jan 2010 20:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o08Ke3M8024568; Fri, 8 Jan 2010 20:40:03 GMT (envelope-from gnats) Date: Fri, 8 Jan 2010 20:40:03 GMT Message-Id: <201001082040.o08Ke3M8024568@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Pedro F. Giffuni" Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Pedro F. Giffuni" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 20:40:03 -0000 The following reply was made to PR bin/142384; it has been noted by GNATS. From: "Pedro F. Giffuni" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD Date: Fri, 8 Jan 2010 12:34:36 -0800 (PST) --0-768091124-1262982876=:77647 Content-Type: text/plain; charset=us-ascii (I spoke too soon) Remove unused variable len: This is used by NetBSD in error reports but we don't use it. --0-768091124-1262982876=:77647 Content-Type: application/octet-stream; name=patch-fsck_msdosfs Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-fsck_msdosfs" ZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvYm9vdC5jIGZzY2tfbXNkb3Nm cy9ib290LmMKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL2Jvb3QuYwkyMDEwLTAx LTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19tc2Rvc2Zz L2Jvb3QuYwkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAwMApA QCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBi aW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0 CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0 aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVu dGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0 aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5nIG1hdGVy aWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3 YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3ds ZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUg ZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdvbGZnYW5n IFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5p dmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLSAq ICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0 cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0aG91dCBz cGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgogICogVEhJ UyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBgYEFTIElT JycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMs IElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1QTElFRCBX QVJSQU5USUVTCkBAIC00MCw3ICszMyw2IEBACiAKICNpbmNsdWRlIDxzdGRs aWIuaD4KICNpbmNsdWRlIDxzdHJpbmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5o PgogI2luY2x1ZGUgPHN0ZGlvLmg+CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAK QEAgLTU2LDggKzQ4LDkgQEAKIAl1X2NoYXIgZnNpbmZvWzIgKiBET1NCT09U QkxPQ0tTSVpFXTsKIAl1X2NoYXIgYmFja3VwW0RPU0JPT1RCTE9DS1NJWkVd OwogCWludCByZXQgPSBGU09LOworCWludCBpOwogCQotCWlmIChyZWFkKGRv c2ZzLCBibG9jaywgc2l6ZW9mIGJsb2NrKSA8IHNpemVvZiBibG9jaykgewor CWlmIChyZWFkKChzaXplX3QpZG9zZnMsIGJsb2NrLCBzaXplb2YgYmxvY2sp ICE9IHNpemVvZiBibG9jaykgewogCQlwZXJyb3IoImNvdWxkIG5vdCByZWFk IGJvb3QgYmxvY2siKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQpAQCAtMTYx LDEyICsxNTQsMjIgQEAKIAkJfQogCQliYWNrdXBbNjVdID0gYmxvY2tbNjVd OwkJCQkvKiBYWFggKi8KIAkJaWYgKG1lbWNtcChibG9jayArIDExLCBiYWNr dXAgKyAxMSwgNzkpKSB7Ci0JCQkvKiBDb3JyZWN0PwkJCQkJWFhYICovCi0J CQlwZmF0YWwoImJhY2t1cCBkb2Vzbid0IGNvbXBhcmUgdG8gcHJpbWFyeSBi b290YmxvY2siKTsKLQkJCWlmIChhbHdheXNubykKLQkJCQlwZmF0YWwoIlxu Iik7Ci0JCQllbHNlCi0JCQkJcmV0dXJuIEZTRkFUQUw7CisJCQkvKgorCQkJ ICogWFhYIFdlIHJlcXVpcmUgYSByZWZlcmVuY2UgdGhhdCBleHBsYWlucwor CQkJICogdGhhdCB0aGVzZSBieXRlcyBuZWVkIHRvIG1hdGNoLCBvciBzaG91 bGQKKwkJCSAqIGRyb3AgdGhlIGNoZWNrLiAgZ2R0QE5ldEJTRCBoYXMgb2Jz ZXJ2ZWQKKwkJCSAqIGZpbGVzeXN0ZW1zIHRoYXQgd29yayBmaW5lIHVuZGVy IFdpbmRvd3MgWFAKKwkJCSAqIGFuZCBOZXRCU0QgdGhhdCBkbyBub3QgbWF0 Y2gsIHNvIHRoZQorCQkJICogcmVxdWlyZW1lbnQgaXMgc3VzcGVjdC4gIEZv ciBub3csIGp1c3QKKwkJCSAqIHByaW50IG91dCB1c2VmdWwgaW5mb3JtYXRp b24gYW5kIGNvbnRpbnVlLgorCQkJICovCisJCQlwZmF0YWwoImJhY2t1cCAo YmxvY2sgJWQpIG1pc21hdGNoIHdpdGggcHJpbWFyeSBib290YmxvY2s6XG4i LAorCQkJICAgICAgICBib290LT5CYWNrdXApOworCQkJZm9yIChpID0gMTE7 IGkgPCAxMSArIDkwOyBpKyspIHsKKwkJCQlpZiAoYmxvY2tbaV0gIT0gYmFj a3VwW2ldKQorCQkJCQlwZmF0YWwoIlx0aT0lZFx0cHJpbWFyeSAweCUwMnhc dGJhY2t1cCAweCUwMnhcbiIsCisJCQkJCSAgICAgICBpLCBibG9ja1tpXSwg YmFja3VwW2ldKTsKKwkJCX0KIAkJfQogCQkvKiBDaGVjayBiYWNrdXAgRlNJ bmZvPwkJCQkJWFhYICovCiAJfQpkaWZmIC1ydSBmc2NrX21zZG9zZnMub3Jp Zy9jaGVjay5jIGZzY2tfbXNkb3Nmcy9jaGVjay5jCi0tLSBmc2NrX21zZG9z ZnMub3JpZy9jaGVjay5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvY2hlY2suYwkyMDEwLTAxLTA3IDIy OjA5OjEzLjAwMDAwMDAwMCArMDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAq IDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJv ZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMg bGlzdCBvZiBjb25kaXRpb25zIGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWlt ZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBt YXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICog My4gQWxsIGFkdmVydGlzaW5nIG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1 cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3Bs YXkgdGhlIGZvbGxvd2luZyBhY2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHBy b2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBI dXNlbWFubgotICoJYW5kIFdvbGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVp dGhlciB0aGUgbmFtZSBvZiB0aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVz IG9mIGl0cyBjb250cmlidXRvcnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVu ZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBz b2Z0d2FyZQotICogICAgd2l0aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVu IHBlcm1pc3Npb24uCiAgKgogICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURF RCBCWSBUSEUgQVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9S CiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBM SU1JVEVEIFRPLCBUSEUgSU1QTElFRCBXQVJSQU5USUVTCkBAIC00MCw3ICsz Myw2IEBACiAKICNpbmNsdWRlIDxzdGRsaWIuaD4KICNpbmNsdWRlIDxzdHJp bmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5oPgogI2luY2x1ZGUgPHN0ZGlvLmg+ CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAjaW5jbHVkZSA8ZmNudGwuaD4KQEAg LTU0LDcgKzQ2LDggQEAKIAlpbnQgZG9zZnM7CiAJc3RydWN0IGJvb3RibG9j ayBib290OwogCXN0cnVjdCBmYXRFbnRyeSAqZmF0ID0gTlVMTDsKLQlpbnQg aSwgZmluaXNoX2Rvc2RpcnNlY3Rpb249MDsKKwlpbnQgZmluaXNoX2Rvc2Rp cnNlY3Rpb249MDsKKwl1X2ludCBpOwogCWludCBtb2QgPSAwOwogCWludCBy ZXQgPSA4OwogCmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Rpci5jIGZz Y2tfbXNkb3Nmcy9kaXIuYwotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZGlyLmMJ MjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tf bXNkb3Nmcy9kaXIuYwkyMDEwLTAxLTA4IDE1OjMwOjAzLjAwMDAwMDAwMCAr MDAwMApAQCAtMTIsMTMgKzEyLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC00NCw3ICszNyw2IEBACiAjaW5jbHVkZSA8 c3RkbGliLmg+CiAjaW5jbHVkZSA8c3RyaW5nLmg+CiAjaW5jbHVkZSA8Y3R5 cGUuaD4KLSNpbmNsdWRlIDxzdGRpby5oPgogI2luY2x1ZGUgPHVuaXN0ZC5o PgogI2luY2x1ZGUgPHRpbWUuaD4KIApAQCAtMjMwLDEyICsyMjIsMjQgQEAK IAliMSA9IGJvb3QtPlJvb3REaXJFbnRzICogMzI7CiAJYjIgPSBib290LT5T ZWNQZXJDbHVzdCAqIGJvb3QtPkJ5dGVzUGVyU2VjOwogCi0JaWYgKCEoYnVm ZmVyID0gbWFsbG9jKGIxID4gYjIgPyBiMSA6IGIyKSkKLQkgICAgfHwgIShk ZWxidWYgPSBtYWxsb2MoYjIpKQotCSAgICB8fCAhKHJvb3REaXIgPSBuZXdE b3NEaXJFbnRyeSgpKSkgewotCQlwZXJyb3IoIk5vIHNwYWNlIGZvciBkaXJl Y3RvcnkiKTsKKwlpZiAoKGJ1ZmZlciA9IG1hbGxvYyggYjEgPiBiMiA/IGIx IDogYjIpKSA9PSBOVUxMKSB7CisJCXBlcnJvcigiTm8gc3BhY2UgZm9yIGRp cmVjdG9yeSBidWZmZXIiKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQorCisJ aWYgKChkZWxidWYgPSBtYWxsb2MoYjIpKSA9PSBOVUxMKSB7CisJCWZyZWUo YnVmZmVyKTsKKwkJcGVycm9yKCJObyBzcGFjZSBmb3IgZGlyZWN0b3J5IGRl bGJ1ZiIpOworCQlyZXR1cm4gRlNGQVRBTDsKKwl9CisKKwlpZiAoKHJvb3RE aXIgPSBuZXdEb3NEaXJFbnRyeSgpKSA9PSBOVUxMKSB7CisJCWZyZWUoYnVm ZmVyKTsKKwkJZnJlZShkZWxidWYpOworCQlwZXJyb3IoIk5vIHNwYWNlIGZv ciBkaXJlY3RvcnkgZW50cnkiKTsKKwkJcmV0dXJuIEZTRkFUQUw7CisJfQor CiAJbWVtc2V0KHJvb3REaXIsIDAsIHNpemVvZiAqcm9vdERpcik7CiAJaWYg KGJvb3QtPmZsYWdzICYgRkFUMzIpIHsKIAkJaWYgKGJvb3QtPlJvb3RDbCA8 IENMVVNUX0ZJUlNUIHx8IGJvb3QtPlJvb3RDbCA+PSBib290LT5OdW1DbHVz dGVycykgewpAQCAtMzY3LDcgKzM3MSw4IEBACiAJCQkJcmV0dXJuIEZTRkFU QUw7CiAJCQlzdGFydCA9IGJ1ZmZlcjsKIAkJfQotCQlpZiAoZW5kY2wgPT0g Y3VyY2wpCisJCS8qIHN0YXJ0Y2wgaXMgPCBDTFVTVF9GSVJTVCBmb3IgIWZh dDMyIHJvb3QgKi8KKwkJaWYgKChlbmRjbCA9PSBjdXJjbCkgfHwgKHN0YXJ0 Y2wgPCBDTFVTVF9GSVJTVCkpCiAJCQlmb3IgKDsgc3RhcnQgPCBlbmQ7IHN0 YXJ0ICs9IDMyKQogCQkJCSpzdGFydCA9IFNMT1RfREVMRVRFRDsKIAkJcmV0 dXJuIEZTRElSTU9EOwpAQCAtMzg1LDcgKzM5MCw3IEBACiAJLyoKIAkgKiBD aGVjayBzaXplIG9uIG9yZGluYXJ5IGZpbGVzCiAJICovCi0JaW50MzJfdCBw aHlzaWNhbFNpemU7CisJdV9pbnQzMl90IHBoeXNpY2FsU2l6ZTsKIAogCWlm IChkaXItPmhlYWQgPT0gQ0xVU1RfRlJFRSkKIAkJcGh5c2ljYWxTaXplID0g MDsKQEAgLTY0NCw3ICs2NDksOCBAQAogCQkJCWRpcmVudC5oZWFkIHw9IChw WzIwXSA8PCAxNikgfCAocFsyMV0gPDwgMjQpOwogCQkJZGlyZW50LnNpemUg PSBwWzI4XSB8IChwWzI5XSA8PCA4KSB8IChwWzMwXSA8PCAxNikgfCAocFsz MV0gPDwgMjQpOwogCQkJaWYgKHZhbGxmbikgewotCQkJCXN0cmNweShkaXJl bnQubG5hbWUsIGxvbmdOYW1lKTsKKwkJCQlzdHJsY3B5KGRpcmVudC5sbmFt ZSwgbG9uZ05hbWUsCisJCQkJICAgIHNpemVvZihkaXJlbnQubG5hbWUpKTsK IAkJCQlsb25nTmFtZVswXSA9ICdcMCc7CiAJCQkJc2hvcnRTdW0gPSAtMTsK IAkJCX0KQEAgLTgzMiw2ICs4MzgsMTAgQEAKIAkJCX0KIAkJCWJvb3QtPk51 bUZpbGVzKys7CiAJCX0KKworCQlpZiAoIShib290LT5mbGFncyAmIEZBVDMy KSAmJiAhZGlyLT5wYXJlbnQpCisJCQlicmVhazsKKwogCQlpZiAobW9kICYg VEhJU01PRCkgewogCQkJbGFzdCAqPSAzMjsKIAkJCWlmIChsc2VlayhmLCBv ZmYsIFNFRUtfU0VUKSAhPSBvZmYKQEAgLTg0Nyw2ICs4NTcsMTkgQEAKIAkJ CQlpbnZsZm4gPyBpbnZsZm4gOiB2YWxsZm4sIHAsCiAJCQkJaW52bGZuID8g aW52Y2wgOiB2YWxjbCwgLTEsIDAsCiAJCQkJZnVsbHBhdGgoZGlyKSwgMSk7 CisKKwkvKiBUaGUgcm9vdCBkaXJlY3Rvcnkgb2Ygbm9uIGZhdDMyIGZpbGVz eXN0ZW1zIGlzIGluIGEgc3BlY2lhbAorCSAqIGFyZWEgYW5kIG1heSBoYXZl IGJlZW4gbW9kaWZpZWQgYWJvdmUgd2l0aG91dCBiZWluZyB3cml0dGVuIG91 dC4KKwkgKi8KKwlpZiAoKG1vZCAmIEZTRElSTU9EKSAmJiAhKGJvb3QtPmZs YWdzICYgRkFUMzIpICYmICFkaXItPnBhcmVudCkgeworCQlsYXN0ICo9IDMy OworCQlpZiAobHNlZWsoZiwgb2ZmLCBTRUVLX1NFVCkgIT0gb2ZmCisJCSAg ICB8fCB3cml0ZShmLCBidWZmZXIsIGxhc3QpICE9IGxhc3QpIHsKKwkJCXBl cnJvcigiVW5hYmxlIHRvIHdyaXRlIGRpcmVjdG9yeSIpOworCQkJcmV0dXJu IEZTRkFUQUw7CisJCX0KKwkJbW9kICY9IH5USElTTU9EOworCX0KIAlyZXR1 cm4gbW9kICYgflRISVNNT0Q7CiB9CiAKQEAgLTkzNiw3ICs5NTksNyBAQAog CQlsZm9mZiA9IGxmY2wgKiBib290LT5DbHVzdGVyU2l6ZQogCQkgICAgKyBi b290LT5DbHVzdGVyT2Zmc2V0ICogYm9vdC0+Qnl0ZXNQZXJTZWM7CiAJCWlm IChsc2Vlayhkb3NmcywgbGZvZmYsIFNFRUtfU0VUKSAhPSBsZm9mZgotCQkg ICAgfHwgcmVhZChkb3NmcywgbGZidWYsIGJvb3QtPkNsdXN0ZXJTaXplKSAh PSBib290LT5DbHVzdGVyU2l6ZSkgeworCQkgICAgfHwgKHNpemVfdClyZWFk KGRvc2ZzLCBsZmJ1ZiwgYm9vdC0+Q2x1c3RlclNpemUpICE9IGJvb3QtPkNs dXN0ZXJTaXplKSB7CiAJCQlwZXJyb3IoImNvdWxkIG5vdCByZWFkIExPU1Qu RElSIik7CiAJCQlyZXR1cm4gRlNGQVRBTDsKIAkJfQpAQCAtOTY2LDcgKzk4 OSw3IEBACiAJcFszMV0gPSAodV9jaGFyKShkLnNpemUgPj4gMjQpOwogCWZh dFtoZWFkXS5mbGFncyB8PSBGQVRfVVNFRDsKIAlpZiAobHNlZWsoZG9zZnMs IGxmb2ZmLCBTRUVLX1NFVCkgIT0gbGZvZmYKLQkgICAgfHwgd3JpdGUoZG9z ZnMsIGxmYnVmLCBib290LT5DbHVzdGVyU2l6ZSkgIT0gYm9vdC0+Q2x1c3Rl clNpemUpIHsKKwkgICAgfHwgKHNpemVfdCl3cml0ZShkb3NmcywgbGZidWYs IGJvb3QtPkNsdXN0ZXJTaXplKSAhPSBib290LT5DbHVzdGVyU2l6ZSkgewog CQlwZXJyb3IoImNvdWxkIG5vdCB3cml0ZSBMT1NULkRJUiIpOwogCQlyZXR1 cm4gRlNGQVRBTDsKIAl9CmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Rv c2ZzLmggZnNja19tc2Rvc2ZzL2Rvc2ZzLmgKLS0tIGZzY2tfbXNkb3Nmcy5v cmlnL2Rvc2ZzLmgJMjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAw MDAKKysrIGZzY2tfbXNkb3Nmcy9kb3Nmcy5oCTIwMTAtMDEtMDcgMjI6MDk6 MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMiwxMyArMTIsNiBAQAogICogMi4g UmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVwcm9kdWNl IHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhpcyBsaXN0 IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBp biB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVyIG1hdGVy aWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0gKiAzLiBB bGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVhdHVyZXMg b3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlzcGxheSB0 aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMgcHJvZHVj dCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGluIEh1c2Vt YW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBOZWl0aGVy IHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2Yg aXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8gZW5kb3Jz ZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlzIHNvZnR3 YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0ZW4gcGVy bWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJREVEIEJZ IFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1MgT1IKICAq IElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9UIExJTUlU RUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKZGlmZiAtcnUgZnNja19t c2Rvc2ZzLm9yaWcvZXh0LmggZnNja19tc2Rvc2ZzL2V4dC5oCi0tLSBmc2Nr X21zZG9zZnMub3JpZy9leHQuaAkyMDEwLTAxLTA2IDExOjA3OjI0LjAwMDAw MDAwMCArMDAwMAorKysgZnNja19tc2Rvc2ZzL2V4dC5oCTIwMTAtMDEtMDcg MjI6MDk6MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMCwxMyArMTAsNiBAQAog ICogMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVw cm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhp cyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xh aW1lciBpbiB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVy IG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0g KiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVh dHVyZXMgb3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlz cGxheSB0aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMg cHJvZHVjdCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGlu IEh1c2VtYW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBO ZWl0aGVyIHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFt ZXMgb2YgaXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8g ZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlz IHNvZnR3YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0 ZW4gcGVybWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJ REVEIEJZIFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1Mg T1IKICAqIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9U IExJTUlURUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKQEAgLTc3LDEy ICs3MCwxMiBAQAogI2RlZmluZQlGU0RJUk1PRAkyCQkvKiBTb21lIGRpcmVj dG9yeSB3YXMgbW9kaWZpZWQgKi8KICNkZWZpbmUJRlNGQVRNT0QJNAkJLyog VGhlIEZBVCB3YXMgbW9kaWZpZWQgKi8KICNkZWZpbmUJRlNFUlJPUgkJOAkJ LyogU29tZSB1bnJlY292ZXJlZCBlcnJvciByZW1haW5zICovCi0jZGVmaW5l CUZTRkFUQUwJCTE2CQkvKiBTb21lIHVucmVjb3ZlcmFibGUgZXJyb3Igb2Nj dXJlZCAqLworI2RlZmluZQlGU0ZBVEFMCQkxNgkJLyogU29tZSB1bnJlY292 ZXJhYmxlIGVycm9yIG9jY3VycmVkICovCiAjZGVmaW5lIEZTRElSVFkJCTMy CQkvKiBGaWxlIHN5c3RlbSBpcyBkaXJ0eSAqLwogI2RlZmluZSBGU0ZJWEZB VAk2NAkJLyogRml4IGZpbGUgc3lzdGVtIEZBVCAqLwogCiAvKgotICogcmVh ZCBhIGJvb3QgYmxvY2sgaW4gYSBtYWNoaW5lIGluZGVwZW5kZW5kIGZhc2hp b24gYW5kIHRyYW5zbGF0ZQorICogcmVhZCBhIGJvb3QgYmxvY2sgaW4gYSBt YWNoaW5lIGluZGVwZW5kZW50IGZhc2hpb24gYW5kIHRyYW5zbGF0ZQogICog aXQgaW50byBvdXIgc3RydWN0IGJvb3RibG9jay4KICAqLwogaW50IHJlYWRi b290KGludCwgc3RydWN0IGJvb3RibG9jayAqKTsKQEAgLTk2LDEzICs4OSwx MyBAQAogICogUmVhZCBvbmUgb2YgdGhlIEZBVCBjb3BpZXMgYW5kIHJldHVy biBhIHBvaW50ZXIgdG8gdGhlIG5ldwogICogYWxsb2NhdGVkIGFycmF5IGhv bGRpbmcgb3VyIGRlc2NyaXB0aW9uIG9mIGl0LgogICovCi1pbnQgcmVhZGZh dChpbnQsIHN0cnVjdCBib290YmxvY2sgKiwgaW50LCBzdHJ1Y3QgZmF0RW50 cnkgKiopOworaW50IHJlYWRmYXQoaW50LCBzdHJ1Y3QgYm9vdGJsb2NrICos IHVfaW50LCBzdHJ1Y3QgZmF0RW50cnkgKiopOwogCiAvKgogICogQ2hlY2sg dHdvIEZBVCBjb3BpZXMgZm9yIGNvbnNpc3RlbmN5IGFuZCBtZXJnZSBjaGFu Z2VzIGludG8gdGhlCi0gKiBmaXJzdCBpZiBuZWNjZXNzYXJ5LgorICogZmly c3QgaWYgbmVjZXNzYXJ5LgogICovCi1pbnQgY29tcGFyZWZhdChzdHJ1Y3Qg Ym9vdGJsb2NrICosIHN0cnVjdCBmYXRFbnRyeSAqLCBzdHJ1Y3QgZmF0RW50 cnkgKiwgaW50KTsKK2ludCBjb21wYXJlZmF0KHN0cnVjdCBib290YmxvY2sg Kiwgc3RydWN0IGZhdEVudHJ5ICosIHN0cnVjdCBmYXRFbnRyeSAqLCB1X2lu dCk7CiAKIC8qCiAgKiBDaGVjayBhIEZBVApkaWZmIC1ydSBmc2NrX21zZG9z ZnMub3JpZy9mYXQuYyBmc2NrX21zZG9zZnMvZmF0LmMKLS0tIGZzY2tfbXNk b3Nmcy5vcmlnL2ZhdC5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvZmF0LmMJMjAxMC0wMS0wNyAyMjox MzozMS4wMDAwMDAwMDAgKzAwMDAKQEAgLTEwLDEzICsxMCw2IEBACiAgKiAy LiBSZWRpc3RyaWJ1dGlvbnMgaW4gYmluYXJ5IGZvcm0gbXVzdCByZXByb2R1 Y2UgdGhlIGFib3ZlIGNvcHlyaWdodAogICogICAgbm90aWNlLCB0aGlzIGxp c3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZvbGxvd2luZyBkaXNjbGFpbWVy IGluIHRoZQogICogICAgZG9jdW1lbnRhdGlvbiBhbmQvb3Igb3RoZXIgbWF0 ZXJpYWxzIHByb3ZpZGVkIHdpdGggdGhlIGRpc3RyaWJ1dGlvbi4KLSAqIDMu IEFsbCBhZHZlcnRpc2luZyBtYXRlcmlhbHMgbWVudGlvbmluZyBmZWF0dXJl cyBvciB1c2Ugb2YgdGhpcyBzb2Z0d2FyZQotICogICAgbXVzdCBkaXNwbGF5 IHRoZSBmb2xsb3dpbmcgYWNrbm93bGVkZ2VtZW50OgotICoJVGhpcyBwcm9k dWN0IGluY2x1ZGVzIHNvZnR3YXJlIGRldmVsb3BlZCBieSBNYXJ0aW4gSHVz ZW1hbm4KLSAqCWFuZCBXb2xmZ2FuZyBTb2xmcmFuay4KLSAqIDQuIE5laXRo ZXIgdGhlIG5hbWUgb2YgdGhlIFVuaXZlcnNpdHkgbm9yIHRoZSBuYW1lcyBv ZiBpdHMgY29udHJpYnV0b3JzCi0gKiAgICBtYXkgYmUgdXNlZCB0byBlbmRv cnNlIG9yIHByb21vdGUgcHJvZHVjdHMgZGVyaXZlZCBmcm9tIHRoaXMgc29m dHdhcmUKLSAqICAgIHdpdGhvdXQgc3BlY2lmaWMgcHJpb3Igd3JpdHRlbiBw ZXJtaXNzaW9uLgogICoKICAqIFRISVMgU09GVFdBUkUgSVMgUFJPVklERUQg QlkgVEhFIEFVVEhPUlMgYGBBUyBJUycnIEFORCBBTlkgRVhQUkVTUyBPUgog ICogSU1QTElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1QgTElN SVRFRCBUTywgVEhFIElNUExJRUQgV0FSUkFOVElFUwpAQCAtNDcsMTAgKzQw LDEwIEBACiAjaW5jbHVkZSAiZXh0LmgiCiAjaW5jbHVkZSAiZnN1dGlsLmgi CiAKLXN0YXRpYyBpbnQgY2hlY2tjbG51bShzdHJ1Y3QgYm9vdGJsb2NrICos IGludCwgY2xfdCwgY2xfdCAqKTsKLXN0YXRpYyBpbnQgY2x1c3RkaWZmZXIo Y2xfdCwgY2xfdCAqLCBjbF90ICosIGludCk7CitzdGF0aWMgaW50IGNoZWNr Y2xudW0oc3RydWN0IGJvb3RibG9jayAqLCB1X2ludCwgY2xfdCwgY2xfdCAq KTsKK3N0YXRpYyBpbnQgY2x1c3RkaWZmZXIoY2xfdCwgY2xfdCAqLCBjbF90 ICosIHVfaW50KTsKIHN0YXRpYyBpbnQgdHJ5Y2xlYXIoc3RydWN0IGJvb3Ri bG9jayAqLCBzdHJ1Y3QgZmF0RW50cnkgKiwgY2xfdCwgY2xfdCAqKTsKLXN0 YXRpYyBpbnQgX3JlYWRmYXQoaW50LCBzdHJ1Y3QgYm9vdGJsb2NrICosIGlu dCwgdV9jaGFyICoqKTsKK3N0YXRpYyBpbnQgX3JlYWRmYXQoaW50LCBzdHJ1 Y3QgYm9vdGJsb2NrICosIHVfaW50LCB1X2NoYXIgKiopOwogCiAvKi0KICAq IFRoZSBmaXJzdCAyIEZBVCBlbnRyaWVzIGNvbnRhaW4gcHNldWRvLWNsdXN0 ZXIgbnVtYmVycyB3aXRoIHRoZSBmb2xsb3dpbmcKQEAgLTEzNSw3ICsxMjgs NyBAQAogICogQ2hlY2sgYSBjbHVzdGVyIG51bWJlciBmb3IgdmFsaWQgdmFs dWUKICAqLwogc3RhdGljIGludAotY2hlY2tjbG51bShzdHJ1Y3QgYm9vdGJs b2NrICpib290LCBpbnQgZmF0LCBjbF90IGNsLCBjbF90ICpuZXh0KQorY2hl Y2tjbG51bShzdHJ1Y3QgYm9vdGJsb2NrICpib290LCB1X2ludCBmYXQsIGNs X3QgY2wsIGNsX3QgKm5leHQpCiB7CiAJaWYgKCpuZXh0ID49IChDTFVTVF9S U1JWRCZib290LT5DbHVzdE1hc2spKQogCQkqbmV4dCB8PSB+Ym9vdC0+Q2x1 c3RNYXNrOwpAQCAtMTY2LDcgKzE1OSw3IEBACiAgKiBSZWFkIGEgRkFUIGZy b20gZGlzay4gUmV0dXJucyAxIGlmIHN1Y2Nlc3NmdWwsIDAgb3RoZXJ3aXNl LgogICovCiBzdGF0aWMgaW50Ci1fcmVhZGZhdChpbnQgZnMsIHN0cnVjdCBi b290YmxvY2sgKmJvb3QsIGludCBubywgdV9jaGFyICoqYnVmZmVyKQorX3Jl YWRmYXQoaW50IGZzLCBzdHJ1Y3QgYm9vdGJsb2NrICpib290LCB1X2ludCBu bywgdV9jaGFyICoqYnVmZmVyKQogewogCW9mZl90IG9mZjsKIApAQCAtMTg0 LDcgKzE3Nyw3IEBACiAJCWdvdG8gZXJyOwogCX0KIAotCWlmIChyZWFkKGZz LCAqYnVmZmVyLCBib290LT5GQVRzZWNzICogYm9vdC0+Qnl0ZXNQZXJTZWMp CisJaWYgKChzaXplX3QpcmVhZChmcywgKmJ1ZmZlciwgYm9vdC0+RkFUc2Vj cyAqIGJvb3QtPkJ5dGVzUGVyU2VjKQogCSAgICAhPSBib290LT5GQVRzZWNz ICogYm9vdC0+Qnl0ZXNQZXJTZWMpIHsKIAkJcGVycm9yKCJVbmFibGUgdG8g cmVhZCBGQVQiKTsKIAkJZ290byBlcnI7CkBAIC0yMDEsMjQgKzE5NCwyNiBA QAogICogUmVhZCBhIEZBVCBhbmQgZGVjb2RlIGl0IGludG8gaW50ZXJuYWwg Zm9ybWF0CiAgKi8KIGludAotcmVhZGZhdChpbnQgZnMsIHN0cnVjdCBib290 YmxvY2sgKmJvb3QsIGludCBubywgc3RydWN0IGZhdEVudHJ5ICoqZnApCity ZWFkZmF0KGludCBmcywgc3RydWN0IGJvb3RibG9jayAqYm9vdCwgdV9pbnQg bm8sIHN0cnVjdCBmYXRFbnRyeSAqKmZwKQogewogCXN0cnVjdCBmYXRFbnRy eSAqZmF0OwogCXVfY2hhciAqYnVmZmVyLCAqcDsKIAljbF90IGNsOwogCWlu dCByZXQgPSBGU09LOworCXNpemVfdCBsZW47CiAKIAlib290LT5OdW1GcmVl ID0gYm9vdC0+TnVtQmFkID0gMDsKIAogCWlmICghX3JlYWRmYXQoZnMsIGJv b3QsIG5vLCAmYnVmZmVyKSkKIAkJcmV0dXJuIEZTRkFUQUw7CiAJCQotCWZh dCA9IGNhbGxvYyhib290LT5OdW1DbHVzdGVycywgc2l6ZW9mKHN0cnVjdCBm YXRFbnRyeSkpOworCWZhdCA9IG1hbGxvYyhsZW4gPSBib290LT5OdW1DbHVz dGVycyAqIHNpemVvZihzdHJ1Y3QgZmF0RW50cnkpKTsKIAlpZiAoZmF0ID09 IE5VTEwpIHsKIAkJcGVycm9yKCJObyBzcGFjZSBmb3IgRkFUIik7CiAJCWZy ZWUoYnVmZmVyKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQorCSh2b2lkKW1l bXNldChmYXQsIDAsIGxlbik7CiAKIAlpZiAoYnVmZmVyWzBdICE9IGJvb3Qt Pk1lZGlhCiAJICAgIHx8IGJ1ZmZlclsxXSAhPSAweGZmIHx8IGJ1ZmZlclsy XSAhPSAweGZmCkBAIC0zMTEsNyArMzA2LDExIEBACiAJfQogCiAJZnJlZShi dWZmZXIpOwotCSpmcCA9IGZhdDsKKwlpZiAocmV0ICYgRlNGQVRBTCkgewor CQlmcmVlKGZhdCk7CisJCSpmcCA9IE5VTEw7CisJfSBlbHNlCisJCSpmcCA9 IGZhdDsKIAlyZXR1cm4gcmV0OwogfQogCkBAIC0zMzEsNyArMzMwLDcgQEAK IH0KIAogc3RhdGljIGludAotY2x1c3RkaWZmZXIoY2xfdCBjbCwgY2xfdCAq Y3AxLCBjbF90ICpjcDIsIGludCBmYXRudW0pCitjbHVzdGRpZmZlcihjbF90 IGNsLCBjbF90ICpjcDEsIGNsX3QgKmNwMiwgdV9pbnQgZmF0bnVtKQogewog CWlmICgqY3AxID09IENMVVNUX0ZSRUUgfHwgKmNwMSA+PSBDTFVTVF9SU1JW RCkgewogCQlpZiAoKmNwMiA9PSBDTFVTVF9GUkVFIHx8ICpjcDIgPj0gQ0xV U1RfUlNSVkQpIHsKQEAgLTM0NiwxMyArMzQ1LDEzIEBACiAJCQkJfQogCQkJ CXJldHVybiBGU0ZBVEFMOwogCQkJfQotCQkJcHdhcm4oIkNsdXN0ZXIgJXUg aXMgbWFya2VkICVzIGluIEZBVCAwLCAlcyBpbiBGQVQgJWRcbiIsCisJCQlw d2FybigiQ2x1c3RlciAldSBpcyBtYXJrZWQgJXMgaW4gRkFUIDAsICVzIGlu IEZBVCAldVxuIiwKIAkJCSAgICAgIGNsLCByc3J2ZGNsdHlwZSgqY3AxKSwg cnNydmRjbHR5cGUoKmNwMiksIGZhdG51bSk7CiAJCQlpZiAoYXNrKDAsICJV c2UgRkFUIDAncyBlbnRyeSIpKSB7CiAJCQkJKmNwMiA9ICpjcDE7CiAJCQkJ cmV0dXJuIEZTRkFUTU9EOwogCQkJfQotCQkJaWYgKGFzaygwLCAiVXNlIEZB VCAlZCdzIGVudHJ5IiwgZmF0bnVtKSkgeworCQkJaWYgKGFzaygwLCAiVXNl IEZBVCAldSdzIGVudHJ5IiwgZmF0bnVtKSkgewogCQkJCSpjcDEgPSAqY3Ay OwogCQkJCXJldHVybiBGU0ZBVE1PRDsKIAkJCX0KQEAgLTM2MCw3ICszNTks NyBAQAogCQl9CiAJCXB3YXJuKCJDbHVzdGVyICV1IGlzIG1hcmtlZCAlcyBp biBGQVQgMCwgYnV0IGNvbnRpbnVlcyB3aXRoIGNsdXN0ZXIgJXUgaW4gRkFU ICVkXG4iLAogCQkgICAgICBjbCwgcnNydmRjbHR5cGUoKmNwMSksICpjcDIs IGZhdG51bSk7Ci0JCWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJv bSBGQVQgJWQiLCBmYXRudW0pKSB7CisJCWlmIChhc2soMCwgIlVzZSBjb250 aW51YXRpb24gZnJvbSBGQVQgJXUiLCBmYXRudW0pKSB7CiAJCQkqY3AxID0g KmNwMjsKIAkJCXJldHVybiBGU0ZBVE1PRDsKIAkJfQpAQCAtMzcxLDcgKzM3 MCw3IEBACiAJCXJldHVybiBGU0ZBVEFMOwogCX0KIAlpZiAoKmNwMiA9PSBD TFVTVF9GUkVFIHx8ICpjcDIgPj0gQ0xVU1RfUlNSVkQpIHsKLQkJcHdhcm4o IkNsdXN0ZXIgJXUgY29udGludWVzIHdpdGggY2x1c3RlciAldSBpbiBGQVQg MCwgYnV0IGlzIG1hcmtlZCAlcyBpbiBGQVQgJWRcbiIsCisJCXB3YXJuKCJD bHVzdGVyICV1IGNvbnRpbnVlcyB3aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAs IGJ1dCBpcyBtYXJrZWQgJXMgaW4gRkFUICV1XG4iLAogCQkgICAgICBjbCwg KmNwMSwgcnNydmRjbHR5cGUoKmNwMiksIGZhdG51bSk7CiAJCWlmIChhc2so MCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgMCIpKSB7CiAJCQkqY3Ay ID0gKmNwMTsKQEAgLTM4MywxMyArMzgyLDEzIEBACiAJCX0KIAkJcmV0dXJu IEZTRVJST1I7CiAJfQotCXB3YXJuKCJDbHVzdGVyICV1IGNvbnRpbnVlcyB3 aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAsIGJ1dCB3aXRoIGNsdXN0ZXIgJXUg aW4gRkFUICVkXG4iLAorCXB3YXJuKCJDbHVzdGVyICV1IGNvbnRpbnVlcyB3 aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAsIGJ1dCB3aXRoIGNsdXN0ZXIgJXUg aW4gRkFUICV1XG4iLAogCSAgICAgIGNsLCAqY3AxLCAqY3AyLCBmYXRudW0p OwogCWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgMCIp KSB7CiAJCSpjcDIgPSAqY3AxOwogCQlyZXR1cm4gRlNGQVRNT0Q7CiAJfQot CWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgJWQiLCBm YXRudW0pKSB7CisJaWYgKGFzaygwLCAiVXNlIGNvbnRpbnVhdGlvbiBmcm9t IEZBVCAldSIsIGZhdG51bSkpIHsKIAkJKmNwMSA9ICpjcDI7CiAJCXJldHVy biBGU0ZBVE1PRDsKIAl9CkBAIC00MDEsOCArNDAwLDggQEAKICAqIGludG8g dGhlIGZpcnN0IG9uZS4KICAqLwogaW50Ci1jb21wYXJlZmF0KHN0cnVjdCBi b290YmxvY2sgKmJvb3QsIHN0cnVjdCBmYXRFbnRyeSAqZmlyc3QsIAotICAg IHN0cnVjdCBmYXRFbnRyeSAqc2Vjb25kLCBpbnQgZmF0bnVtKQorY29tcGFy ZWZhdChzdHJ1Y3QgYm9vdGJsb2NrICpib290LCBzdHJ1Y3QgZmF0RW50cnkg KmZpcnN0LAorICAgIHN0cnVjdCBmYXRFbnRyeSAqc2Vjb25kLCB1X2ludCBm YXRudW0pCiB7CiAJY2xfdCBjbDsKIAlpbnQgcmV0ID0gRlNPSzsKQEAgLTU0 Miw4ICs1NDEsOCBAQAogewogCXVfY2hhciAqYnVmZmVyLCAqcDsKIAljbF90 IGNsOwotCWludCBpOwotCXVfaW50MzJfdCBmYXRzejsKKwl1X2ludCBpOwor CXNpemVfdCBmYXRzejsKIAlvZmZfdCBvZmY7CiAJaW50IHJldCA9IEZTT0s7 CiAKQEAgLTYzMyw3ICs2MzIsNyBAQAogCQlvZmYgPSBib290LT5SZXNTZWN0 b3JzICsgaSAqIGJvb3QtPkZBVHNlY3M7CiAJCW9mZiAqPSBib290LT5CeXRl c1BlclNlYzsKIAkJaWYgKGxzZWVrKGZzLCBvZmYsIFNFRUtfU0VUKSAhPSBv ZmYKLQkJICAgIHx8IHdyaXRlKGZzLCBidWZmZXIsIGZhdHN6KSAhPSBmYXRz eikgeworCQkgICAgfHwgKHNpemVfdCl3cml0ZShmcywgYnVmZmVyLCBmYXRz eikgIT0gZmF0c3opIHsKIAkJCXBlcnJvcigiVW5hYmxlIHRvIHdyaXRlIEZB VCIpOwogCQkJcmV0ID0gRlNGQVRBTDsgLyogUmV0dXJuIGltbWVkaWF0ZWx5 PwkJWFhYICovCiAJCX0KQEAgLTY4MywxNyArNjgyLDYgQEAKIAkJCQlyZXQg PSAxOwogCQkJfQogCQl9Ci0JCWlmIChib290LT5OdW1GcmVlICYmIGZhdFti b290LT5GU05leHRdLm5leHQgIT0gQ0xVU1RfRlJFRSkgewotCQkJcHdhcm4o Ik5leHQgZnJlZSBjbHVzdGVyIGluIEZTSW5mbyBibG9jayAoJXUpIG5vdCBm cmVlXG4iLAotCQkJICAgICAgYm9vdC0+RlNOZXh0KTsKLQkJCWlmIChhc2so MSwgIkZpeCIpKQotCQkJCWZvciAoaGVhZCA9IENMVVNUX0ZJUlNUOyBoZWFk IDwgYm9vdC0+TnVtQ2x1c3RlcnM7IGhlYWQrKykKLQkJCQkJaWYgKGZhdFto ZWFkXS5uZXh0ID09IENMVVNUX0ZSRUUpIHsKLQkJCQkJCWJvb3QtPkZTTmV4 dCA9IGhlYWQ7Ci0JCQkJCQlyZXQgPSAxOwotCQkJCQkJYnJlYWs7Ci0JCQkJ CX0KLQkJfQogCQlpZiAocmV0KQogCQkJbW9kIHw9IHdyaXRlZnNpbmZvKGRv c2ZzLCBib290KTsKIAl9CmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Zz Y2tfbXNkb3Nmcy44IGZzY2tfbXNkb3Nmcy9mc2NrX21zZG9zZnMuOAotLS0g ZnNja19tc2Rvc2ZzLm9yaWcvZnNja19tc2Rvc2ZzLjgJMjAxMC0wMS0wNiAx MTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tfbXNkb3Nmcy9mc2Nr X21zZG9zZnMuOAkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAw MApAQCAtMTEsMTMgKzExLDYgQEAKIC5cIiAyLiBSZWRpc3RyaWJ1dGlvbnMg aW4gYmluYXJ5IGZvcm0gbXVzdCByZXByb2R1Y2UgdGhlIGFib3ZlIGNvcHly aWdodAogLlwiICAgIG5vdGljZSwgdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMg YW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBpbiB0aGUKIC5cIiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotLlwiIDMuIEFsbCBhZHZlcnRpc2lu ZyBtYXRlcmlhbHMgbWVudGlvbmluZyBmZWF0dXJlcyBvciB1c2Ugb2YgdGhp cyBzb2Z0d2FyZQotLlwiICAgIG11c3QgZGlzcGxheSB0aGUgZm9sbG93aW5n IGFja25vd2xlZGdlbWVudDoKLS5cIglUaGlzIHByb2R1Y3QgaW5jbHVkZXMg c29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotLlwiCWFu ZCBXb2xmZ2FuZyBTb2xmcmFuay4KLS5cIiA0LiBOZWl0aGVyIHRoZSBuYW1l IG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2YgaXRzIGNvbnRy aWJ1dG9ycwotLlwiICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJv bW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotLlwi ICAgIHdpdGhvdXQgc3BlY2lmaWMgcHJpb3Igd3JpdHRlbiBwZXJtaXNzaW9u LgogLlwiCiAuXCIgVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUg QVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAuXCIgSU1Q TElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1QgTElNSVRFRCBU TywgVEhFIElNUExJRUQgV0FSUkFOVElFUwpkaWZmIC1ydSBmc2NrX21zZG9z ZnMub3JpZy9tYWluLmMgZnNja19tc2Rvc2ZzL21haW4uYwotLS0gZnNja19t c2Rvc2ZzLm9yaWcvbWFpbi5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAw MDAwICswMDAwCisrKyBmc2NrX21zZG9zZnMvbWFpbi5jCTIwMTAtMDEtMDcg MjI6MDk6MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMCwxMyArMTAsNiBAQAog ICogMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVw cm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhp cyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xh aW1lciBpbiB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVy IG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0g KiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVh dHVyZXMgb3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlz cGxheSB0aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMg cHJvZHVjdCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGlu IEh1c2VtYW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBO ZWl0aGVyIHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFt ZXMgb2YgaXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8g ZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlz IHNvZnR3YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0 ZW4gcGVybWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJ REVEIEJZIFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1Mg T1IKICAqIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9U IExJTUlURUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKQEAgLTQwLDcg KzMzLDYgQEAKIAogI2luY2x1ZGUgPHN0ZGxpYi5oPgogI2luY2x1ZGUgPHN0 cmluZy5oPgotI2luY2x1ZGUgPGN0eXBlLmg+CiAjaW5jbHVkZSA8c3RkaW8u aD4KICNpbmNsdWRlIDx1bmlzdGQuaD4KICNpbmNsdWRlIDxlcnJuby5oPgo= --0-768091124-1262982876=:77647-- From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 21:50:02 2010 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 8F4781065693 for ; Fri, 8 Jan 2010 21:50:02 +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 67BC78FC1A for ; Fri, 8 Jan 2010 21:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o08Lo2Vw085094 for ; Fri, 8 Jan 2010 21:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o08Lo2Of085093; Fri, 8 Jan 2010 21:50:02 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jan 2010 21:50:02 GMT Resent-Message-Id: <201001082150.o08Lo2Of085093@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, Peter Jeremy Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C5B01065743 for ; Fri, 8 Jan 2010 21:45:01 +0000 (UTC) (envelope-from peterjeremy@acm.org) Received: from mail36.syd.optusnet.com.au (mail36.syd.optusnet.com.au [211.29.133.76]) by mx1.freebsd.org (Postfix) with ESMTP id 25AED8FC1D for ; Fri, 8 Jan 2010 21:45:00 +0000 (UTC) Received: from server.vk2pj.dyndns.org (c122-106-232-83.belrs3.nsw.optusnet.com.au [122.106.232.83]) by mail36.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id o08LiwMD031326 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sat, 9 Jan 2010 08:44:59 +1100 Received: from server.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by server.vk2pj.dyndns.org (8.14.3/8.14.3) with ESMTP id o08LioQv055108; Sat, 9 Jan 2010 08:44:50 +1100 (EST) (envelope-from peter@server.vk2pj.dyndns.org) Received: (from peter@localhost) by server.vk2pj.dyndns.org (8.14.3/8.14.3/Submit) id o08Lio6m055104; Sat, 9 Jan 2010 08:44:50 +1100 (EST) (envelope-from peter) Message-Id: <201001082144.o08Lio6m055104@server.vk2pj.dyndns.org> Date: Sat, 9 Jan 2010 08:44:50 +1100 (EST) From: Peter Jeremy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/142489: [lor] allproc/zfs LOR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Peter Jeremy List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 21:50:02 -0000 >Number: 142489 >Category: kern >Synopsis: [lor] allproc/zfs LOR >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jan 08 21:50:02 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 8.0-STABLE amd64 >Organization: n/a >Environment: System: FreeBSD server.vk2pj.dyndns.org 8.0-STABLE FreeBSD 8.0-STABLE #11: Mon Nov 30 16:36:34 EST 2009 root@server.vk2pj.dyndns.org:/var/obj/usr/src/sys/server amd64 >Description: New LOR: lock order reversal: 1st 0xffffffff807417c0 allproc (allproc) @ /usr/src/sys/vm/vm_meter.c:130 2nd 0xffffff002c263ba8 zfs (zfs) @ /usr/src/sys/kern/vfs_subr.c:2188 KDB: stack backtrace: db_trace_self_wrapper() at db_trace_self_wrapper+0x2a _witness_debugger() at _witness_debugger+0x2c witness_checkorder() at witness_checkorder+0x66f __lockmgr_args() at __lockmgr_args+0x475 vop_stdlock() at vop_stdlock+0x39 VOP_LOCK1_APV() at VOP_LOCK1_APV+0x52 _vn_lock() at _vn_lock+0x47 vrele() at vrele+0xc3 vm_object_deallocate() at vm_object_deallocate+0x1ad _vm_map_unlock() at _vm_map_unlock+0x70 vm_map_remove() at vm_map_remove+0x6f vmspace_free() at vmspace_free+0x56 vmtotal() at vmtotal+0x3d5 sysctl_root() at sysctl_root+0xa1 userland_sysctl() at userland_sysctl+0x158 __sysctl() at __sysctl+0xaa syscall() at syscall+0x1ac Xfast_syscall() at Xfast_syscall+0xe1 --- syscall (202, FreeBSD ELF64, __sysctl), rip = 0x800bc5a9c, rsp = 0x7fffffffdaf8, rbp = 0x7fffffffdb08 --- >How-To-Repeat: Possibly running 'vmstat -m' >Fix: Unknown >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 22:15:04 2010 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 F1D671065694; Fri, 8 Jan 2010 22:15:04 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C8A5D8FC0A; Fri, 8 Jan 2010 22:15:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o08MF4tT012167; Fri, 8 Jan 2010 22:15:04 GMT (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o08MF4RP012163; Fri, 8 Jan 2010 23:15:04 +0100 (CET) (envelope-from brueffer) Date: Fri, 8 Jan 2010 23:15:04 +0100 (CET) Message-Id: <201001082215.o08MF4RP012163@freefall.freebsd.org> To: k.ueno@fillot.jp, brueffer@FreeBSD.org, freebsd-bugs@FreeBSD.org, mjacob@FreeBSD.org From: brueffer@FreeBSD.org Cc: Subject: Re: kern/140441: [kernel] [patch] order of arguments for mtx_init is incorrect in uipc_syscalls.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 22:15:05 -0000 Synopsis: [kernel] [patch] order of arguments for mtx_init is incorrect in uipc_syscalls.c State-Changed-From-To: open->patched State-Changed-By: brueffer State-Changed-When: Fri Jan 8 23:12:24 CET 2010 State-Changed-Why: Responsible-Changed-From-To: freebsd-bugs->mjacob Responsible-Changed-By: brueffer Responsible-Changed-When: Fri Jan 8 23:12:24 CET 2010 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=140441 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 22:16:04 2010 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 CD01F1065670; Fri, 8 Jan 2010 22:16:04 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A3FA98FC1C; Fri, 8 Jan 2010 22:16:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o08MG43r012221; Fri, 8 Jan 2010 22:16:04 GMT (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o08MG4AG012217; Fri, 8 Jan 2010 23:16:04 +0100 (CET) (envelope-from brueffer) Date: Fri, 8 Jan 2010 23:16:04 +0100 (CET) Message-Id: <201001082216.o08MG4AG012217@freefall.freebsd.org> To: k.ueno@fillot.jp, brueffer@FreeBSD.org, mjacob@FreeBSD.org, freebsd-bugs@FreeBSD.org From: brueffer@FreeBSD.org Cc: Subject: Re: kern/140441: [kernel] [patch] order of arguments for mtx_init is incorrect in uipc_syscalls.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 22:16:04 -0000 Synopsis: [kernel] [patch] order of arguments for mtx_init is incorrect in uipc_syscalls.c State-Changed-From-To: patched->closed State-Changed-By: brueffer State-Changed-When: Fri Jan 8 23:15:07 CET 2010 State-Changed-Why: MFC done. Responsible-Changed-From-To: mjacob->freebsd-bugs Responsible-Changed-By: brueffer Responsible-Changed-When: Fri Jan 8 23:15:07 CET 2010 Responsible-Changed-Why: Already merged, my bad. http://www.freebsd.org/cgi/query-pr.cgi?pr=140441 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 22:20:06 2010 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 15BA3106568D for ; Fri, 8 Jan 2010 22:20:06 +0000 (UTC) (envelope-from chris@brueffer.de) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.17.9]) by mx1.freebsd.org (Postfix) with ESMTP id 9DB658FC0C for ; Fri, 8 Jan 2010 22:20:05 +0000 (UTC) Received: from brueffer.de (84-73-206-110.dclient.hispeed.ch [84.73.206.110]) by mrelayeu.kundenserver.de (node=mrbap2) with ESMTP (Nemesis) id 0Lgw8E-1ODxUG1ZLS-00oB3w; Fri, 08 Jan 2010 23:20:00 +0100 Received: by brueffer.de (Postfix, from userid 1001) id 4AF3017024; Fri, 8 Jan 2010 22:19:57 +0100 (CET) Date: Fri, 8 Jan 2010 22:19:57 +0100 From: Christian Brueffer To: k.ueno@fillot.jp Message-ID: <20100108211956.GB1926@serenity> References: <201001082216.o08MG4AG012217@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LyciRD1jyfeSSjG0" Content-Disposition: inline In-Reply-To: <201001082216.o08MG4AG012217@freefall.freebsd.org> X-Operating-System: FreeBSD 9.0-CURRENT X-PGP-Key: http://people.FreeBSD.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D User-Agent: Mutt/1.5.19 (2009-01-05) X-Provags-ID: V01U2FsdGVkX19Z8SxzaaJDthY3GCeBcG9H+BbzW/c00WBPTAw elDdF5t+kuQNPjmpsLW+9EdSQMUr+6WQjMqCXaEZahliRm0kK3 NvbswAw8iIomF+TVtuJWkvbAQ1dqkxb Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/140441: [kernel] [patch] order of arguments for mtx_init is incorrect in uipc_syscalls.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 22:20:06 -0000 --LyciRD1jyfeSSjG0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 08, 2010 at 11:16:04PM +0100, brueffer@FreeBSD.org wrote: > Synopsis: [kernel] [patch] order of arguments for mtx_init is incorrect i= n uipc_syscalls.c >=20 > State-Changed-From-To: patched->closed > State-Changed-By: brueffer > State-Changed-When: Fri Jan 8 23:15:07 CET 2010 > State-Changed-Why:=20 > MFC done. >=20 >=20 > Responsible-Changed-From-To: mjacob->freebsd-bugs > Responsible-Changed-By: brueffer > Responsible-Changed-When: Fri Jan 8 23:15:07 CET 2010 > Responsible-Changed-Why:=20 > Already merged, my bad. >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D140441 >=20 Sorry, botched the gnats messages here. The original change was committed in r200621 by mjacob. Thanks for the submission! - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --LyciRD1jyfeSSjG0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAktHoXwACgkQbHYXjKDtmC2czACgv1d1HHCWY4BxSxnilA8iDIBh svAAnjrN8TJMBu//bA3v3JFCagyAaPy0 =T5fl -----END PGP SIGNATURE----- --LyciRD1jyfeSSjG0-- From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 22:36:21 2010 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 D4F1C106566C for ; Fri, 8 Jan 2010 22:36:21 +0000 (UTC) (envelope-from giffunip@tutopia.com) Received: from web113514.mail.gq1.yahoo.com (web113514.mail.gq1.yahoo.com [98.136.167.54]) by mx1.freebsd.org (Postfix) with SMTP id AB1018FC0C for ; Fri, 8 Jan 2010 22:36:21 +0000 (UTC) Received: (qmail 1808 invoked by uid 60001); 8 Jan 2010 22:36:18 -0000 Message-ID: <709419.1420.qm@web113514.mail.gq1.yahoo.com> X-YMail-OSG: nME9KlEVM1ke__7TwFvwdcXYqgDau88RJMWWEKsuzqvT.51QPmntq.RNtLtWcva3r0JICDrJFudLNikaKU6M1CBNcWe_KxmjIsnWZkYm9BzOX63Tg6DUvKBcKIfy_l1b2rYD9Pwl63Vu1w7ic3iPiW_a9snx8ukA73d.UvLwJBJhPlyK9a.8mlCxLezLlEAV8vutC8khF5P6hm8yYGASAz.JgWkC_WrUmPN8Gc3NgF17oB6mGqNMIIIDw14sg7FmQag5uOXZDYcZR30lEgkiQzrxSTkLTQ0C1Hlno8ZMy1jM8NPGUxBfeh7Q2AUXp55de2eBMUiTshsdyBmj26RBrw-- Received: from [190.157.123.47] by web113514.mail.gq1.yahoo.com via HTTP; Fri, 08 Jan 2010 14:36:18 PST X-RocketYMMF: giffunip X-Mailer: YahooMailClassic/9.0.20 YahooMailWebService/0.8.100.260964 Date: Fri, 8 Jan 2010 14:36:18 -0800 (PST) From: "Pedro F. Giffuni" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-154663579-1262990178=:1420" Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: giffunip@tutopia.com List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 22:36:21 -0000 --0-154663579-1262990178=:1420 Content-Type: text/plain; charset=us-ascii Ugh... Fix misplaced cast. --0-154663579-1262990178=:1420 Content-Type: application/octet-stream; name=patch-fsck_msdosfs Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-fsck_msdosfs" ZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvYm9vdC5jIGZzY2tfbXNkb3Nm cy9ib290LmMKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL2Jvb3QuYwkyMDEwLTAx LTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19tc2Rvc2Zz L2Jvb3QuYwkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAwMApA QCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBi aW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0 CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0 aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVu dGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0 aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5nIG1hdGVy aWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3 YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3ds ZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUg ZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdvbGZnYW5n IFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5p dmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLSAq ICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0 cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0aG91dCBz cGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgogICogVEhJ UyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBgYEFTIElT JycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMs IElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1QTElFRCBX QVJSQU5USUVTCkBAIC00MCw3ICszMyw2IEBACiAKICNpbmNsdWRlIDxzdGRs aWIuaD4KICNpbmNsdWRlIDxzdHJpbmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5o PgogI2luY2x1ZGUgPHN0ZGlvLmg+CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAK QEAgLTU2LDggKzQ4LDkgQEAKIAl1X2NoYXIgZnNpbmZvWzIgKiBET1NCT09U QkxPQ0tTSVpFXTsKIAl1X2NoYXIgYmFja3VwW0RPU0JPT1RCTE9DS1NJWkVd OwogCWludCByZXQgPSBGU09LOworCWludCBpOwogCQotCWlmIChyZWFkKGRv c2ZzLCBibG9jaywgc2l6ZW9mIGJsb2NrKSA8IHNpemVvZiBibG9jaykgewor CWlmICgoc2l6ZV90KXJlYWQoZG9zZnMsIGJsb2NrLCBzaXplb2YgYmxvY2sp ICE9IHNpemVvZiBibG9jaykgewogCQlwZXJyb3IoImNvdWxkIG5vdCByZWFk IGJvb3QgYmxvY2siKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQpAQCAtMTYx LDEyICsxNTQsMjIgQEAKIAkJfQogCQliYWNrdXBbNjVdID0gYmxvY2tbNjVd OwkJCQkvKiBYWFggKi8KIAkJaWYgKG1lbWNtcChibG9jayArIDExLCBiYWNr dXAgKyAxMSwgNzkpKSB7Ci0JCQkvKiBDb3JyZWN0PwkJCQkJWFhYICovCi0J CQlwZmF0YWwoImJhY2t1cCBkb2Vzbid0IGNvbXBhcmUgdG8gcHJpbWFyeSBi b290YmxvY2siKTsKLQkJCWlmIChhbHdheXNubykKLQkJCQlwZmF0YWwoIlxu Iik7Ci0JCQllbHNlCi0JCQkJcmV0dXJuIEZTRkFUQUw7CisJCQkvKgorCQkJ ICogWFhYIFdlIHJlcXVpcmUgYSByZWZlcmVuY2UgdGhhdCBleHBsYWlucwor CQkJICogdGhhdCB0aGVzZSBieXRlcyBuZWVkIHRvIG1hdGNoLCBvciBzaG91 bGQKKwkJCSAqIGRyb3AgdGhlIGNoZWNrLiAgZ2R0QE5ldEJTRCBoYXMgb2Jz ZXJ2ZWQKKwkJCSAqIGZpbGVzeXN0ZW1zIHRoYXQgd29yayBmaW5lIHVuZGVy IFdpbmRvd3MgWFAKKwkJCSAqIGFuZCBOZXRCU0QgdGhhdCBkbyBub3QgbWF0 Y2gsIHNvIHRoZQorCQkJICogcmVxdWlyZW1lbnQgaXMgc3VzcGVjdC4gIEZv ciBub3csIGp1c3QKKwkJCSAqIHByaW50IG91dCB1c2VmdWwgaW5mb3JtYXRp b24gYW5kIGNvbnRpbnVlLgorCQkJICovCisJCQlwZmF0YWwoImJhY2t1cCAo YmxvY2sgJWQpIG1pc21hdGNoIHdpdGggcHJpbWFyeSBib290YmxvY2s6XG4i LAorCQkJICAgICAgICBib290LT5CYWNrdXApOworCQkJZm9yIChpID0gMTE7 IGkgPCAxMSArIDkwOyBpKyspIHsKKwkJCQlpZiAoYmxvY2tbaV0gIT0gYmFj a3VwW2ldKQorCQkJCQlwZmF0YWwoIlx0aT0lZFx0cHJpbWFyeSAweCUwMnhc dGJhY2t1cCAweCUwMnhcbiIsCisJCQkJCSAgICAgICBpLCBibG9ja1tpXSwg YmFja3VwW2ldKTsKKwkJCX0KIAkJfQogCQkvKiBDaGVjayBiYWNrdXAgRlNJ bmZvPwkJCQkJWFhYICovCiAJfQpkaWZmIC1ydSBmc2NrX21zZG9zZnMub3Jp Zy9jaGVjay5jIGZzY2tfbXNkb3Nmcy9jaGVjay5jCi0tLSBmc2NrX21zZG9z ZnMub3JpZy9jaGVjay5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvY2hlY2suYwkyMDEwLTAxLTA3IDIy OjA5OjEzLjAwMDAwMDAwMCArMDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAq IDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJv ZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMg bGlzdCBvZiBjb25kaXRpb25zIGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWlt ZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBt YXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICog My4gQWxsIGFkdmVydGlzaW5nIG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1 cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3Bs YXkgdGhlIGZvbGxvd2luZyBhY2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHBy b2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBI dXNlbWFubgotICoJYW5kIFdvbGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVp dGhlciB0aGUgbmFtZSBvZiB0aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVz IG9mIGl0cyBjb250cmlidXRvcnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVu ZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBz b2Z0d2FyZQotICogICAgd2l0aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVu IHBlcm1pc3Npb24uCiAgKgogICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURF RCBCWSBUSEUgQVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9S CiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBM SU1JVEVEIFRPLCBUSEUgSU1QTElFRCBXQVJSQU5USUVTCkBAIC00MCw3ICsz Myw2IEBACiAKICNpbmNsdWRlIDxzdGRsaWIuaD4KICNpbmNsdWRlIDxzdHJp bmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5oPgogI2luY2x1ZGUgPHN0ZGlvLmg+ CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAjaW5jbHVkZSA8ZmNudGwuaD4KQEAg LTU0LDcgKzQ2LDggQEAKIAlpbnQgZG9zZnM7CiAJc3RydWN0IGJvb3RibG9j ayBib290OwogCXN0cnVjdCBmYXRFbnRyeSAqZmF0ID0gTlVMTDsKLQlpbnQg aSwgZmluaXNoX2Rvc2RpcnNlY3Rpb249MDsKKwlpbnQgZmluaXNoX2Rvc2Rp cnNlY3Rpb249MDsKKwl1X2ludCBpOwogCWludCBtb2QgPSAwOwogCWludCBy ZXQgPSA4OwogCmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Rpci5jIGZz Y2tfbXNkb3Nmcy9kaXIuYwotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZGlyLmMJ MjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tf bXNkb3Nmcy9kaXIuYwkyMDEwLTAxLTA4IDE1OjMwOjAzLjAwMDAwMDAwMCAr MDAwMApAQCAtMTIsMTMgKzEyLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC00NCw3ICszNyw2IEBACiAjaW5jbHVkZSA8 c3RkbGliLmg+CiAjaW5jbHVkZSA8c3RyaW5nLmg+CiAjaW5jbHVkZSA8Y3R5 cGUuaD4KLSNpbmNsdWRlIDxzdGRpby5oPgogI2luY2x1ZGUgPHVuaXN0ZC5o PgogI2luY2x1ZGUgPHRpbWUuaD4KIApAQCAtMjMwLDEyICsyMjIsMjQgQEAK IAliMSA9IGJvb3QtPlJvb3REaXJFbnRzICogMzI7CiAJYjIgPSBib290LT5T ZWNQZXJDbHVzdCAqIGJvb3QtPkJ5dGVzUGVyU2VjOwogCi0JaWYgKCEoYnVm ZmVyID0gbWFsbG9jKGIxID4gYjIgPyBiMSA6IGIyKSkKLQkgICAgfHwgIShk ZWxidWYgPSBtYWxsb2MoYjIpKQotCSAgICB8fCAhKHJvb3REaXIgPSBuZXdE b3NEaXJFbnRyeSgpKSkgewotCQlwZXJyb3IoIk5vIHNwYWNlIGZvciBkaXJl Y3RvcnkiKTsKKwlpZiAoKGJ1ZmZlciA9IG1hbGxvYyggYjEgPiBiMiA/IGIx IDogYjIpKSA9PSBOVUxMKSB7CisJCXBlcnJvcigiTm8gc3BhY2UgZm9yIGRp cmVjdG9yeSBidWZmZXIiKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQorCisJ aWYgKChkZWxidWYgPSBtYWxsb2MoYjIpKSA9PSBOVUxMKSB7CisJCWZyZWUo YnVmZmVyKTsKKwkJcGVycm9yKCJObyBzcGFjZSBmb3IgZGlyZWN0b3J5IGRl bGJ1ZiIpOworCQlyZXR1cm4gRlNGQVRBTDsKKwl9CisKKwlpZiAoKHJvb3RE aXIgPSBuZXdEb3NEaXJFbnRyeSgpKSA9PSBOVUxMKSB7CisJCWZyZWUoYnVm ZmVyKTsKKwkJZnJlZShkZWxidWYpOworCQlwZXJyb3IoIk5vIHNwYWNlIGZv ciBkaXJlY3RvcnkgZW50cnkiKTsKKwkJcmV0dXJuIEZTRkFUQUw7CisJfQor CiAJbWVtc2V0KHJvb3REaXIsIDAsIHNpemVvZiAqcm9vdERpcik7CiAJaWYg KGJvb3QtPmZsYWdzICYgRkFUMzIpIHsKIAkJaWYgKGJvb3QtPlJvb3RDbCA8 IENMVVNUX0ZJUlNUIHx8IGJvb3QtPlJvb3RDbCA+PSBib290LT5OdW1DbHVz dGVycykgewpAQCAtMzY3LDcgKzM3MSw4IEBACiAJCQkJcmV0dXJuIEZTRkFU QUw7CiAJCQlzdGFydCA9IGJ1ZmZlcjsKIAkJfQotCQlpZiAoZW5kY2wgPT0g Y3VyY2wpCisJCS8qIHN0YXJ0Y2wgaXMgPCBDTFVTVF9GSVJTVCBmb3IgIWZh dDMyIHJvb3QgKi8KKwkJaWYgKChlbmRjbCA9PSBjdXJjbCkgfHwgKHN0YXJ0 Y2wgPCBDTFVTVF9GSVJTVCkpCiAJCQlmb3IgKDsgc3RhcnQgPCBlbmQ7IHN0 YXJ0ICs9IDMyKQogCQkJCSpzdGFydCA9IFNMT1RfREVMRVRFRDsKIAkJcmV0 dXJuIEZTRElSTU9EOwpAQCAtMzg1LDcgKzM5MCw3IEBACiAJLyoKIAkgKiBD aGVjayBzaXplIG9uIG9yZGluYXJ5IGZpbGVzCiAJICovCi0JaW50MzJfdCBw aHlzaWNhbFNpemU7CisJdV9pbnQzMl90IHBoeXNpY2FsU2l6ZTsKIAogCWlm IChkaXItPmhlYWQgPT0gQ0xVU1RfRlJFRSkKIAkJcGh5c2ljYWxTaXplID0g MDsKQEAgLTY0NCw3ICs2NDksOCBAQAogCQkJCWRpcmVudC5oZWFkIHw9IChw WzIwXSA8PCAxNikgfCAocFsyMV0gPDwgMjQpOwogCQkJZGlyZW50LnNpemUg PSBwWzI4XSB8IChwWzI5XSA8PCA4KSB8IChwWzMwXSA8PCAxNikgfCAocFsz MV0gPDwgMjQpOwogCQkJaWYgKHZhbGxmbikgewotCQkJCXN0cmNweShkaXJl bnQubG5hbWUsIGxvbmdOYW1lKTsKKwkJCQlzdHJsY3B5KGRpcmVudC5sbmFt ZSwgbG9uZ05hbWUsCisJCQkJICAgIHNpemVvZihkaXJlbnQubG5hbWUpKTsK IAkJCQlsb25nTmFtZVswXSA9ICdcMCc7CiAJCQkJc2hvcnRTdW0gPSAtMTsK IAkJCX0KQEAgLTgzMiw2ICs4MzgsMTAgQEAKIAkJCX0KIAkJCWJvb3QtPk51 bUZpbGVzKys7CiAJCX0KKworCQlpZiAoIShib290LT5mbGFncyAmIEZBVDMy KSAmJiAhZGlyLT5wYXJlbnQpCisJCQlicmVhazsKKwogCQlpZiAobW9kICYg VEhJU01PRCkgewogCQkJbGFzdCAqPSAzMjsKIAkJCWlmIChsc2VlayhmLCBv ZmYsIFNFRUtfU0VUKSAhPSBvZmYKQEAgLTg0Nyw2ICs4NTcsMTkgQEAKIAkJ CQlpbnZsZm4gPyBpbnZsZm4gOiB2YWxsZm4sIHAsCiAJCQkJaW52bGZuID8g aW52Y2wgOiB2YWxjbCwgLTEsIDAsCiAJCQkJZnVsbHBhdGgoZGlyKSwgMSk7 CisKKwkvKiBUaGUgcm9vdCBkaXJlY3Rvcnkgb2Ygbm9uIGZhdDMyIGZpbGVz eXN0ZW1zIGlzIGluIGEgc3BlY2lhbAorCSAqIGFyZWEgYW5kIG1heSBoYXZl IGJlZW4gbW9kaWZpZWQgYWJvdmUgd2l0aG91dCBiZWluZyB3cml0dGVuIG91 dC4KKwkgKi8KKwlpZiAoKG1vZCAmIEZTRElSTU9EKSAmJiAhKGJvb3QtPmZs YWdzICYgRkFUMzIpICYmICFkaXItPnBhcmVudCkgeworCQlsYXN0ICo9IDMy OworCQlpZiAobHNlZWsoZiwgb2ZmLCBTRUVLX1NFVCkgIT0gb2ZmCisJCSAg ICB8fCB3cml0ZShmLCBidWZmZXIsIGxhc3QpICE9IGxhc3QpIHsKKwkJCXBl cnJvcigiVW5hYmxlIHRvIHdyaXRlIGRpcmVjdG9yeSIpOworCQkJcmV0dXJu IEZTRkFUQUw7CisJCX0KKwkJbW9kICY9IH5USElTTU9EOworCX0KIAlyZXR1 cm4gbW9kICYgflRISVNNT0Q7CiB9CiAKQEAgLTkzNiw3ICs5NTksNyBAQAog CQlsZm9mZiA9IGxmY2wgKiBib290LT5DbHVzdGVyU2l6ZQogCQkgICAgKyBi b290LT5DbHVzdGVyT2Zmc2V0ICogYm9vdC0+Qnl0ZXNQZXJTZWM7CiAJCWlm IChsc2Vlayhkb3NmcywgbGZvZmYsIFNFRUtfU0VUKSAhPSBsZm9mZgotCQkg ICAgfHwgcmVhZChkb3NmcywgbGZidWYsIGJvb3QtPkNsdXN0ZXJTaXplKSAh PSBib290LT5DbHVzdGVyU2l6ZSkgeworCQkgICAgfHwgKHNpemVfdClyZWFk KGRvc2ZzLCBsZmJ1ZiwgYm9vdC0+Q2x1c3RlclNpemUpICE9IGJvb3QtPkNs dXN0ZXJTaXplKSB7CiAJCQlwZXJyb3IoImNvdWxkIG5vdCByZWFkIExPU1Qu RElSIik7CiAJCQlyZXR1cm4gRlNGQVRBTDsKIAkJfQpAQCAtOTY2LDcgKzk4 OSw3IEBACiAJcFszMV0gPSAodV9jaGFyKShkLnNpemUgPj4gMjQpOwogCWZh dFtoZWFkXS5mbGFncyB8PSBGQVRfVVNFRDsKIAlpZiAobHNlZWsoZG9zZnMs IGxmb2ZmLCBTRUVLX1NFVCkgIT0gbGZvZmYKLQkgICAgfHwgd3JpdGUoZG9z ZnMsIGxmYnVmLCBib290LT5DbHVzdGVyU2l6ZSkgIT0gYm9vdC0+Q2x1c3Rl clNpemUpIHsKKwkgICAgfHwgKHNpemVfdCl3cml0ZShkb3NmcywgbGZidWYs IGJvb3QtPkNsdXN0ZXJTaXplKSAhPSBib290LT5DbHVzdGVyU2l6ZSkgewog CQlwZXJyb3IoImNvdWxkIG5vdCB3cml0ZSBMT1NULkRJUiIpOwogCQlyZXR1 cm4gRlNGQVRBTDsKIAl9CmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Rv c2ZzLmggZnNja19tc2Rvc2ZzL2Rvc2ZzLmgKLS0tIGZzY2tfbXNkb3Nmcy5v cmlnL2Rvc2ZzLmgJMjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAw MDAKKysrIGZzY2tfbXNkb3Nmcy9kb3Nmcy5oCTIwMTAtMDEtMDcgMjI6MDk6 MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMiwxMyArMTIsNiBAQAogICogMi4g UmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVwcm9kdWNl IHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhpcyBsaXN0 IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBp biB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVyIG1hdGVy aWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0gKiAzLiBB bGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVhdHVyZXMg b3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlzcGxheSB0 aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMgcHJvZHVj dCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGluIEh1c2Vt YW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBOZWl0aGVy IHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2Yg aXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8gZW5kb3Jz ZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlzIHNvZnR3 YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0ZW4gcGVy bWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJREVEIEJZ IFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1MgT1IKICAq IElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9UIExJTUlU RUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKZGlmZiAtcnUgZnNja19t c2Rvc2ZzLm9yaWcvZXh0LmggZnNja19tc2Rvc2ZzL2V4dC5oCi0tLSBmc2Nr X21zZG9zZnMub3JpZy9leHQuaAkyMDEwLTAxLTA2IDExOjA3OjI0LjAwMDAw MDAwMCArMDAwMAorKysgZnNja19tc2Rvc2ZzL2V4dC5oCTIwMTAtMDEtMDcg MjI6MDk6MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMCwxMyArMTAsNiBAQAog ICogMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVw cm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhp cyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xh aW1lciBpbiB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVy IG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0g KiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVh dHVyZXMgb3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlz cGxheSB0aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMg cHJvZHVjdCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGlu IEh1c2VtYW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBO ZWl0aGVyIHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFt ZXMgb2YgaXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8g ZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlz IHNvZnR3YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0 ZW4gcGVybWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJ REVEIEJZIFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1Mg T1IKICAqIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9U IExJTUlURUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKQEAgLTc3LDEy ICs3MCwxMiBAQAogI2RlZmluZQlGU0RJUk1PRAkyCQkvKiBTb21lIGRpcmVj dG9yeSB3YXMgbW9kaWZpZWQgKi8KICNkZWZpbmUJRlNGQVRNT0QJNAkJLyog VGhlIEZBVCB3YXMgbW9kaWZpZWQgKi8KICNkZWZpbmUJRlNFUlJPUgkJOAkJ LyogU29tZSB1bnJlY292ZXJlZCBlcnJvciByZW1haW5zICovCi0jZGVmaW5l CUZTRkFUQUwJCTE2CQkvKiBTb21lIHVucmVjb3ZlcmFibGUgZXJyb3Igb2Nj dXJlZCAqLworI2RlZmluZQlGU0ZBVEFMCQkxNgkJLyogU29tZSB1bnJlY292 ZXJhYmxlIGVycm9yIG9jY3VycmVkICovCiAjZGVmaW5lIEZTRElSVFkJCTMy CQkvKiBGaWxlIHN5c3RlbSBpcyBkaXJ0eSAqLwogI2RlZmluZSBGU0ZJWEZB VAk2NAkJLyogRml4IGZpbGUgc3lzdGVtIEZBVCAqLwogCiAvKgotICogcmVh ZCBhIGJvb3QgYmxvY2sgaW4gYSBtYWNoaW5lIGluZGVwZW5kZW5kIGZhc2hp b24gYW5kIHRyYW5zbGF0ZQorICogcmVhZCBhIGJvb3QgYmxvY2sgaW4gYSBt YWNoaW5lIGluZGVwZW5kZW50IGZhc2hpb24gYW5kIHRyYW5zbGF0ZQogICog aXQgaW50byBvdXIgc3RydWN0IGJvb3RibG9jay4KICAqLwogaW50IHJlYWRi b290KGludCwgc3RydWN0IGJvb3RibG9jayAqKTsKQEAgLTk2LDEzICs4OSwx MyBAQAogICogUmVhZCBvbmUgb2YgdGhlIEZBVCBjb3BpZXMgYW5kIHJldHVy biBhIHBvaW50ZXIgdG8gdGhlIG5ldwogICogYWxsb2NhdGVkIGFycmF5IGhv bGRpbmcgb3VyIGRlc2NyaXB0aW9uIG9mIGl0LgogICovCi1pbnQgcmVhZGZh dChpbnQsIHN0cnVjdCBib290YmxvY2sgKiwgaW50LCBzdHJ1Y3QgZmF0RW50 cnkgKiopOworaW50IHJlYWRmYXQoaW50LCBzdHJ1Y3QgYm9vdGJsb2NrICos IHVfaW50LCBzdHJ1Y3QgZmF0RW50cnkgKiopOwogCiAvKgogICogQ2hlY2sg dHdvIEZBVCBjb3BpZXMgZm9yIGNvbnNpc3RlbmN5IGFuZCBtZXJnZSBjaGFu Z2VzIGludG8gdGhlCi0gKiBmaXJzdCBpZiBuZWNjZXNzYXJ5LgorICogZmly c3QgaWYgbmVjZXNzYXJ5LgogICovCi1pbnQgY29tcGFyZWZhdChzdHJ1Y3Qg Ym9vdGJsb2NrICosIHN0cnVjdCBmYXRFbnRyeSAqLCBzdHJ1Y3QgZmF0RW50 cnkgKiwgaW50KTsKK2ludCBjb21wYXJlZmF0KHN0cnVjdCBib290YmxvY2sg Kiwgc3RydWN0IGZhdEVudHJ5ICosIHN0cnVjdCBmYXRFbnRyeSAqLCB1X2lu dCk7CiAKIC8qCiAgKiBDaGVjayBhIEZBVApkaWZmIC1ydSBmc2NrX21zZG9z ZnMub3JpZy9mYXQuYyBmc2NrX21zZG9zZnMvZmF0LmMKLS0tIGZzY2tfbXNk b3Nmcy5vcmlnL2ZhdC5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvZmF0LmMJMjAxMC0wMS0wNyAyMjox MzozMS4wMDAwMDAwMDAgKzAwMDAKQEAgLTEwLDEzICsxMCw2IEBACiAgKiAy LiBSZWRpc3RyaWJ1dGlvbnMgaW4gYmluYXJ5IGZvcm0gbXVzdCByZXByb2R1 Y2UgdGhlIGFib3ZlIGNvcHlyaWdodAogICogICAgbm90aWNlLCB0aGlzIGxp c3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZvbGxvd2luZyBkaXNjbGFpbWVy IGluIHRoZQogICogICAgZG9jdW1lbnRhdGlvbiBhbmQvb3Igb3RoZXIgbWF0 ZXJpYWxzIHByb3ZpZGVkIHdpdGggdGhlIGRpc3RyaWJ1dGlvbi4KLSAqIDMu IEFsbCBhZHZlcnRpc2luZyBtYXRlcmlhbHMgbWVudGlvbmluZyBmZWF0dXJl cyBvciB1c2Ugb2YgdGhpcyBzb2Z0d2FyZQotICogICAgbXVzdCBkaXNwbGF5 IHRoZSBmb2xsb3dpbmcgYWNrbm93bGVkZ2VtZW50OgotICoJVGhpcyBwcm9k dWN0IGluY2x1ZGVzIHNvZnR3YXJlIGRldmVsb3BlZCBieSBNYXJ0aW4gSHVz ZW1hbm4KLSAqCWFuZCBXb2xmZ2FuZyBTb2xmcmFuay4KLSAqIDQuIE5laXRo ZXIgdGhlIG5hbWUgb2YgdGhlIFVuaXZlcnNpdHkgbm9yIHRoZSBuYW1lcyBv ZiBpdHMgY29udHJpYnV0b3JzCi0gKiAgICBtYXkgYmUgdXNlZCB0byBlbmRv cnNlIG9yIHByb21vdGUgcHJvZHVjdHMgZGVyaXZlZCBmcm9tIHRoaXMgc29m dHdhcmUKLSAqICAgIHdpdGhvdXQgc3BlY2lmaWMgcHJpb3Igd3JpdHRlbiBw ZXJtaXNzaW9uLgogICoKICAqIFRISVMgU09GVFdBUkUgSVMgUFJPVklERUQg QlkgVEhFIEFVVEhPUlMgYGBBUyBJUycnIEFORCBBTlkgRVhQUkVTUyBPUgog ICogSU1QTElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1QgTElN SVRFRCBUTywgVEhFIElNUExJRUQgV0FSUkFOVElFUwpAQCAtNDcsMTAgKzQw LDEwIEBACiAjaW5jbHVkZSAiZXh0LmgiCiAjaW5jbHVkZSAiZnN1dGlsLmgi CiAKLXN0YXRpYyBpbnQgY2hlY2tjbG51bShzdHJ1Y3QgYm9vdGJsb2NrICos IGludCwgY2xfdCwgY2xfdCAqKTsKLXN0YXRpYyBpbnQgY2x1c3RkaWZmZXIo Y2xfdCwgY2xfdCAqLCBjbF90ICosIGludCk7CitzdGF0aWMgaW50IGNoZWNr Y2xudW0oc3RydWN0IGJvb3RibG9jayAqLCB1X2ludCwgY2xfdCwgY2xfdCAq KTsKK3N0YXRpYyBpbnQgY2x1c3RkaWZmZXIoY2xfdCwgY2xfdCAqLCBjbF90 ICosIHVfaW50KTsKIHN0YXRpYyBpbnQgdHJ5Y2xlYXIoc3RydWN0IGJvb3Ri bG9jayAqLCBzdHJ1Y3QgZmF0RW50cnkgKiwgY2xfdCwgY2xfdCAqKTsKLXN0 YXRpYyBpbnQgX3JlYWRmYXQoaW50LCBzdHJ1Y3QgYm9vdGJsb2NrICosIGlu dCwgdV9jaGFyICoqKTsKK3N0YXRpYyBpbnQgX3JlYWRmYXQoaW50LCBzdHJ1 Y3QgYm9vdGJsb2NrICosIHVfaW50LCB1X2NoYXIgKiopOwogCiAvKi0KICAq IFRoZSBmaXJzdCAyIEZBVCBlbnRyaWVzIGNvbnRhaW4gcHNldWRvLWNsdXN0 ZXIgbnVtYmVycyB3aXRoIHRoZSBmb2xsb3dpbmcKQEAgLTEzNSw3ICsxMjgs NyBAQAogICogQ2hlY2sgYSBjbHVzdGVyIG51bWJlciBmb3IgdmFsaWQgdmFs dWUKICAqLwogc3RhdGljIGludAotY2hlY2tjbG51bShzdHJ1Y3QgYm9vdGJs b2NrICpib290LCBpbnQgZmF0LCBjbF90IGNsLCBjbF90ICpuZXh0KQorY2hl Y2tjbG51bShzdHJ1Y3QgYm9vdGJsb2NrICpib290LCB1X2ludCBmYXQsIGNs X3QgY2wsIGNsX3QgKm5leHQpCiB7CiAJaWYgKCpuZXh0ID49IChDTFVTVF9S U1JWRCZib290LT5DbHVzdE1hc2spKQogCQkqbmV4dCB8PSB+Ym9vdC0+Q2x1 c3RNYXNrOwpAQCAtMTY2LDcgKzE1OSw3IEBACiAgKiBSZWFkIGEgRkFUIGZy b20gZGlzay4gUmV0dXJucyAxIGlmIHN1Y2Nlc3NmdWwsIDAgb3RoZXJ3aXNl LgogICovCiBzdGF0aWMgaW50Ci1fcmVhZGZhdChpbnQgZnMsIHN0cnVjdCBi b290YmxvY2sgKmJvb3QsIGludCBubywgdV9jaGFyICoqYnVmZmVyKQorX3Jl YWRmYXQoaW50IGZzLCBzdHJ1Y3QgYm9vdGJsb2NrICpib290LCB1X2ludCBu bywgdV9jaGFyICoqYnVmZmVyKQogewogCW9mZl90IG9mZjsKIApAQCAtMTg0 LDcgKzE3Nyw3IEBACiAJCWdvdG8gZXJyOwogCX0KIAotCWlmIChyZWFkKGZz LCAqYnVmZmVyLCBib290LT5GQVRzZWNzICogYm9vdC0+Qnl0ZXNQZXJTZWMp CisJaWYgKChzaXplX3QpcmVhZChmcywgKmJ1ZmZlciwgYm9vdC0+RkFUc2Vj cyAqIGJvb3QtPkJ5dGVzUGVyU2VjKQogCSAgICAhPSBib290LT5GQVRzZWNz ICogYm9vdC0+Qnl0ZXNQZXJTZWMpIHsKIAkJcGVycm9yKCJVbmFibGUgdG8g cmVhZCBGQVQiKTsKIAkJZ290byBlcnI7CkBAIC0yMDEsMjQgKzE5NCwyNiBA QAogICogUmVhZCBhIEZBVCBhbmQgZGVjb2RlIGl0IGludG8gaW50ZXJuYWwg Zm9ybWF0CiAgKi8KIGludAotcmVhZGZhdChpbnQgZnMsIHN0cnVjdCBib290 YmxvY2sgKmJvb3QsIGludCBubywgc3RydWN0IGZhdEVudHJ5ICoqZnApCity ZWFkZmF0KGludCBmcywgc3RydWN0IGJvb3RibG9jayAqYm9vdCwgdV9pbnQg bm8sIHN0cnVjdCBmYXRFbnRyeSAqKmZwKQogewogCXN0cnVjdCBmYXRFbnRy eSAqZmF0OwogCXVfY2hhciAqYnVmZmVyLCAqcDsKIAljbF90IGNsOwogCWlu dCByZXQgPSBGU09LOworCXNpemVfdCBsZW47CiAKIAlib290LT5OdW1GcmVl ID0gYm9vdC0+TnVtQmFkID0gMDsKIAogCWlmICghX3JlYWRmYXQoZnMsIGJv b3QsIG5vLCAmYnVmZmVyKSkKIAkJcmV0dXJuIEZTRkFUQUw7CiAJCQotCWZh dCA9IGNhbGxvYyhib290LT5OdW1DbHVzdGVycywgc2l6ZW9mKHN0cnVjdCBm YXRFbnRyeSkpOworCWZhdCA9IG1hbGxvYyhsZW4gPSBib290LT5OdW1DbHVz dGVycyAqIHNpemVvZihzdHJ1Y3QgZmF0RW50cnkpKTsKIAlpZiAoZmF0ID09 IE5VTEwpIHsKIAkJcGVycm9yKCJObyBzcGFjZSBmb3IgRkFUIik7CiAJCWZy ZWUoYnVmZmVyKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQorCSh2b2lkKW1l bXNldChmYXQsIDAsIGxlbik7CiAKIAlpZiAoYnVmZmVyWzBdICE9IGJvb3Qt Pk1lZGlhCiAJICAgIHx8IGJ1ZmZlclsxXSAhPSAweGZmIHx8IGJ1ZmZlclsy XSAhPSAweGZmCkBAIC0zMTEsNyArMzA2LDExIEBACiAJfQogCiAJZnJlZShi dWZmZXIpOwotCSpmcCA9IGZhdDsKKwlpZiAocmV0ICYgRlNGQVRBTCkgewor CQlmcmVlKGZhdCk7CisJCSpmcCA9IE5VTEw7CisJfSBlbHNlCisJCSpmcCA9 IGZhdDsKIAlyZXR1cm4gcmV0OwogfQogCkBAIC0zMzEsNyArMzMwLDcgQEAK IH0KIAogc3RhdGljIGludAotY2x1c3RkaWZmZXIoY2xfdCBjbCwgY2xfdCAq Y3AxLCBjbF90ICpjcDIsIGludCBmYXRudW0pCitjbHVzdGRpZmZlcihjbF90 IGNsLCBjbF90ICpjcDEsIGNsX3QgKmNwMiwgdV9pbnQgZmF0bnVtKQogewog CWlmICgqY3AxID09IENMVVNUX0ZSRUUgfHwgKmNwMSA+PSBDTFVTVF9SU1JW RCkgewogCQlpZiAoKmNwMiA9PSBDTFVTVF9GUkVFIHx8ICpjcDIgPj0gQ0xV U1RfUlNSVkQpIHsKQEAgLTM0NiwxMyArMzQ1LDEzIEBACiAJCQkJfQogCQkJ CXJldHVybiBGU0ZBVEFMOwogCQkJfQotCQkJcHdhcm4oIkNsdXN0ZXIgJXUg aXMgbWFya2VkICVzIGluIEZBVCAwLCAlcyBpbiBGQVQgJWRcbiIsCisJCQlw d2FybigiQ2x1c3RlciAldSBpcyBtYXJrZWQgJXMgaW4gRkFUIDAsICVzIGlu IEZBVCAldVxuIiwKIAkJCSAgICAgIGNsLCByc3J2ZGNsdHlwZSgqY3AxKSwg cnNydmRjbHR5cGUoKmNwMiksIGZhdG51bSk7CiAJCQlpZiAoYXNrKDAsICJV c2UgRkFUIDAncyBlbnRyeSIpKSB7CiAJCQkJKmNwMiA9ICpjcDE7CiAJCQkJ cmV0dXJuIEZTRkFUTU9EOwogCQkJfQotCQkJaWYgKGFzaygwLCAiVXNlIEZB VCAlZCdzIGVudHJ5IiwgZmF0bnVtKSkgeworCQkJaWYgKGFzaygwLCAiVXNl IEZBVCAldSdzIGVudHJ5IiwgZmF0bnVtKSkgewogCQkJCSpjcDEgPSAqY3Ay OwogCQkJCXJldHVybiBGU0ZBVE1PRDsKIAkJCX0KQEAgLTM2MCw3ICszNTks NyBAQAogCQl9CiAJCXB3YXJuKCJDbHVzdGVyICV1IGlzIG1hcmtlZCAlcyBp biBGQVQgMCwgYnV0IGNvbnRpbnVlcyB3aXRoIGNsdXN0ZXIgJXUgaW4gRkFU ICVkXG4iLAogCQkgICAgICBjbCwgcnNydmRjbHR5cGUoKmNwMSksICpjcDIs IGZhdG51bSk7Ci0JCWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJv bSBGQVQgJWQiLCBmYXRudW0pKSB7CisJCWlmIChhc2soMCwgIlVzZSBjb250 aW51YXRpb24gZnJvbSBGQVQgJXUiLCBmYXRudW0pKSB7CiAJCQkqY3AxID0g KmNwMjsKIAkJCXJldHVybiBGU0ZBVE1PRDsKIAkJfQpAQCAtMzcxLDcgKzM3 MCw3IEBACiAJCXJldHVybiBGU0ZBVEFMOwogCX0KIAlpZiAoKmNwMiA9PSBD TFVTVF9GUkVFIHx8ICpjcDIgPj0gQ0xVU1RfUlNSVkQpIHsKLQkJcHdhcm4o IkNsdXN0ZXIgJXUgY29udGludWVzIHdpdGggY2x1c3RlciAldSBpbiBGQVQg MCwgYnV0IGlzIG1hcmtlZCAlcyBpbiBGQVQgJWRcbiIsCisJCXB3YXJuKCJD bHVzdGVyICV1IGNvbnRpbnVlcyB3aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAs IGJ1dCBpcyBtYXJrZWQgJXMgaW4gRkFUICV1XG4iLAogCQkgICAgICBjbCwg KmNwMSwgcnNydmRjbHR5cGUoKmNwMiksIGZhdG51bSk7CiAJCWlmIChhc2so MCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgMCIpKSB7CiAJCQkqY3Ay ID0gKmNwMTsKQEAgLTM4MywxMyArMzgyLDEzIEBACiAJCX0KIAkJcmV0dXJu IEZTRVJST1I7CiAJfQotCXB3YXJuKCJDbHVzdGVyICV1IGNvbnRpbnVlcyB3 aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAsIGJ1dCB3aXRoIGNsdXN0ZXIgJXUg aW4gRkFUICVkXG4iLAorCXB3YXJuKCJDbHVzdGVyICV1IGNvbnRpbnVlcyB3 aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAsIGJ1dCB3aXRoIGNsdXN0ZXIgJXUg aW4gRkFUICV1XG4iLAogCSAgICAgIGNsLCAqY3AxLCAqY3AyLCBmYXRudW0p OwogCWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgMCIp KSB7CiAJCSpjcDIgPSAqY3AxOwogCQlyZXR1cm4gRlNGQVRNT0Q7CiAJfQot CWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgJWQiLCBm YXRudW0pKSB7CisJaWYgKGFzaygwLCAiVXNlIGNvbnRpbnVhdGlvbiBmcm9t IEZBVCAldSIsIGZhdG51bSkpIHsKIAkJKmNwMSA9ICpjcDI7CiAJCXJldHVy biBGU0ZBVE1PRDsKIAl9CkBAIC00MDEsOCArNDAwLDggQEAKICAqIGludG8g dGhlIGZpcnN0IG9uZS4KICAqLwogaW50Ci1jb21wYXJlZmF0KHN0cnVjdCBi b290YmxvY2sgKmJvb3QsIHN0cnVjdCBmYXRFbnRyeSAqZmlyc3QsIAotICAg IHN0cnVjdCBmYXRFbnRyeSAqc2Vjb25kLCBpbnQgZmF0bnVtKQorY29tcGFy ZWZhdChzdHJ1Y3QgYm9vdGJsb2NrICpib290LCBzdHJ1Y3QgZmF0RW50cnkg KmZpcnN0LAorICAgIHN0cnVjdCBmYXRFbnRyeSAqc2Vjb25kLCB1X2ludCBm YXRudW0pCiB7CiAJY2xfdCBjbDsKIAlpbnQgcmV0ID0gRlNPSzsKQEAgLTU0 Miw4ICs1NDEsOCBAQAogewogCXVfY2hhciAqYnVmZmVyLCAqcDsKIAljbF90 IGNsOwotCWludCBpOwotCXVfaW50MzJfdCBmYXRzejsKKwl1X2ludCBpOwor CXNpemVfdCBmYXRzejsKIAlvZmZfdCBvZmY7CiAJaW50IHJldCA9IEZTT0s7 CiAKQEAgLTYzMyw3ICs2MzIsNyBAQAogCQlvZmYgPSBib290LT5SZXNTZWN0 b3JzICsgaSAqIGJvb3QtPkZBVHNlY3M7CiAJCW9mZiAqPSBib290LT5CeXRl c1BlclNlYzsKIAkJaWYgKGxzZWVrKGZzLCBvZmYsIFNFRUtfU0VUKSAhPSBv ZmYKLQkJICAgIHx8IHdyaXRlKGZzLCBidWZmZXIsIGZhdHN6KSAhPSBmYXRz eikgeworCQkgICAgfHwgKHNpemVfdCl3cml0ZShmcywgYnVmZmVyLCBmYXRz eikgIT0gZmF0c3opIHsKIAkJCXBlcnJvcigiVW5hYmxlIHRvIHdyaXRlIEZB VCIpOwogCQkJcmV0ID0gRlNGQVRBTDsgLyogUmV0dXJuIGltbWVkaWF0ZWx5 PwkJWFhYICovCiAJCX0KQEAgLTY4MywxNyArNjgyLDYgQEAKIAkJCQlyZXQg PSAxOwogCQkJfQogCQl9Ci0JCWlmIChib290LT5OdW1GcmVlICYmIGZhdFti b290LT5GU05leHRdLm5leHQgIT0gQ0xVU1RfRlJFRSkgewotCQkJcHdhcm4o Ik5leHQgZnJlZSBjbHVzdGVyIGluIEZTSW5mbyBibG9jayAoJXUpIG5vdCBm cmVlXG4iLAotCQkJICAgICAgYm9vdC0+RlNOZXh0KTsKLQkJCWlmIChhc2so MSwgIkZpeCIpKQotCQkJCWZvciAoaGVhZCA9IENMVVNUX0ZJUlNUOyBoZWFk IDwgYm9vdC0+TnVtQ2x1c3RlcnM7IGhlYWQrKykKLQkJCQkJaWYgKGZhdFto ZWFkXS5uZXh0ID09IENMVVNUX0ZSRUUpIHsKLQkJCQkJCWJvb3QtPkZTTmV4 dCA9IGhlYWQ7Ci0JCQkJCQlyZXQgPSAxOwotCQkJCQkJYnJlYWs7Ci0JCQkJ CX0KLQkJfQogCQlpZiAocmV0KQogCQkJbW9kIHw9IHdyaXRlZnNpbmZvKGRv c2ZzLCBib290KTsKIAl9CmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Zz Y2tfbXNkb3Nmcy44IGZzY2tfbXNkb3Nmcy9mc2NrX21zZG9zZnMuOAotLS0g ZnNja19tc2Rvc2ZzLm9yaWcvZnNja19tc2Rvc2ZzLjgJMjAxMC0wMS0wNiAx MTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tfbXNkb3Nmcy9mc2Nr X21zZG9zZnMuOAkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAw MApAQCAtMTEsMTMgKzExLDYgQEAKIC5cIiAyLiBSZWRpc3RyaWJ1dGlvbnMg aW4gYmluYXJ5IGZvcm0gbXVzdCByZXByb2R1Y2UgdGhlIGFib3ZlIGNvcHly aWdodAogLlwiICAgIG5vdGljZSwgdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMg YW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBpbiB0aGUKIC5cIiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotLlwiIDMuIEFsbCBhZHZlcnRpc2lu ZyBtYXRlcmlhbHMgbWVudGlvbmluZyBmZWF0dXJlcyBvciB1c2Ugb2YgdGhp cyBzb2Z0d2FyZQotLlwiICAgIG11c3QgZGlzcGxheSB0aGUgZm9sbG93aW5n IGFja25vd2xlZGdlbWVudDoKLS5cIglUaGlzIHByb2R1Y3QgaW5jbHVkZXMg c29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotLlwiCWFu ZCBXb2xmZ2FuZyBTb2xmcmFuay4KLS5cIiA0LiBOZWl0aGVyIHRoZSBuYW1l IG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2YgaXRzIGNvbnRy aWJ1dG9ycwotLlwiICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJv bW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotLlwi ICAgIHdpdGhvdXQgc3BlY2lmaWMgcHJpb3Igd3JpdHRlbiBwZXJtaXNzaW9u LgogLlwiCiAuXCIgVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUg QVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAuXCIgSU1Q TElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1QgTElNSVRFRCBU TywgVEhFIElNUExJRUQgV0FSUkFOVElFUwpkaWZmIC1ydSBmc2NrX21zZG9z ZnMub3JpZy9tYWluLmMgZnNja19tc2Rvc2ZzL21haW4uYwotLS0gZnNja19t c2Rvc2ZzLm9yaWcvbWFpbi5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAw MDAwICswMDAwCisrKyBmc2NrX21zZG9zZnMvbWFpbi5jCTIwMTAtMDEtMDcg MjI6MDk6MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMCwxMyArMTAsNiBAQAog ICogMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVw cm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhp cyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xh aW1lciBpbiB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVy IG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0g KiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVh dHVyZXMgb3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlz cGxheSB0aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMg cHJvZHVjdCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGlu IEh1c2VtYW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBO ZWl0aGVyIHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFt ZXMgb2YgaXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8g ZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlz IHNvZnR3YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0 ZW4gcGVybWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJ REVEIEJZIFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1Mg T1IKICAqIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9U IExJTUlURUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKQEAgLTQwLDcg KzMzLDYgQEAKIAogI2luY2x1ZGUgPHN0ZGxpYi5oPgogI2luY2x1ZGUgPHN0 cmluZy5oPgotI2luY2x1ZGUgPGN0eXBlLmg+CiAjaW5jbHVkZSA8c3RkaW8u aD4KICNpbmNsdWRlIDx1bmlzdGQuaD4KICNpbmNsdWRlIDxlcnJuby5oPgo= --0-154663579-1262990178=:1420-- From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 22:40:04 2010 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 E7B82106566C for ; Fri, 8 Jan 2010 22:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D69F38FC12 for ; Fri, 8 Jan 2010 22:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o08Me4x3030781 for ; Fri, 8 Jan 2010 22:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o08Me4oN030780; Fri, 8 Jan 2010 22:40:04 GMT (envelope-from gnats) Date: Fri, 8 Jan 2010 22:40:04 GMT Message-Id: <201001082240.o08Me4oN030780@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Pedro F. Giffuni" Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Pedro F. Giffuni" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 22:40:05 -0000 The following reply was made to PR bin/142384; it has been noted by GNATS. From: "Pedro F. Giffuni" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/142384: sync fsck_msdosfs with OpenBSD Date: Fri, 8 Jan 2010 14:36:18 -0800 (PST) --0-154663579-1262990178=:1420 Content-Type: text/plain; charset=us-ascii Ugh... Fix misplaced cast. --0-154663579-1262990178=:1420 Content-Type: application/octet-stream; name=patch-fsck_msdosfs Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-fsck_msdosfs" ZGlmZiAtcnUgZnNja19tc2Rvc2ZzLm9yaWcvYm9vdC5jIGZzY2tfbXNkb3Nm cy9ib290LmMKLS0tIGZzY2tfbXNkb3Nmcy5vcmlnL2Jvb3QuYwkyMDEwLTAx LTA2IDExOjA3OjI0LjAwMDAwMDAwMCArMDAwMAorKysgZnNja19tc2Rvc2Zz L2Jvb3QuYwkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAwMApA QCAtMTAsMTMgKzEwLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBi aW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0 CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0 aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVu dGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0 aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5nIG1hdGVy aWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3 YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBhY2tub3ds ZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUg ZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdvbGZnYW5n IFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0aGUgVW5p dmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRvcnMKLSAq ICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0 cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0aG91dCBz cGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgogICogVEhJ UyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBgYEFTIElT JycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMs IElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1QTElFRCBX QVJSQU5USUVTCkBAIC00MCw3ICszMyw2IEBACiAKICNpbmNsdWRlIDxzdGRs aWIuaD4KICNpbmNsdWRlIDxzdHJpbmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5o PgogI2luY2x1ZGUgPHN0ZGlvLmg+CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAK QEAgLTU2LDggKzQ4LDkgQEAKIAl1X2NoYXIgZnNpbmZvWzIgKiBET1NCT09U QkxPQ0tTSVpFXTsKIAl1X2NoYXIgYmFja3VwW0RPU0JPT1RCTE9DS1NJWkVd OwogCWludCByZXQgPSBGU09LOworCWludCBpOwogCQotCWlmIChyZWFkKGRv c2ZzLCBibG9jaywgc2l6ZW9mIGJsb2NrKSA8IHNpemVvZiBibG9jaykgewor CWlmICgoc2l6ZV90KXJlYWQoZG9zZnMsIGJsb2NrLCBzaXplb2YgYmxvY2sp ICE9IHNpemVvZiBibG9jaykgewogCQlwZXJyb3IoImNvdWxkIG5vdCByZWFk IGJvb3QgYmxvY2siKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQpAQCAtMTYx LDEyICsxNTQsMjIgQEAKIAkJfQogCQliYWNrdXBbNjVdID0gYmxvY2tbNjVd OwkJCQkvKiBYWFggKi8KIAkJaWYgKG1lbWNtcChibG9jayArIDExLCBiYWNr dXAgKyAxMSwgNzkpKSB7Ci0JCQkvKiBDb3JyZWN0PwkJCQkJWFhYICovCi0J CQlwZmF0YWwoImJhY2t1cCBkb2Vzbid0IGNvbXBhcmUgdG8gcHJpbWFyeSBi b290YmxvY2siKTsKLQkJCWlmIChhbHdheXNubykKLQkJCQlwZmF0YWwoIlxu Iik7Ci0JCQllbHNlCi0JCQkJcmV0dXJuIEZTRkFUQUw7CisJCQkvKgorCQkJ ICogWFhYIFdlIHJlcXVpcmUgYSByZWZlcmVuY2UgdGhhdCBleHBsYWlucwor CQkJICogdGhhdCB0aGVzZSBieXRlcyBuZWVkIHRvIG1hdGNoLCBvciBzaG91 bGQKKwkJCSAqIGRyb3AgdGhlIGNoZWNrLiAgZ2R0QE5ldEJTRCBoYXMgb2Jz ZXJ2ZWQKKwkJCSAqIGZpbGVzeXN0ZW1zIHRoYXQgd29yayBmaW5lIHVuZGVy IFdpbmRvd3MgWFAKKwkJCSAqIGFuZCBOZXRCU0QgdGhhdCBkbyBub3QgbWF0 Y2gsIHNvIHRoZQorCQkJICogcmVxdWlyZW1lbnQgaXMgc3VzcGVjdC4gIEZv ciBub3csIGp1c3QKKwkJCSAqIHByaW50IG91dCB1c2VmdWwgaW5mb3JtYXRp b24gYW5kIGNvbnRpbnVlLgorCQkJICovCisJCQlwZmF0YWwoImJhY2t1cCAo YmxvY2sgJWQpIG1pc21hdGNoIHdpdGggcHJpbWFyeSBib290YmxvY2s6XG4i LAorCQkJICAgICAgICBib290LT5CYWNrdXApOworCQkJZm9yIChpID0gMTE7 IGkgPCAxMSArIDkwOyBpKyspIHsKKwkJCQlpZiAoYmxvY2tbaV0gIT0gYmFj a3VwW2ldKQorCQkJCQlwZmF0YWwoIlx0aT0lZFx0cHJpbWFyeSAweCUwMnhc dGJhY2t1cCAweCUwMnhcbiIsCisJCQkJCSAgICAgICBpLCBibG9ja1tpXSwg YmFja3VwW2ldKTsKKwkJCX0KIAkJfQogCQkvKiBDaGVjayBiYWNrdXAgRlNJ bmZvPwkJCQkJWFhYICovCiAJfQpkaWZmIC1ydSBmc2NrX21zZG9zZnMub3Jp Zy9jaGVjay5jIGZzY2tfbXNkb3Nmcy9jaGVjay5jCi0tLSBmc2NrX21zZG9z ZnMub3JpZy9jaGVjay5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvY2hlY2suYwkyMDEwLTAxLTA3IDIy OjA5OjEzLjAwMDAwMDAwMCArMDAwMApAQCAtMTAsMTMgKzEwLDYgQEAKICAq IDIuIFJlZGlzdHJpYnV0aW9ucyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJv ZHVjZSB0aGUgYWJvdmUgY29weXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMg bGlzdCBvZiBjb25kaXRpb25zIGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWlt ZXIgaW4gdGhlCiAgKiAgICBkb2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBt YXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICog My4gQWxsIGFkdmVydGlzaW5nIG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1 cmVzIG9yIHVzZSBvZiB0aGlzIHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3Bs YXkgdGhlIGZvbGxvd2luZyBhY2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHBy b2R1Y3QgaW5jbHVkZXMgc29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBI dXNlbWFubgotICoJYW5kIFdvbGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVp dGhlciB0aGUgbmFtZSBvZiB0aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVz IG9mIGl0cyBjb250cmlidXRvcnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVu ZG9yc2Ugb3IgcHJvbW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBz b2Z0d2FyZQotICogICAgd2l0aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVu IHBlcm1pc3Npb24uCiAgKgogICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURF RCBCWSBUSEUgQVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9S CiAgKiBJTVBMSUVEIFdBUlJBTlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBM SU1JVEVEIFRPLCBUSEUgSU1QTElFRCBXQVJSQU5USUVTCkBAIC00MCw3ICsz Myw2IEBACiAKICNpbmNsdWRlIDxzdGRsaWIuaD4KICNpbmNsdWRlIDxzdHJp bmcuaD4KLSNpbmNsdWRlIDxjdHlwZS5oPgogI2luY2x1ZGUgPHN0ZGlvLmg+ CiAjaW5jbHVkZSA8dW5pc3RkLmg+CiAjaW5jbHVkZSA8ZmNudGwuaD4KQEAg LTU0LDcgKzQ2LDggQEAKIAlpbnQgZG9zZnM7CiAJc3RydWN0IGJvb3RibG9j ayBib290OwogCXN0cnVjdCBmYXRFbnRyeSAqZmF0ID0gTlVMTDsKLQlpbnQg aSwgZmluaXNoX2Rvc2RpcnNlY3Rpb249MDsKKwlpbnQgZmluaXNoX2Rvc2Rp cnNlY3Rpb249MDsKKwl1X2ludCBpOwogCWludCBtb2QgPSAwOwogCWludCBy ZXQgPSA4OwogCmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Rpci5jIGZz Y2tfbXNkb3Nmcy9kaXIuYwotLS0gZnNja19tc2Rvc2ZzLm9yaWcvZGlyLmMJ MjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tf bXNkb3Nmcy9kaXIuYwkyMDEwLTAxLTA4IDE1OjMwOjAzLjAwMDAwMDAwMCAr MDAwMApAQCAtMTIsMTMgKzEyLDYgQEAKICAqIDIuIFJlZGlzdHJpYnV0aW9u cyBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0CiAgKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25z IGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIgaW4gdGhlCiAgKiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotICogMy4gQWxsIGFkdmVydGlzaW5n IG1hdGVyaWFscyBtZW50aW9uaW5nIGZlYXR1cmVzIG9yIHVzZSBvZiB0aGlz IHNvZnR3YXJlCi0gKiAgICBtdXN0IGRpc3BsYXkgdGhlIGZvbGxvd2luZyBh Y2tub3dsZWRnZW1lbnQ6Ci0gKglUaGlzIHByb2R1Y3QgaW5jbHVkZXMgc29m dHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotICoJYW5kIFdv bGZnYW5nIFNvbGZyYW5rLgotICogNC4gTmVpdGhlciB0aGUgbmFtZSBvZiB0 aGUgVW5pdmVyc2l0eSBub3IgdGhlIG5hbWVzIG9mIGl0cyBjb250cmlidXRv cnMKLSAqICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJvbW90ZSBw cm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotICogICAgd2l0 aG91dCBzcGVjaWZpYyBwcmlvciB3cml0dGVuIHBlcm1pc3Npb24uCiAgKgog ICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SUyBg YEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAgKiBJTVBMSUVEIFdBUlJB TlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1JVEVEIFRPLCBUSEUgSU1Q TElFRCBXQVJSQU5USUVTCkBAIC00NCw3ICszNyw2IEBACiAjaW5jbHVkZSA8 c3RkbGliLmg+CiAjaW5jbHVkZSA8c3RyaW5nLmg+CiAjaW5jbHVkZSA8Y3R5 cGUuaD4KLSNpbmNsdWRlIDxzdGRpby5oPgogI2luY2x1ZGUgPHVuaXN0ZC5o PgogI2luY2x1ZGUgPHRpbWUuaD4KIApAQCAtMjMwLDEyICsyMjIsMjQgQEAK IAliMSA9IGJvb3QtPlJvb3REaXJFbnRzICogMzI7CiAJYjIgPSBib290LT5T ZWNQZXJDbHVzdCAqIGJvb3QtPkJ5dGVzUGVyU2VjOwogCi0JaWYgKCEoYnVm ZmVyID0gbWFsbG9jKGIxID4gYjIgPyBiMSA6IGIyKSkKLQkgICAgfHwgIShk ZWxidWYgPSBtYWxsb2MoYjIpKQotCSAgICB8fCAhKHJvb3REaXIgPSBuZXdE b3NEaXJFbnRyeSgpKSkgewotCQlwZXJyb3IoIk5vIHNwYWNlIGZvciBkaXJl Y3RvcnkiKTsKKwlpZiAoKGJ1ZmZlciA9IG1hbGxvYyggYjEgPiBiMiA/IGIx IDogYjIpKSA9PSBOVUxMKSB7CisJCXBlcnJvcigiTm8gc3BhY2UgZm9yIGRp cmVjdG9yeSBidWZmZXIiKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQorCisJ aWYgKChkZWxidWYgPSBtYWxsb2MoYjIpKSA9PSBOVUxMKSB7CisJCWZyZWUo YnVmZmVyKTsKKwkJcGVycm9yKCJObyBzcGFjZSBmb3IgZGlyZWN0b3J5IGRl bGJ1ZiIpOworCQlyZXR1cm4gRlNGQVRBTDsKKwl9CisKKwlpZiAoKHJvb3RE aXIgPSBuZXdEb3NEaXJFbnRyeSgpKSA9PSBOVUxMKSB7CisJCWZyZWUoYnVm ZmVyKTsKKwkJZnJlZShkZWxidWYpOworCQlwZXJyb3IoIk5vIHNwYWNlIGZv ciBkaXJlY3RvcnkgZW50cnkiKTsKKwkJcmV0dXJuIEZTRkFUQUw7CisJfQor CiAJbWVtc2V0KHJvb3REaXIsIDAsIHNpemVvZiAqcm9vdERpcik7CiAJaWYg KGJvb3QtPmZsYWdzICYgRkFUMzIpIHsKIAkJaWYgKGJvb3QtPlJvb3RDbCA8 IENMVVNUX0ZJUlNUIHx8IGJvb3QtPlJvb3RDbCA+PSBib290LT5OdW1DbHVz dGVycykgewpAQCAtMzY3LDcgKzM3MSw4IEBACiAJCQkJcmV0dXJuIEZTRkFU QUw7CiAJCQlzdGFydCA9IGJ1ZmZlcjsKIAkJfQotCQlpZiAoZW5kY2wgPT0g Y3VyY2wpCisJCS8qIHN0YXJ0Y2wgaXMgPCBDTFVTVF9GSVJTVCBmb3IgIWZh dDMyIHJvb3QgKi8KKwkJaWYgKChlbmRjbCA9PSBjdXJjbCkgfHwgKHN0YXJ0 Y2wgPCBDTFVTVF9GSVJTVCkpCiAJCQlmb3IgKDsgc3RhcnQgPCBlbmQ7IHN0 YXJ0ICs9IDMyKQogCQkJCSpzdGFydCA9IFNMT1RfREVMRVRFRDsKIAkJcmV0 dXJuIEZTRElSTU9EOwpAQCAtMzg1LDcgKzM5MCw3IEBACiAJLyoKIAkgKiBD aGVjayBzaXplIG9uIG9yZGluYXJ5IGZpbGVzCiAJICovCi0JaW50MzJfdCBw aHlzaWNhbFNpemU7CisJdV9pbnQzMl90IHBoeXNpY2FsU2l6ZTsKIAogCWlm IChkaXItPmhlYWQgPT0gQ0xVU1RfRlJFRSkKIAkJcGh5c2ljYWxTaXplID0g MDsKQEAgLTY0NCw3ICs2NDksOCBAQAogCQkJCWRpcmVudC5oZWFkIHw9IChw WzIwXSA8PCAxNikgfCAocFsyMV0gPDwgMjQpOwogCQkJZGlyZW50LnNpemUg PSBwWzI4XSB8IChwWzI5XSA8PCA4KSB8IChwWzMwXSA8PCAxNikgfCAocFsz MV0gPDwgMjQpOwogCQkJaWYgKHZhbGxmbikgewotCQkJCXN0cmNweShkaXJl bnQubG5hbWUsIGxvbmdOYW1lKTsKKwkJCQlzdHJsY3B5KGRpcmVudC5sbmFt ZSwgbG9uZ05hbWUsCisJCQkJICAgIHNpemVvZihkaXJlbnQubG5hbWUpKTsK IAkJCQlsb25nTmFtZVswXSA9ICdcMCc7CiAJCQkJc2hvcnRTdW0gPSAtMTsK IAkJCX0KQEAgLTgzMiw2ICs4MzgsMTAgQEAKIAkJCX0KIAkJCWJvb3QtPk51 bUZpbGVzKys7CiAJCX0KKworCQlpZiAoIShib290LT5mbGFncyAmIEZBVDMy KSAmJiAhZGlyLT5wYXJlbnQpCisJCQlicmVhazsKKwogCQlpZiAobW9kICYg VEhJU01PRCkgewogCQkJbGFzdCAqPSAzMjsKIAkJCWlmIChsc2VlayhmLCBv ZmYsIFNFRUtfU0VUKSAhPSBvZmYKQEAgLTg0Nyw2ICs4NTcsMTkgQEAKIAkJ CQlpbnZsZm4gPyBpbnZsZm4gOiB2YWxsZm4sIHAsCiAJCQkJaW52bGZuID8g aW52Y2wgOiB2YWxjbCwgLTEsIDAsCiAJCQkJZnVsbHBhdGgoZGlyKSwgMSk7 CisKKwkvKiBUaGUgcm9vdCBkaXJlY3Rvcnkgb2Ygbm9uIGZhdDMyIGZpbGVz eXN0ZW1zIGlzIGluIGEgc3BlY2lhbAorCSAqIGFyZWEgYW5kIG1heSBoYXZl IGJlZW4gbW9kaWZpZWQgYWJvdmUgd2l0aG91dCBiZWluZyB3cml0dGVuIG91 dC4KKwkgKi8KKwlpZiAoKG1vZCAmIEZTRElSTU9EKSAmJiAhKGJvb3QtPmZs YWdzICYgRkFUMzIpICYmICFkaXItPnBhcmVudCkgeworCQlsYXN0ICo9IDMy OworCQlpZiAobHNlZWsoZiwgb2ZmLCBTRUVLX1NFVCkgIT0gb2ZmCisJCSAg ICB8fCB3cml0ZShmLCBidWZmZXIsIGxhc3QpICE9IGxhc3QpIHsKKwkJCXBl cnJvcigiVW5hYmxlIHRvIHdyaXRlIGRpcmVjdG9yeSIpOworCQkJcmV0dXJu IEZTRkFUQUw7CisJCX0KKwkJbW9kICY9IH5USElTTU9EOworCX0KIAlyZXR1 cm4gbW9kICYgflRISVNNT0Q7CiB9CiAKQEAgLTkzNiw3ICs5NTksNyBAQAog CQlsZm9mZiA9IGxmY2wgKiBib290LT5DbHVzdGVyU2l6ZQogCQkgICAgKyBi b290LT5DbHVzdGVyT2Zmc2V0ICogYm9vdC0+Qnl0ZXNQZXJTZWM7CiAJCWlm IChsc2Vlayhkb3NmcywgbGZvZmYsIFNFRUtfU0VUKSAhPSBsZm9mZgotCQkg ICAgfHwgcmVhZChkb3NmcywgbGZidWYsIGJvb3QtPkNsdXN0ZXJTaXplKSAh PSBib290LT5DbHVzdGVyU2l6ZSkgeworCQkgICAgfHwgKHNpemVfdClyZWFk KGRvc2ZzLCBsZmJ1ZiwgYm9vdC0+Q2x1c3RlclNpemUpICE9IGJvb3QtPkNs dXN0ZXJTaXplKSB7CiAJCQlwZXJyb3IoImNvdWxkIG5vdCByZWFkIExPU1Qu RElSIik7CiAJCQlyZXR1cm4gRlNGQVRBTDsKIAkJfQpAQCAtOTY2LDcgKzk4 OSw3IEBACiAJcFszMV0gPSAodV9jaGFyKShkLnNpemUgPj4gMjQpOwogCWZh dFtoZWFkXS5mbGFncyB8PSBGQVRfVVNFRDsKIAlpZiAobHNlZWsoZG9zZnMs IGxmb2ZmLCBTRUVLX1NFVCkgIT0gbGZvZmYKLQkgICAgfHwgd3JpdGUoZG9z ZnMsIGxmYnVmLCBib290LT5DbHVzdGVyU2l6ZSkgIT0gYm9vdC0+Q2x1c3Rl clNpemUpIHsKKwkgICAgfHwgKHNpemVfdCl3cml0ZShkb3NmcywgbGZidWYs IGJvb3QtPkNsdXN0ZXJTaXplKSAhPSBib290LT5DbHVzdGVyU2l6ZSkgewog CQlwZXJyb3IoImNvdWxkIG5vdCB3cml0ZSBMT1NULkRJUiIpOwogCQlyZXR1 cm4gRlNGQVRBTDsKIAl9CmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Rv c2ZzLmggZnNja19tc2Rvc2ZzL2Rvc2ZzLmgKLS0tIGZzY2tfbXNkb3Nmcy5v cmlnL2Rvc2ZzLmgJMjAxMC0wMS0wNiAxMTowNzoyNC4wMDAwMDAwMDAgKzAw MDAKKysrIGZzY2tfbXNkb3Nmcy9kb3Nmcy5oCTIwMTAtMDEtMDcgMjI6MDk6 MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMiwxMyArMTIsNiBAQAogICogMi4g UmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVwcm9kdWNl IHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhpcyBsaXN0 IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBp biB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVyIG1hdGVy aWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0gKiAzLiBB bGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVhdHVyZXMg b3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlzcGxheSB0 aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMgcHJvZHVj dCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGluIEh1c2Vt YW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBOZWl0aGVy IHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2Yg aXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8gZW5kb3Jz ZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlzIHNvZnR3 YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0ZW4gcGVy bWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJREVEIEJZ IFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1MgT1IKICAq IElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9UIExJTUlU RUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKZGlmZiAtcnUgZnNja19t c2Rvc2ZzLm9yaWcvZXh0LmggZnNja19tc2Rvc2ZzL2V4dC5oCi0tLSBmc2Nr X21zZG9zZnMub3JpZy9leHQuaAkyMDEwLTAxLTA2IDExOjA3OjI0LjAwMDAw MDAwMCArMDAwMAorKysgZnNja19tc2Rvc2ZzL2V4dC5oCTIwMTAtMDEtMDcg MjI6MDk6MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMCwxMyArMTAsNiBAQAog ICogMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVw cm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhp cyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xh aW1lciBpbiB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVy IG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0g KiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVh dHVyZXMgb3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlz cGxheSB0aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMg cHJvZHVjdCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGlu IEh1c2VtYW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBO ZWl0aGVyIHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFt ZXMgb2YgaXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8g ZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlz IHNvZnR3YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0 ZW4gcGVybWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJ REVEIEJZIFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1Mg T1IKICAqIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9U IExJTUlURUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKQEAgLTc3LDEy ICs3MCwxMiBAQAogI2RlZmluZQlGU0RJUk1PRAkyCQkvKiBTb21lIGRpcmVj dG9yeSB3YXMgbW9kaWZpZWQgKi8KICNkZWZpbmUJRlNGQVRNT0QJNAkJLyog VGhlIEZBVCB3YXMgbW9kaWZpZWQgKi8KICNkZWZpbmUJRlNFUlJPUgkJOAkJ LyogU29tZSB1bnJlY292ZXJlZCBlcnJvciByZW1haW5zICovCi0jZGVmaW5l CUZTRkFUQUwJCTE2CQkvKiBTb21lIHVucmVjb3ZlcmFibGUgZXJyb3Igb2Nj dXJlZCAqLworI2RlZmluZQlGU0ZBVEFMCQkxNgkJLyogU29tZSB1bnJlY292 ZXJhYmxlIGVycm9yIG9jY3VycmVkICovCiAjZGVmaW5lIEZTRElSVFkJCTMy CQkvKiBGaWxlIHN5c3RlbSBpcyBkaXJ0eSAqLwogI2RlZmluZSBGU0ZJWEZB VAk2NAkJLyogRml4IGZpbGUgc3lzdGVtIEZBVCAqLwogCiAvKgotICogcmVh ZCBhIGJvb3QgYmxvY2sgaW4gYSBtYWNoaW5lIGluZGVwZW5kZW5kIGZhc2hp b24gYW5kIHRyYW5zbGF0ZQorICogcmVhZCBhIGJvb3QgYmxvY2sgaW4gYSBt YWNoaW5lIGluZGVwZW5kZW50IGZhc2hpb24gYW5kIHRyYW5zbGF0ZQogICog aXQgaW50byBvdXIgc3RydWN0IGJvb3RibG9jay4KICAqLwogaW50IHJlYWRi b290KGludCwgc3RydWN0IGJvb3RibG9jayAqKTsKQEAgLTk2LDEzICs4OSwx MyBAQAogICogUmVhZCBvbmUgb2YgdGhlIEZBVCBjb3BpZXMgYW5kIHJldHVy biBhIHBvaW50ZXIgdG8gdGhlIG5ldwogICogYWxsb2NhdGVkIGFycmF5IGhv bGRpbmcgb3VyIGRlc2NyaXB0aW9uIG9mIGl0LgogICovCi1pbnQgcmVhZGZh dChpbnQsIHN0cnVjdCBib290YmxvY2sgKiwgaW50LCBzdHJ1Y3QgZmF0RW50 cnkgKiopOworaW50IHJlYWRmYXQoaW50LCBzdHJ1Y3QgYm9vdGJsb2NrICos IHVfaW50LCBzdHJ1Y3QgZmF0RW50cnkgKiopOwogCiAvKgogICogQ2hlY2sg dHdvIEZBVCBjb3BpZXMgZm9yIGNvbnNpc3RlbmN5IGFuZCBtZXJnZSBjaGFu Z2VzIGludG8gdGhlCi0gKiBmaXJzdCBpZiBuZWNjZXNzYXJ5LgorICogZmly c3QgaWYgbmVjZXNzYXJ5LgogICovCi1pbnQgY29tcGFyZWZhdChzdHJ1Y3Qg Ym9vdGJsb2NrICosIHN0cnVjdCBmYXRFbnRyeSAqLCBzdHJ1Y3QgZmF0RW50 cnkgKiwgaW50KTsKK2ludCBjb21wYXJlZmF0KHN0cnVjdCBib290YmxvY2sg Kiwgc3RydWN0IGZhdEVudHJ5ICosIHN0cnVjdCBmYXRFbnRyeSAqLCB1X2lu dCk7CiAKIC8qCiAgKiBDaGVjayBhIEZBVApkaWZmIC1ydSBmc2NrX21zZG9z ZnMub3JpZy9mYXQuYyBmc2NrX21zZG9zZnMvZmF0LmMKLS0tIGZzY2tfbXNk b3Nmcy5vcmlnL2ZhdC5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAwMDAw ICswMDAwCisrKyBmc2NrX21zZG9zZnMvZmF0LmMJMjAxMC0wMS0wNyAyMjox MzozMS4wMDAwMDAwMDAgKzAwMDAKQEAgLTEwLDEzICsxMCw2IEBACiAgKiAy LiBSZWRpc3RyaWJ1dGlvbnMgaW4gYmluYXJ5IGZvcm0gbXVzdCByZXByb2R1 Y2UgdGhlIGFib3ZlIGNvcHlyaWdodAogICogICAgbm90aWNlLCB0aGlzIGxp c3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZvbGxvd2luZyBkaXNjbGFpbWVy IGluIHRoZQogICogICAgZG9jdW1lbnRhdGlvbiBhbmQvb3Igb3RoZXIgbWF0 ZXJpYWxzIHByb3ZpZGVkIHdpdGggdGhlIGRpc3RyaWJ1dGlvbi4KLSAqIDMu IEFsbCBhZHZlcnRpc2luZyBtYXRlcmlhbHMgbWVudGlvbmluZyBmZWF0dXJl cyBvciB1c2Ugb2YgdGhpcyBzb2Z0d2FyZQotICogICAgbXVzdCBkaXNwbGF5 IHRoZSBmb2xsb3dpbmcgYWNrbm93bGVkZ2VtZW50OgotICoJVGhpcyBwcm9k dWN0IGluY2x1ZGVzIHNvZnR3YXJlIGRldmVsb3BlZCBieSBNYXJ0aW4gSHVz ZW1hbm4KLSAqCWFuZCBXb2xmZ2FuZyBTb2xmcmFuay4KLSAqIDQuIE5laXRo ZXIgdGhlIG5hbWUgb2YgdGhlIFVuaXZlcnNpdHkgbm9yIHRoZSBuYW1lcyBv ZiBpdHMgY29udHJpYnV0b3JzCi0gKiAgICBtYXkgYmUgdXNlZCB0byBlbmRv cnNlIG9yIHByb21vdGUgcHJvZHVjdHMgZGVyaXZlZCBmcm9tIHRoaXMgc29m dHdhcmUKLSAqICAgIHdpdGhvdXQgc3BlY2lmaWMgcHJpb3Igd3JpdHRlbiBw ZXJtaXNzaW9uLgogICoKICAqIFRISVMgU09GVFdBUkUgSVMgUFJPVklERUQg QlkgVEhFIEFVVEhPUlMgYGBBUyBJUycnIEFORCBBTlkgRVhQUkVTUyBPUgog ICogSU1QTElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1QgTElN SVRFRCBUTywgVEhFIElNUExJRUQgV0FSUkFOVElFUwpAQCAtNDcsMTAgKzQw LDEwIEBACiAjaW5jbHVkZSAiZXh0LmgiCiAjaW5jbHVkZSAiZnN1dGlsLmgi CiAKLXN0YXRpYyBpbnQgY2hlY2tjbG51bShzdHJ1Y3QgYm9vdGJsb2NrICos IGludCwgY2xfdCwgY2xfdCAqKTsKLXN0YXRpYyBpbnQgY2x1c3RkaWZmZXIo Y2xfdCwgY2xfdCAqLCBjbF90ICosIGludCk7CitzdGF0aWMgaW50IGNoZWNr Y2xudW0oc3RydWN0IGJvb3RibG9jayAqLCB1X2ludCwgY2xfdCwgY2xfdCAq KTsKK3N0YXRpYyBpbnQgY2x1c3RkaWZmZXIoY2xfdCwgY2xfdCAqLCBjbF90 ICosIHVfaW50KTsKIHN0YXRpYyBpbnQgdHJ5Y2xlYXIoc3RydWN0IGJvb3Ri bG9jayAqLCBzdHJ1Y3QgZmF0RW50cnkgKiwgY2xfdCwgY2xfdCAqKTsKLXN0 YXRpYyBpbnQgX3JlYWRmYXQoaW50LCBzdHJ1Y3QgYm9vdGJsb2NrICosIGlu dCwgdV9jaGFyICoqKTsKK3N0YXRpYyBpbnQgX3JlYWRmYXQoaW50LCBzdHJ1 Y3QgYm9vdGJsb2NrICosIHVfaW50LCB1X2NoYXIgKiopOwogCiAvKi0KICAq IFRoZSBmaXJzdCAyIEZBVCBlbnRyaWVzIGNvbnRhaW4gcHNldWRvLWNsdXN0 ZXIgbnVtYmVycyB3aXRoIHRoZSBmb2xsb3dpbmcKQEAgLTEzNSw3ICsxMjgs NyBAQAogICogQ2hlY2sgYSBjbHVzdGVyIG51bWJlciBmb3IgdmFsaWQgdmFs dWUKICAqLwogc3RhdGljIGludAotY2hlY2tjbG51bShzdHJ1Y3QgYm9vdGJs b2NrICpib290LCBpbnQgZmF0LCBjbF90IGNsLCBjbF90ICpuZXh0KQorY2hl Y2tjbG51bShzdHJ1Y3QgYm9vdGJsb2NrICpib290LCB1X2ludCBmYXQsIGNs X3QgY2wsIGNsX3QgKm5leHQpCiB7CiAJaWYgKCpuZXh0ID49IChDTFVTVF9S U1JWRCZib290LT5DbHVzdE1hc2spKQogCQkqbmV4dCB8PSB+Ym9vdC0+Q2x1 c3RNYXNrOwpAQCAtMTY2LDcgKzE1OSw3IEBACiAgKiBSZWFkIGEgRkFUIGZy b20gZGlzay4gUmV0dXJucyAxIGlmIHN1Y2Nlc3NmdWwsIDAgb3RoZXJ3aXNl LgogICovCiBzdGF0aWMgaW50Ci1fcmVhZGZhdChpbnQgZnMsIHN0cnVjdCBi b290YmxvY2sgKmJvb3QsIGludCBubywgdV9jaGFyICoqYnVmZmVyKQorX3Jl YWRmYXQoaW50IGZzLCBzdHJ1Y3QgYm9vdGJsb2NrICpib290LCB1X2ludCBu bywgdV9jaGFyICoqYnVmZmVyKQogewogCW9mZl90IG9mZjsKIApAQCAtMTg0 LDcgKzE3Nyw3IEBACiAJCWdvdG8gZXJyOwogCX0KIAotCWlmIChyZWFkKGZz LCAqYnVmZmVyLCBib290LT5GQVRzZWNzICogYm9vdC0+Qnl0ZXNQZXJTZWMp CisJaWYgKChzaXplX3QpcmVhZChmcywgKmJ1ZmZlciwgYm9vdC0+RkFUc2Vj cyAqIGJvb3QtPkJ5dGVzUGVyU2VjKQogCSAgICAhPSBib290LT5GQVRzZWNz ICogYm9vdC0+Qnl0ZXNQZXJTZWMpIHsKIAkJcGVycm9yKCJVbmFibGUgdG8g cmVhZCBGQVQiKTsKIAkJZ290byBlcnI7CkBAIC0yMDEsMjQgKzE5NCwyNiBA QAogICogUmVhZCBhIEZBVCBhbmQgZGVjb2RlIGl0IGludG8gaW50ZXJuYWwg Zm9ybWF0CiAgKi8KIGludAotcmVhZGZhdChpbnQgZnMsIHN0cnVjdCBib290 YmxvY2sgKmJvb3QsIGludCBubywgc3RydWN0IGZhdEVudHJ5ICoqZnApCity ZWFkZmF0KGludCBmcywgc3RydWN0IGJvb3RibG9jayAqYm9vdCwgdV9pbnQg bm8sIHN0cnVjdCBmYXRFbnRyeSAqKmZwKQogewogCXN0cnVjdCBmYXRFbnRy eSAqZmF0OwogCXVfY2hhciAqYnVmZmVyLCAqcDsKIAljbF90IGNsOwogCWlu dCByZXQgPSBGU09LOworCXNpemVfdCBsZW47CiAKIAlib290LT5OdW1GcmVl ID0gYm9vdC0+TnVtQmFkID0gMDsKIAogCWlmICghX3JlYWRmYXQoZnMsIGJv b3QsIG5vLCAmYnVmZmVyKSkKIAkJcmV0dXJuIEZTRkFUQUw7CiAJCQotCWZh dCA9IGNhbGxvYyhib290LT5OdW1DbHVzdGVycywgc2l6ZW9mKHN0cnVjdCBm YXRFbnRyeSkpOworCWZhdCA9IG1hbGxvYyhsZW4gPSBib290LT5OdW1DbHVz dGVycyAqIHNpemVvZihzdHJ1Y3QgZmF0RW50cnkpKTsKIAlpZiAoZmF0ID09 IE5VTEwpIHsKIAkJcGVycm9yKCJObyBzcGFjZSBmb3IgRkFUIik7CiAJCWZy ZWUoYnVmZmVyKTsKIAkJcmV0dXJuIEZTRkFUQUw7CiAJfQorCSh2b2lkKW1l bXNldChmYXQsIDAsIGxlbik7CiAKIAlpZiAoYnVmZmVyWzBdICE9IGJvb3Qt Pk1lZGlhCiAJICAgIHx8IGJ1ZmZlclsxXSAhPSAweGZmIHx8IGJ1ZmZlclsy XSAhPSAweGZmCkBAIC0zMTEsNyArMzA2LDExIEBACiAJfQogCiAJZnJlZShi dWZmZXIpOwotCSpmcCA9IGZhdDsKKwlpZiAocmV0ICYgRlNGQVRBTCkgewor CQlmcmVlKGZhdCk7CisJCSpmcCA9IE5VTEw7CisJfSBlbHNlCisJCSpmcCA9 IGZhdDsKIAlyZXR1cm4gcmV0OwogfQogCkBAIC0zMzEsNyArMzMwLDcgQEAK IH0KIAogc3RhdGljIGludAotY2x1c3RkaWZmZXIoY2xfdCBjbCwgY2xfdCAq Y3AxLCBjbF90ICpjcDIsIGludCBmYXRudW0pCitjbHVzdGRpZmZlcihjbF90 IGNsLCBjbF90ICpjcDEsIGNsX3QgKmNwMiwgdV9pbnQgZmF0bnVtKQogewog CWlmICgqY3AxID09IENMVVNUX0ZSRUUgfHwgKmNwMSA+PSBDTFVTVF9SU1JW RCkgewogCQlpZiAoKmNwMiA9PSBDTFVTVF9GUkVFIHx8ICpjcDIgPj0gQ0xV U1RfUlNSVkQpIHsKQEAgLTM0NiwxMyArMzQ1LDEzIEBACiAJCQkJfQogCQkJ CXJldHVybiBGU0ZBVEFMOwogCQkJfQotCQkJcHdhcm4oIkNsdXN0ZXIgJXUg aXMgbWFya2VkICVzIGluIEZBVCAwLCAlcyBpbiBGQVQgJWRcbiIsCisJCQlw d2FybigiQ2x1c3RlciAldSBpcyBtYXJrZWQgJXMgaW4gRkFUIDAsICVzIGlu IEZBVCAldVxuIiwKIAkJCSAgICAgIGNsLCByc3J2ZGNsdHlwZSgqY3AxKSwg cnNydmRjbHR5cGUoKmNwMiksIGZhdG51bSk7CiAJCQlpZiAoYXNrKDAsICJV c2UgRkFUIDAncyBlbnRyeSIpKSB7CiAJCQkJKmNwMiA9ICpjcDE7CiAJCQkJ cmV0dXJuIEZTRkFUTU9EOwogCQkJfQotCQkJaWYgKGFzaygwLCAiVXNlIEZB VCAlZCdzIGVudHJ5IiwgZmF0bnVtKSkgeworCQkJaWYgKGFzaygwLCAiVXNl IEZBVCAldSdzIGVudHJ5IiwgZmF0bnVtKSkgewogCQkJCSpjcDEgPSAqY3Ay OwogCQkJCXJldHVybiBGU0ZBVE1PRDsKIAkJCX0KQEAgLTM2MCw3ICszNTks NyBAQAogCQl9CiAJCXB3YXJuKCJDbHVzdGVyICV1IGlzIG1hcmtlZCAlcyBp biBGQVQgMCwgYnV0IGNvbnRpbnVlcyB3aXRoIGNsdXN0ZXIgJXUgaW4gRkFU ICVkXG4iLAogCQkgICAgICBjbCwgcnNydmRjbHR5cGUoKmNwMSksICpjcDIs IGZhdG51bSk7Ci0JCWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJv bSBGQVQgJWQiLCBmYXRudW0pKSB7CisJCWlmIChhc2soMCwgIlVzZSBjb250 aW51YXRpb24gZnJvbSBGQVQgJXUiLCBmYXRudW0pKSB7CiAJCQkqY3AxID0g KmNwMjsKIAkJCXJldHVybiBGU0ZBVE1PRDsKIAkJfQpAQCAtMzcxLDcgKzM3 MCw3IEBACiAJCXJldHVybiBGU0ZBVEFMOwogCX0KIAlpZiAoKmNwMiA9PSBD TFVTVF9GUkVFIHx8ICpjcDIgPj0gQ0xVU1RfUlNSVkQpIHsKLQkJcHdhcm4o IkNsdXN0ZXIgJXUgY29udGludWVzIHdpdGggY2x1c3RlciAldSBpbiBGQVQg MCwgYnV0IGlzIG1hcmtlZCAlcyBpbiBGQVQgJWRcbiIsCisJCXB3YXJuKCJD bHVzdGVyICV1IGNvbnRpbnVlcyB3aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAs IGJ1dCBpcyBtYXJrZWQgJXMgaW4gRkFUICV1XG4iLAogCQkgICAgICBjbCwg KmNwMSwgcnNydmRjbHR5cGUoKmNwMiksIGZhdG51bSk7CiAJCWlmIChhc2so MCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgMCIpKSB7CiAJCQkqY3Ay ID0gKmNwMTsKQEAgLTM4MywxMyArMzgyLDEzIEBACiAJCX0KIAkJcmV0dXJu IEZTRVJST1I7CiAJfQotCXB3YXJuKCJDbHVzdGVyICV1IGNvbnRpbnVlcyB3 aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAsIGJ1dCB3aXRoIGNsdXN0ZXIgJXUg aW4gRkFUICVkXG4iLAorCXB3YXJuKCJDbHVzdGVyICV1IGNvbnRpbnVlcyB3 aXRoIGNsdXN0ZXIgJXUgaW4gRkFUIDAsIGJ1dCB3aXRoIGNsdXN0ZXIgJXUg aW4gRkFUICV1XG4iLAogCSAgICAgIGNsLCAqY3AxLCAqY3AyLCBmYXRudW0p OwogCWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgMCIp KSB7CiAJCSpjcDIgPSAqY3AxOwogCQlyZXR1cm4gRlNGQVRNT0Q7CiAJfQot CWlmIChhc2soMCwgIlVzZSBjb250aW51YXRpb24gZnJvbSBGQVQgJWQiLCBm YXRudW0pKSB7CisJaWYgKGFzaygwLCAiVXNlIGNvbnRpbnVhdGlvbiBmcm9t IEZBVCAldSIsIGZhdG51bSkpIHsKIAkJKmNwMSA9ICpjcDI7CiAJCXJldHVy biBGU0ZBVE1PRDsKIAl9CkBAIC00MDEsOCArNDAwLDggQEAKICAqIGludG8g dGhlIGZpcnN0IG9uZS4KICAqLwogaW50Ci1jb21wYXJlZmF0KHN0cnVjdCBi b290YmxvY2sgKmJvb3QsIHN0cnVjdCBmYXRFbnRyeSAqZmlyc3QsIAotICAg IHN0cnVjdCBmYXRFbnRyeSAqc2Vjb25kLCBpbnQgZmF0bnVtKQorY29tcGFy ZWZhdChzdHJ1Y3QgYm9vdGJsb2NrICpib290LCBzdHJ1Y3QgZmF0RW50cnkg KmZpcnN0LAorICAgIHN0cnVjdCBmYXRFbnRyeSAqc2Vjb25kLCB1X2ludCBm YXRudW0pCiB7CiAJY2xfdCBjbDsKIAlpbnQgcmV0ID0gRlNPSzsKQEAgLTU0 Miw4ICs1NDEsOCBAQAogewogCXVfY2hhciAqYnVmZmVyLCAqcDsKIAljbF90 IGNsOwotCWludCBpOwotCXVfaW50MzJfdCBmYXRzejsKKwl1X2ludCBpOwor CXNpemVfdCBmYXRzejsKIAlvZmZfdCBvZmY7CiAJaW50IHJldCA9IEZTT0s7 CiAKQEAgLTYzMyw3ICs2MzIsNyBAQAogCQlvZmYgPSBib290LT5SZXNTZWN0 b3JzICsgaSAqIGJvb3QtPkZBVHNlY3M7CiAJCW9mZiAqPSBib290LT5CeXRl c1BlclNlYzsKIAkJaWYgKGxzZWVrKGZzLCBvZmYsIFNFRUtfU0VUKSAhPSBv ZmYKLQkJICAgIHx8IHdyaXRlKGZzLCBidWZmZXIsIGZhdHN6KSAhPSBmYXRz eikgeworCQkgICAgfHwgKHNpemVfdCl3cml0ZShmcywgYnVmZmVyLCBmYXRz eikgIT0gZmF0c3opIHsKIAkJCXBlcnJvcigiVW5hYmxlIHRvIHdyaXRlIEZB VCIpOwogCQkJcmV0ID0gRlNGQVRBTDsgLyogUmV0dXJuIGltbWVkaWF0ZWx5 PwkJWFhYICovCiAJCX0KQEAgLTY4MywxNyArNjgyLDYgQEAKIAkJCQlyZXQg PSAxOwogCQkJfQogCQl9Ci0JCWlmIChib290LT5OdW1GcmVlICYmIGZhdFti b290LT5GU05leHRdLm5leHQgIT0gQ0xVU1RfRlJFRSkgewotCQkJcHdhcm4o Ik5leHQgZnJlZSBjbHVzdGVyIGluIEZTSW5mbyBibG9jayAoJXUpIG5vdCBm cmVlXG4iLAotCQkJICAgICAgYm9vdC0+RlNOZXh0KTsKLQkJCWlmIChhc2so MSwgIkZpeCIpKQotCQkJCWZvciAoaGVhZCA9IENMVVNUX0ZJUlNUOyBoZWFk IDwgYm9vdC0+TnVtQ2x1c3RlcnM7IGhlYWQrKykKLQkJCQkJaWYgKGZhdFto ZWFkXS5uZXh0ID09IENMVVNUX0ZSRUUpIHsKLQkJCQkJCWJvb3QtPkZTTmV4 dCA9IGhlYWQ7Ci0JCQkJCQlyZXQgPSAxOwotCQkJCQkJYnJlYWs7Ci0JCQkJ CX0KLQkJfQogCQlpZiAocmV0KQogCQkJbW9kIHw9IHdyaXRlZnNpbmZvKGRv c2ZzLCBib290KTsKIAl9CmRpZmYgLXJ1IGZzY2tfbXNkb3Nmcy5vcmlnL2Zz Y2tfbXNkb3Nmcy44IGZzY2tfbXNkb3Nmcy9mc2NrX21zZG9zZnMuOAotLS0g ZnNja19tc2Rvc2ZzLm9yaWcvZnNja19tc2Rvc2ZzLjgJMjAxMC0wMS0wNiAx MTowNzoyNC4wMDAwMDAwMDAgKzAwMDAKKysrIGZzY2tfbXNkb3Nmcy9mc2Nr X21zZG9zZnMuOAkyMDEwLTAxLTA3IDIyOjA5OjEzLjAwMDAwMDAwMCArMDAw MApAQCAtMTEsMTMgKzExLDYgQEAKIC5cIiAyLiBSZWRpc3RyaWJ1dGlvbnMg aW4gYmluYXJ5IGZvcm0gbXVzdCByZXByb2R1Y2UgdGhlIGFib3ZlIGNvcHly aWdodAogLlwiICAgIG5vdGljZSwgdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMg YW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBpbiB0aGUKIC5cIiAgICBk b2N1bWVudGF0aW9uIGFuZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQg d2l0aCB0aGUgZGlzdHJpYnV0aW9uLgotLlwiIDMuIEFsbCBhZHZlcnRpc2lu ZyBtYXRlcmlhbHMgbWVudGlvbmluZyBmZWF0dXJlcyBvciB1c2Ugb2YgdGhp cyBzb2Z0d2FyZQotLlwiICAgIG11c3QgZGlzcGxheSB0aGUgZm9sbG93aW5n IGFja25vd2xlZGdlbWVudDoKLS5cIglUaGlzIHByb2R1Y3QgaW5jbHVkZXMg c29mdHdhcmUgZGV2ZWxvcGVkIGJ5IE1hcnRpbiBIdXNlbWFubgotLlwiCWFu ZCBXb2xmZ2FuZyBTb2xmcmFuay4KLS5cIiA0LiBOZWl0aGVyIHRoZSBuYW1l IG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2YgaXRzIGNvbnRy aWJ1dG9ycwotLlwiICAgIG1heSBiZSB1c2VkIHRvIGVuZG9yc2Ugb3IgcHJv bW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20gdGhpcyBzb2Z0d2FyZQotLlwi ICAgIHdpdGhvdXQgc3BlY2lmaWMgcHJpb3Igd3JpdHRlbiBwZXJtaXNzaW9u LgogLlwiCiAuXCIgVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUg QVVUSE9SUyBgYEFTIElTJycgQU5EIEFOWSBFWFBSRVNTIE9SCiAuXCIgSU1Q TElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1QgTElNSVRFRCBU TywgVEhFIElNUExJRUQgV0FSUkFOVElFUwpkaWZmIC1ydSBmc2NrX21zZG9z ZnMub3JpZy9tYWluLmMgZnNja19tc2Rvc2ZzL21haW4uYwotLS0gZnNja19t c2Rvc2ZzLm9yaWcvbWFpbi5jCTIwMTAtMDEtMDYgMTE6MDc6MjQuMDAwMDAw MDAwICswMDAwCisrKyBmc2NrX21zZG9zZnMvbWFpbi5jCTIwMTAtMDEtMDcg MjI6MDk6MTMuMDAwMDAwMDAwICswMDAwCkBAIC0xMCwxMyArMTAsNiBAQAog ICogMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVw cm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKICAqICAgIG5vdGljZSwgdGhp cyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xh aW1lciBpbiB0aGUKICAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVy IG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCi0g KiAzLiBBbGwgYWR2ZXJ0aXNpbmcgbWF0ZXJpYWxzIG1lbnRpb25pbmcgZmVh dHVyZXMgb3IgdXNlIG9mIHRoaXMgc29mdHdhcmUKLSAqICAgIG11c3QgZGlz cGxheSB0aGUgZm9sbG93aW5nIGFja25vd2xlZGdlbWVudDoKLSAqCVRoaXMg cHJvZHVjdCBpbmNsdWRlcyBzb2Z0d2FyZSBkZXZlbG9wZWQgYnkgTWFydGlu IEh1c2VtYW5uCi0gKglhbmQgV29sZmdhbmcgU29sZnJhbmsuCi0gKiA0LiBO ZWl0aGVyIHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFt ZXMgb2YgaXRzIGNvbnRyaWJ1dG9ycwotICogICAgbWF5IGJlIHVzZWQgdG8g ZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWQgZnJvbSB0aGlz IHNvZnR3YXJlCi0gKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0 ZW4gcGVybWlzc2lvbi4KICAqCiAgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJ REVEIEJZIFRIRSBBVVRIT1JTIGBgQVMgSVMnJyBBTkQgQU5ZIEVYUFJFU1Mg T1IKICAqIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9U IExJTUlURUQgVE8sIFRIRSBJTVBMSUVEIFdBUlJBTlRJRVMKQEAgLTQwLDcg KzMzLDYgQEAKIAogI2luY2x1ZGUgPHN0ZGxpYi5oPgogI2luY2x1ZGUgPHN0 cmluZy5oPgotI2luY2x1ZGUgPGN0eXBlLmg+CiAjaW5jbHVkZSA8c3RkaW8u aD4KICNpbmNsdWRlIDx1bmlzdGQuaD4KICNpbmNsdWRlIDxlcnJuby5oPgo= --0-154663579-1262990178=:1420-- From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 22:59:42 2010 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 6E7B11065672; Fri, 8 Jan 2010 22:59:42 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 44F5B8FC13; Fri, 8 Jan 2010 22:59:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o08MxgjM046970; Fri, 8 Jan 2010 22:59:42 GMT (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o08MxgDp046966; Fri, 8 Jan 2010 23:59:42 +0100 (CET) (envelope-from brueffer) Date: Fri, 8 Jan 2010 23:59:42 +0100 (CET) Message-Id: <201001082259.o08MxgDp046966@freefall.freebsd.org> To: mjguzik@gmail.com, brueffer@FreeBSD.org, freebsd-bugs@FreeBSD.org, brueffer@FreeBSD.org From: brueffer@FreeBSD.org Cc: Subject: Re: kern/128335: [patch] [cpufreq] Missing call to sbuf_delete() in two sysctl handlers X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 22:59:42 -0000 Synopsis: [patch] [cpufreq] Missing call to sbuf_delete() in two sysctl handlers State-Changed-From-To: open->patched State-Changed-By: brueffer State-Changed-When: Fri Jan 8 23:59:14 CET 2010 State-Changed-Why: Committed, thanks! Responsible-Changed-From-To: freebsd-bugs->brueffer Responsible-Changed-By: brueffer Responsible-Changed-When: Fri Jan 8 23:59:14 CET 2010 Responsible-Changed-Why: MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=128335 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 8 23:42:48 2010 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 1D6B21065676; Fri, 8 Jan 2010 23:42:48 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E8A518FC0C; Fri, 8 Jan 2010 23:42:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o08NgltA090309; Fri, 8 Jan 2010 23:42:47 GMT (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o08NglPF090305; Sat, 9 Jan 2010 00:42:47 +0100 (CET) (envelope-from brueffer) Date: Sat, 9 Jan 2010 00:42:47 +0100 (CET) Message-Id: <201001082342.o08NglPF090305@freefall.freebsd.org> To: root@koellers.net, brueffer@FreeBSD.org, freebsd-bugs@FreeBSD.org From: brueffer@FreeBSD.org Cc: Subject: Re: kern/122301: [build] kernel compile with "options DEBUG_LOCKS" fail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2010 23:42:48 -0000 Synopsis: [build] kernel compile with "options DEBUG_LOCKS" fail State-Changed-From-To: open->feedback State-Changed-By: brueffer State-Changed-When: Sat Jan 9 00:42:08 CET 2010 State-Changed-Why: I cannot reproduce this on 9-CURRENT, is this still an issue? http://www.freebsd.org/cgi/query-pr.cgi?pr=122301 From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 9 00:24:33 2010 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 E6DD1106566B; Sat, 9 Jan 2010 00:24:33 +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 BEA318FC14; Sat, 9 Jan 2010 00:24:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o090OXLk024203; Sat, 9 Jan 2010 00:24:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o090OX2T024199; Sat, 9 Jan 2010 00:24:33 GMT (envelope-from linimon) Date: Sat, 9 Jan 2010 00:24:33 GMT Message-Id: <201001090024.o090OX2T024199@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/142489: [zfs] [lor] allproc/zfs LOR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2010 00:24:34 -0000 Old Synopsis: [lor] allproc/zfs LOR New Synopsis: [zfs] [lor] allproc/zfs LOR Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 9 00:24:13 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=142489 From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 9 00:30:02 2010 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 A7E2B1065692 for ; Sat, 9 Jan 2010 00:30:02 +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 68D358FC1A for ; Sat, 9 Jan 2010 00:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o090U2un024372 for ; Sat, 9 Jan 2010 00:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o090U2t5024371; Sat, 9 Jan 2010 00:30:02 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jan 2010 00:30:02 GMT Resent-Message-Id: <201001090030.o090U2t5024371@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, Dan Mahoney Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8B3010656AB for ; Sat, 9 Jan 2010 00:22:24 +0000 (UTC) (envelope-from danm@prime.gushi.org) Received: from prime.gushi.org (prime.gushi.org [72.9.101.130]) by mx1.freebsd.org (Postfix) with ESMTP id A39678FC13 for ; Sat, 9 Jan 2010 00:22:24 +0000 (UTC) Received: from prime.gushi.org (localhost [127.0.0.1]) by prime.gushi.org (8.14.1/8.14.1) with ESMTP id o090MLR8057816 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 8 Jan 2010 19:22:22 -0500 (EST) (envelope-from danm@prime.gushi.org) Received: (from danm@localhost) by prime.gushi.org (8.14.1/8.14.1/Submit) id o090MLuZ057815; Fri, 8 Jan 2010 19:22:21 -0500 (EST) (envelope-from danm) Message-Id: <201001090022.o090MLuZ057815@prime.gushi.org> Date: Fri, 8 Jan 2010 19:22:21 -0500 (EST) From: Dan Mahoney To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/142506: Whois -d option X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Mahoney List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2010 00:30:02 -0000 >Number: 142506 >Category: bin >Synopsis: Whois -d option >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jan 09 00:30:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Dan Mahoney >Release: FreeBSD 6.4-STABLE i386 >Organization: >Environment: System: FreeBSD prime.gushi.org 6.4-STABLE FreeBSD 6.4-STABLE #1: Sat Mar 7 23:54:27 EST 2009 danm@prime.gushi.org:/usr/src/sys/i386/compile/PRIME6 i386 >Description: Whois includes the -d option to query the DOD database at whois.nic.mil. The database is no longer in DNS and AFAICT no longer exists. >How-To-Repeat: whois -d nic.mil >Fix: I've tried contacting nic.mil for answers, haven't gotten any, don't seriously expect any. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 9 00:30:05 2010 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 5747B1065676 for ; Sat, 9 Jan 2010 00:30:05 +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 1A0638FC1C for ; Sat, 9 Jan 2010 00:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o090U43M024563 for ; Sat, 9 Jan 2010 00:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o090U40a024558; Sat, 9 Jan 2010 00:30:04 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jan 2010 00:30:04 GMT Resent-Message-Id: <201001090030.o090U40a024558@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, Dan Mahoney Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C37931065697 for ; Sat, 9 Jan 2010 00:25:17 +0000 (UTC) (envelope-from danm@prime.gushi.org) Received: from prime.gushi.org (prime.gushi.org [72.9.101.130]) by mx1.freebsd.org (Postfix) with ESMTP id 7F8FA8FC25 for ; Sat, 9 Jan 2010 00:25:17 +0000 (UTC) Received: from prime.gushi.org (localhost [127.0.0.1]) by prime.gushi.org (8.14.1/8.14.1) with ESMTP id o090PCeW058567 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 8 Jan 2010 19:25:16 -0500 (EST) (envelope-from danm@prime.gushi.org) Received: (from danm@localhost) by prime.gushi.org (8.14.1/8.14.1/Submit) id o090P4IK058536; Fri, 8 Jan 2010 19:25:04 -0500 (EST) (envelope-from danm) Message-Id: <201001090025.o090P4IK058536@prime.gushi.org> Date: Fri, 8 Jan 2010 19:25:04 -0500 (EST) From: Dan Mahoney To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/142507: Whois -d option X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Mahoney List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2010 00:30:05 -0000 >Number: 142507 >Category: bin >Synopsis: Whois -d option >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jan 09 00:30:04 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Dan Mahoney >Release: FreeBSD 6.4-STABLE i386 >Organization: Gushi Systems >Environment: System: FreeBSD prime.gushi.org 6.4-STABLE FreeBSD 6.4-STABLE #1: Sat Mar 7 23:54:27 EST 2009 danm@prime.gushi.org:/usr/src/sys/i386/compile/PRIME6 i386 >Description: Whois includes the -d option to query the DOD database at whois.nic.mil. The database is no longer in DNS and AFAICT no longer exists. >How-To-Repeat: whois -d nic.mil >Fix: I've tried contacting nic.mil for answers, haven't gotten any, don't seriously expect any. Note: Please delete the incomplete PR I sent a few minutes ago (it didn't include my email address). >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 9 00:53:26 2010 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 E77521065670; Sat, 9 Jan 2010 00:53:26 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BD5CE8FC12; Sat, 9 Jan 2010 00:53:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o090rQYZ050434; Sat, 9 Jan 2010 00:53:26 GMT (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o090rQPA050430; Sat, 9 Jan 2010 01:53:26 +0100 (CET) (envelope-from brueffer) Date: Sat, 9 Jan 2010 01:53:26 +0100 (CET) Message-Id: <201001090053.o090rQPA050430@freefall.freebsd.org> To: danm@prime.gushi.org, brueffer@FreeBSD.org, freebsd-bugs@FreeBSD.org From: brueffer@FreeBSD.org Cc: Subject: Re: bin/142506: Whois -d option X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2010 00:53:27 -0000 Synopsis: Whois -d option State-Changed-From-To: open->closed State-Changed-By: brueffer State-Changed-When: Sat Jan 9 01:52:23 CET 2010 State-Changed-Why: Closed at submitter's request in favor of PR 142507. http://www.freebsd.org/cgi/query-pr.cgi?pr=142506 From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 9 02:50:02 2010 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 37838106568B for ; Sat, 9 Jan 2010 02:50:02 +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 ED9098FC0A for ; Sat, 9 Jan 2010 02:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o092o18q045280 for ; Sat, 9 Jan 2010 02:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o092o1Fa045279; Sat, 9 Jan 2010 02:50:01 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jan 2010 02:50:01 GMT Resent-Message-Id: <201001090250.o092o1Fa045279@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, Joshua Wise Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8730106566B for ; Sat, 9 Jan 2010 02:43:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id B6A818FC15 for ; Sat, 9 Jan 2010 02:43:45 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o092hjOc000411 for ; Sat, 9 Jan 2010 02:43:45 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o092hjlZ000410; Sat, 9 Jan 2010 02:43:45 GMT (envelope-from nobody) Message-Id: <201001090243.o092hjlZ000410@www.freebsd.org> Date: Sat, 9 Jan 2010 02:43:45 GMT From: Joshua Wise To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/142510: FreeBSD 8.0-RELEASE panic'ed after removing SATA (ahci) drive X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2010 02:50:02 -0000 >Number: 142510 >Category: kern >Synopsis: FreeBSD 8.0-RELEASE panic'ed after removing SATA (ahci) drive >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jan 09 02:50:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Joshua Wise >Release: 8.0-RELEASE >Organization: self >Environment: [root@moroso ~]# uname -a FreeBSD moroso.emarhavil.com 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Sat Nov 21 15:02:08 UTC 2009 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: After I pulled a drive, the system subsequently panic()'ed. It was in use by ZFS at the time, but not all cases of pulling a drive while it's in use by ZFS make the machine panic. Unfortunately, I don't have a dumpfile, but I do have a line number from at least one of the two traps that showed up that may indicate how the kernel came to the inconsistent state. Here's a dump from the console (typed by hand): [root@moroso /dev]# camcontrol eject ada2 Error received from stop unit command [root@moroso /dev]# camcontrol rescan a(ada2:ahcich2:0:0:0) lost device (ada2:ahcich2:0:0:0): Invalidating pack (ada2:ahchch2:0:0:0): Synchronize cache failed (ada2:ahcich2:0:0:0): removing device entry Fatal trap 12: page fault while in kernel mode cpuid = 1; apic id = 01 fault virtual address = 0x48 fault code = supervisor write data, page not present instruction pointer = 0x20:0xffffffff80571105 stack pointer = 0x28:0xffffff8000077b60 stack pointer = 0x28:0xffffff8000077b70 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 2 (g_event) trap number = 12 panic: page fault cpuid = 1 Uptime: 34m43s (ada0:ahcich0:0:0:0): Synchronize cache failed Dump failed. Partition too small. Automatic reboot in 15 seconds - press a key on the console to abort Fatal trap 9: general protection fault while in kernel mode cpuid = 3; apic id = 03 instruction pointer = 0x20:0xffffffff80194cdc stack pointer = 0x28:0xffffff80e7d6aa60 frame pointer = 0x28:0xffffff80e7d6aa90 code segment = base 0x0, limit 0xfffff, type 0x1b = dpl 0, pres 1, long 1, def32 0, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 12 (irq258: ahci0) trap number = 9 --> Press a key on the console to reboot, --> or switch off the system now. And, here's a kgdb session looking up the appropriate symbols: [joshua@moroso /boot/kernel]$ kgdb kernel.symbols GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd"... (kgdb) list *0x20:0xffffffff80571105 A syntax error in expression, near `:0xffffffff80571105'. (kgdb) list *0xffffffff80571105 0xffffffff80571105 is in _mtx_lock_flags (atomic.h:158). 153 atomic.h: No such file or directory. in atomic.h (kgdb) list *0xffffffff80194cdc 0xffffffff80194cdc is in xpt_done (/usr/src/sys/cam/cam_xpt.c:4197). 4192 /* 4193 * Queue up the request for handling by our SWI handler 4194 * any of the "non-immediate" type of ccbs. 4195 */ 4196 sim = done_ccb->ccb_h.path->bus->sim; 4197 switch (done_ccb->ccb_h.path->periph->type) { 4198 case CAM_PERIPH_BIO: 4199 TAILQ_INSERT_TAIL(&sim->sim_doneq, &done_ccb->ccb_h, 4200 sim_links.tqe); 4201 done_ccb->ccb_h.pinfo.index = CAM_DONEQ_INDEX; (kgdb) Sorry for the lack of detail; hopefully that line number should be of some use, though. >How-To-Repeat: Not entirely known. See description. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 9 16:00:13 2010 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 7E0831065692 for ; Sat, 9 Jan 2010 16:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 41E8D8FC24 for ; Sat, 9 Jan 2010 16:00:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o09G0DVM073557 for ; Sat, 9 Jan 2010 16:00:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o09G0Del073556; Sat, 9 Jan 2010 16:00:13 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jan 2010 16:00:13 GMT Resent-Message-Id: <201001091600.o09G0Del073556@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, Pedro Giffuni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B562106566B for ; Sat, 9 Jan 2010 15:54:42 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id ED9B98FC08 for ; Sat, 9 Jan 2010 15:54:41 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o09FsfLt084811 for ; Sat, 9 Jan 2010 15:54:41 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o09FsfJ0084778; Sat, 9 Jan 2010 15:54:41 GMT (envelope-from nobody) Message-Id: <201001091554.o09FsfJ0084778@www.freebsd.org> Date: Sat, 9 Jan 2010 15:54:41 GMT From: Pedro Giffuni To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/142526: Cleanups and updates to newfs_msdos X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2010 16:00:13 -0000 >Number: 142526 >Category: bin >Synopsis: Cleanups and updates to newfs_msdos >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jan 09 16:00:12 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Pedro Giffuni >Release: 8.0-RELEASE >Organization: >Environment: FreeBSD mogwai.giffuni.net 8.0-RELEASE FreeBSD 8.0-RELEASE #12: Tue Dec 1 23:31:27 UTC 2009 pedro@mogwai.giffuni.net:/usr/src/sys/i386/compile/GENERIC i386 >Description: Some cleanups from NetBSD: - c99 initializers - snprintf instead of sprintf - Change the default volume label from "NO NAME" to "NO_NAME". And others for compatibility: - Limit Bytes per Sector to max. 4096 to remain in spec. - Set OEM String to "BSD4.4 " following the unnamed spacing convention in that other OS that suggests "MSWIN4.1" >How-To-Repeat: >Fix: diff -ru newfs_msdos.orig/newfs_msdos.8 newfs_msdos/newfs_msdos.8 --- newfs_msdos.orig/newfs_msdos.8 2010-01-06 11:06:02.000000000 +0000 +++ newfs_msdos/newfs_msdos.8 2010-01-09 10:25:12.000000000 +0000 @@ -116,7 +116,7 @@ .It Fl S Ar sector-size Number of bytes per sector. Acceptable values are powers of 2 -in the range 128 through 32768. +in the range 512 through 4096. .It Fl a Ar FAT-size Number of sectors per FAT. .It Fl b Ar block-size diff -ru newfs_msdos.orig/newfs_msdos.c newfs_msdos/newfs_msdos.c --- newfs_msdos.orig/newfs_msdos.c 2010-01-06 11:06:02.000000000 +0000 +++ newfs_msdos/newfs_msdos.c 2010-01-09 10:31:00.000000000 +0000 @@ -56,6 +56,7 @@ #define DOSMAGIC 0xaa55 /* DOS magic number */ #define MINBPS 512 /* minimum bytes per sector */ +#define MAXBPS 4096 /* maximum bytes per sector */ #define MAXSPC 128 /* maximum sectors per cluster */ #define MAXNFT 16 /* maximum number of FATs */ #define DEFBLK 4096 /* default block size */ @@ -165,20 +166,23 @@ #define BPBGAP 0, 0, 0, 0, 0, 0 +#define INIT(a, b, c, d, e, f, g, h, i, j) \ + { .bps = a, .spc = b, .res = c, .nft = d, .rde = e, \ + .sec = f, .mid = g, .spf = h, .spt = i, .hds = j, } static struct { const char *name; struct bpb bpb; } const stdfmt[] = { - {"160", {512, 1, 1, 2, 64, 320, 0xfe, 1, 8, 1, BPBGAP}}, - {"180", {512, 1, 1, 2, 64, 360, 0xfc, 2, 9, 1, BPBGAP}}, - {"320", {512, 2, 1, 2, 112, 640, 0xff, 1, 8, 2, BPBGAP}}, - {"360", {512, 2, 1, 2, 112, 720, 0xfd, 2, 9, 2, BPBGAP}}, - {"640", {512, 2, 1, 2, 112, 1280, 0xfb, 2, 8, 2, BPBGAP}}, - {"720", {512, 2, 1, 2, 112, 1440, 0xf9, 3, 9, 2, BPBGAP}}, - {"1200", {512, 1, 1, 2, 224, 2400, 0xf9, 7, 15, 2, BPBGAP}}, - {"1232", {1024,1, 1, 2, 192, 1232, 0xfe, 2, 8, 2, BPBGAP}}, - {"1440", {512, 1, 1, 2, 224, 2880, 0xf0, 9, 18, 2, BPBGAP}}, - {"2880", {512, 2, 1, 2, 240, 5760, 0xf0, 9, 36, 2, BPBGAP}} + {"160", INIT(512, 1, 1, 2, 64, 320, 0xfe, 1, 8, 1)}, + {"180", INIT(512, 1, 1, 2, 64, 360, 0xfc, 2, 9, 1)}, + {"320", INIT(512, 2, 1, 2, 112, 640, 0xff, 1, 8, 2)}, + {"360", INIT(512, 2, 1, 2, 112, 720, 0xfd, 2, 9, 2)}, + {"640", INIT(512, 2, 1, 2, 112, 1280, 0xfb, 2, 8, 2)}, + {"720", INIT(512, 2, 1, 2, 112, 1440, 0xf9, 3, 9, 2)}, + {"1200", INIT(512, 1, 1, 2, 224, 2400, 0xf9, 7, 15, 2)}, + {"1232", INIT(1024,1, 1, 2, 192, 1232, 0xfe, 2, 8, 2)}, + {"1440", INIT(512, 1, 1, 2, 224, 2880, 0xf0, 9, 18, 2)}, + {"2880", INIT(512, 2, 1, 2, 240, 5760, 0xf0, 9, 36, 2)} }; static const u_int8_t bootcode[] = { @@ -424,6 +428,9 @@ if (bpb.bps < MINBPS) errx(1, "bytes/sector (%u) is too small; minimum is %u", bpb.bps, MINBPS); + else if (bpb.bps > MAXBPS) + errx(1, "bytes/sector (%u) is too big; maximum is %u", + bpb.bps, MAXBPS); if (!(fat = opt_F)) { if (opt_f) fat = 12; @@ -533,7 +540,7 @@ if (!bpb.res) bpb.res = fat == 32 ? MAX(x, MAX(16384 / bpb.bps, 4)) : x; else if (bpb.res < x) - errx(1, "too few reserved sectors"); + errx(1, "too few reserved sectors (need %d have %d)", x, bpb.res); if (fat != 32 && !bpb.rde) bpb.rde = DEFRDE; rds = howmany(bpb.rde, bpb.bps / sizeof(struct de)); @@ -657,8 +664,8 @@ ((u_int)tm->tm_hour << 8 | (u_int)tm->tm_min)); mk4(bsx->volid, x); - mklabel(bsx->label, opt_L ? opt_L : "NO NAME"); - sprintf(buf, "FAT%u", fat); + mklabel(bsx->label, opt_L ? opt_L : "NO_NAME"); + snprintf(buf, sizeof(buf), "FAT%u", fat); setstr(bsx->type, buf, sizeof(bsx->type)); if (!opt_B) { x1 += sizeof(struct bsx); @@ -666,7 +673,7 @@ mk1(bs->jmp[0], 0xeb); mk1(bs->jmp[1], x1 - 2); mk1(bs->jmp[2], 0x90); - setstr(bs->oem, opt_O ? opt_O : "BSD 4.4", + setstr(bs->oem, opt_O ? opt_O : "BSD4.4 ", sizeof(bs->oem)); memcpy(img + x1, bootcode, sizeof(bootcode)); mk2(img + MINBPS - 2, DOSMAGIC); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 9 17:30:04 2010 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 A53AD1065670 for ; Sat, 9 Jan 2010 17:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 816338FC19 for ; Sat, 9 Jan 2010 17:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o09HU4eD051025 for ; Sat, 9 Jan 2010 17:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o09HU4nS051018; Sat, 9 Jan 2010 17:30:04 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jan 2010 17:30:04 GMT Resent-Message-Id: <201001091730.o09HU4nS051018@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, Scot Hetzel Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35B08106566B for ; Sat, 9 Jan 2010 17:25:53 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 0A5228FC12 for ; Sat, 9 Jan 2010 17:25:53 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o09HPqZe068616 for ; Sat, 9 Jan 2010 17:25:52 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o09HPqCG068597; Sat, 9 Jan 2010 17:25:52 GMT (envelope-from nobody) Message-Id: <201001091725.o09HPqCG068597@www.freebsd.org> Date: Sat, 9 Jan 2010 17:25:52 GMT From: Scot Hetzel To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/142529: [patch] make delete-old removes BIND files when the BIND port is installed using WITH_REPLACE_BASE X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2010 17:30:04 -0000 >Number: 142529 >Category: bin >Synopsis: [patch] make delete-old removes BIND files when the BIND port is installed using WITH_REPLACE_BASE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jan 09 17:30:04 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Scot Hetzel >Release: 8.0-Stable >Organization: >Environment: FreeBSD dv8t01 8.0-STABLE FreeBSD 8.0-STABLE #10 r201599M: Tue Jan 5 14:29:56 CST 2010 swhetzel@dv8t01:/usr/obj/usr/src/8-stable/sys/GENERIC amd64 >Description: When the BIND ports are installed using the WITH_REPLACE_BASE option, they overwrite bind installed by the FreeBSD sources. Then when 'make delete-old' is used, it removes the files installed by the BIND ports >How-To-Repeat: echo "WITH_REPLACE_BASE" > /etc/make.conf cd /usr/ports/dns/bind9 make install cd /usr/src make delete-old The files installed by the BIND port are now removed. >Fix: The attached patch fixes this problem by only allowing to delete the BIND files when WITH_REPLACE_BASE or WITH_REPLACE_BASE_BIND are not defined. Patch attached with submission follows: Index: tools/build/mk/OptionalObsoleteFiles.inc =================================================================== --- tools/build/mk/OptionalObsoleteFiles.inc (revision 201599) +++ tools/build/mk/OptionalObsoleteFiles.inc (working copy) @@ -35,6 +35,7 @@ # to be filled in #.endif +.if ${MK_REPLACE_BASE_BIND} == no .if ${MK_BIND} == no OLD_FILES+=usr/bin/dig OLD_FILES+=usr/bin/host @@ -231,6 +232,7 @@ #.if ${MK_BIND_NAMED} == no || ${MK_BIND} == no # to be filled in and removed above #.endif +.endif .if ${MK_BLUETOOTH} == no OLD_FILES+=usr/bin/bthost Index: share/mk/bsd.own.mk =================================================================== --- share/mk/bsd.own.mk (revision 201599) +++ share/mk/bsd.own.mk (working copy) @@ -409,7 +409,8 @@ BIND_XML \ GNU_CPIO \ HESIOD \ - IDEA + IDEA \ + REPLACE_BASE_BIND .if defined(WITH_${var}) && defined(WITHOUT_${var}) .error WITH_${var} and WITHOUT_${var} can't both be set. .endif @@ -435,6 +436,14 @@ MK_BIND:= no .endif +.if defined(WITH_REPLACE_BASE) +MK_REPLACE_BASE_BIND:= yes +.endif + +.if ${MK_REPLACE_BASE_BIND} == "yes" +MK_BIND:= no +.endif + .if ${MK_BIND} == "no" MK_BIND_DNSSEC:= no MK_BIND_ETC:= no >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 9 18:50:04 2010 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 5E2B7106568B for ; Sat, 9 Jan 2010 18:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 229048FC1B for ; Sat, 9 Jan 2010 18:50:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o09Io4g1021105 for ; Sat, 9 Jan 2010 18:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o09Io3uu021104; Sat, 9 Jan 2010 18:50:04 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jan 2010 18:50:04 GMT Resent-Message-Id: <201001091850.o09Io3uu021104@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, Sevan Janiyan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 400E4106566B for ; Sat, 9 Jan 2010 18:44:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 15FD68FC12 for ; Sat, 9 Jan 2010 18:44:37 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o09IiaKO031976 for ; Sat, 9 Jan 2010 18:44:36 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o09IiaWO031975; Sat, 9 Jan 2010 18:44:36 GMT (envelope-from nobody) Message-Id: <201001091844.o09IiaWO031975@www.freebsd.org> Date: Sat, 9 Jan 2010 18:44:36 GMT From: Sevan Janiyan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/142537: [patch] graphics/cairo-java use $SUB_FILES to dynamically adjust pkg-message X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2010 18:50:04 -0000 >Number: 142537 >Category: misc >Synopsis: [patch] graphics/cairo-java use $SUB_FILES to dynamically adjust pkg-message >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jan 09 18:50:03 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sevan Janiyan >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/cairo-java/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 25 Jul 2008 14:34:24 -0000 1.14 +++ Makefile 9 Jan 2010 18:39:00 -0000 @@ -32,7 +32,8 @@ CAIRO_API_VERSION= 1.0 GLIB_API_VERSION= 0.4 PLIST_SUB= CAIRO_API_VERSION=${CAIRO_API_VERSION} PORTNAME=${PORTNAME} -PKGMESSAGE= ${WRKDIR}/pkg-message +SUB_FILES= pkg-message +SUB_LIST= JAVAJARDIR=${JAVAJARDIR} CAIRO_API_VERSION=${CAIRO_API_VERSION} # jikes related CONFIGURE_ENV+= BOOTCLASSPATH=${JAVA_CLASSES} @@ -64,10 +65,6 @@ cd ${WRKSRC}/doc/api && ${FIND} . | ${CPIO} -pdmu ${DOCSDIR}/api ${TOUCH} ${DOCSDIR}/api/packages.html .endif - @${SED} -e 's|%%JAVAJARDIR%%|${JAVAJARDIR}|g ; \ - s|%%PREFIX%%|${PREFIX}|g ; \ - s|%%CAIRO_API_VERSION%%|${CAIRO_API_VERSION}|g' \ - < ${PKGDIR}/pkg-message > ${PKGMESSAGE} @${CAT} ${PKGMESSAGE} .include Index: pkg-message =================================================================== RCS file: pkg-message diff -N pkg-message --- pkg-message 5 Nov 2005 06:29:24 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,7 +0,0 @@ -************************************************************************ -Libgtk-java was successfully installed. In order to build and run cairo -Java applications, you must add the following to your CLASSPATH: - -%%JAVAJARDIR%%/cairo%%CAIRO_API_VERSION%%.jar - -************************************************************************ Index: files/pkg-message.in =================================================================== RCS file: files/pkg-message.in diff -N files/pkg-message.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/pkg-message.in 9 Jan 2010 18:39:00 -0000 @@ -0,0 +1,7 @@ +************************************************************************ +Libgtk-java was successfully installed. In order to build and run cairo +Java applications, you must add the following to your CLASSPATH: + +%%JAVAJARDIR%%/cairo%%CAIRO_API_VERSION%%.jar + +************************************************************************ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 9 19:10:07 2010 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 257E31065676 for ; Sat, 9 Jan 2010 19:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EFC4F8FC0C for ; Sat, 9 Jan 2010 19:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o09JA6dB037300 for ; Sat, 9 Jan 2010 19:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o09JA6AM037299; Sat, 9 Jan 2010 19:10:06 GMT (envelope-from gnats) Date: Sat, 9 Jan 2010 19:10:06 GMT Message-Id: <201001091910.o09JA6AM037299@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Sevan / Venture37 Cc: Subject: Re: misc/142537: [patch] graphics/cairo-java use $SUB_FILES to dynamically adjust pkg-message X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sevan / Venture37 List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2010 19:10:07 -0000 The following reply was made to PR misc/142537; it has been noted by GNATS. From: Sevan / Venture37 To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/142537: [patch] graphics/cairo-java use $SUB_FILES to dynamically adjust pkg-message Date: Sat, 09 Jan 2010 19:02:30 +0000 Sorry, made a mistake, this was meant to be filed under ports as a change request. From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 9 22:10:02 2010 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 C84401065697 for ; Sat, 9 Jan 2010 22:10:02 +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 8B8488FC19 for ; Sat, 9 Jan 2010 22:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o09MA2aQ093383 for ; Sat, 9 Jan 2010 22:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o09MA2k2093382; Sat, 9 Jan 2010 22:10:02 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jan 2010 22:10:02 GMT Resent-Message-Id: <201001092210.o09MA2k2093382@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, Kevin Dorne Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A74A31065676 for ; Sat, 9 Jan 2010 22:03:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 8B2648FC16 for ; Sat, 9 Jan 2010 22:03:06 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o09M36Gu083696 for ; Sat, 9 Jan 2010 22:03:06 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o09M364D083695; Sat, 9 Jan 2010 22:03:06 GMT (envelope-from nobody) Message-Id: <201001092203.o09M364D083695@www.freebsd.org> Date: Sat, 9 Jan 2010 22:03:06 GMT From: Kevin Dorne To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/142547: wpa_supplicant drops connection on key renegotiation X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2010 22:10:03 -0000 >Number: 142547 >Category: misc >Synopsis: wpa_supplicant drops connection on key renegotiation >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jan 09 22:10:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Kevin Dorne >Release: 8.0-STABLE amd64 >Organization: >Environment: FreeBSD [hostname] 8.0-STABLE FreeBSD 8.0-STABLE #0: Sat Dec 19 02:54:18 PST 2009 root@:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I am using a Thinkpad T61 with Intel 4965agn wireless card, connecting to an access point using WPA authentication. On system startup, the networking works, but once the WPA key is renegotiated, the connection drops. I can get the connection back by restarting the networking (/etc/rc.d/netif restart). This does not occur on the same machine running Linux, so it's not a hardware issue. Relevant lines in /boot/loader.conf: if_iwn_load="YES" iwnfw_load="YES" wlan_wep_load="YES" wlan_ccmp_load="YES" wlan_tkip_load="YES" legal.intel_iwn.license_ack=1 /etc/rc.conf: wlans_iwn0="wlan0" ifconfig_wlan0="WPA DHCP" /etc/wpa_supplicant.conf: ctrl_interface=/var/run/wpa_supplicant ctrl_interface_group=wheel eapol_version=1 ap_scan=1 fast_reauth=1 network={ ssid="[ssid]" scan_ssid=1 key_mgmt=WPA-PSK psk="[pass]" } dmesg: iwn0: mem 0xdf2fe000-0xdf2fffff irq 17 at device 0.0 on pci3 iwn0: Reg Domain: MoW1, address 00:21:5c:5c:ae:1d iwn0: [ITHREAD] iwn0: 11a rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps iwn0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps iwn0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps iwn0: 11na MCS: 15Mbps 30Mbps 45Mbps 60Mbps 90Mbps 120Mbps 135Mbps 150Mbps 30Mbps 60Mbps 90Mbps 120Mbps 180Mbps 240Mbps 270Mbps 300Mbps iwn0: 11ng MCS: 15Mbps 30Mbps 45Mbps 60Mbps 90Mbps 120Mbps 135Mbps 150Mbps 30Mbps 60Mbps 90Mbps 120Mbps 180Mbps 240Mbps 270Mbps 300Mbps Messages from wpa_supplicant on renegotiate: 2010-01-09 13:21:09 RSN: encrypted key data - hexdump(len=48): 8a 3d e7 ef 49 43 2a d2 37 8f bd 0f d0 2b 1e 54 4b 5a 6d 63 76 bf 33 8c dd 8a 7b af 69 4e c1 6a c4 7b bc a8 f3 78 ec 28 56 d8 71 83 0a 1f 27 b7 2010-01-09 13:21:09 WPA: decrypted EAPOL-Key key data - hexdump(len=40): [REMOVED] 2010-01-09 13:21:09 WPA: RX message 1 of Group Key Handshake from 00:22:a4:37:b3:d9 (ver=2) 2010-01-09 13:21:09 RSN: msg 1/2 key data - hexdump(len=40): dd 26 00 0f ac 01 02 00 92 f1 7e a1 81 7f 92 e5 bf 29 cc a9 69 ee 07 47 ee 66 86 e6 c8 81 36 75 35 5a 7b 7e f4 f0 42 0c 2010-01-09 13:21:09 RSN: received GTK in group key handshake - hexdump(len=34): 02 00 92 f1 7e a1 81 7f 92 e5 bf 29 cc a9 69 ee 07 47 ee 66 86 e6 c8 81 36 75 35 5a 7b 7e f4 f0 42 0c 2010-01-09 13:21:09 State: COMPLETED -> GROUP_HANDSHAKE 2010-01-09 13:21:09 WPA: Group Key - hexdump(len=32): [REMOVED] 2010-01-09 13:21:09 WPA: Installing GTK to the driver (keyidx=2 tx=0 len=32). 2010-01-09 13:21:09 WPA: RSC - hexdump(len=6): 10 00 00 00 00 00 2010-01-09 13:21:09 wpa_driver_bsd_set_key: alg=TKIP addr=ff:ff:ff:ff:ff:ff key_idx=2 set_tx=0 seq_len=6 key_len=32 2010-01-09 13:21:09 WPA: Sending EAPOL-Key 2/2 2010-01-09 13:21:09 WPA: TX EAPOL-Key - hexdump(len=99): 01 03 00 5f 02 03 02 00 00 00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 70 91 96 53 f8 d8 9c fd e9 26 79 27 c5 18 03 00 00 2010-01-09 13:21:09 WPA: Group rekeying completed with 00:22:a4:37:b3:d9 [GTK=TKIP] 2010-01-09 13:21:09 Cancelling authentication timeout 2010-01-09 13:21:09 State: GROUP_HANDSHAKE -> COMPLETED 2010-01-09 13:21:09 EAPOL: startWhen --> 0 2010-01-09 13:21:09 EAPOL: disable timer tick 2010-01-09 13:21:09 RX EAPOL from 00:22:a4:37:b3:d9 2010-01-09 13:21:09 RX EAPOL - hexdump(len=147): 01 03 00 8f 02 13 82 00 20 00 00 00 00 00 00 00 04 d8 72 4a 1f cf 42 d1 fe 14 bd 12 28 d4 45 54 11 21 3b 46 b3 11 6f 47 d5 65 d6 2c fc 0e 2e e8 da 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 6b bb 8c 01 8f fb 9e 90 2a dc fe 79 8a ea 8a 00 30 f0 18 5d 96 aa 75 c9 8e ed cb 5a b1 0f 87 8d 43 b6 1e 4c c2 e4 3a a0 f2 4a 71 9b d7 fe e7 4e 43 dd 42 c1 7a dd c3 02 31 94 79 1e 87 f6 8b e5 cf 2010-01-09 13:21:09 IEEE 802.1X RX: version=1 type=3 length=143 2010-01-09 13:21:09 EAPOL-Key type=2 2010-01-09 13:21:09 key_info 0x1382 (ver=2 keyidx=0 rsvd=0 Group Ack MIC Secure Encr) 2010-01-09 13:21:09 key_length=32 key_data_length=48 2010-01-09 13:21:09 replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 04 2010-01-09 13:21:09 key_nonce - hexdump(len=32): d8 72 4a 1f cf 42 d1 fe 14 bd 12 28 d4 45 54 11 21 3b 46 b3 11 6f 47 d5 65 d6 2c fc 0e 2e e8 da 2010-01-09 13:21:09 key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 2010-01-09 13:21:09 key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00 2010-01-09 13:21:09 key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00 2010-01-09 13:21:09 key_mic - hexdump(len=16): dd 6b bb 8c 01 8f fb 9e 90 2a dc fe 79 8a ea 8a 2010-01-09 13:21:09 WPA: RX EAPOL-Key - hexdump(len=147): 01 03 00 8f 02 13 82 00 20 00 00 00 00 00 00 00 04 d8 72 4a 1f cf 42 d1 fe 14 bd 12 28 d4 45 54 11 21 3b 46 b3 11 6f 47 d5 65 d6 2c fc 0e 2e e8 da 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 6b bb 8c 01 8f fb 9e 90 2a dc fe 79 8a ea 8a 00 30 f0 18 5d 96 aa 75 c9 8e ed cb 5a b1 0f 87 8d 43 b6 1e 4c c2 e4 3a a0 f2 4a 71 9b d7 fe e7 4e 43 dd 42 c1 7a dd c3 02 31 94 79 1e 87 f6 8b e5 cf 2010-01-09 13:21:09 RSN: encrypted key data - hexdump(len=48): f0 18 5d 96 aa 75 c9 8e ed cb 5a b1 0f 87 8d 43 b6 1e 4c c2 e4 3a a0 f2 4a 71 9b d7 fe e7 4e 43 dd 42 c1 7a dd c3 02 31 94 79 1e 87 f6 8b e5 cf 2010-01-09 13:21:09 WPA: decrypted EAPOL-Key key data - hexdump(len=40): [REMOVED] 2010-01-09 13:21:09 WPA: RX message 1 of Group Key Handshake from 00:22:a4:37:b3:d9 (ver=2) 2010-01-09 13:21:09 RSN: msg 1/2 key data - hexdump(len=40): dd 26 00 0f ac 01 01 00 b5 e6 9b a6 82 ee 5f 6f 88 bf 9b 83 47 1f 61 1a 7b be 9e 23 fa b1 77 20 ba 51 99 ab 9a 08 b6 50 2010-01-09 13:21:09 RSN: received GTK in group key handshake - hexdump(len=34): 01 00 b5 e6 9b a6 82 ee 5f 6f 88 bf 9b 83 47 1f 61 1a 7b be 9e 23 fa b1 77 20 ba 51 99 ab 9a 08 b6 50 2010-01-09 13:21:09 State: COMPLETED -> GROUP_HANDSHAKE 2010-01-09 13:21:09 WPA: Group Key - hexdump(len=32): [REMOVED] 2010-01-09 13:21:09 WPA: Installing GTK to the driver (keyidx=1 tx=0 len=32). 2010-01-09 13:21:09 WPA: RSC - hexdump(len=6): 00 00 00 00 00 00 2010-01-09 13:21:09 wpa_driver_bsd_set_key: alg=TKIP addr=ff:ff:ff:ff:ff:ff key_idx=1 set_tx=0 seq_len=6 key_len=32 2010-01-09 13:21:09 WPA: Sending EAPOL-Key 2/2 >How-To-Repeat: Happens most times the key is renegotiated. It seems not to do it on occasion when there's heavy, continuous network traffic, but I'm not 100% sure about that. >Fix: None. Workaround is to restart network using /etc/rc.d/netif restart. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 9 23:45:10 2010 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 0C0D410656AC; Sat, 9 Jan 2010 23:45:10 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D753E8FC14; Sat, 9 Jan 2010 23:45:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o09Nj9GZ083866; Sat, 9 Jan 2010 23:45:09 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o09Nj9nY083862; Sat, 9 Jan 2010 23:45:09 GMT (envelope-from antoine) Date: Sat, 9 Jan 2010 23:45:09 GMT Message-Id: <201001092345.o09Nj9nY083862@freefall.freebsd.org> To: antoine@FreeBSD.org, freebsd-bugs@FreeBSD.org, antoine@FreeBSD.org From: antoine@FreeBSD.org Cc: Subject: Re: conf/137487: [patch] [build] unbreak world WITHOUT_NETGRAPH X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2010 23:45:10 -0000 Synopsis: [patch] [build] unbreak world WITHOUT_NETGRAPH Responsible-Changed-From-To: freebsd-bugs->antoine Responsible-Changed-By: antoine Responsible-Changed-When: Sat Jan 9 23:44:51 UTC 2010 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=137487