From owner-freebsd-bugs@freebsd.org Sun Jan 3 02:30:29 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0E63A53936 for ; Sun, 3 Jan 2016 02:30:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0BF11117 for ; Sun, 3 Jan 2016 02:30:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u032USfh028929 for ; Sun, 3 Jan 2016 02:30:28 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205663] clang++ 3.7.1 gets Bus Errors during compilation on arm that has SCTLR bit[1]==1 (alignment required) Date: Sun, 03 Jan 2016 02:30:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: markmi@dsl-only.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 02:30:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205663 --- Comment #5 from Mark Millard --- I reported the following information on the llvm bugzilla: To get a quick handle on the size of the investigation effort for alignment= s of reinterpret_casts to pointer types in llvm/clang I've tried to get *approximations* of: A) count of reinterpret_cast's to pointer types that do not involve base ty= pes with "char" or "int8" text (on the same line). and B) How many files have such reinterpret_cast's. # pwd /usr/src/contrib/llvm # find -s . -exec grep -E "reinterpret_cast[ \t]*<[^>]*\*" {} \; | grep -v = char | grep -v int8 | wc 789 3453 51918 # find -s . -exec grep -E "reinterpret_cast[ \t]*<[^>]*(char|int8)[^>]*\*" = {} \; | wc 171 854 11326 (Some files may have a mix of both with and without char/int8.) # find -s . -exec grep -E "reinterpret_cast[ \t]*<[^>]*\*" {} \; -print | g= rep "^\.\/" | wc 264 264 10517 # find -s . -exec grep -E "reinterpret_cast[ \t]*<[^>]*(char|int8)[^>]*\*" = {} \; -print | grep "^\.\/" | wc 71 71 2781 (So 264-71=3D=3D193 to 264 files.) And also: C) How many reinterpret_cast's directly involve the text "this" (on the same line): # find -s . -exec grep -E "reinterpret_cast[ \t]*<[^>]*\*.*this" {} \; | gr= ep -v char | grep -v int8 | wc 132 739 8443 D) How many files is that? # find -s . -exec grep -E "reinterpret_cast[ \t]*<[^>]*\*.*this" {} \; -pri= nt | grep "^\.\/" | wc 47 47 1914 # find -s . -exec grep -E "reinterpret_cast[ \t]*<[^>]*(char|int8)[^>]*\*.*this" {} \; -print | grep "^\.\/" | wc 5 5 185 (So 47-5=3D=3D42 to 47 files.) E) How many reinterpret_cast's do not mention "this", "char", or "int8" (on= the same line): # find -s . -exec grep -E "reinterpret_cast[ \t]*<[^>]*\*" {} \; | grep -v = this | grep -v char | grep -v int8 | wc 647 2663 42647 This is the majority of the reinterpret_cast's, by far. It looks non-trivial to find and adjust the llvm/clang source so that all t= he places that do not currently deal with proper alignment for SCTLR bit[1]=3D= =3D1 contexts instead do so. So it is not likely to be happen time soon, much less finish any time soon. This will limit FreeBSD 11.0's "self hosting on arm" c++ support via the system/clang++ tool chain greatly based on the CTLR bit[1]=3D=3D1 status: c= ross builds required from a host not requiring alignment, such as from amd64. (O= nce some other C++ tool chain is in place on an arm more native work may then be possible.) The C part of clang does appear to compile okay for buildkernel use in the SCTRL bit[1]=3D=3D1 context. So far all the misalignments have happened in compiling-c++ contexts, which is involved for buildworld and for building m= any ports. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 04:09:20 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D135A608ED for ; Sun, 3 Jan 2016 04:09:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D8A91BF2 for ; Sun, 3 Jan 2016 04:09:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0349KYY041436 for ; Sun, 3 Jan 2016 04:09:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205800] random device not loaded; using insecure entropy Date: Sun, 03 Jan 2016 04:09:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: marieheleneka@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 04:09:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205800 --- Comment #4 from Marie Helene Kvello-Aune --- I'm writing this update because I said I would, even though I realize now t= hat the dmesg output on 11-CURRENT is irrelevant to this PR due to what looks l= ike substancial changes in the /dev/random subsystem between 10-STABLE and 11-CURRENT, which is not entirely unexpected. Even though the same message appears on several generations and classes of Intel hardware, it might be useful if someone could check if this happens on AMD hardware as well. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 04:35:00 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8AAB4A53624 for ; Sun, 3 Jan 2016 04:35:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6F67F10D8 for ; Sun, 3 Jan 2016 04:35:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u034Z0up009289 for ; Sun, 3 Jan 2016 04:35:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205816] [ext2fs] [patch] EXT4 sparse blocks unsupported, contain garbage when read Date: Sun, 03 Jan 2016 04:35:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: damjan.jov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 04:35:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205816 Bug ID: 205816 Summary: [ext2fs] [patch] EXT4 sparse blocks unsupported, contain garbage when read Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Many People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: damjan.jov@gmail.com CC: freebsd-fs@FreeBSD.org Created attachment 164979 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D164979&action= =3Dedit preliminary patch to implement support for EXT4 sparse files The ext2fs module does not support sparse files on EXT4 filesystems, yet doesn't fail. When attempting to read the sparse blocks from a sparse file, instead of zeroes, they contain garbage data read from the wrong disk block= s. Here's an example sparse file in debugfs: debugfs: dump_extents /home/user/Documents/file.iso Level Entries Logical Physical Length Flags 0/ 1 1/ 1 0 - 1122599 1082775 1122600 1/ 1 1/ 53 0 - 5 1372160 - 1372165 6 1/ 1 2/ 53 8 - 11 1372168 - 1372171 4 1/ 1 3/ 53 16 - 19 1372176 - 1372179 4 1/ 1 4/ 53 24 - 27 1372184 - 1372187 4 1/ 1 5/ 53 32 - 33 1372192 - 1372193 2 ... Note how block ranges 0-5, 8-11, 16-19 are allocated, but the in between bl= ocks are sparse. The problem starts in the ext4_ext_binsearch() function in ext2_extents.c w= hich expects the block ranges in the extents to be continuous, and doesn't check whether the lbn parameter even lies inside the found extent's block range. = It blindly sets: path->ep_ext =3D l - 1; which will set the pointer to invalid memory (a part of struct ext2_extent_header) when lbn=3D0 and the first block of a file is sparse. A= lso in the above example, lbn=3D6 will use the 0-5 extent, reading block 0 instead. My preliminary patch improves ext4_ext_binsearch() to check for out of range blocks, marks the path as being sparse, and stores the range of extents starting at the lbn that is sparse. Sparse extents are cached in ext4_ext_read() for future reuse. Actual reading of sparse blocks is implemented by copying from a static array of zeroes (is there a better way= of doing it?) and read() definitely works, but mmap() doesn't seem to (system instantly reboots when reading even 1 byte from mapped region, but this also happens for some dense files, so it's not (just?) my patch). If testing against other EXT4 implementations, note that ext4fuse also has = this bug. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 08:33:40 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66F1AA6061D for ; Sun, 3 Jan 2016 08:33:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53C531A2C for ; Sun, 3 Jan 2016 08:33:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u038Xe7I044376 for ; Sun, 3 Jan 2016 08:33:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205821] [patch] bsdinstall(8): kill dhclient before trying to get an IP Date: Sun, 03 Jan 2016 08:33:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: will@worrbase.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 08:33:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205821 Bug ID: 205821 Summary: [patch] bsdinstall(8): kill dhclient before trying to get an IP Product: Base System Version: 10.2-STABLE Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: will@worrbase.com Keywords: patch Created attachment 164983 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D164983&action= =3Dedit kill dhclient before starting a new instance Currently, if you're re-routed to the beginning of the install process or to the beginning of the netconfig process, subsequent attempts to configure via dhclient will fail as dhclient is already running. Since there are many ways to get into this state, we should kill any dhclie= nts prior to configuring the primary interface with dhcp. Tested on FreeBSD 10.2-STABLE amd64. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 08:33:53 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DD8CA6063A for ; Sun, 3 Jan 2016 08:33:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6F0611A76 for ; Sun, 3 Jan 2016 08:33:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u038Xre6044715 for ; Sun, 3 Jan 2016 08:33:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205821] [patch] bsdinstall(8): kill dhclient before trying to get an IP Date: Sun, 03 Jan 2016 08:33:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: will@worrbase.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 08:33:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205821 will@worrbase.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Affects Only Me |Affects Some People --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 08:33:59 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A20C7A60661 for ; Sun, 3 Jan 2016 08:33:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 933601AC1 for ; Sun, 3 Jan 2016 08:33:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u038XxxQ044845 for ; Sun, 3 Jan 2016 08:33:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205806] [patch] bsdinstall(8): partedit can hang/crash on read/lseek/malloc failures Date: Sun, 03 Jan 2016 08:33:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: will@worrbase.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 08:33:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205806 will@worrbase.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Affects Only Me |Affects Some People --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 08:54:40 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3930DA60CD2 for ; Sun, 3 Jan 2016 08:54:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 29E921795 for ; Sun, 3 Jan 2016 08:54:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u038sexZ082112 for ; Sun, 3 Jan 2016 08:54:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205822] `options GZIP` and `options ZFS` collide due to inconsistently defined symbols Date: Sun, 03 Jan 2016 08:54:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 08:54:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205822 Bug ID: 205822 Summary: `options GZIP` and `options ZFS` collide due to inconsistently defined symbols Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: ngie@FreeBSD.org I tried adding `options ZFS` to sys/conf/NOTES as part of r293070 [1], and unfortunately caused build errors with `LINT` because of name collisions between zfs(4) and zlib(9). I reverted the change in r293091 [2]. This bug is being filed to track the issue and (eventually) fix it. This will likely need to be fixed by consolidating the two copies of zlib i= nto one copy, and might require upgrading zlib in the kernel to something more recent.. 1. https://lists.freebsd.org/pipermail/svn-src-head/2016-January/080712.html 2. https://lists.freebsd.org/pipermail/svn-src-head/2016-January/080715.html --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 09:21:12 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3143BA5F624 for ; Sun, 3 Jan 2016 09:21:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2274B159A for ; Sun, 3 Jan 2016 09:21:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u039LBuu004322 for ; Sun, 3 Jan 2016 09:21:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205825] loader.efi mode command is missing modes Date: Sun, 03 Jan 2016 09:21:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: tsoome@me.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 09:21:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205825 Bug ID: 205825 Summary: loader.efi mode command is missing modes Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: tsoome@me.com the current mode command is assuming contiguous list of supported modes, wh= ich is not quite true, for example my qemu is supporting modes 0 and 2, but not= 1. for fix, please see https://reviews.freebsd.org/D4760 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 11:04:42 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6EE7DA5FAEF for ; Sun, 3 Jan 2016 11:04:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5F07F1113 for ; Sun, 3 Jan 2016 11:04:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u03B4gbo062393 for ; Sun, 3 Jan 2016 11:04:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205828] [patch] bsdinstall(8): partedit crashes when modifying a zfs partition's mountpoint Date: Sun, 03 Jan 2016 11:04:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: will@worrbase.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 11:04:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205828 Bug ID: 205828 Summary: [patch] bsdinstall(8): partedit crashes when modifying a zfs partition's mountpoint Product: Base System Version: 10.2-STABLE Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: will@worrbase.com Keywords: patch Created attachment 164989 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D164989&action= =3Dedit fix partedit crash when setting mountpoint on zfs partition When modifying a ZFS partition to change the mountpoint (or pool name, real= ly), zpool_name isn't set, causing partedit to crash. Also removed a useless NULL check. Tested on FreeBSD 10.2-STABLE on amd64. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 11:49:29 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A24EA6094A for ; Sun, 3 Jan 2016 11:49:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4ACFF1620 for ; Sun, 3 Jan 2016 11:49:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u03BnTfj044279 for ; Sun, 3 Jan 2016 11:49:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205834] rtadvd: accessing freed struct Date: Sun, 03 Jan 2016 11:49:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: cherepan@mccme.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 11:49:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205834 Bug ID: 205834 Summary: rtadvd: accessing freed struct Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: cherepan@mccme.ru The problem is in the rm_ifinfo function. If the ifi structure is freed at https://svnweb.freebsd.org/base/head/usr.sbin/rtadvd/config.c?revision=3D28= 9750&view=3Dmarkup#l237 it is then accessed at https://svnweb.freebsd.org/base/head/usr.sbin/rtadvd/config.c?revision=3D28= 9750&view=3Dmarkup#l246 and further. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 14:01:59 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B869A5FB74 for ; Sun, 3 Jan 2016 14:01:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C2D41737 for ; Sun, 3 Jan 2016 14:01:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u03E1wb1090510 for ; Sun, 3 Jan 2016 14:01:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 199934] FUSE kernel module fails with filesystems without .create support Date: Sun, 03 Jan 2016 14:01:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: freebsd@dublet.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 14:01:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D199934 freebsd@dublet.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |freebsd@dublet.org --- Comment #2 from freebsd@dublet.org --- Is anyone looking at this? It makes using larger capacity USB sticks across OSes pretty impossible as well as large capacity music players. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 14:42:17 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02E0AA60945 for ; Sun, 3 Jan 2016 14:42:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E5D701EC4 for ; Sun, 3 Jan 2016 14:42:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u03EgGfN072928 for ; Sun, 3 Jan 2016 14:42:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205816] [ext2fs] [patch] EXT4 sparse blocks unsupported, contain garbage when read Date: Sun, 03 Jan 2016 14:42:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: pfg@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pfg@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 14:42:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205816 Pedro F. Giffuni changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |pfg@FreeBSD.org CC| |flz@FreeBSD.org, | |pfg@FreeBSD.org Status|New |In Progress --- Comment #1 from Pedro F. Giffuni --- Thank you Damjan: I am CC'ing Zheng Liu as he did the original ext4 implementation. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 17:40:37 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8583EA608A7 for ; Sun, 3 Jan 2016 17:40:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 76EBF1C06 for ; Sun, 3 Jan 2016 17:40:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u03Hebdk050488 for ; Sun, 3 Jan 2016 17:40:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205825] loader.efi mode command is missing modes Date: Sun, 03 Jan 2016 17:40:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 17:40:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205825 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 3 21:00:32 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE22CA5FDAC for ; Sun, 3 Jan 2016 21:00:32 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C495D1B11 for ; Sun, 3 Jan 2016 21:00:32 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u03L01kC078656 for ; Sun, 3 Jan 2016 21:00:32 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201601032100.u03L01kC078656@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: freebsd-bugs@FreeBSD.org Subject: Problem reports for freebsd-bugs@FreeBSD.org that need special attention Date: Sun, 03 Jan 2016 21:00:32 +0000 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 21:00:32 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- In Progress | 196973 | sh(1) broken UTF-8 input New | 197876 | [devfs] an error in devfs leads to data loss and New | 198797 | [PATCH] Added an option to install BSDstats to bs New | 202362 | ntp: restore refclocks selection (10.2-RELEASE re New | 202740 | vi/ex string substitution problem when there is m New | 204115 | freebsd-update: Add support for better user messa Open | 183817 | [patch] [mac] [panic] kernel compiled with option In Progress | 191348 | [mps] LSI2308 with WD3000FYYZ drives disappears a 8 problems total for which you should take action. From owner-freebsd-bugs@freebsd.org Sun Jan 3 22:07:11 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2399EA60571 for ; Sun, 3 Jan 2016 22:07:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 145D312BF for ; Sun, 3 Jan 2016 22:07:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u03M7Bo4025221 for ; Sun, 3 Jan 2016 22:07:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Sun, 03 Jan 2016 22:07:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: arcadiy@ivanovy.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 22:07:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 Bug ID: 205855 Summary: ICH7R identified as ICH9R, doesn't work in RAID mode Product: Base System Version: 10.2-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: arcadiy@ivanovy.net CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org https://twitter.com/arcivanov/status/681960018313347077 Upgraded from 10.1-STABLE to 10.2-STABLE Boot failed, no GEOM device found. Boot log showed ICH7R controller as "" and "(no driver attached)" Switching ICH7 OROM from RAID to IDE modes allowed GEOM RAID mount and boot= ing. The machine is Dell Vostro 200. root@fw1:/home/admin # pciconf -lv hostb0@pci0:0:0:0: class=3D0x060000 card=3D0x02381028 chip=3D0x29c0808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82G33/G31/P35/P31 Express DRAM Controller' class =3D bridge subclass =3D HOST-PCI pcib1@pci0:0:1:0: class=3D0x060400 card=3D0x02381028 chip=3D0x29c1808= 6 rev=3D0x02 hdr=3D0x01 vendor =3D 'Intel Corporation' device =3D '82G33/G31/P35/P31 Express PCI Express Root Port' class =3D bridge subclass =3D PCI-PCI vgapci0@pci0:0:2:0: class=3D0x030000 card=3D0x02381028 chip=3D0x29c2808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82G33/G31 Express Integrated Graphics Controller' class =3D display subclass =3D VGA em2@pci0:0:25:0: class=3D0x020000 card=3D0x02381028 chip=3D0x10c0808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82562V-2 10/100 Network Connection' class =3D network subclass =3D ethernet uhci0@pci0:0:26:0: class=3D0x0c0300 card=3D0x02381028 chip=3D0x2937808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801I (ICH9 Family) USB UHCI Controller' class =3D serial bus subclass =3D USB uhci1@pci0:0:26:1: class=3D0x0c0300 card=3D0x02381028 chip=3D0x2938808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801I (ICH9 Family) USB UHCI Controller' class =3D serial bus subclass =3D USB uhci2@pci0:0:26:2: class=3D0x0c0300 card=3D0x02381028 chip=3D0x2939808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801I (ICH9 Family) USB UHCI Controller' class =3D serial bus subclass =3D USB ehci0@pci0:0:26:7: class=3D0x0c0320 card=3D0x02381028 chip=3D0x293c808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801I (ICH9 Family) USB2 EHCI Controller' class =3D serial bus subclass =3D USB uhci3@pci0:0:29:0: class=3D0x0c0300 card=3D0x02381028 chip=3D0x2934808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801I (ICH9 Family) USB UHCI Controller' class =3D serial bus subclass =3D USB uhci4@pci0:0:29:1: class=3D0x0c0300 card=3D0x02381028 chip=3D0x2935808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801I (ICH9 Family) USB UHCI Controller' class =3D serial bus subclass =3D USB uhci5@pci0:0:29:2: class=3D0x0c0300 card=3D0x02381028 chip=3D0x2936808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801I (ICH9 Family) USB UHCI Controller' class =3D serial bus subclass =3D USB ehci1@pci0:0:29:7: class=3D0x0c0320 card=3D0x02381028 chip=3D0x293a808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801I (ICH9 Family) USB2 EHCI Controller' class =3D serial bus subclass =3D USB pcib2@pci0:0:30:0: class=3D0x060401 card=3D0x02381028 chip=3D0x244e808= 6 rev=3D0x92 hdr=3D0x01 vendor =3D 'Intel Corporation' device =3D '82801 PCI Bridge' class =3D bridge subclass =3D PCI-PCI isab0@pci0:0:31:0: class=3D0x060100 card=3D0x02381028 chip=3D0x2916808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801IR (ICH9R) LPC Interface Controller' class =3D bridge subclass =3D PCI-ISA atapci0@pci0:0:31:2: class=3D0x01018f card=3D0x02381028 chip=3D0x2920808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801IR/IO/IH (ICH9R/DO/DH) 4 port SATA Controller [IDE mode]' class =3D mass storage subclass =3D ATA ichsmb0@pci0:0:31:3: class=3D0x0c0500 card=3D0x02381028 chip=3D0x2930808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801I (ICH9 Family) SMBus Controller' class =3D serial bus subclass =3D SMBus atapci1@pci0:0:31:5: class=3D0x010185 card=3D0x02381028 chip=3D0x2926808= 6 rev=3D0x02 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82801I (ICH9 Family) 2 port SATA Controller [IDE mode]' class =3D mass storage subclass =3D ATA em0@pci0:1:0:0: class=3D0x020000 card=3D0x115e8086 chip=3D0x105e8086 rev=3D= 0x06 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82571EB Gigabit Ethernet Controller' class =3D network subclass =3D ethernet em1@pci0:1:0:1: class=3D0x020000 card=3D0x115e8086 chip=3D0x105e8086 rev=3D= 0x06 hdr=3D0x00 vendor =3D 'Intel Corporation' device =3D '82571EB Gigabit Ethernet Controller' class =3D network subclass =3D ethernet root@fw1:/home/admin # less /var/run/dmesg.boot Copyright (c) 1992-2015 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 10.2-STABLE #0 r292881: Tue Dec 29 14:48:08 EST 2015 admin@fw1.home.ivanovy.net:/usr/obj/usr/src/sys/FIREWALL amd64 FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 CPU: Intel(R) Core(TM)2 Duo CPU E7200 @ 2.53GHz (2527.05-MHz K8-class = CPU) Origin=3D"GenuineIntel" Id=3D0x10676 Family=3D0x6 Model=3D0x17 Steppi= ng=3D6 =20 Features=3D0xbfebfbff Features2=3D0x8e39d AMD Features=3D0x20100800 AMD Features2=3D0x1 TSC: P-state invariant, performance statistics real memory =3D 1073741824 (1024 MB) avail memory =3D 1021100032 (973 MB) Event timer "LAPIC" quality 400 ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 random device not loaded; using insecure entropy ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aEventBlock: 32/8 (20150515/tbfadt-644) ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aControlBlock: 1= 6/8 (20150515/tbfadt-644) ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/PmTimerBlock: 32/8 (20150515/tbfadt-644) ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 128/8 (20150515/tbfadt-644) ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aEventBlock: 8, using default 32 (20150515/tbfadt-725) ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 8, using default 16 (20150515/tbfadt-725) ACPI BIOS Warning (bug): Invalid length for FADT/PmTimerBlock: 8, using def= ault 32 (20150515/tbfadt-725) ioapic0: Changing APIC ID to 4 ioapic0 irqs 0-23 on motherboard random: initialized kbd0 at kbdmux0 smbios0: at iomem 0xf0be0-0xf0bfe on motherboard smbios0: Version: 2.5, BCD Revision: 2.5 cryptosoft0: on motherboard acpi0: on motherboard acpi0: Power Button (fixed) cpu0: on acpi0 cpu1: on acpi0 attimer0: port 0x40-0x43 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 Event timer "i8254" frequency 1193182 Hz quality 100 hpet0: iomem 0xfed00000-0xfed003ff irq 0,8 on acpi0 device_attach: hpet0 attach returned 12 atrtc0: port 0x70-0x73 on acpi0 Event timer "RTC" frequency 32768 Hz quality 0 Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: irq 16 at device 1.0 on pci0 pci1: on pcib1 em0: port 0xcf00-0xcf1f mem 0xfdee0000-0xfdefffff,0xfdec0000-0xfdedffff irq 16 at device 0.0 on pci1 em0: Using an MSI interrupt em0: Ethernet address: 00:15:17:85:7b:a2 em1: port 0xce00-0xce1f mem 0xfdea0000-0xfdebffff,0xfde80000-0xfde9ffff irq 17 at device 0.1 on pci1 em1: Using an MSI interrupt em1: Ethernet address: 00:15:17:85:7b:a3 vgapci0: port 0xff00-0xff07 mem 0xfdf00000-0xfdf7ffff,0xd0000000-0xdfffffff,0xfdb00000-0xfdbfffff irq 16 at device 2.0 on pci0 agp0: on vgapci0 agp0: aperture size is 256M, detected 4194300k stolen memory vgapci0: Boot video device em2: port 0xfe00-0xfe1f mem 0xfdfc0000-0xfdfdffff,0xfdfff000-0xfdffffff irq 20 at device 25.0 on pci0 em2: Using an MSI interrupt em2: Ethernet address: 00:21:9b:0b:a0:8c uhci0: port 0xfd00-0xfd1f irq 16 at de= vice 26.0 on pci0 usbus0 on uhci0 uhci1: port 0xfc00-0xfc1f irq 21 at de= vice 26.1 on pci0 usbus1 on uhci1 uhci2: port 0xfb00-0xfb1f irq 19 at de= vice 26.2 on pci0 usbus2 on uhci2 ehci0: mem 0xfdffe000-0xfdffe3ff i= rq 18 at device 26.7 on pci0 usbus3: EHCI version 1.0 usbus3 on ehci0 uhci3: port 0xfa00-0xfa1f irq 23 at de= vice 29.0 on pci0 usbus4 on uhci3 uhci4: port 0xf900-0xf91f irq 19 at de= vice 29.1 on pci0 usbus5 on uhci4 uhci5: port 0xf800-0xf81f irq 18 at de= vice 29.2 on pci0 usbus6 on uhci5 ehci1: mem 0xfdffd000-0xfdffd3ff i= rq 23 at device 29.7 on pci0 usbus7: EHCI version 1.0 usbus7 on ehci1 pcib2: at device 30.0 on pci0 pci2: on pcib2 isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0xf700-0xf707,0xf600-0xf603,0xf500-0xf507,0xf400-0xf403,0xf300-0xf30f,0xf20= 0-0xf20f irq 19 at device 31.2 on pci0 ata2: at channel 0 on atapci0 ata3: at channel 1 on atapci0 ichsmb0: port 0x500-0x51f mem 0xfdffc000-0xfdffc0ff irq 18 at device 31.3 on pci0 smbus0: on ichsmb0 smb0: on smbus0 atapci1: port 0xf000-0xf007,0xef00-0xef03,0xee00-0xee07,0xed00-0xed03,0xec00-0xec0f,0xeb0= 0-0xeb0f irq 19 at device 31.5 on pci0 ata4: at channel 0 on atapci1 ata5: at channel 1 on atapci1 acpi_tz0: on acpi0 ichwd0 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=3D0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 coretemp0: on cpu0 est0: on cpu0 coretemp1: on cpu1 est1: on cpu1 Timecounters tick every 1.000 msec IPsec: Initialized Security Association Processing. random: unblocking device. usbus0: 12Mbps Full Speed USB v1.0 usbus1: 12Mbps Full Speed USB v1.0 usbus2: 12Mbps Full Speed USB v1.0 usbus3: 480Mbps High Speed USB v2.0 usbus4: 12Mbps Full Speed USB v1.0 usbus5: 12Mbps Full Speed USB v1.0 usbus6: 12Mbps Full Speed USB v1.0 usbus7: 480Mbps High Speed USB v2.0 ugen0.1: at usbus0 uhub0: on usbus0 ugen1.1: at usbus1 uhub1: on usbus1 ugen2.1: at usbus2 uhub2: on usbus2 ugen3.1: at usbus3 uhub3: on usbus3 ugen4.1: at usbus4 uhub4: on usbus4 ugen6.1: at usbus6 uhub5: on usbus6 ugen5.1: at usbus5 uhub6: on usbus5 ugen7.1: at usbus7 uhub7: on usbus7 uhub0: 2 ports with 2 removable, self powered uhub1: 2 ports with 2 removable, self powered uhub2: 2 ports with 2 removable, self powered uhub4: 2 ports with 2 removable, self powered uhub5: 2 ports with 2 removable, self powered uhub6: 2 ports with 2 removable, self powered ada0 at ata2 bus 0 scbus0 target 0 lun 0 ada0: ATA-7 SATA 2.x device ada0: Serial Number 5RW48EHG ada0: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes) ada0: 76293MB (156250000 512 byte sectors) ada0: Previously was known as ad0 ada1 at ata3 bus 0 scbus1 target 0 lun 0 ada1: ATA-7 SATA 2.x device ada1: Serial Number 5RW475QJ ada1: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes) ada1: 76293MB (156250000 512 byte sectors) ada1: Previously was known as ad1 pass2 at ata4 bus 0 scbus2 target 0 lun 0 pass2: Removable CD-ROM SCSI device pass2: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO 8192bytes) GEOM_RAID: Intel-29b44d78: Array Intel-29b44d78 created. GEOM_RAID: Intel-29b44d78: Disk ada0 state changed from NONE to ACTIVE. GEOM_RAID: Intel-29b44d78: Subdisk Volume0:0-ada0 state changed from NONE to ACTIVE. GEOM_RAID: Intel-29b44d78: Disk ada1 state changed from NONE to ACTIVE. GEOM_RAID: Intel-29b44d78: Subdisk Volume0:1-ada1 state changed from NONE to ACTIVE. GEOM_RAID: Intel-29b44d78: Array started. GEOM_RAID: Intel-29b44d78: Volume Volume0 state changed from STARTING to OPTIMAL. GEOM_RAID: Intel-29b44d78: Provider raid/r0 for volume Volume0 created. SMP: AP CPU #1 Launched! Timecounter "TSC-low" frequency 1263526529 Hz quality 1000 hwpmc: SOFT/16/64/0x67 TSC/1/64/0x20 IAP/2/40/0x3ff IAF/3/40/0x67 Root mount waiting for: usbus7 usbus3 uhub3: 6 ports with 6 removable, self powered uhub7: 6 ports with 6 removable, self powered Trying to mount root from ufs:/dev/raid/r0s1a [rw]... ukbd0: on usbus5 kbd1 at ukbd0 ...<5>em0: link state changed to UP got link em1: link state changed to UP ipfw2 (+ipv6) initialized, divert loadable, nat loadable, default to deny, logging disabled DUMMYNET 0 with IPv6 initialized (100409) load_dn_sched dn_sched FIFO loaded load_dn_sched dn_sched QFQ loaded load_dn_sched dn_sched RR loaded load_dn_sched dn_sched WF2Q+ loaded load_dn_sched dn_sched PRIO loaded --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 01:28:53 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37C2CA61C70 for ; Mon, 4 Jan 2016 01:28:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 299111259 for ; Mon, 4 Jan 2016 01:28:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u041SqIT065030 for ; Mon, 4 Jan 2016 01:28:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205825] loader.efi mode command is missing modes Date: Mon, 04 Jan 2016 01:28:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emaste@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_file_loc assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 01:28:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205825 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://reviews.freebsd.org | |/D4760 Assignee|freebsd-bugs@FreeBSD.org |emaste@freebsd.org CC| |emaste@freebsd.org --- Comment #1 from Ed Maste --- Thanks for the patch, I'll take a look soon. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 02:56:12 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5B61A614C1 for ; Mon, 4 Jan 2016 02:56:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AFA3817E1 for ; Mon, 4 Jan 2016 02:56:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u042uC2r091189 for ; Mon, 4 Jan 2016 02:56:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205787] Can't compile freebsd srcs (/usr/src) with clang/llvm 3.8 and option -march=haswell Date: Mon, 04 Jan 2016 02:56:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 02:56:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205787 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |emaste@freebsd.org --- Comment #1 from Ed Maste --- Building 10.2 with Clang 3.8 isn't supported, but perhaps you can compile w= ith NO_WERROR? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 04:12:09 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15EE2A609DE for ; Mon, 4 Jan 2016 04:12:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01FAE1BF5 for ; Mon, 4 Jan 2016 04:12:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u044C8k9029490 for ; Mon, 4 Jan 2016 04:12:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 204741] [patch] [feature-request] syslogd(8) should be able to protect itself from OOM killer Date: Mon, 04 Jan 2016 04:12:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: araujo@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: araujo@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 04:12:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D204741 Marcelo Araujo changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |araujo@FreeBSD.org CC| |araujo@FreeBSD.org --- Comment #1 from Marcelo Araujo --- I would like to take a look on it. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 12:28:25 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3187CA61CC4 for ; Mon, 4 Jan 2016 12:28:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 092A515DE for ; Mon, 4 Jan 2016 12:28:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04CSOJB086882 for ; Mon, 4 Jan 2016 12:28:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205871] install(1) in endless loop for orphaned symlinks Date: Mon, 04 Jan 2016 12:28:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: frank@pinky.sax.de X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 12:28:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205871 Bug ID: 205871 Summary: install(1) in endless loop for orphaned symlinks Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: frank@pinky.sax.de install(1) with option "-d" creates directories. If the final target or an intermediate directory is a symbolic link, that points to a none existing file/directory, then install will enter an endless loop. I believe the behaviour was introduced with base r272026 | mjg | 2014-09-23 13:41:09 +0200 (Tue, 23 Sep 2014). It was observed when using mergemaster for a jail setup with ezjail. In that case symlinks visited from host can point to not existing directories on ho= st system. environment:=20 FreeBSD 11.0-CURRENT #10 r292982M: how to repeat: % ln -s /notexists /tmp/ % install -d /tmp/notexists & [1] 9843 % ps -v -p 9843 PID STAT TIME SL RE PAGEIN VSZ RSS LIM TSIZ %CPU %MEM COMMAND 9843 R 1:12.80 127 73 0 8356 2024 - 28 100.0 0.0 install -d /tmp/notexists % kill -ABRT 9843 % gdb /usr/bin/install install.core (gdb) bt #0 stat () at stat.S:3 #1 0x0000000000402e0b in main (argc=3D, argv=3D) at /usr/src11/usr.bin/xinstall/xinstall.c:1269 (gdb) list 1269 1264 for (p =3D path;; ++p) 1265 if (!*p || (p !=3D path && *p =3D=3D '/')) { 1266 ch =3D *p; 1267 *p =3D '\0'; 1268 again: 1269 if (stat(path, &sb) < 0) { 1270 if (errno !=3D ENOENT) 1271 err(EX_OSERR, "stat %s", pa= th); 1272 if (mkdir(path, 0755) < 0) { 1273 if (errno =3D=3D EEXIST) (gdb) q The stat call returns ENOENT and mkdir returns with EEXIST - that creates an endless loop. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 13:28:37 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B1209A61246 for ; Mon, 4 Jan 2016 13:28:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 878BB10D1 for ; Mon, 4 Jan 2016 13:28:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04DSbqQ005929 for ; Mon, 4 Jan 2016 13:28:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205873] pfctl -sr from a jail with vnet trigger Fatal trap 12 during pfioctl Date: Mon, 04 Jan 2016 13:28:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sheda@fsfe.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 13:28:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205873 Bug ID: 205873 Summary: pfctl -sr from a jail with vnet trigger Fatal trap 12 during pfioctl Product: Base System Version: 11.0-CURRENT Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: sheda@fsfe.org CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Created attachment 165051 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165051&action= =3Dedit Backtrace of the fatal trap triggered by the jailed pfctl -sr Running "pfctl -sr" from within a jail having its own vnet trigger a "Fatal trap 12: page fault while in kernel mode" (backtrace in the screenshot attached). Surprisingly, the "dump" command successfully generate a core dump that can= be read with kgdb but "bt" don't show any thread containing the pfioctl call. Anyway, the jail is configured as follow: $ head -n 17 /etc/jail.conf allow.mount; allow.mount.devfs; allow.sysvipc; devfs_ruleset =3D 5; exec.clean; exec.poststop =3D "/jail/etc/poststop $name"; exec.prestart =3D "/jail/etc/prestart $name"; exec.start =3D "sh /etc/rc"; host.hostname =3D "$name.fb11.lab.local"; mount.devfs; path =3D /jail/$name; persist; left { vnet =3D new; vnet.interface =3D epair0a; } [...] $ grep -e pf -e jail /etc/rc.conf jail_enable=3D"NO" # Set the jail list to "" to create all the jails found in jail.conf(5) jail_list=3D"" pf_enable=3D"YES" pf_log=3D"YES" $ cat /etc/pf.conf=20 pass from any to any $ pfctl -sr pass all flags S/SA keep state $ cat /etc/devfs.rules=20 [ruleset=3D5] add include $devfsrules_jail add path 'pf' unhide $ ll -i /dev/pf 88 crw------- 1 root wheel 0x58 Jan 4 14:30 /dev/pf $ sudo jexec left ls -li /dev/pf 88 crw------- 1 root wheel 0x58 Jan 4 13:30 /dev/pf $ --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 13:31:22 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A019CA61522 for ; Mon, 4 Jan 2016 13:31:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 904921310 for ; Mon, 4 Jan 2016 13:31:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04DVMZa012059 for ; Mon, 4 Jan 2016 13:31:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205873] pfctl -sr from a jail with vnet trigger Fatal trap 12 during pfioctl Date: Mon, 04 Jan 2016 13:31:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sheda@fsfe.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 13:31:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205873 --- Comment #1 from Sheda --- I forgot to show the prestart script: $ cat /jail/etc/prestart=20 #!/bin/sh set -eux jname=3D"$1" cd /jail for e in $(cd /jail/root; find . -maxdepth 1 -type d ! -name '.' ! -name 'd= ev' | sed 's_^./__1'); do mount -t unionfs -o below "/jail/root/$e" "$jname/$e" done The intent is to use a template to populate the jail but excluding the dev/ directory. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 13:32:23 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 48C7AA61592 for ; Mon, 4 Jan 2016 13:32:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 38BD9143B for ; Mon, 4 Jan 2016 13:32:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04DWNUQ016811 for ; Mon, 4 Jan 2016 13:32:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205874] [patch] Don't (try to) build rtwnfw if the user objects to binary blobs Date: Mon, 04 Jan 2016 13:32:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: fk@fabiankeil.de X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 13:32:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205874 Bug ID: 205874 Summary: [patch] Don't (try to) build rtwnfw if the user objects to binary blobs Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: fk@fabiankeil.de Keywords: patch Created attachment 165052 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165052&action= =3Dedit [patch] Don't (try to) build rtwnfw if the user objects to binary blobs The rtwnfw module contains source-less and non-free microcode but is built and installed even if WITHOUT_SOURCELESS_UCODE is set. The attached patch fixes this. It should apply cleanly once the same issue is fixed for otusfw (#204748). Obtained from: ElectroBSD --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 15:36:51 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC569A61B7B for ; Mon, 4 Jan 2016 15:36:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CCAF312E8 for ; Mon, 4 Jan 2016 15:36:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04FapGP078924 for ; Mon, 4 Jan 2016 15:36:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205879] [kernel] sysctl net.inet6.ip6.v6only is missing a description Date: Mon, 04 Jan 2016 15:36:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: feld@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 15:36:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205879 Bug ID: 205879 Summary: [kernel] sysctl net.inet6.ip6.v6only is missing a description Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: feld@FreeBSD.org $ sysctl -d net.inet6.ip6.v6only net.inet6.ip6.v6only: This toggle sets whether or not wildcard bindings for ipv6 (::) are v6only = or also bind to a v4 socket (0.0.0.0) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 15:44:11 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5B8A4A61ECD for ; Mon, 4 Jan 2016 15:44:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4BAA91A15 for ; Mon, 4 Jan 2016 15:44:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04FiBFo096391 for ; Mon, 4 Jan 2016 15:44:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205879] sysctl net.inet6.ip6.v6only is missing a description Date: Mon, 04 Jan 2016 15:44:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: easy, needs-patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc keywords short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 15:44:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205879 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |koobs@FreeBSD.org Keywords| |easy, needs-patch Summary|[kernel] sysctl |sysctl net.inet6.ip6.v6only |net.inet6.ip6.v6only is |is missing a description |missing a description | --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 15:45:25 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A578BA61FDB for ; Mon, 4 Jan 2016 15:45:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 95FFA1AE5 for ; Mon, 4 Jan 2016 15:45:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04FjPw0099064 for ; Mon, 4 Jan 2016 15:45:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205786] Ukrainian keyboard map contains undocumented keys Date: Mon, 04 Jan 2016 15:45:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 15:45:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205786 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |emaste@freebsd.org --- Comment #1 from Ed Maste --- FWIW fkey69 through fkey92 in the .ua keymaps originate in r52391. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 16:06:22 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6983A61835 for ; Mon, 4 Jan 2016 16:06:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B74561860 for ; Mon, 4 Jan 2016 16:06:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04G6Mnv072799 for ; Mon, 4 Jan 2016 16:06:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205873] pfctl -sr from a jail with vnet trigger Fatal trap 12 during pfioctl Date: Mon, 04 Jan 2016 16:06:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sheda@fsfe.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 16:06:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205873 --- Comment #2 from Sheda --- Maybe related to bug #194515. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 18:07:32 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EEEEA62728 for ; Mon, 4 Jan 2016 18:07:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DAD8014DD for ; Mon, 4 Jan 2016 18:07:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04I7Vgr012870 for ; Mon, 4 Jan 2016 18:07:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205886] USB install image requires write access to install media during boot! Date: Mon, 04 Jan 2016 18:07:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: oliver.jones@gmx.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 18:07:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205886 Bug ID: 205886 Summary: USB install image requires write access to install media during boot! Product: Base System Version: 10.2-STABLE Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: oliver.jones@gmx.com I have a Kanguru FlashTrust USB stick, which I used to boot and install Fre= eBSD 10.2 from. This particular USB stick has a physical write-protect switch, w= hich I enable after setup, to prevent unauthorised modifications. I use this particular brand because: a) The firmware is signed, to prevent exploits or attacks via BadUSB. b) The write protection secures install media against unauthorised changes. There is one small problem, however: When booting from the USB image, FreeB= SD 10.2 requires write access to the USB install medium in order to proceed! Booting with the write protect switch enabled on the USB stick will prevent FreeBSD 10.2 from booting and starting the installer! To boot without errors requires the boot media to be writable. This is not necessary with Linux or Windows (typically Windows PE) USB images. I appreciate that this issue is probably not noticeable in most cases, beca= use most USB sticks cannot be write-protected, and will therefore silently acce= pt writes. But this is a security flaw, since it prevents the boot media from being secured against unauthorised changes after creation and verification. Please fix it. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 18:14:31 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A83BCA62AC7 for ; Mon, 4 Jan 2016 18:14:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 99E991C17 for ; Mon, 4 Jan 2016 18:14:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04IEVH3042899 for ; Mon, 4 Jan 2016 18:14:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205879] sysctl net.inet6.ip6.v6only is missing a description Date: Mon, 04 Jan 2016 18:14:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: easy, needs-patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: marieheleneka@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 18:14:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205879 Marie Helene Kvello-Aune changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marieheleneka@gmail.com --- Comment #1 from Marie Helene Kvello-Aune --- Looks like there are many undocumented sysctls in this MIB namespace. I'll = take a sweep at them. :) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 18:47:16 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 231BCA60791 for ; Mon, 4 Jan 2016 18:47:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 087641FC8 for ; Mon, 4 Jan 2016 18:47:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04IlFDN010057 for ; Mon, 4 Jan 2016 18:47:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205898] makewhatis asserts when -a parameter is used Date: Mon, 04 Jan 2016 18:47:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: s3erios@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 18:47:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205898 Bug ID: 205898 Summary: makewhatis asserts when -a parameter is used Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: s3erios@gmail.com # lldb /usr/bin/makewhatis (lldb) target create "/usr/bin/makewhatis" Current executable set to '/usr/bin/makewhatis' (i386). (lldb) r -a /usr/share/man Process 10557 launching Process 10557 launched: '/usr/bin/makewhatis' (i386) Assertion failed: (NULL !=3D bufp), function mlinks_undupe, file /usr/src/usr.bin/mandoc/../../contrib/mdocml/mandocdb.c, line 1018. Process 10557 stopped * thread #1: tid =3D 100619, 0x28301e3b libc.so.7`thr_kill + 7, stop reason= =3D signal SIGABRT frame #0: 0x28301e3b libc.so.7`thr_kill + 7 libc.so.7`thr_kill: -> 0x28301e3b <+7>: jb 0x28305114 ; .cerror 0x28301e41 <+13>: retl=20=20=20 0x28301e42: nop=20=20=20=20 0x28301e43: nop=20=20=20=20 (lldb) bt * thread #1: tid =3D 100619, 0x28301e3b libc.so.7`thr_kill + 7, stop reason= =3D signal SIGABRT * frame #0: 0x28301e3b libc.so.7`thr_kill + 7 frame #1: 0x28301d6c libc.so.7`__raise + 60 frame #2: 0x28301533 libc.so.7`abort + 99 frame #3: 0x282eeda8 libc.so.7`__assert + 104 frame #4: 0x080770dc makewhatis`mpages_merge [inlined] mlinks_undupe + = 5596 at mandocdb.c:1018 frame #5: 0x080770b8 makewhatis`mpages_merge(mp=3D) + 5560= at mandocdb.c:1127 frame #6: 0x08074b9f makewhatis`mandocdb(argc=3D, argv=3D) + 3119 at mandocdb.c:529 frame #7: 0x080713d5 makewhatis`main(argc=3D3, argv=3D0x9fbfec50) + 293= at main.c:147 frame #8: 0x0804a16a makewhatis` + 314 frame #9: 0x0804a028 makewhatis + 24 (lldb) f 4 frame #4: 0x080770dc makewhatis`mpages_merge [inlined] mlinks_undupe + 5596= at mandocdb.c:1018 1015 } 1016 (void)strlcpy(buf, mlink->file, sizeof(buf)); 1017 bufp =3D strstr(buf, "cat"); -> 1018 assert(NULL !=3D bufp); 1019 memcpy(bufp, "man", 3); 1020 if (NULL !=3D (bufp =3D strrchr(buf, '.'))) 1021 *++bufp =3D '\0'; --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 19:04:58 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 273D6A60D15 for ; Mon, 4 Jan 2016 19:04:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 18CCB1A8F for ; Mon, 4 Jan 2016 19:04:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04J4vJr049240 for ; Mon, 4 Jan 2016 19:04:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205874] [patch] Don't (try to) build rtwnfw if the user objects to binary blobs Date: Mon, 04 Jan 2016 19:04:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 19:04:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205874 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: brueffer Date: Mon Jan 4 19:04:33 UTC 2016 New revision: 293171 URL: https://svnweb.freebsd.org/changeset/base/293171 Log: Don't build rtwnfw if building without binary blobs. rtwnfw got added in r293009 and depends on source-less and non-free microcode in sys/contrib/dev/rtwn. PR: 205874 Submitted by: Fabian Keil Obtained from: ElectroBSD Changes: head/sys/modules/Makefile --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 19:05:49 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D5567A60DCE for ; Mon, 4 Jan 2016 19:05:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6BEC1B15 for ; Mon, 4 Jan 2016 19:05:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04J5n7Z050391 for ; Mon, 4 Jan 2016 19:05:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205874] [patch] Don't (try to) build rtwnfw if the user objects to binary blobs Date: Mon, 04 Jan 2016 19:05:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: brueffer@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 19:05:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205874 Christian Brueffer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |brueffer@FreeBSD.org Resolution|--- |FIXED Status|New |Closed --- Comment #2 from Christian Brueffer --- Committed, thanks! --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 19:17:44 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77DC3A6112C for ; Mon, 4 Jan 2016 19:17:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 691B91EF9 for ; Mon, 4 Jan 2016 19:17:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04JHip5073018 for ; Mon, 4 Jan 2016 19:17:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205886] USB install image requires write access to install media during boot! Date: Mon, 04 Jan 2016 19:17:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: freebsd-bugs@nanoman.ca X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 19:17:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205886 A.J. Kehoe IV (Nanoman) changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |freebsd-bugs@nanoman.ca --- Comment #1 from A.J. Kehoe IV (Nanoman) --- This is a duplicate of FreeBSD Bug 187161. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 20:12:06 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 224C0A6243D for ; Mon, 4 Jan 2016 20:12:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13F8410FE for ; Mon, 4 Jan 2016 20:12:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04KC5Cb015194 for ; Mon, 4 Jan 2016 20:12:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196289] Kernel hangs when booting via UEFI Date: Mon, 04 Jan 2016 20:12:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: uefi X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: kyle@ktdassoff.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 20:12:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D196289 --- Comment #5 from Kyle Dassoff --- (In reply to Ed Maste from comment #4) I see a new snapshot of 11-CURRENT available on FTP. But there's no -uefi- images listed. Have those been combined with the BIOS-boot images for 11? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 20:13:06 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 063A8A6248C for ; Mon, 4 Jan 2016 20:13:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EBF4712B7 for ; Mon, 4 Jan 2016 20:13:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04KD57b018387 for ; Mon, 4 Jan 2016 20:13:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196289] Kernel hangs when booting via UEFI Date: Mon, 04 Jan 2016 20:13:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: uefi X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 20:13:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D196289 --- Comment #6 from Ed Maste --- > But there's no -uefi- images listed. Have those been combined with the BI= OS-boot images for 11? That's correct, the same image can boot by BIOS or UEFI. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 20:16:54 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EB9BA62568 for ; Mon, 4 Jan 2016 20:16:54 +0000 (UTC) (envelope-from mail.digdhmyeztrxkatg@msgfocus.conservativedailyalerts.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id EC85A135C for ; Mon, 4 Jan 2016 20:16:53 +0000 (UTC) (envelope-from mail.digdhmyeztrxkatg@msgfocus.conservativedailyalerts.com) Received: by mailman.ysv.freebsd.org (Postfix) id E8C40A62567; Mon, 4 Jan 2016 20:16:53 +0000 (UTC) Delivered-To: bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E84A9A62566 for ; Mon, 4 Jan 2016 20:16:53 +0000 (UTC) (envelope-from mail.digdhmyeztrxkatg@msgfocus.conservativedailyalerts.com) Received: from relay-6-219.msgfocus.com (relay-6-219.msgfocus.com [46.236.37.219]) by mx1.freebsd.org (Postfix) with ESMTP id 9D576135B for ; Mon, 4 Jan 2016 20:16:52 +0000 (UTC) (envelope-from mail.digdhmyeztrxkatg@msgfocus.conservativedailyalerts.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=msgf; d=msgfocus.com; h=Subject:Message-ID:Reply-To:X-Mailer:To:From:Date:MIME-Version:Content-Type; bh=BN3wPCI9nyaMgty+NrYQlOrB4FQ=; b=n4brCCdJW8lkSAJ+P4/3Pj+QWa0xBjdbB0Dv0HWwmMZR+Jp4yxZLgbY5VlMTH4cEIG/i0KRzRO78 YS0Sk0WSO4nYbxsFQVdh7UK27QpjKzT3G51T12GakVmVvh5EGzL5YM4+/hFtUQS6lI7aKGGFQh4f 3yBKkR6ihBe1EreJoZw= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=conservativedailyalerts.com; s=msgfocus; t=1451938006; bh=R7RUw40KX2SlqzOupQzCl5fw3aQvHFgsl0l5OY2/4/0=; h=Subject:Message-ID:Reply-To:X-Mailer:To:From:Date:MIME-Version: Content-Type; b=lREToHBX1vRuy457H826hlLs6ce8jGo+jHNRHTmBbhEGLtjH2sPloPpa/Ny/EcLkU U1uaHC8wBdg9DXId/j/45jQz4u4OxhcUdyZ/1X0S3apbzJUsUT+hDBU5buFhjRv/kc 76jZ4xOCLOL80tcBWljj8tQecoPd2BzT93jObpqQ= Subject: Urgent: Last Chance to Stop Obama's Gun Grab! Message-ID: Reply-To: Conservative Daily X-Mailer: MessageFocus v2 launch To: bugs@freebsd.org From: Conservative Daily Date: Mon, 4 Jan 2016 20:06:46 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 20:16:54 -0000 Conservative-Daily Email Obama is meeting today with his Attorney General to finalize his gun contro= l executive order. Want to help stop him? Conservative-Daily Newsletter Urgent: Last Chance to Stop Obama's Gun Grab! Fellow Conservative, It is happening. Barack Obama is back from his $500,000/day vacation in Haw= aii and is meeting today with Attorney General Loretta Lynch to put the fin= ishing touches on his radical gun control executive order. That=E2=80=99s n= ot speculation. He has admitted that he is doing this. He's proud of his pl= an to circumvent Congress and spit on the Constitution. Then tomorrow, he will announce his plan to rewrite the nation's gun laws a= nd put us down the path towards nationwide confiscation! Don=E2=80=99t let him get away with this! Stand up and fight against Obama= =E2=80=99s gun control executive orders! Here's the backstory. In 1993, the= re was a compromise reached in the passage of the Brady Handgun Violence Pr= evention Act . Republicans agreed to accept background checks for guns purc= hased at gun stores as long as private sales remained untouched. The fear w= as that the Federal government would use the background check system as an = opportunity to create a registry or list of American gun owners, which as w= e all know is the first step towards confiscation. Now fast-forward two dec= ades. The Democrats are taking what was a compromise and trying to paint it= as a loophole. They want a government record every single time a firearm c= hanges ownership. If you give a gun to your son or grandson, the government= wants a record of it. If your neighbor asks you to watch his guns while he= goes on vacation, the government wants you to jump through hoops and regis= ter the transfer at the federal level. Let me be clear. There is only one r= eason to push for a national gun registry like this: confiscation. Without = a list of who has the guns, it's impossible for the Federal government to k= now which doors to kick down. Registries have been used in Australia to con= fiscate guns, in England, and even in states like New York and California..= . Obama wants confiscation to be a nationwide policy and it is up to you to= stop him! http://msgfocus.conservativedailyalerts.com/c/1Rk9dcxU8y8iPdoaZblQZ7 The executive order that the White House is poised to announce is not only = illegal, but it is completely unconstitutional. When the Founding Fathers w= arned of tyranny, this is what they were talking about. When they said that= the price of liberty is eternal vigilance, this is what they warned you to= watch out for! So what are we going to do about it? We are going to raise hell. We are goi= ng to put more resources into stopping this horrible executive order than w= e ever have. In the last month alone, we've bombarded Congress with 2 milli= on faxes on this issue alone. Our fax system is unlike anything out there in the country. It allows you t= o instantly contact your Congressman and Senators in a tangible way. Emails= get deleted. Phone calls get ignored. But every fax, by law, has to be pri= nted out in Congressional offices. It=E2=80=99s impossible to ignore us whe= n the faxes are piled up to the ceiling! But we need your help! The hour is upon us. Right now, the Obama administration finishing up an ex= ecutive order to start the process towards nation-wide gun confiscation! Please, take the time and FaxBlast Congress demanding that they stop this l= awless President and, yes, if necessary, impeach him! http://msgfocus.conservativedailyalerts.com/c/1RkkJxQZsMZuVnah6Es5V4 Sincerely, Joe Otto Conservative Daily Tell Your Friends! Make sure your friends read this too...we need every voice we can get to ch= ange the status quo in Washington! Share this on Facebook http://msgfocus.conservativedailyalerts.com/o/11bOH4= 4sX1ciuy4?u=3D%24AMF_PERMALINK%24 Share this on Twitter http://msgfocus.conservativedailyalerts.com/o/1MAm8gE= zK1ybLh?status=3D%24AMF_SUBJECT_LINE%24%20%24AMF_SHORT_PERMALINK%24 Conservative-Daily is a media outlet protected by the First Amendment and s= upport for our efforts is not tax-deductible. Not interested in receiving e= mails like this? http://msgfocus.conservativedailyalerts.com/u/1nm1csQcsQNS= Yu. This email was sent to bugs@freebsd.org. Can't read the email? http://m= sgfocus.conservativedailyalerts.com/q/1mbzqDZvpM4lW5SDINxS/wv Copyright 2015 PoliZoo LLC, P.O. Box 1382, Parker, CO 80134. All rights res= erved.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 20:42:23 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F1E1CA61083 for ; Mon, 4 Jan 2016 20:42:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E32501D16 for ; Mon, 4 Jan 2016 20:42:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04KgNni078902 for ; Mon, 4 Jan 2016 20:42:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205903] Recurrent bug with nvidia-driver: fault on nofault entry Date: Mon, 04 Jan 2016 20:42:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mike.d.ft402@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 20:42:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205903 Bug ID: 205903 Summary: Recurrent bug with nvidia-driver: fault on nofault entry Product: Base System Version: 10.2-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: mike.d.ft402@gmail.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Created attachment 165080 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165080&action= =3Dedit Relevant parts of core.txt The problem has been occurring since some patchlevels before 10.2-RELEASE-p8 and some minor versions of nvidia-driver before 340.96. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 20:47:11 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7FF9A611DE for ; Mon, 4 Jan 2016 20:47:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A8C8B1ED8 for ; Mon, 4 Jan 2016 20:47:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04KlBWU086892 for ; Mon, 4 Jan 2016 20:47:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205903] Recurrent bug with nvidia-driver: fault on nofault entry Date: Mon, 04 Jan 2016 20:47:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mike.d.ft402@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 20:47:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205903 --- Comment #1 from Michael Danilov --- Created attachment 165081 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165081&action= =3Dedit Part of dmesg with WITNESS, WITNESS_SKIPSPIN and INVARIANTS that may be relevant. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 20:48:57 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 393D7A61293 for ; Mon, 4 Jan 2016 20:48:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A21F1141 for ; Mon, 4 Jan 2016 20:48:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04Kmv38089391 for ; Mon, 4 Jan 2016 20:48:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205903] Repeating crash with nvidia-driver: "fault on nofault entry" Date: Mon, 04 Jan 2016 20:48:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mike.d.ft402@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 20:48:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205903 Michael Danilov changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Recurrent bug with |Repeating crash with |nvidia-driver: fault on |nvidia-driver: "fault on |nofault entry |nofault entry" --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 21:01:47 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F306CA6171E for ; Mon, 4 Jan 2016 21:01:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E368A1859 for ; Mon, 4 Jan 2016 21:01:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04L1lcQ098078 for ; Mon, 4 Jan 2016 21:01:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 187114] rtld(1) does not expand $ORIGIN unless DF_ORIGIN flag is set Date: Mon, 04 Jan 2016 21:01:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable10+ X-Bugzilla-Changed-Fields: resolution flagtypes.name bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 21:01:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D187114 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Flags| |mfc-stable10+ Status|Open |Closed --- Comment #5 from Ed Maste --- Merged to stable/10 in 282412 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 21:05:08 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86311A61940 for ; Mon, 4 Jan 2016 21:05:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 76FBA1BEA for ; Mon, 4 Jan 2016 21:05:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04L57Si011255 for ; Mon, 4 Jan 2016 21:05:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205886] USB install image requires write access to install media during boot! Date: Mon, 04 Jan 2016 21:05:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: see_also Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 21:05:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205886 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.freebsd.org/bu | |gzilla/show_bug.cgi?id=3D1= 871 | |61 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 21:06:42 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F4D3A619BD for ; Mon, 4 Jan 2016 21:06:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 702711C6B for ; Mon, 4 Jan 2016 21:06:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04L6g7v068877 for ; Mon, 4 Jan 2016 21:06:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205873] pfctl -sr from a jail with vnet trigger Fatal trap 12 during pfioctl Date: Mon, 04 Jan 2016 21:06:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: see_also Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 21:06:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205873 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.freebsd.org/bu | |gzilla/show_bug.cgi?id=3D1= 945 | |15 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 21:07:31 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C62F8A61AC9 for ; Mon, 4 Jan 2016 21:07:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B5A001EE4 for ; Mon, 4 Jan 2016 21:07:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04L7VPC089547 for ; Mon, 4 Jan 2016 21:07:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205886] USB install image requires write access to install media during boot! Date: Mon, 04 Jan 2016 21:07:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: gjb@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 21:07:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205886 --- Comment #2 from Glen Barber --- Could you please provide more details on the error(s) you encountered? In particular, knowing what file(s) were trying to be written would be very helpful. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 21:08:06 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98989A61B3F for ; Mon, 4 Jan 2016 21:08:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 89A2C2000 for ; Mon, 4 Jan 2016 21:08:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04L85mq099828 for ; Mon, 4 Jan 2016 21:08:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Mon, 04 Jan 2016 21:08:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 21:08:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |linimon@FreeBSD.org --- Comment #1 from Mark Linimon --- To make it clear, did this work properly in 10.1-STABLE? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 21:10:18 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 417B5A61CA0 for ; Mon, 4 Jan 2016 21:10:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 31D3810DC for ; Mon, 4 Jan 2016 21:10:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04LAH7L081355 for ; Mon, 4 Jan 2016 21:10:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205903] x11/nvidia-driver-340: Repeating crash with nvidia-driver: "fault on nofault entry" Date: Mon, 04 Jan 2016 21:10:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: danfe@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 21:10:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205903 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |danfe@FreeBSD.org Summary|Repeating crash with |x11/nvidia-driver-340: |nvidia-driver: "fault on |Repeating crash with |nofault entry" |nvidia-driver: "fault on | |nofault entry" --- Comment #2 from Mark Linimon --- Take a guess at which port this applies to and assign. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 21:36:35 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A2DBA62507 for ; Mon, 4 Jan 2016 21:36:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7A9511397 for ; Mon, 4 Jan 2016 21:36:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04LaZ4Z064114 for ; Mon, 4 Jan 2016 21:36:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205886] USB install image requires write access to install media during boot! Date: Mon, 04 Jan 2016 21:36:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: oliver.jones@gmx.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 21:36:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205886 --- Comment #3 from Oliver Jones --- Created attachment 165082 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165082&action= =3Dedit Messages shown during the boot process, up to the point of failure It would appear that the root filesystem is mounted read-write, instead of read-only. This output, of course, is shown when attempting to boot with the write pro= tect switch enabled. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 21:45:03 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A012A6284C for ; Mon, 4 Jan 2016 21:45:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A83B1A5B for ; Mon, 4 Jan 2016 21:45:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04Lj2PP082486 for ; Mon, 4 Jan 2016 21:45:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205886] USB install image requires write access to install media during boot! Date: Mon, 04 Jan 2016 21:45:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: gjb@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 21:45:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205886 --- Comment #4 from Glen Barber --- (In reply to Oliver Jones from comment #3) > Created attachment 165082 [details] > Messages shown during the boot process, up to the point of failure >=20 Thank you very much. > It would appear that the root filesystem is mounted read-write, instead of > read-only. >=20 > This output, of course, is shown when attempting to boot with the write > protect switch enabled. Can you try the suggestion noted here? https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D187161#c0 (You will need to turn off write-protect mode on the USB drive though.) Since I do not have any USB sticks with write-protection ability, I am a bit hesitant to commit the proposed change without knowing if there are any fur= ther reprocussions. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 22:05:28 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 91137A62ED2 for ; Mon, 4 Jan 2016 22:05:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 816AF1603 for ; Mon, 4 Jan 2016 22:05:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04M5Sbd058328 for ; Mon, 4 Jan 2016 22:05:28 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205886] USB install image requires write access to install media during boot! Date: Mon, 04 Jan 2016 22:05:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: oliver.jones@gmx.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 22:05:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205886 --- Comment #5 from Oliver Jones --- (In reply to Glen Barber from comment #4) Hi Glen, You are quite welcome. I will give this a try tomorrow, as it's quite late.= If you guys have an address, I'll also happily send you a Kanguru FlashTrust 1= 6GB USB stick for testing, in the mail: I think it is important that you should= be able to formally test this. Please send me a private message with an addres= s I can send the stick to. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 22:26:38 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EB243A61553 for ; Mon, 4 Jan 2016 22:26:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DBD671EF3 for ; Mon, 4 Jan 2016 22:26:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04MQcpA001968 for ; Mon, 4 Jan 2016 22:26:38 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Mon, 04 Jan 2016 22:26:38 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: arcadiy@ivanovy.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 22:26:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 --- Comment #2 from arcadiy@ivanovy.net --- Yes, there where no problems before 10.2 upgrade. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 23:36:06 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3DDECA62A77 for ; Mon, 4 Jan 2016 23:36:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 240B01F0F for ; Mon, 4 Jan 2016 23:36:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04Na5Ba078871 for ; Mon, 4 Jan 2016 23:36:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Mon, 04 Jan 2016 23:36:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jhkingsr@gmail.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 23:36:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 --- Comment #16 from Joseph King --- (In reply to John Baldwin from comment #15) I'm using the install ISO images of FreeBSD 10.x-64 bit line... now if the system refuses to boot the install disc completely... How exactly do you recommend using this "patch" which isn't a patch. I have even tried the ins= tall the OS using a different machine then bring the fresh installed drive back = into the server and it crashes just as horribly as a back door approach possibly around this issue. Is this the method I should use to try out this "patch" which isn't a patch. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 23:41:57 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E276BA62BEE for ; Mon, 4 Jan 2016 23:41:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D23EF1350 for ; Mon, 4 Jan 2016 23:41:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04NfvWv092041 for ; Mon, 4 Jan 2016 23:41:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196289] Kernel hangs when booting via UEFI Date: Mon, 04 Jan 2016 23:41:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: uefi X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: kyle@ktdassoff.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 23:41:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D196289 --- Comment #7 from Kyle Dassoff --- Good news! I tested booting from the memstick image on my same computer and= it boots into the installer just fine. That snapshot was for 11-CURRENT-r29285= 8 on amd64 architecture. If you mention when the fix is MFC'd into STABLE, I'd be happy to watch for= a snapshot of STABLE and test booting that as well if that would be worthwhil= e. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 23:52:18 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8BEDA62FFB for ; Mon, 4 Jan 2016 23:52:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B999018FC for ; Mon, 4 Jan 2016 23:52:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04NqIvr014352 for ; Mon, 4 Jan 2016 23:52:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Mon, 04 Jan 2016 23:52:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 23:52:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 NGie Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ngie@FreeBSD.org --- Comment #17 from NGie Cooper --- (In reply to Joseph King from comment #16) I can point you in the right direction as far as creating release ISOs is concerned. It's pretty straightforward... --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Jan 4 23:53:48 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9BCBAA6105E for ; Mon, 4 Jan 2016 23:53:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8CBEA1A7B for ; Mon, 4 Jan 2016 23:53:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u04NrlUF016982 for ; Mon, 4 Jan 2016 23:53:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196289] Kernel hangs when booting via UEFI Date: Mon, 04 Jan 2016 23:53:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: uefi X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 23:53:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D196289 --- Comment #8 from Ed Maste --- > Good news! I tested booting from the memstick image on my same computer a= nd it > boots into the installer just fine. That snapshot was for 11-CURRENT-r292= 858 on > amd64=20 Great! I expect to merge it by mid next week, so that it should be availabl= e in a snapshot in early February. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 03:11:10 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7339AA62C6A for ; Tue, 5 Jan 2016 03:11:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 64D221F3E for ; Tue, 5 Jan 2016 03:11:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u053BAk1062460 for ; Tue, 5 Jan 2016 03:11:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Tue, 05 Jan 2016 03:11:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 03:11:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |regression --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 03:21:41 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07B3FA62FDC for ; Tue, 5 Jan 2016 03:21:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED32B158A for ; Tue, 5 Jan 2016 03:21:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u053LeCx026514 for ; Tue, 5 Jan 2016 03:21:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205886] USB install image requires write access to install media during boot! Date: Tue, 05 Jan 2016 03:21:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 03:21:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205886 --- Comment #6 from commit-hook@freebsd.org --- A commit references this bug: Author: gjb Date: Tue Jan 5 03:20:46 UTC 2016 New revision: 293188 URL: https://svnweb.freebsd.org/changeset/base/293188 Log: Prevent memstick installation medium from attempting to mount the root filesystem read-write. This causes problems booting the memstick installation medium from write-protected USB flash drives. Submitted by: A.J. Kehoe IV [1], Oliver Jones [2] PR: 187161 [1], 205886 [2] MFC after: 1 week Sponsored by: The FreeBSD Foundation Changes: head/release/amd64/make-memstick.sh head/release/arm64/make-memstick.sh head/release/i386/make-memstick.sh head/release/powerpc/make-memstick.sh --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 03:27:33 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E89AA6139B for ; Tue, 5 Jan 2016 03:27:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67F471A62 for ; Tue, 5 Jan 2016 03:27:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u053RXmG070814 for ; Tue, 5 Jan 2016 03:27:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205886] USB install image requires write access to install media during boot! Date: Tue, 05 Jan 2016 03:27:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: gjb@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 03:27:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205886 --- Comment #7 from Glen Barber --- (In reply to Oliver Jones from comment #5) > (In reply to Glen Barber from comment #4) > Hi Glen, >=20 > You are quite welcome. I will give this a try tomorrow, as it's quite lat= e. > If you guys have an address, I'll also happily send you a Kanguru FlashTr= ust > 16GB USB stick for testing, in the mail: I think it is important that you > should be able to formally test this. Please send me a private message wi= th > an address I can send the stick to. Thank you for the offer, but for a one-off test case such as this, I would rather such resources to go to places where they would be put to better use. I won't object to you making a donation to the FreeBSD Foundation, instead.= :) I've committed an update that will be reflected in this week's snapshot bui= lds, and will merge to stable/10 in 1 week, provided everything works as expecte= d. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 16:21:46 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9142BA62EBC for ; Tue, 5 Jan 2016 16:21:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81E091F26 for ; Tue, 5 Jan 2016 16:21:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05GLkH5099217 for ; Tue, 5 Jan 2016 16:21:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 204813] suggeted improvement for crontab(1)'s newly created files Date: Tue, 05 Jan 2016 16:21:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 16:21:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D204813 --- Comment #4 from commit-hook@freebsd.org --- A commit references this bug: Author: jilles Date: Tue Jan 5 16:21:21 UTC 2016 New revision: 293204 URL: https://svnweb.freebsd.org/changeset/base/293204 Log: Add sbin and /usr/local directories to _PATH_DEFPATH. Set _PATH_DEFPATH to /sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin. This is the path in the default class in the default /etc/login.conf, excluding ~/bin which would not be expanded properly in a string constant. For normal logins, _PATH_DEFPATH is overridden by /etc/login.conf, ~/.login_conf or shell startup files. _PATH_DEFPATH is still used as a default by execlp(), execvp(), posix_spawnp() and sh if PATH is not set, = and by cron. Especially the latter is a common trap (most recently in PR 204813). PR: 204813 Reviewed by: secteam (delphij), alfred Changes: head/include/paths.h head/lib/libc/gen/exec.3 head/lib/libc/gen/posix_spawn.3 head/usr.sbin/cron/crontab/crontab.5 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 16:38:51 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 491A8A63592 for ; Tue, 5 Jan 2016 16:38:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A2621A44 for ; Tue, 5 Jan 2016 16:38:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05GcoDs031377 for ; Tue, 5 Jan 2016 16:38:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Tue, 05 Jan 2016 16:38:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jhb@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 16:38:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 John Baldwin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jhb@FreeBSD.org --- Comment #3 from John Baldwin --- Can you get pciconf -lv output from a working 10.1 kernel with the mode set= to RAID? I believe the devices use different device IDs depending on the BIOS setting, so the pciconf -lv output will differ for different BIOS settings. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 16:43:05 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2CC52A63755 for ; Tue, 5 Jan 2016 16:43:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1DF191D80 for ; Tue, 5 Jan 2016 16:43:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05Gh48w043532 for ; Tue, 5 Jan 2016 16:43:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Tue, 05 Jan 2016 16:43:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jhb@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 16:43:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 John Baldwin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Open CC| |mav@FreeBSD.org --- Comment #4 from John Baldwin --- Actually, I suspect that this change may be the issue: https://svnweb.freebsd.org/base?view=3Drevision&revision=3D287016 IIRC, there might be some Intel parts that support AHCI but don't advertise= it via the progif config register. In that case, we need to keep the old "for= ce AHCI" bits in ata-intel.c instead. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 16:43:38 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5283DA637B3 for ; Tue, 5 Jan 2016 16:43:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43D511DF4 for ; Tue, 5 Jan 2016 16:43:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05GhbUC044399 for ; Tue, 5 Jan 2016 16:43:38 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Tue, 05 Jan 2016 16:43:38 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jhb@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 16:43:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 --- Comment #5 from John Baldwin --- And to be clear, having the pciconf -lv output from the older kernel with R= AID mode enabled is still needed to determine if my theory is correct. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 17:32:10 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F85BA62A27 for ; Tue, 5 Jan 2016 17:32:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4727512C8 for ; Tue, 5 Jan 2016 17:32:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05HWAI3073596 for ; Tue, 5 Jan 2016 17:32:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205926] jail(8): fails to parse ifconfig parameters in ip4.addr and ip6.addr after /netmask Date: Tue, 05 Jan 2016 17:32:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: Mark.Martinec@ijs.si X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 17:32:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205926 Bug ID: 205926 Summary: jail(8): fails to parse ifconfig parameters in ip4.addr and ip6.addr after /netmask Product: Base System Version: 10.2-STABLE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: Mark.Martinec@ijs.si The jail(8) man page states that additional ifconfig parameters may be supplied after ip-address/netmask in ip4.addr and ip6.addr (which is needed for example to specify a CARPed IP address): The manpage states: ip4.addr In addition to the IP addresses that are passed to the kernel, an interface, netmask and additional paramters (as supported by ifconfig(8)) may also be specified, in the form =E2=80=9Cinterface|ip-address/netmask param ...=E2=80=9D. As it turns out this does not work, unless /netmask is omitted. Seems like the check_intparams() in /usr/src/usr.sbin/jail/config.c assumes that everything after a slash is a netmask or a mask-length (or IPv6 prefix length), so any parameter following a /netmask is treated as a netmask syntax error. Example: # jail -c ip4.addr=3D'igb0|10.0.0.246/24 vhid 23 advskew 100' \ ip6.addr=3D'igb0|2001:db8::246/64 vhid 23 advskew 100' [...] jail: ip4.addr: bad netmask "/24 vhid 23 advskew 100" jail: ip6.addr: bad prefixlen "/64 vhid 23 advskew 100" Omitting the /24 (and /64) works as intended, but the implied mask length is /32 (and /128). An attempted workaround like: ip4.addr=3D'igb0|10.0.0.246 netmask 255.255.255.0 vhid 23 advskew 100' produces a double netmask option to ifconfig, which may be ambiguous (or a potential syntax error) - as reported by jail -v : run command: /sbin/ifconfig igb0 inet 10.0.0.246 \ netmask 255.255.255.255 netmask 255.255.255.0 vhid 23 advskew 100 alias ( Btw, why does the jail(8) bother to convert a mask length into a netmask, where the ifconfig is perfectly happy with a CIDR notation? ) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 17:38:11 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76394A62CCC for ; Tue, 5 Jan 2016 17:38:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67A1D176E for ; Tue, 5 Jan 2016 17:38:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05HcBZh082403 for ; Tue, 5 Jan 2016 17:38:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205926] jail(8): fails to parse ifconfig parameters in ip4.addr and ip6.addr after /netmask Date: Tue, 05 Jan 2016 17:38:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: Mark.Martinec@ijs.si X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 17:38:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205926 --- Comment #1 from Mark.Martinec@ijs.si --- > Btw, why does the jail(8) bother to convert a mask length [...] It doesn't - please disregard this last comment. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 18:22:42 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB0BBA63A8A for ; Tue, 5 Jan 2016 18:22:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C62118CB for ; Tue, 5 Jan 2016 18:22:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05IMgXn049412 for ; Tue, 5 Jan 2016 18:22:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205663] clang++ 3.7.1 gets Bus Errors during compilation on arm that has SCTLR bit[1]==1 (alignment required) Date: Tue, 05 Jan 2016 18:22:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: markmi@dsl-only.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 18:22:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205663 --- Comment #6 from Mark Millard --- llvm.org's Bugzilla reports that clang trunk has been fixed and clang 3.8 w= ill contain the fixes: James Molloy changed bug 25958=20 What Removed Added Status NEW RESOLVED Resolution --- FIXED Comment # 8 on bug 25958 from James Molloy Hi Mark, Thanks for your detailed investigation. I can confirm that this is fixed on trunk and therefore will be fixed for LLVM 3.8. The fixes were done for SPARC, which requires strict accesses much as ARM d= oes with SCTLR=3D1. There was a sequence of commits by James Knight that fixed these, but an example is http://reviews.llvm.org/rL242554 . The fixes were in a similar vein to yours, but required changes in fewer pl= aces and there were a few more sticky issues to solve too. I'll CC James here in case he wants to comment on the current state of the clang codebase for self-hosting in a strict alignment environment. Cheers, James --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 18:25:03 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3523EA63B42 for ; Tue, 5 Jan 2016 18:25:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 26DE319D2 for ; Tue, 5 Jan 2016 18:25:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05IP3fw052639 for ; Tue, 5 Jan 2016 18:25:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205928] Ipfw segmentation fault with nat command Date: Tue, 05 Jan 2016 18:25:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mk@steepath.eu X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 18:25:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205928 Bug ID: 205928 Summary: Ipfw segmentation fault with nat command Product: Base System Version: 10.1-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: mk@steepath.eu CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org I was testing nat with ipfw, and during my test (reading example file), a segmentation fault was found after executing one example command. Here the bug: ---------------------------------------------------------------------- $ ipfw add nat Segmentation fault $ echo $? 139 ---------------------------------------------------------------------- Here a small investigation: ---------------------------------------------------------------------- # cd /usr/src/sbin/ipfw # make DEBUG_FLAGS=3D-g $ gdb ./ipfw (gdb) run add nat Program received signal SIGSEGV, Segmentation fault. 0x0000000800b85fbb in strlen () from /lib/libc.so.7 (gdb) i r rax 0x1b 27 rbx 0x6183f0 6390768 rcx 0x0 0 rdx 0x0 0 rsi 0x0 0 rdi 0x0 0 rbp 0x7fffffffd2e0 0x7fffffffd2e0 rsp 0x7fffffffd2e0 0x7fffffffd2e0 r8 0xfffff80235122920 -8786612704992 r9 0x0 0 r10 0x0 0 r11 0x246 582 r12 0x801406050 34380734544 r13 0x801406058 34380734552 r14 0x0 0 r15 0x3 3 rip 0x800b85fbb 0x800b85fbb eflags 0x10246 66118 cs 0x43 67 ss 0x3b 59 ds 0x0 0 es 0x0 0 fs 0x0 0 gs 0x0 0 (gdb) bt #0 0x0000000800b85fbb in strlen () from /lib/libc.so.7 #1 0x0000000000405c43 in ipfw_add (av=3D0x801406058) at ipfw2.c:527 #2 0x0000000000410182 in ipfw_main (oldac=3D, oldav=3D) at main.c:407 #3 0x000000000040f55b in main (ac=3D3, av=3D0x7fffffffe688) at main.c:620 ---------------------------------------------------------------------- after adding some c code into main.c: ---------------------------------------------------------------------- $ svnlite diff ipfw2.c Index: ipfw2.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- ipfw2.c (revision 291749) +++ ipfw2.c (working copy) @@ -522,6 +522,7 @@ int _substrcmp(const char *str1, const char* str2) { + printf("str1: %s, str2: %s\n", str1, str2); if (strncmp(str1, str2, strlen(str1)) !=3D 0) return 1; @@ -2865,6 +2866,7 @@ * Some things that need to go out of order (prob, action etc.) * go into actbuf[]. */ + printf("in\n"); static uint32_t rulebuf[255], actbuf[255], cmdbuf[255]; int rblen, ablen, cblen; ---------------------------------------------------------------------- This code return this: ---------------------------------------------------------------------- str1: add, str2: queue str1: add, str2: flowset str1: add, str2: sched str1: add, str2: add before:=20 in str1: (null), str2: global Segmentation fault ---------------------------------------------------------------------- So, ipfw try to compare a null-pointer to a const char* in strncmp() functi= on. I don't know if this segmentation fault is due to this last function, or li= nked to another issue. If you have any idea. ;) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 18:52:14 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61FC0A6246F for ; Tue, 5 Jan 2016 18:52:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F8141797 for ; Tue, 5 Jan 2016 18:52:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05IqDvb006016 for ; Tue, 5 Jan 2016 18:52:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 178396] [kernel] [patch] Add jid to kernel log when a process has been forced closed Date: Tue, 05 Jan 2016 18:52:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: terje@elde.net X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 18:52:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D178396 terje@elde.net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |terje@elde.net --- Comment #2 from terje@elde.net --- This looks like a good idea to me, and people are in need of it as well: https://twitter.com/tykling/status/684359369102868480 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 19:28:25 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D09A8A630EA for ; Tue, 5 Jan 2016 19:28:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C2E941B10 for ; Tue, 5 Jan 2016 19:28:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05JSP8X006311 for ; Tue, 5 Jan 2016 19:28:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205930] -funroll-loop options is undocument Date: Tue, 05 Jan 2016 19:28:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: kargl@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 19:28:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205930 Bug ID: 205930 Summary: -funroll-loop options is undocument Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: kargl@FreeBSD.org cc accepts the undocumented option -funroll-loops. As it is undocumented, one has no idea what it does. If cc does unrolling, there appears to be no way to control the level of unrolling. Please fix. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 19:38:37 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58C4EA634D3 for ; Tue, 5 Jan 2016 19:38:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4AAAB12E3 for ; Tue, 5 Jan 2016 19:38:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05JcbAu025960 for ; Tue, 5 Jan 2016 19:38:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205930] -funroll-loop options is undocument Date: Tue, 05 Jan 2016 19:38:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 19:38:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205930 NGie Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ngie@FreeBSD.org --- Comment #1 from NGie Cooper --- A lot of options are unfortunately undocumented with clang :(... see this thread for more details: http://clang-developers.42468.n3.nabble.com/clang-1-3-4-manpage-documentati= on-is-sparse-need-help-figuring-out-available-options-in-compiler-td4042738= .html (tl;dr: submit a patch to our project and we'll accept it :/...). --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 19:39:34 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CED90A63704 for ; Tue, 5 Jan 2016 19:39:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0A9D14BF for ; Tue, 5 Jan 2016 19:39:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05JdYan027307 for ; Tue, 5 Jan 2016 19:39:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205930] clang(1) doesn't document all flags and options Date: Tue, 05 Jan 2016 19:39:34 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 19:39:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205930 NGie Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|-funroll-loop options is |clang(1) doesn't document |undocument |all flags and options --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 19:49:15 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A725A63B5C for ; Tue, 5 Jan 2016 19:49:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 41DD81C1D for ; Tue, 5 Jan 2016 19:49:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05JnELQ046783 for ; Tue, 5 Jan 2016 19:49:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205932] [panic] Kernel panic when copying from ext2fs partition to UFS partition Date: Tue, 05 Jan 2016 19:49:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: will_brokenbourgh@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 19:49:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205932 Bug ID: 205932 Summary: [panic] Kernel panic when copying from ext2fs partition to UFS partition Product: Base System Version: 10.2-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: will_brokenbourgh@yahoo.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Created attachment 165117 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165117&action= =3Dedit Verbose kernel panic textual information When copying files from an ext4 partition on device ada1 mounted read-only = to a user's home directory on the FreeBSD root (UFS) partition on device ada0, a kernel panic occurs after around 100 files are copied. It appears at least one other person has experienced this recently: http://freebsd.1045724.n5.nabble.com/Ext4-Kernel-Panic-td6025605.html This kernel panic happens after a fresh install with NO packages or ports installed yet and both before AND after performing system update with freebsd-update. COMMANDS ISSUED (under root account): - - - # mount -t ext2fs -o ro /dev/ada1p4 /mnt/adisk # cd /mnt/adisk # ls lost+found will # cp -Rnv will /home/will (KP happens after about 100 files copied) - - - CRASH INFO: - - - Dump header from device /dev/ada0p3 Architecture: amd64 Architecture Version: 2 Dump Length: 714723328B (681 MB) Blocksize: 512 Dumptime: Tue Jan 5 10:51:56 2016 Hostname: will-freebsd Magic: FreeBSD Kernel Dump Version String: FreeBSD 10.2-RELEASE #0 r286666: Wed Aug 12 15:26:37 UTC = 2015 root@releng1.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC Panic String: __lockmgr_args: recursing on non recursive lockmgr getblk @ (null):0 Dump Parity: 3650188378 Bounds: 1 Dump Status: good - - - The more verbose crash text is attached. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 20:03:58 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65456A630BF for ; Tue, 5 Jan 2016 20:03:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A4DF14B1 for ; Tue, 5 Jan 2016 20:03:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05K3wqe011826 for ; Tue, 5 Jan 2016 20:03:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205933] [boot] Loader hangs when connecting serial console Date: Tue, 05 Jan 2016 20:03:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: aram.h@mgk.ro X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 20:03:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205933 Bug ID: 205933 Summary: [boot] Loader hangs when connecting serial console Product: Base System Version: 10.2-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: aram.h@mgk.ro $ freebsd-version ; uname -a 10.2-RELEASE-p8 FreeBSD z800.mgk.ro 10.2-RELEASE-p7 FreeBSD 10.2-RELEASE-p7 #0: Mon Nov 2 14:19:39 UTC 2015=20=20=20=20 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 $ $ cat /boot/loader.conf=20 loader_color=3D"NO" loader_logo=3D"beastiebw" boot_multicons=3D"YES" boot_serial=3D"YES" comconsole_speed=3D"115200" console=3D"comconsole,vidconsole" kern.geom.label.gptid.enable=3D"0" zfs_load=3D"YES" $ $ grep -v '^#' /etc/ttys=20 console none unknown off secure ttyv0 "/usr/libexec/getty Pc" xterm on secure ttyv1 "/usr/libexec/getty Pc" xterm on secure ttyv2 "/usr/libexec/getty Pc" xterm on secure ttyv3 "/usr/libexec/getty Pc" xterm on secure ttyv4 "/usr/libexec/getty Pc" xterm on secure ttyv5 "/usr/libexec/getty Pc" xterm on secure ttyv6 "/usr/libexec/getty Pc" xterm on secure ttyv7 "/usr/libexec/getty Pc" xterm on secure ttyv8 "/usr/local/bin/xdm -nodaemon" xterm off secure ttyu0 "/usr/libexec/getty std.115200" vt100 onifconsole secure ttyu1 "/usr/libexec/getty std.9600" dialup off secure ttyu2 "/usr/libexec/getty std.9600" dialup off secure ttyu3 "/usr/libexec/getty std.9600" dialup off secure dcons "/usr/libexec/getty std.9600" vt100 off secure When I boot without a serial console attached, boot proceeds fine (the loader autoboots after an interval). However, when I attach a serial console, the loader hangs as if I had pressed a key to stop the boot. The boot proceeds normally after I press Enter. This seems to be correlated with whether I have a remote terminal emulator on that serial line or not. If there's nobody listening, so to speak, the boot proceeds fine, but if I connect with screen, cu, or minicom, the boot pauses and waits for input. Not sure if this matters or not, but the remote machine connects to the serial console through an USB adapter. This seems to be related, or perhaps the same problem as the one described in this mailing list post: https://lists.freebsd.org/pipermail/freebsd-stable/2014-April/078378.html. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 20:12:12 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9877DA633D5 for ; Tue, 5 Jan 2016 20:12:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BE091B84 for ; Tue, 5 Jan 2016 20:12:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05KCCMU028879 for ; Tue, 5 Jan 2016 20:12:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205934] clang crashes in configure test with #pragma weak Date: Tue, 05 Jan 2016 20:12:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: fuz@fuz.su X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 20:12:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205934 Bug ID: 205934 Summary: clang crashes in configure test with #pragma weak Product: Base System Version: 10.2-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: fuz@fuz.su The following very short C program triggers a bug in /usr/bin/cc (Clang 3.4= .1) on amd64 FreeBSD 10.2-RELEASE: extern int test2(); #pragma weak test2 =3D test1 int test1() {return 0;} int main() { return test2(); ; return 0; } This program is used as a configure test in the Schily utilities, it's supp= osed to test if the compiler correctly supports SysV #pragma weak, though it's n= ot supposed to induce a compiler crash. The output of /usr/bin/cc is: Stack dump: 0. Program arguments: /usr/bin/cc -cc1 -triple x86_64-unknown-freebsd1= 0.2 -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -main-file-name clang-bug.c -mrelocation-model static -mdisable-fp-elim -masm-verbose -mconstructor-aliases -munwind-tables -target-cpu x86-64 -coverage-file /tmp/clang-bug.o -resource-dir /usr/bin/../lib/clang/3.4.1 -fdebug-compilation-dir /tmp -ferror-limit 19 -fmessage-length 0 -mstackrea= lign -fobjc-runtime=3Dgnustep -fdiagnostics-show-option -vectorize-slp -o clang-= bug.o -x c clang-bug.c=20 1. clang-bug.c:5:14: current parser token ')' 2. clang-bug.c:4:12: parsing function body 'main' 3. clang-bug.c:4:12: in compound statement ('{}') cc: error: unable to execute command: Segmentation fault (core dumped) cc: error: clang frontend command failed due to signal (use -v to see invocation) FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 Target: x86_64-unknown-freebsd10.2 Thread model: posix cc: note: diagnostic msg: PLEASE submit a bug report to https://bugs.freebsd.org/submit/ and include the crash backtrace, preproces= sed source, and associated run script. cc: note: diagnostic msg:=20 ******************** PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT: Preprocessed source(s) and associated run script(s) are located at: cc: note: diagnostic msg: /tmp/clang-bug-60a5bb.c cc: note: diagnostic msg: /tmp/clang-bug-60a5bb.sh cc: note: diagnostic msg:=20 ******************** --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 20:18:27 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C4516A6351B for ; Tue, 5 Jan 2016 20:18:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AF62C1CE9 for ; Tue, 5 Jan 2016 20:18:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05KIRud039550 for ; Tue, 5 Jan 2016 20:18:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205930] clang(1) doesn't document all flags and options Date: Tue, 05 Jan 2016 20:18:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: kargl@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 20:18:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205930 --- Comment #2 from Steve Kargl --- Oh yuck. Long lines and new sentences starting in the middle of a line. diff -u cc.1.orig cc.1 --- cc.1.orig 2016-01-05 11:57:16.699107000 -0800 +++ cc.1 2016-01-05 12:12:47.718444000 -0800 @@ -251,8 +251,15 @@ through Clang compiled stack frames. This is on by default in x86-64. .It Sy -ftrapv Generate code to catch integer overflow errors. Signed integer overflow is -undefined in C, with this flag, extra code is generated to detect this and abort -when it happens. +undefined in C, with this flag, extra code is generated to detect this and +abort when it happens. +.It Sy -funroll-loops +This option is accepted by the compiler, but testing with simply +loops suggests that apparently does nothing. +Surprisingly, +.Nm +does not issue a warning about the omission of what can only be characteri= zed +as a basic optimization. .It Sy -fvisibility This flag sets the default visibility level. .It Sy -fcommon --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 21:45:30 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E530A6321D for ; Tue, 5 Jan 2016 21:45:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1EE5A10A8 for ; Tue, 5 Jan 2016 21:45:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05LjT0q011529 for ; Tue, 5 Jan 2016 21:45:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Tue, 05 Jan 2016 21:45:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: arcadiy@ivanovy.net X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 21:45:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 --- Comment #6 from arcadiy@ivanovy.net --- Will do. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 21:49:25 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8F137A63320 for ; Tue, 5 Jan 2016 21:49:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 66116128A for ; Tue, 5 Jan 2016 21:49:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05LnOTN016605 for ; Tue, 5 Jan 2016 21:49:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Tue, 05 Jan 2016 21:49:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jhb@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 21:49:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 --- Comment #18 from John Baldwin --- (In reply to Joseph King from comment #16) Install a version that works. Then build a test kernel with the patch and = boot it. One method of building a test kernel: # Checkout a tree % mkdir pr_198062 % cd pr_198062 % svn co svn://svn.freebsd.org/base/stable/10 . # Apply the patch % fetch -o foo.patch https://github.com/bsdjhb/freebsd/compare/stable/10...bsdjhb:pr_198062.diff % patch -p1 < foo.patch % find . -name '*.rej' # This last command should generate no output # Build a toolchain % make kernel-toolchain # Build a test kernel and install it to /boot/test % make buildkernel % make installkernel INSTKERNNAME=3Dtest # Reboot with the test kernel % nextboot -k test % reboot If I update the patch with additional changes you can do this: % cd pr_198062 % svn revert -R . And then apply the new patch same fetch / patch / find commands from above followed by building the kernel, installing it, and rebooting. You can avoid the manual patch, etc. steps if you install git and do this instead: % mkdir pr_198062 % git clone https://github.com/bsdjhb/freebsd.git % cd freebsd % git checkout pr_198062 Can then build a kernel toolchain and kernel using same steps as before. A= fter I update the patch you can do this: % git pull Followed by building the kernel, installing it, and rebooting. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Jan 5 23:53:26 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E450A638B7 for ; Tue, 5 Jan 2016 23:53:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7455A1D27 for ; Tue, 5 Jan 2016 23:53:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u05NrQA3027026 for ; Tue, 5 Jan 2016 23:53:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205938] [ext2fs][patch][panic] EXT4: reading mmaped file causes panic because struct buf leaks Date: Tue, 05 Jan 2016 23:53:26 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: crash, patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: damjan.jov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 23:53:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205938 Bug ID: 205938 Summary: [ext2fs][patch][panic] EXT4: reading mmaped file causes panic because struct buf leaks Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Keywords: crash, patch Severity: Affects Many People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: damjan.jov@gmail.com CC: freebsd-fs@FreeBSD.org Created attachment 165127 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165127&action= =3Dedit Fix a kernel panic when reading mmaped files from EXT4 Calling mmap() on any sizeable file on an EXT4 filesystem, and then attempt= ing to read that memory (can be easily tested using the "cmp file file" tool), causes a reproducible kernel panic: userret: returning with the following locks held: exclusive lockmgr bufwait (bufwait) r =3D 0 (0xfffffe001d90c220) locked @ /usr/src/sys/kern/vfs_bio.c:1454 panic: witness_warn cpuid =3D 0 KDB: stack backtrace: db_trace_self_wrapper() at db_trace-self_wrapper+0x2b/frame 0xfffffe002b7e6= 7f0 vpanic() at vpanic+0x182/frame 0xfffffe002b7e6870 kassert_panic() at kassert_panic+0x126/frame 0xfffffe002b7e68e0 witness_warn() at witness_warn+0x3c6/frame 0xfffffe002b7e69b0 userret() at userret+0x98/frame 0xfffffe002b7e69e0 trap() at trap+0x3f4/frame 0xfffffe002b7e6bf0 calltrap() at calltrap+0x8/frame 0xfffffe002b7e6bf0 --- trap 0xc, rip =3D 0x4019c0, rsp =3D 0x7fffffffe940, rbp =3D 0x7ffffffff= eea30 --- KDB: enter: panic [ thread pid 909 tid 100082 ] Stopped at kdb_enter+0x3b: movq $0,kdb_why The problem comes from ext4_bmapext() in sys/fs/ext2fs/ext2_bmap.c never calling brelse(), meaning the "struct buf" returned in path.ep_bp from ext4_ext_find_extent() is never released/unlocked, something userret() catc= hes later and panics from. The attached patch always calls brelse(path.ep_bp), fixing reading EXT4 fil= es using mmap(). This affects all versions of FreeBSD. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 00:42:37 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBDB8A63C5B for ; Wed, 6 Jan 2016 00:42:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1EA71C5F for ; Wed, 6 Jan 2016 00:42:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u060gbAc093945 for ; Wed, 6 Jan 2016 00:42:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 178396] [kernel] [patch] Add jid to kernel log when a process has been forced closed Date: Wed, 06 Jan 2016 00:42:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: thomas@gibfest.dk X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 00:42:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D178396 thomas@gibfest.dk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |thomas@gibfest.dk --- Comment #3 from thomas@gibfest.dk --- Created attachment 165129 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165129&action= =3Dedit updated patch against stable/10 r293209 The original attachment in this bug no longer works since it doesn't use the newish jailed() to check if the process is jailed.=20 The attachment I'm adding is a patch against stable/10 base r293209 which f= ixes the jailed detection, and also adds jail hostname to the log entry (when a = jail hostname is available). For this patch to work on HEAD the exit1() call needs to be changed, no oth= er changes needed I think. This patch could be a few lines shorter by only having one log() call, which includes a empty string for nonjailed processes and something like ", jid: = xxx (example.com)" for jailed processes. The current is arguably more readable though. Testing with this patch applied: ------------------------------------------------- [tykling@test /usr/src]$ sudo jail -c path=3D/ command=3D/bin/sh # perl -e 'dump' Abort trap (core dumped) # ^Djail: /bin/sh: failed [tykling@test /usr/src]$ sudo jail -c path=3D/ host.hostname=3Dexample.com command=3D/bin/sh # perl -e 'dump' Abort trap (core dumped) # ^Djail: /bin/sh: failed [tykling@test /usr/src]$ perl -e 'dump' Abort trap [tykling@test /usr/src]$ dmesg | tail -3 pid 847 (perl), uid 0, jid 3: exited on signal 6 (core dumped) pid 853 (perl), uid 0, jid 4 (example.com): exited on signal 6 (core dumped) pid 857 (perl), uid 1001: exited on signal 6 [tykling@test /usr/src]$ ------------------------------------------------- I am not good with C so please feel free to comment on style and other problems. Thanks :) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 05:18:16 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B98DA639AC for ; Wed, 6 Jan 2016 05:18:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C8E51347 for ; Wed, 6 Jan 2016 05:18:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u065IF9n007360 for ; Wed, 6 Jan 2016 05:18:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205932] [panic] Kernel panic when copying from ext2fs partition to UFS partition Date: Wed, 06 Jan 2016 05:18:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: will_brokenbourgh@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 05:18:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205932 --- Comment #1 from Will B --- Testing the same ext4->UFS copy with FreeBSD 10.2 amd64 in VirtualBox also yields the same kernel panic with the same panic type, so it appears to rule out hardware. I also tried adding 'sync' to the mount options in /etc/fstab but this made= no difference...the kernel panic still happens. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 05:22:32 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07871A64A83 for ; Wed, 6 Jan 2016 05:22:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ECD651C33 for ; Wed, 6 Jan 2016 05:22:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u065MUrg019046 for ; Wed, 6 Jan 2016 05:22:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205871] install(1) in endless loop for orphaned symlinks Date: Wed, 06 Jan 2016 05:22:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mjg@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: mjg@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 05:22:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205871 Mateusz Guzik changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |In Progress CC| |mjg@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |mjg@FreeBSD.org --- Comment #1 from Mateusz Guzik --- Bugreport looks legitimate. However, it is unclear what to do here - do an lstat or stat + lstat combo? I'll have to look around. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 05:32:46 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E912A63B0F for ; Wed, 6 Jan 2016 05:32:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F36071FCD for ; Wed, 6 Jan 2016 05:32:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u065WiaO040047 for ; Wed, 6 Jan 2016 05:32:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 178396] [kernel] [patch] Add jid to kernel log when a process has been forced closed Date: Wed, 06 Jan 2016 05:32:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mjg@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 05:32:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D178396 Mateusz Guzik changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg@FreeBSD.org --- Comment #4 from Mateusz Guzik --- The feature is definitely desirable. I would argue the complete solution would just support jail-aware dmesgs and print jail-specific stuff specific stuff with appropriate prefix to the 'ma= in' dmesg. This would require some effort and may be off the table for now. Regardless, it would be good if the new message here got the format one wou= ld expect to see in the more advanced case. There is further issue with increased infoleaks - now not only you learn wh= at segfaulting programs are being used by other jails, you get their (host)nam= es. Either way, the patch is wrong: + if (jailed(p->p_ucred)) { + char buf[MAXHOSTNAMELEN + 3]; + if (strcmp(p->p_ucred->cr_prison->pr_hostna= me, "") !=3D 0) { + sprintf(buf, " (%s)", p->p_ucred->cr_prison->pr_hostname); + } else { + *buf =3D '\0'; + } This should have used getcredhostname, assuming hostname is desirable. I wo= uld argue hostname is not the field you are interested in - after all, jail can change it. Instead, you should obtain jail name. Also, this patch does not handle hierarchical jails. + log(LOG_INFO, + "pid %d (%s), uid %d, jid %d%s: exited = on signal %d%s\n", + p->p_pid, p->p_comm, + td->td_ucred->cr_uid, + p->p_ucred->cr_prison->pr_id, + buf, + sig &~ WCOREFLAG, + sig & WCOREFLAG ? " (core dumped)" : ""= ); + } else { + log(LOG_INFO, + "pid %d (%s), uid %d: exited on signal %d%s\n", + p->p_pid, p->p_comm, + td->td_ucred ? td->td_ucred->cr_uid : -= 1, + sig &~ WCOREFLAG, + sig & WCOREFLAG ? " (core dumped)" : ""= ); + } As a nit, just should have been handled with one log() call. Missing option= al jail bit could be provided with a pointer to "". That said, I would be in favor of messages like this one: [$jailname] $msg That is: pid 857 (perl), uid 1001: exited on signal 6 is turned into: [foo] pid 857 (perl), uid 1001: exited on signal 6 Assuming jail name is 'foo'. For hierarchical jails this would be [foo.bar]. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 09:00:05 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6AD0A629E7 for ; Wed, 6 Jan 2016 09:00:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD27418D1 for ; Wed, 6 Jan 2016 09:00:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06905rA099071 for ; Wed, 6 Jan 2016 09:00:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 178396] [kernel] [patch] Add jid to kernel log when a process has been forced closed Date: Wed, 06 Jan 2016 09:00:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: thomas@gibfest.dk X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 09:00:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D178396 Thomas Steen Rasmussen / Tykling changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #165129|0 |1 is obsolete| | --- Comment #5 from Thomas Steen Rasmussen / Tykling --- Created attachment 165148 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165148&action= =3Dedit updated patch with jailname instead of hostname Thanks for the review! I've updated the patch to: - use the jailname instead of hostname - leave out the jid - show jail info in the beginning of the line Testing now looks like this with the patch applied: ---------------------------------------------------- [tykling@test /usr/src]$ sudo jail -n testname -c path=3D/ command=3D/bin/sh # perl -e 'dump' Abort trap (core dumped) # ^Djail: /bin/sh: failed [tykling@test /usr/src]$ sudo jail -c path=3D/ command=3D/bin/sh # perl -e 'dump' Abort trap (core dumped) # ^Djail: /bin/sh: failed [tykling@test /usr/src]$ perl -e 'dump' Abort trap [tykling@test /usr/src]$ dmesg | tail -3 [testname] pid 823 (perl), uid 0: exited on signal 6 (core dumped) [6] pid 827 (perl), uid 0: exited on signal 6 (core dumped) pid 828 (perl), uid 1001: exited on signal 6 [tykling@test /usr/src]$ ---------------------------------------------------- There doesn't seem to be a getcred* function to get the jail name, so I've = left that code as is, but getting pr_name instead of pr_hostname. Only thing missing is getting the parent jail names (recursively) where relevant. Do you happen to know if there is an existing function to do that= , or do I have to make one and call it recursively, prepending to a . seperated string until pr_parent is null? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 15:12:15 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0738A64BF7 for ; Wed, 6 Jan 2016 15:12:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BCEE012B3 for ; Wed, 6 Jan 2016 15:12:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06FCFZl070433 for ; Wed, 6 Jan 2016 15:12:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 180385] [kqueue] Conflict between EVFILT_PROC NOTE_CHILD and NOTE_EXIT use of data field Date: Wed, 06 Jan 2016 15:12:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 9.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: vangyzen@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: vangyzen@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 15:12:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D180385 Eric van Gyzen changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |vangyzen@freebsd.org CC| |vangyzen@freebsd.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 16:10:00 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0821A6213F for ; Wed, 6 Jan 2016 16:10:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0BF21A9B for ; Wed, 6 Jan 2016 16:10:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06GA0Yp025573 for ; Wed, 6 Jan 2016 16:10:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205938] [ext2fs][patch][panic] EXT4: reading mmaped file causes panic because struct buf leaks Date: Wed, 06 Jan 2016 16:10:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: crash, patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: pfg@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pfg@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 16:10:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205938 Pedro F. Giffuni changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |In Progress Assignee|freebsd-bugs@FreeBSD.org |pfg@FreeBSD.org CC| |gnehzuil@gmail.com, | |pfg@FreeBSD.org --- Comment #1 from Pedro F. Giffuni --- Patch looks good. Add Zheng Liu (author of original code) for review. Take. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 17:03:24 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED9F2A65888 for ; Wed, 6 Jan 2016 17:03:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE07814E4 for ; Wed, 6 Jan 2016 17:03:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06H3OeN057452 for ; Wed, 6 Jan 2016 17:03:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205965] mailwrapper please merge r270675 to stable/10 stable/9 Date: Wed, 06 Jan 2016 17:03:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ohauer@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable9+ mfc-stable10+ X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 17:03:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205965 Bug ID: 205965 Summary: mailwrapper please merge r270675 to stable/10 stable/9 Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: ohauer@FreeBSD.org Flags: mfc-stable9+, mfc-stable10+ After the last postfix pkg-install script rework I looked into stable/10 mailwrapper and hacked a similar solution like this one (but based on lstat) before I found out a working solution already exists on head ;) Commit r270675 has the following log: r270675 | bapt | 2014-08-27 00:20:02 +0200 (Wed, 27 Aug 2014) | 7 lines Allow mailwrapper to use mailer.conf from localbase (respecting LOCALBASE e= nv var if set) Phabric: https://reviews.freebsd.org/D412 Reviewed by: bdrewery MFC after: 2 weeks Relnotes: yes Please merge this to stable, so mailers from PORTS can start using the rewr= ite with 10.3. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 17:07:11 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42E55A6599A for ; Wed, 6 Jan 2016 17:07:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 32D4315F6 for ; Wed, 6 Jan 2016 17:07:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06H7Ai7062263 for ; Wed, 6 Jan 2016 17:07:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205598] [patch] sbin/md5.c param -c, convert to lowercase so E975548260B65C79AF... matches calculated e975548260b65c79af... Date: Wed, 06 Jan 2016 17:07:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ohauer@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable9? mfc-stable10? X-Bugzilla-Changed-Fields: flagtypes.name Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 17:07:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205598 Olli Hauer changed: What |Removed |Added ---------------------------------------------------------------------------- Flags| |mfc-stable9?, mfc-stable10? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 17:07:54 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 056A8A659E4 for ; Wed, 6 Jan 2016 17:07:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E9FB6164D for ; Wed, 6 Jan 2016 17:07:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06H7r33063239 for ; Wed, 6 Jan 2016 17:07:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205965] mailwrapper please merge r270675 to stable/10 stable/9 Date: Wed, 06 Jan 2016 17:07:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ohauer@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable9? mfc-stable10? X-Bugzilla-Changed-Fields: flagtypes.name Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 17:07:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205965 Olli Hauer changed: What |Removed |Added ---------------------------------------------------------------------------- Flags|mfc-stable9+, mfc-stable10+ |mfc-stable9?, mfc-stable10? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 17:44:59 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87E73A645F1 for ; Wed, 6 Jan 2016 17:44:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 784721E45 for ; Wed, 6 Jan 2016 17:44:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06HixW4038054 for ; Wed, 6 Jan 2016 17:44:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205965] mailwrapper please merge r270675 to stable/10 stable/9 Date: Wed, 06 Jan 2016 17:44:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bdrewery@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: bdrewery@FreeBSD.org X-Bugzilla-Flags: mfc-stable9? mfc-stable10? X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 17:44:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205965 Bryan Drewery changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |bdrewery@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 19:12:41 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE222A654C6 for ; Wed, 6 Jan 2016 19:12:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AF8641BA6 for ; Wed, 6 Jan 2016 19:12:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06JCfhI031168 for ; Wed, 6 Jan 2016 19:12:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205974] can't detach devices from zpool Date: Wed, 06 Jan 2016 19:12:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: lifanov@mail.lifanov.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 19:12:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205974 Bug ID: 205974 Summary: can't detach devices from zpool Product: Base System Version: 11.0-CURRENT Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: lifanov@mail.lifanov.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org I migrated a zpool (mirror) from two 1T drives to two 3T drives. It had two (also mirrored) log devices. I detached both mirror devices, one at a time, and then replaced both drive= s, one at a time with autoexpand turned on. Then I re-attached the log devices in the same mirrored configuration. The pool is healthy and seems to be working normally, but I can't detach devices from it anymore. Any time I try to detach any of the four devices, = the system becomes completely unresponsive. The software version is the same. The only configuration difference is that= the new pool has 4k blocks versus 512b and also has a different pool name. After a forced reboot, pool is marked as degraded and I can plug the device back in and wait for a resilver. The device doesn't become detached. I can't produce a vmcore because the system becomes completely unresponsive= but doesn't crash. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 20:02:49 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07F06A65878 for ; Wed, 6 Jan 2016 20:02:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EDC651E44 for ; Wed, 6 Jan 2016 20:02:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06K2mhN069238 for ; Wed, 6 Jan 2016 20:02:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205974] can't detach devices from zpool Date: Wed, 06 Jan 2016 20:02:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: smh@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 20:02:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205974 Steven Hartland changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |smh@FreeBSD.org --- Comment #1 from Steven Hartland --- what is the output from: 1. zpool status 2. uname -a --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 20:04:45 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26D39A65AB1 for ; Wed, 6 Jan 2016 20:04:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1890214F0 for ; Wed, 6 Jan 2016 20:04:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06K4itL072085 for ; Wed, 6 Jan 2016 20:04:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205974] can't detach devices from zpool Date: Wed, 06 Jan 2016 20:04:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: smh@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 20:04:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205974 --- Comment #2 from Steven Hartland --- Also: 3. zdb -C --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 23:53:23 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D4A7A64419 for ; Wed, 6 Jan 2016 23:53:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4E3EA13D4 for ; Wed, 6 Jan 2016 23:53:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06NrNXD075262 for ; Wed, 6 Jan 2016 23:53:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205974] can't detach devices from zpool Date: Wed, 06 Jan 2016 23:53:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-fs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 23:53:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205974 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-fs@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Jan 6 23:54:24 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F2D2A64534 for ; Wed, 6 Jan 2016 23:54:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 100C61551 for ; Wed, 6 Jan 2016 23:54:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u06NsNoo076762 for ; Wed, 6 Jan 2016 23:54:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205930] clang(1) doesn't document all flags and options Date: Wed, 06 Jan 2016 23:54:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 23:54:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205930 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 00:05:53 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 693DCA64B59 for ; Thu, 7 Jan 2016 00:05:53 +0000 (UTC) (envelope-from rotemmusic14@gmail.com) Received: from mail-qk0-x243.google.com (mail-qk0-x243.google.com [IPv6:2607:f8b0:400d:c09::243]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 292371B06 for ; Thu, 7 Jan 2016 00:05:53 +0000 (UTC) (envelope-from rotemmusic14@gmail.com) Received: by mail-qk0-x243.google.com with SMTP id p186so14671163qke.2 for ; Wed, 06 Jan 2016 16:05:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:from:subject:to:content-type:mime-version:reply-to :organization:date; bh=cn+XHJBTckTNurqqJrZWrGwFa9okAwLyU8TQdS6Jls8=; b=TmsueM4lwB4969e+RZUhh8CRH+FFJVGWfA1oAnmNPwwlItUNGFn9VfezJZCdJXRuL1 85TFbZxQSaZewYb3OmJGxHAvq28Sl2R6Wjh9yDhB0odZHN/QY6h/KsqZnwT5k6fuVFS3 X4kIwPpXPZizpCWtoh1QVt3iffcnB/D4Y56YdNg3qaLSTsNVo+O1elw7syu+MyW1WZYn CKBtkhvc6LU7GTC51WerUUKsJ295TGAnrW2NHohjtTpLNqsYPb4Yz9v8SAqt3b1aSz9b elC697nYYV7ctm/qChoBTvjGNtmGwSAM9vIHsbcUSFNhIz9awVIJvz5o5E+kehG2gmRb MJiw== X-Received: by 10.129.87.81 with SMTP id l78mr72990850ywb.149.1452125152346; Wed, 06 Jan 2016 16:05:52 -0800 (PST) Received: from 173-170-234-138.res.bhn.net (173-170-234-138.res.bhn.net. [173.170.234.138]) by smtp.gmail.com with ESMTPSA id p63sm83139576ywf.8.2016.01.06.16.05.50 for (version=TLS1_2 cipher=AES128-GCM-SHA256 bits=128/128); Wed, 06 Jan 2016 16:05:51 -0800 (PST) Message-ID: <568dabdf.42ff0d0a.350cf.ffffe2e1@mx.google.com> From: "Rotem Hecht" Subject: Music composer for film, games and Tv commercials To: "freebsd-bugs" MIME-Version: 1.0 Reply-To: "contact@rotemmusic.com" Organization: Rotem Hecht Date: Wed, 6 Jan 2016 19:06:05 -0500 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 00:05:53 -0000 Hello=20 =20 I hope you well =20 I am Rotem Hecht. I work as a professional music composer and sound d= esigner, I'm based in Florida these days, and working with production companies all over the world. I compose original music for movies, TV commercials, video games, corp= orate videos and more. My portfolio includes projects performed for Microsoft, Hershey's, Kre= -O, Hasbro, Mercedes, Audi, Nickelodeon, Hop! TV Channel and more =20 I=E2=80=99m capable of delivering high quality products at decent rate= s and in short period of time. I would like to offer you my services. Please check my portfolio on my= website www.rotemmusic.com =20 Thank You for your time. =20 Best Regards , =20 Rotem Hecht Mob:(+1) 323-557-0733 rotemhecht@gmail.com Skype: rhecht1282=20 =20 Unsubscribe From owner-freebsd-bugs@freebsd.org Thu Jan 7 04:06:08 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9AFD6A65A46 for ; Thu, 7 Jan 2016 04:06:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8BB931226 for ; Thu, 7 Jan 2016 04:06:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07466Rj072563 for ; Thu, 7 Jan 2016 04:06:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 203349] [META] FreeBSD Foundation sponsored project dependencies for FreeBSD 11.0 Date: Thu, 07 Jan 2016 04:06:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 04:06:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D203349 Bug 203349 depends on bug 202455, which changed state. Bug 202455 Summary: [EFI] boot/loader.efi: ExitBootServices() returned 0x80= 00000000000002 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D202455 What |Removed |Added ---------------------------------------------------------------------------- Status|In Progress |Closed Resolution|--- |FIXED --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 04:06:08 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A272A65A44 for ; Thu, 7 Jan 2016 04:06:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AE9E1225 for ; Thu, 7 Jan 2016 04:06:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07466Rh072563 for ; Thu, 7 Jan 2016 04:06:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196289] Kernel hangs when booting via UEFI Date: Thu, 07 Jan 2016 04:06:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: uefi X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 04:06:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D196289 Bug 196289 depends on bug 202455, which changed state. Bug 202455 Summary: [EFI] boot/loader.efi: ExitBootServices() returned 0x80= 00000000000002 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D202455 What |Removed |Added ---------------------------------------------------------------------------- Status|In Progress |Closed Resolution|--- |FIXED --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 06:45:30 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A0E7A66FE3 for ; Thu, 7 Jan 2016 06:45:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53318160B for ; Thu, 7 Jan 2016 06:45:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u076jTp8097628 for ; Thu, 7 Jan 2016 06:45:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Thu, 07 Jan 2016 06:45:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jhkingsr@gmail.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 06:45:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 --- Comment #19 from Joseph King --- (In reply to John Baldwin from comment #18) Using FreeBSD netsys9.isolan.itsmine.com 9.3-RELEASE-p30 FreeBSD 9.3-RELEASE-p30 #0: Mon Nov 2 10:11:50 UTC 2015=20=20=20=20 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 as t= he building OS on the hardware in question. Using method #1 svn: When I do the make kernel-toolchain the following errors are spit out: root@netsys9:/ufs/pr_198062 # make kernel-toolchain Unknown modifier '[' "/ufs/pr_198062/Makefile.inc1", line 1105: Malformed conditional (${BUILDKERNELS:[) Unknown modifier '[' "/ufs/pr_198062/Makefile.inc1", line 1114: if-less endif Unknown modifier '[' "/ufs/pr_198062/Makefile.inc1", line 1134: Malformed conditional (${BUILDKERNELS:[) Unknown modifier '[' "/ufs/pr_198062/Makefile.inc1", line 1151: if-less endif Unknown modifier '[' "/ufs/pr_198062/Makefile.inc1", line 1169: Malformed conditional (${BUILDKERNELS:[) Unknown modifier '[' "/ufs/pr_198062/Makefile.inc1", line 1176: if-less endif make: fatal errors encountered -- cannot continue *** [kernel-toolchain] Error code 1 Stop in /ufs/pr_198062. Using method #2 git: the kernel-toolchain makes fine but when I do the buildkernel the following errors are spit out at me after a few minutes... =3D=3D=3D> aic7xxx (depend) =3D=3D=3D> aic7xxx/ahc (depend) @ -> /ufs/pr_198062-git/freebsd/sys machine -> /ufs/pr_198062-git/freebsd/sys/amd64/include x86 -> /ufs/pr_198062-git/freebsd/sys/x86/include Error: aic7xxx_seq.h is missing. Run 'make ahcfirmware' Error: aic7xxx_reg.h is missing. Run 'make ahcfirmware' Error: aic7xxx_reg_print.c is missing. Run 'make ahcfirmware' ln -sf /usr/obj/ufs/pr_198062-git/freebsd/sys/GENERIC/opt_scsi.h opt_scsi.h ln -sf /usr/obj/ufs/pr_198062-git/freebsd/sys/GENERIC/opt_aic7xxx.h opt_aic7xxx.h ln -sf /usr/obj/ufs/pr_198062-git/freebsd/sys/GENERIC/opt_cam.h opt_cam.h awk -f @/tools/makeobjops.awk @/kern/device_if.m -h awk -f @/tools/makeobjops.awk @/kern/bus_if.m -h awk -f @/tools/makeobjops.awk @/dev/pci/pci_if.m -h rm -f .depend CC=3D'cc ' mkdep -f .depend -a -nostdinc -DAHC_REG_PRETTY_PRINT=3D1 -D_KE= RNEL -DKLD_MODULE -DHAVE_KERNEL_OPTION_HEADERS -I. -I@ -I@/contrib/altq -I/usr/obj/ufs/pr_198062-git/freebsd/sys/GENERIC -std=3Diso9899:1999=20=20 aic7xxx_reg_print.c /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx/ahc/../../../dev/aic7xxx/aic= 7xxx.c /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx/ahc/../../../dev/aic7xxx/aic= 7xxx_93cx6.c /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx/ahc/../../../dev/aic7xxx/aic= 7xxx_osm.c /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx/ahc/../../../dev/aic7xxx/aic= 7770.c cc: error: no such file or directory: 'aic7xxx_reg_print.c' mkdep: compile failed *** [.depend] Error code 1 Stop in /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx/ahc. *** [depend_subdir_ahc] Error code 1 Stop in /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx. *** [depend_subdir_aic7xxx] Error code 1 Stop in /ufs/pr_198062-git/freebsd/sys/modules. *** [modules-depend] Error code 1 Stop in /usr/obj/ufs/pr_198062-git/freebsd/sys/GENERIC. *** [buildkernel] Error code 1 Stop in /ufs/pr_198062-git/freebsd. *** [buildkernel] Error code 1 Stop in /ufs/pr_198062-git/freebsd. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 07:18:35 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8F82AA65984 for ; Thu, 7 Jan 2016 07:18:35 +0000 (UTC) (envelope-from mail@manfred-hermann.de) Received: from mout.kundenserver.de (mout.kundenserver.de [217.72.192.75]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.kundenserver.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F1FC5121F for ; Thu, 7 Jan 2016 07:18:34 +0000 (UTC) (envelope-from mail@manfred-hermann.de) Received: from verleihnix.itconsult-hermann.de ([78.43.187.112]) by mrelayeu.kundenserver.de (mreue101) with ESMTPSA (Nemesis) id 0LrsLe-1a4gSy01ao-013bjB for ; Thu, 07 Jan 2016 08:18:26 +0100 Date: Thu, 7 Jan 2016 08:18:22 +0100 (CET) From: mail@manfred-hermann.de X-X-Sender: manfred@verleihnix.itconsult-hermann.de To: freebsd-bugs@FreeBSD.org Subject: Atheros AR8172 PCIe Fast Ethernet Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Provags-ID: V03:K0:7IsBBs3stCYojrygsVOxunQBJe+wYwOsxuRlfk2E2ZjN955FaX8 DtkvK1qVlSwgP7JPRQfFg8STp39qc+NcKg5EFoQxsxpdYcfPFu8oru7ra9oudFAkU6IFOzR 2vhOyxYE1IvVr5W6Jg8sxdykuLJ1aq0TsCa4YJCiFOfrSjaFMRQLP9qMIeN6lG2vuWLaeWA QzliaDQampCb2FnleQG/w== X-UI-Out-Filterresults: notjunk:1;V01:K0:jBmHsow7fVA=:jUYS7WXb41bF7aNk8Yk3tq EV/A7vCQZPnEWrkAQxHQ/Ryr/cmgqi29KLam7afdg7GfF/7upW0ul0psGsjQmu7onEoJT5RE0 Q91SvjwFb9GXfWq/E/xdtPfoYTcppDFNBJluqvjmnnn+5fR2lAQi7q6BplEOB4p7MDKduPPmK qLvPfuMDv1pvr7iQdqaw6dLmK4c6N5NrOyYuWUuIdsmBQ3t8cgehqQd52MSgFjZQY/cPpFLUe iedJeqQQm01nBqoVVP6U1ri6TLJcBPVZVKWVy4Wd6r3wozxt88rN7un7w91BITbe0VnmnP7nX UhQFwjhtNnhEDKFz135czjq6BTEEJOQe6KJCgCGuX7hp/XZjpWQ0AULIMGlHQMfNsdpYDpgI2 n8Cy3zM0CDECUt5xT0HmwXstA1O78Sz0p+L2tjBjMNVXX7gpfU2bwlETLvvEyFc/lMRL8cKDG ThxITRtPKoPX2nHh3oPxNgeELqAi9iCuRbf8lM9m+XHwFYLuuskp97ylIOeJIbQ2adsbkYLq1 dUJkvg/gA97YU078A0VLQMCc6dkLamlv6n9rHSOWN/OfgSzjcxX4tOLIuTGV1kCpVtuig5wLC xSJDhyiazUEPmgKcfWfAn+SErBhZZp1dLImg7U44MmkZ825g4P4y2KRem78RfVyH6DeI5HtQ+ qzsyB2EBd67LOWbHtincOugjNTsYHp5qk9dOlxx4Fp5h9URcGz2MO2BXO+Nd8W+tM7vWto9Y1 XIMUgJN2procovSr X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 07:18:35 -0000 Hi, I'm trying to install FreeBSD 10.2 (generic kernel) on a Toshiba Satellite Pro C50D-A-145. If I'm trying to establish a connection to another host, i.e. via sftp, the following message more and more appears: alc0: DMA write error! -- resetting I cannot transfer any files with sftp, the password prompt is still remaining. The output of dmesg looks like this: alc0: port 0x2000-0x207f mem 0xf0800000-0xf083ffff at device 0.0 on pci2 alc0: 11776 Tx FIFO, 12032 Rx FIFO alc0: Using 1 MSIX message(s) miibus0: on alc0 atphy0: PHY 0 on miibus0 atphy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow alc0: Using defaults for TSO: 65518/35/2048 and then the correct Ethernet address. The Toshiba is a dual boot machine, so I have Xubuntu (:-((( ) installed in addition. With this OS the Atheros AR8172 PCIe Fast Ethernet works fine! I don't understand the problem: Is it a bug? What can I do? Thanks in advance Manfred -- Manfred Hermann Bahnhofstr. 23 D-75210 Keltern eMail: manfred.hermann@gmx.de From owner-freebsd-bugs@freebsd.org Thu Jan 7 08:03:13 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72134A668F2 for ; Thu, 7 Jan 2016 08:03:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 634BB186A for ; Thu, 7 Jan 2016 08:03:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0783DEf030071 for ; Thu, 7 Jan 2016 08:03:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205997] release.conf isn't very flexible Date: Thu, 07 Jan 2016 08:03:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 08:03:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205997 Bug ID: 205997 Summary: release.conf isn't very flexible Product: Base System Version: 10.2-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: ngie@FreeBSD.org I was trying to produce a release.conf for a PR, but unfortunately the synt= ax for git isn't really flexible, i.e. I can't specify a specific branch other than master for a project. It would be really helpful if there was a mechanism for specifying a specif= ic branch. Also, it seems that one needs to specify git or svn... one can't mix or mat= ch git and svn. Being able to customize either or would be nice because then I could use a git src tree and a FreeBSD svn ports/docs tree. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 08:03:46 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 034E1A66962 for ; Thu, 7 Jan 2016 08:03:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E8C8118D2 for ; Thu, 7 Jan 2016 08:03:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0783jcL030827 for ; Thu, 7 Jan 2016 08:03:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205997] release.conf/release.sh aren't very flexible with VCSes Date: Thu, 07 Jan 2016 08:03:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 08:03:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205997 NGie Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gjb@FreeBSD.org Summary|release.conf isn't very |release.conf/release.sh |flexible |aren't very flexible with | |VCSes --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 08:10:36 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9FCE6A66B53 for ; Thu, 7 Jan 2016 08:10:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77C4A1D00 for ; Thu, 7 Jan 2016 08:10:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u078Aalf042312 for ; Thu, 7 Jan 2016 08:10:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205998] release/release.sh fails if packages are already installed in chroot Date: Thu, 07 Jan 2016 08:10:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 08:10:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205998 Bug ID: 205998 Summary: release/release.sh fails if packages are already installed in chroot Product: Base System Version: 10.2-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: ngie@FreeBSD.org I used release/release.sh in a chroot more than once, and unfortunately it failed when installing packages in the chroot, until I replaced the followi= ng `install` lines with `reinstall` (which effectively does -DFORCE_PKG_REGIST= ER). It might be a good idea to use similar logic with chroots that are used more than once.. $ svn diff release/=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 Index: release/release.sh =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- release/release.sh (revision 293115) +++ release/release.sh (working copy) @@ -275,7 +275,7 @@ PBUILD_FLAGS=3D"${PBUILD_FLAGS} OSREL=3D${REVISION}" chroot ${CHROOTDIR} make -C /usr/ports/textproc/doc= proj \ ${PBUILD_FLAGS} OPTIONS_UNSET=3D"FOP IGOR" \ - install clean distclean + reinstall clean distclean fi fi @@ -282,7 +282,7 @@ if [ ! -z "${EMBEDDEDPORTS}" ]; then for _PORT in ${EMBEDDEDPORTS}; do eval chroot ${CHROOTDIR} make -C /usr/ports/${_PORT= } \ - BATCH=3D1 FORCE_PKG_REGISTER=3D1 install cl= ean distclean + BATCH=3D1 FORCE_PKG_REGISTER=3D1 reinstall = clean distclean done fi --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 08:15:42 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE7DBA66D18 for ; Thu, 7 Jan 2016 08:15:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AEF351FB8 for ; Thu, 7 Jan 2016 08:15:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u078Fg9E056202 for ; Thu, 7 Jan 2016 08:15:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 204651] ls --libxo html -l crashes in xo_format_string_direct() after r285734 Date: Thu, 07 Jan 2016 08:15:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jbeich@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 08:15:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D204651 Jan Beich changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|bapt@FreeBSD.org |freebsd-bugs@FreeBSD.org CC| |bapt@FreeBSD.org Status|In Progress |Open --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 11:36:35 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 08A11A66EF9 for ; Thu, 7 Jan 2016 11:36:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED7D91112 for ; Thu, 7 Jan 2016 11:36:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07BaYQR094316 for ; Thu, 7 Jan 2016 11:36:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206001] tcp fastpath, using ancient struct tcpcb field Date: Thu, 07 Jan 2016 11:36:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: devnexen@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 11:36:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206001 Bug ID: 206001 Summary: tcp fastpath, using ancient struct tcpcb field Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: devnexen@gmail.com Created attachment 165207 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165207&action= =3Dedit patch proposal Hi. 7e3646578b54b2efa2501b7025e79f74ae12ea0aESC commit removed t_maxopd field f= or SMSS matter, in favor of using tcp_maxseg function. tcp_stacks/fastpath.c still somehow used this field, hence the patch propos= es a little change to fix it. Regards. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 11:58:13 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56A3AA66615 for ; Thu, 7 Jan 2016 11:58:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 476E71E36 for ; Thu, 7 Jan 2016 11:58:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07BwDHd035825 for ; Thu, 7 Jan 2016 11:58:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206001] tcp fastpath, using ancient struct tcpcb field Date: Thu, 07 Jan 2016 11:58:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: fidaj@ukr.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 11:58:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206001 Ivan Klymenko changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fidaj@ukr.net --- Comment #1 from Ivan Klymenko --- https://svnweb.freebsd.org/base?view=3Drevision&revision=3D293313 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 12:04:16 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C0F1A64006 for ; Thu, 7 Jan 2016 12:04:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5CEBE1584 for ; Thu, 7 Jan 2016 12:04:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07C4GZN003560 for ; Thu, 7 Jan 2016 12:04:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206001] tcp fastpath, using ancient struct tcpcb field Date: Thu, 07 Jan 2016 12:04:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: devnexen@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 12:04:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206001 --- Comment #2 from devnexen@gmail.com --- My bad I use git repository sorry. The change just appears now. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 12:15:29 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2EE05A64430 for ; Thu, 7 Jan 2016 12:15:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 205D81C20 for ; Thu, 7 Jan 2016 12:15:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07CFSiW045598 for ; Thu, 7 Jan 2016 12:15:28 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206003] pkg crash Date: Thu, 07 Jan 2016 12:15:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: melanhit@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 12:15:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206003 Bug ID: 206003 Summary: pkg crash Product: Base System Version: 10.2-STABLE Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: melanhit@gmail.com pkg crash if env variable HTTP_USER_AGENT is empty --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 12:50:26 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 910E6A65674 for ; Thu, 7 Jan 2016 12:50:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81745196A for ; Thu, 7 Jan 2016 12:50:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07CoPCd072404 for ; Thu, 7 Jan 2016 12:50:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 185034] audit(8): audit -s do not sync audit_user Date: Thu, 07 Jan 2016 12:50:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: brueffer@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: Works As Intended X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: brueffer@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution cc bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 12:50:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D185034 Christian Brueffer changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Works As Intended CC| |brueffer@FreeBSD.org Status|In Progress |Closed Assignee|freebsd-bugs@FreeBSD.org |brueffer@FreeBSD.org --- Comment #1 from Christian Brueffer --- Hi Radim, the information which flags to audit for a user are not managed by auditd, hence loading the file during "audit -s" would be useless. The audit_user file is only read when a user logs in and consequently a new audit context for that login session is created (e.g., see usr.bin/login/login_audit.c). In that case the user's entry is read from audit_user, and combined with the "always audit" flags specified in the fla= gs parameter in /etc/audit_control into the user's audit mask. This mask is p= art of the audit context inherited by every process forked from that initial lo= gin process. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 13:01:51 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14FBBA65BC7 for ; Thu, 7 Jan 2016 13:01:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 058FD1004 for ; Thu, 7 Jan 2016 13:01:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07D1obc024655 for ; Thu, 7 Jan 2016 13:01:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Thu, 07 Jan 2016 13:01:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mav@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 13:01:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 --- Comment #7 from Alexander Motin --- (In reply to John Baldwin from comment #4) It is a good guess. As I see, this system uses custom kernel config, so I would recommend to make sure that this config included `device ahci` line. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 16:04:09 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C48D5A67328 for ; Thu, 7 Jan 2016 16:04:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B5B7F15CC for ; Thu, 7 Jan 2016 16:04:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07G49TH023555 for ; Thu, 7 Jan 2016 16:04:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206005] KDB should give a more helpful error message for encrypted swap Date: Thu, 07 Jan 2016 16:04:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: tony@git-pull.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 16:04:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206005 Bug ID: 206005 Summary: KDB should give a more helpful error message for encrypted swap Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: tony@git-pull.com On two systems running 11-CURRENT, I configured encrypted swap (both manual= ly through shell and through the installer front end). Both dumps I switched = on the setting for dumping to dev, which added: dumpdev=3D"AUTO" to /etc/rc.conf as expected. However, when panics occur and dropped into KDB, 'dump' would not work: Cannot dump: no dump device specified I ended up going around in circles for a while, until eventually I was explained it worked by dumping to swap, and I volunteered that my swap was = an eli drive. So since then, I reconfigured my system to use a swap drive without eli and= now dump works. I think KDB should give a more helpful message for encrypted swaps. KDB doe= sn't support dumping to encrypted swap. This confused me for quite a while, since there isn't much in handbooks / forums / lists about this shortcoming. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 16:04:29 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 78481A67358 for ; Thu, 7 Jan 2016 16:04:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 690201624 for ; Thu, 7 Jan 2016 16:04:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07G4T12023999 for ; Thu, 7 Jan 2016 16:04:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 202316] Add IANA vxlan port to /etc/services Date: Thu, 07 Jan 2016 16:04:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: easy, patch, patch-ready X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: olgeni@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 16:04:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D202316 Jimmy Olgeni changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |easy, patch-ready --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 17:31:03 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B37EBA657A3 for ; Thu, 7 Jan 2016 17:31:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A4C4F1AFD for ; Thu, 7 Jan 2016 17:31:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07HV35c026544 for ; Thu, 7 Jan 2016 17:31:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206007] Clean ZFS on root in stripe configuration in MBR format does not boot after install Date: Thu, 07 Jan 2016 17:31:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: mqudsi@neosmart.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 17:31:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206007 Bug ID: 206007 Summary: Clean ZFS on root in stripe configuration in MBR format does not boot after install Product: Base System Version: 10.2-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: mqudsi@neosmart.net Problem: After installing FREEBSD-10.2-RELEASE with guided ZFS-on-root autoconfigura= tion in MBR mode, the system does not boot after setup. The bootloader is never executed, and the system hangs at a static (unblinking) _ after POST. Expected results: System boots normally. Reproduction: A clean install of 10.2-RELEASE, choosing guided ZFS-on-root during setup, selecting (the only) two disks for the stripe, and changing the mode away f= rom GPT to MBR. Testing environment: A new virtual machine with two SAS disks selected during setup for the root vdev. 10.2-RELEASE amd64, booted from ISO image (disc1.iso). Workaround: If BIOS does not have a GPT disk bug, the exact, same configuration but keep the GPT option set will boot. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 17:37:49 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96B6CA65AE2 for ; Thu, 7 Jan 2016 17:37:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 87C2F1EA1 for ; Thu, 7 Jan 2016 17:37:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07HbnY9040000 for ; Thu, 7 Jan 2016 17:37:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206008] Cannot detect hot-swapped SATA drives on camcontrol rescan/reset Date: Thu, 07 Jan 2016 17:37:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: kburetta@benaroyaresearch.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 17:37:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206008 Bug ID: 206008 Summary: Cannot detect hot-swapped SATA drives on camcontrol rescan/reset Product: Base System Version: 10.1-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Many People Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: kburetta@benaroyaresearch.org CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Using this hardware: =E2=80=A2 Dell PowerEdge R530 o Intel Dual Port 82599EB 10-Gigabit SFP+ Network o Intel Quad Port I350 Gigabit Network Connection o LSI 9201-16e SAS HBA (6 Gbit/s) o 8x 16GB DDR4 RAM =E2=80=A2 SuperMicro SC847E16-RJBOD1 disk shelf o Supermicro PWS-1K41P-1R 1400W power supply =E2=80=A2 SFF-8088 to SFF-8088 external SAS cables =E2=80=A2 HDDs o Seagate ST6000NM024 6TB SATA enterprise HDD =E2=80=A2 SSDs o Samsung 850 Pro MZ-7KE1T0BW 1TB SATA SSD When I have a drive failure and replace said drive (hotswap). The device is= not detected in FreeBSD while the system is hot. Camcontrol rescan/reset all do= es not result in drive detection of the newly attached drive. However, restarting the server does cause the drive to be detected after bo= ot. This is what /var/log/messages looks like at the time of drive failure:: Jan 4 22:15:40 sea-zed-01 kernel: (da75:mps0:0:99:0): WRITE(16). CDB: 8a 0= 0 00 00 00 01 5c 72 9e 08 00 00 00 10 00 00 length 8192 SMID 628 command timeout= cm 0xfffffe0000b8f840 ccb 0xfffff8005d759800 Jan 4 22:15:44 sea-zed-01 kernel: (noperiph:mps0:0:4294967295:0): SMID 1 Aborting command 0xfffffe0000b8f840 Jan 4 22:15:44 sea-zed-01 kernel: (da75:mps0:0:99:0): WRITE(16). CDB: 8a 0= 0 00 00 00 01 5c 72 9e 08 00 00 00 10 00 00 Jan 4 22:15:44 sea-zed-01 kernel: mps0: (da75:mps0:0:99:0): CAM status: Command timeout Jan 4 22:15:44 sea-zed-01 kernel: IOCStatus =3D 0x4b while resetting devic= e 0x20 Jan 4 22:15:44 sea-zed-01 kernel: (da75:mps0:0:99:0): Retrying command Jan 4 22:15:44 sea-zed-01 kernel: da75 at mps0 bus 0 scbus0 target 99 lun 0 Jan 4 22:15:44 sea-zed-01 kernel: da75: s/n=20= =20=20=20=20=20=20 Z4D1AEAN detached Jan 4 22:15:44 sea-zed-01 kernel: GEOM_ELI: Crypto WRITE request failed (error=3D6). gpt/b15.eli[WRITE(offset=3D2993143136256, length=3D8192)] Jan 4 22:15:44 sea-zed-01 kernel: GEOM_ELI: g_eli_read_done() failed gpt/b15.eli[READ(offset=3D270336, length=3D8192)] Jan 4 22:15:44 sea-zed-01 kernel: GEOM_ELI: g_eli_read_done() failed gpt/b15.eli[READ(offset=3D5999999328256, length=3D8192)] Jan 4 22:15:44 sea-zed-01 kernel: GEOM_ELI: g_eli_read_done() failed gpt/b15.eli[READ(offset=3D5999999590400, length=3D8192)] Jan 4 22:15:44 sea-zed-01 kernel: GEOM_ELI: Crypto WRITE request failed (error=3D6). gpt/b15.eli[WRITE(offset=3D2993143144448, length=3D131072)] Jan 4 22:15:44 sea-zed-01 kernel: GEOM_ELI: Device gpt/b15.eli destroyed. Jan 4 22:15:44 sea-zed-01 kernel: GEOM_ELI: Detached gpt/b15.eli on last close. Jan 4 22:15:44 sea-zed-01 kernel: (da75:mps0:0:99:0): Periph destroyed Jan 5 07:17:12 sea-zed-01 [sssd[krb5_child[66189]]]: Preauthentication fai= led Jan 5 07:17:12 sea-zed-01 [sssd[krb5_child[66189]]]: Preauthentication fai= led Jan 5 07:17:12 sea-zed-01 sshd[66188]: in openpam_check_error_code(): pam_sm_authenticate(): unexpected return value 16 Jan 5 07:17:12 sea-zed-01 sshd[66185]: error: PAM: authentication error for kburetta from helpdesk0941.brivmrc.org /var/log/messages shows no new entries at the time of drive insertion. To reiterate, restarting the machine will detect the drive. But rescanning = or resetting the bus does not. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 17:47:03 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 063DBA66021 for ; Thu, 7 Jan 2016 17:47:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EB07D1861 for ; Thu, 7 Jan 2016 17:47:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07Hl2B9058308 for ; Thu, 7 Jan 2016 17:47:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194766] [drm:pid12:i915_hangcheck_elapsed] [drm:pid12:i915_hangcheck_hung] *ERROR* Hangcheck timer elapsed... GPU hung Date: Thu, 07 Jan 2016 17:47:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: fidaj@ukr.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 17:47:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D194766 --- Comment #38 from Ivan Klymenko --- (In reply to rhs from comment #37) At first glance it seems to help get rid of the problem, but ... I got in the moments of X full lock system. Perhaps in these moments just happen GPU hung without the option drm.i915.semaphores =3D "1" --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 18:15:26 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 668FDA66A8C for ; Thu, 7 Jan 2016 18:15:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5801E1542 for ; Thu, 7 Jan 2016 18:15:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07IFQ95089628 for ; Thu, 7 Jan 2016 18:15:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196289] Kernel hangs when booting via UEFI Date: Thu, 07 Jan 2016 18:15:26 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: uefi X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 18:15:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D196289 --- Comment #9 from Ed Maste --- I've merged the "0x8000000000000002" fix in r293304. Unfortunately I just missed a snapshot build, so check for a new snapshot to test around Jan 14t= h or so. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 19:21:01 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4620A661D5 for ; Thu, 7 Jan 2016 19:21:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C546C1FA7 for ; Thu, 7 Jan 2016 19:21:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07JL0wr049566 for ; Thu, 7 Jan 2016 19:21:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Thu, 07 Jan 2016 19:21:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jhb@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 19:21:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 John Baldwin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bdrewery@FreeBSD.org, | |sjg@FreeBSD.org --- Comment #20 from John Baldwin --- (In reply to Joseph King from comment #19) Hmm, in my checkout of the git tree, I have a 'sys/dev/aic7xxx/aic7xxx_reg_print.c' file. There should be one in your checkout as well that make should be finding. FreeBSD 10 does use a differ= ent make than FreeBSD 9. You probably do not need the ahc driver (it's for old pre-SAS pre-PCI-e SCSI HBAs), so one option is to just remove 'ahc' from sys/modules/Makefile in your checkout. I've also added two other folks on the PR who work on our build system who might be able to diagnose why 9.3 can't build a stable/10 kernel (it's supp= osed to work fine). --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 19:23:35 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7250DA66383 for ; Thu, 7 Jan 2016 19:23:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 62986128F for ; Thu, 7 Jan 2016 19:23:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07JNZ7n058059 for ; Thu, 7 Jan 2016 19:23:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Thu, 07 Jan 2016 19:23:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bdrewery@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 19:23:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 --- Comment #21 from Bryan Drewery --- (In reply to Joseph King from comment #19) > (In reply to John Baldwin from comment #18) >=20 > Using FreeBSD netsys9.isolan.itsmine.com 9.3-RELEASE-p30 FreeBSD > 9.3-RELEASE-p30 #0: Mon Nov 2 10:11:50 UTC 2015=20=20=20=20 > root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 as > the building OS on the hardware in question. >=20 > Using method #1 svn: >=20 > When I do the make kernel-toolchain the following errors are spit out: >=20 > root@netsys9:/ufs/pr_198062 # make kernel-toolchain > Unknown modifier '[' >=20 > "/ufs/pr_198062/Makefile.inc1", line 1105: Malformed conditional > (${BUILDKERNELS:[) > Unknown modifier '[' >=20 > "/ufs/pr_198062/Makefile.inc1", line 1114: if-less endif > Unknown modifier '[' >=20 > "/ufs/pr_198062/Makefile.inc1", line 1134: Malformed conditional > (${BUILDKERNELS:[) > Unknown modifier '[' >=20 > "/ufs/pr_198062/Makefile.inc1", line 1151: if-less endif > Unknown modifier '[' >=20 > "/ufs/pr_198062/Makefile.inc1", line 1169: Malformed conditional > (${BUILDKERNELS:[) > Unknown modifier '[' >=20 > "/ufs/pr_198062/Makefile.inc1", line 1176: if-less endif > make: fatal errors encountered -- cannot continue > *** [kernel-toolchain] Error code 1 >=20 > Stop in /ufs/pr_198062. >=20 > Using method #2 git: the kernel-toolchain makes fine but when I do the > buildkernel the following errors are spit out at me after a few minutes... >=20 > =3D=3D=3D> aic7xxx (depend) > =3D=3D=3D> aic7xxx/ahc (depend) > @ -> /ufs/pr_198062-git/freebsd/sys > machine -> /ufs/pr_198062-git/freebsd/sys/amd64/include > x86 -> /ufs/pr_198062-git/freebsd/sys/x86/include > Error: aic7xxx_seq.h is missing. Run 'make ahcfirmware' > Error: aic7xxx_reg.h is missing. Run 'make ahcfirmware' > Error: aic7xxx_reg_print.c is missing. Run 'make ahcfirmware' > ln -sf /usr/obj/ufs/pr_198062-git/freebsd/sys/GENERIC/opt_scsi.h opt_scsi= .h > ln -sf /usr/obj/ufs/pr_198062-git/freebsd/sys/GENERIC/opt_aic7xxx.h > opt_aic7xxx.h > ln -sf /usr/obj/ufs/pr_198062-git/freebsd/sys/GENERIC/opt_cam.h opt_cam.h > awk -f @/tools/makeobjops.awk @/kern/device_if.m -h > awk -f @/tools/makeobjops.awk @/kern/bus_if.m -h > awk -f @/tools/makeobjops.awk @/dev/pci/pci_if.m -h > rm -f .depend > CC=3D'cc ' mkdep -f .depend -a -nostdinc -DAHC_REG_PRETTY_PRINT=3D1 -D_= KERNEL > -DKLD_MODULE -DHAVE_KERNEL_OPTION_HEADERS -I. -I@ -I@/contrib/altq > -I/usr/obj/ufs/pr_198062-git/freebsd/sys/GENERIC -std=3Diso9899:1999=20=20 > aic7xxx_reg_print.c > /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx/ahc/../../../dev/aic7xxx/ > aic7xxx.c > /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx/ahc/../../../dev/aic7xxx/ > aic7xxx_93cx6.c > /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx/ahc/../../../dev/aic7xxx/ > aic7xxx_osm.c > /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx/ahc/../../../dev/aic7xxx/ > aic7770.c > cc: error: no such file or directory: 'aic7xxx_reg_print.c' > mkdep: compile failed > *** [.depend] Error code 1 >=20 > Stop in /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx/ahc. > *** [depend_subdir_ahc] Error code 1 >=20 > Stop in /ufs/pr_198062-git/freebsd/sys/modules/aic7xxx. > *** [depend_subdir_aic7xxx] Error code 1 >=20 > Stop in /ufs/pr_198062-git/freebsd/sys/modules. > *** [modules-depend] Error code 1 >=20 > Stop in /usr/obj/ufs/pr_198062-git/freebsd/sys/GENERIC. > *** [buildkernel] Error code 1 >=20 > Stop in /ufs/pr_198062-git/freebsd. > *** [buildkernel] Error code 1 >=20 > Stop in /ufs/pr_198062-git/freebsd. ~/svn/stable/10 # grep ':\[' Makefile.inc1 .if ${BUILDKERNELS:[#]} > 1 .for _kernel in ${BUILDKERNELS:[2..-1]} .if ${BUILDKERNELS:[#]} > 1 .for _kernel in ${BUILDKERNELS:[2..-1]} .if ${BUILDKERNELS:[#]} > 1 .for _kernel in ${BUILDKERNELS:[2..-1]} .if ${BUILDKERNELS:[#]} > 1 .for _kernel in ${BUILDKERNELS:[2..-1]} This is bmake-specific and is not safe for stable/10. I will find a way to = fix it / revert the changes made for it. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 19:24:49 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 833E1A66433 for ; Thu, 7 Jan 2016 19:24:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 740821354 for ; Thu, 7 Jan 2016 19:24:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07JOnCs060032 for ; Thu, 7 Jan 2016 19:24:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Thu, 07 Jan 2016 19:24:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bdrewery@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 19:24:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 --- Comment #22 from Bryan Drewery --- ... Actually it is supposed to bootstrap bmake and use that so it should ha= ve been fine. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 19:27:37 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9390A664B6 for ; Thu, 7 Jan 2016 19:27:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9A4CC1439 for ; Thu, 7 Jan 2016 19:27:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07JRbPd063847 for ; Thu, 7 Jan 2016 19:27:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206012] jail(8): Cannot assign link-local IPv6 address to a jail Date: Thu, 07 Jan 2016 19:27:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: feld@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 19:27:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206012 Bug ID: 206012 Summary: jail(8): Cannot assign link-local IPv6 address to a jail Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: feld@FreeBSD.org When attempting to assign a link-local IP to a jail one of the following th= ings happens: * it either does not work at all and the jail refuses to start for some rea= son claiming the jail does not exist * Jail starts, but ifconfig in the jail shows there is no IP on the interfa= ces. Trying to bind to it with nc(1) to test fails. * Adding the index to the IPv6 address causes the jail to reject the addres= s as invalid and not start: jail: v6test: ip6.addr: not an IPv6 address: fe80::216:3eff:fe72:eadd%xn0 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 19:29:56 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B943EA665AD for ; Thu, 7 Jan 2016 19:29:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA13115CE for ; Thu, 7 Jan 2016 19:29:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07JTtNY066832 for ; Thu, 7 Jan 2016 19:29:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Thu, 07 Jan 2016 19:29:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bdrewery@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 19:29:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 --- Comment #23 from Bryan Drewery --- Try 'make upgrade_checks' and then 'make kernel-toolchain'. Other targets do this automatically but 'kernel-toolchain' does not. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 19:34:21 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF1E2A6680E for ; Thu, 7 Jan 2016 19:34:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CFC5A1B0A for ; Thu, 7 Jan 2016 19:34:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07JYLAo078805 for ; Thu, 7 Jan 2016 19:34:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Thu, 07 Jan 2016 19:34:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bdrewery@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 19:34:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 --- Comment #24 from Bryan Drewery --- (In reply to Bryan Drewery from comment #23) > Try 'make upgrade_checks' and then 'make kernel-toolchain'. Other targets= do > this automatically but 'kernel-toolchain' does not. Sigh, I read it wrong. You only need 'make -D ALWAYS_CHECK_MAKE kernel-toolchain'. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 19:37:56 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD041A66A2C for ; Thu, 7 Jan 2016 19:37:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DD01117C for ; Thu, 7 Jan 2016 19:37:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07Jbtoc083360 for ; Thu, 7 Jan 2016 19:37:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Thu, 07 Jan 2016 19:37:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 19:37:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 --- Comment #25 from commit-hook@freebsd.org --- A commit references this bug: Author: bdrewery Date: Thu Jan 7 19:37:11 UTC 2016 New revision: 293342 URL: https://svnweb.freebsd.org/changeset/base/293342 Log: Always try to upgrade to bmake if not already using it. This is mostly targetting stable/10 which requires bmake to build and has issues upgrading from <10. MFC after: 1 week Sponsored by: EMC / Isilon Storage Division PR: 198062 Changes: head/Makefile --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 21:09:40 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 50AADA67261 for ; Thu, 7 Jan 2016 21:09:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 411FA1CFF for ; Thu, 7 Jan 2016 21:09:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07L9dpR017149 for ; Thu, 7 Jan 2016 21:09:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206003] pkg crash Date: Thu, 07 Jan 2016 21:09:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: t@tobik.me X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 21:09:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206003 Tobias Kortkamp changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |t@tobik.me --- Comment #1 from Tobias Kortkamp --- I've proposed a fix here: https://github.com/freebsd/pkg/pull/1371 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 23:20:23 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B0B4A66842 for ; Thu, 7 Jan 2016 23:20:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B7681195 for ; Thu, 7 Jan 2016 23:20:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07NKNhv081998 for ; Thu, 7 Jan 2016 23:20:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205932] [panic] Kernel panic when copying from ext2fs partition to UFS partition Date: Thu, 07 Jan 2016 23:20:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: will_brokenbourgh@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 23:20:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205932 Will B changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Affects Some People |Affects Many People --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 23:35:47 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4986FA66F9A for ; Thu, 7 Jan 2016 23:35:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B0731ED4 for ; Thu, 7 Jan 2016 23:35:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07NZk67015472 for ; Thu, 7 Jan 2016 23:35:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206003] pkg crash Date: Thu, 07 Jan 2016 23:35:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: melanhit@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 23:35:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206003 --- Comment #2 from Andrew Romanenko --- this patch exclude "User-Agent" string in the http header (if HTTP_USER_AGE= NT is empty) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 23:49:08 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BCFAFA6733A for ; Thu, 7 Jan 2016 23:49:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AE0FA142A for ; Thu, 7 Jan 2016 23:49:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07Nn7qx038447 for ; Thu, 7 Jan 2016 23:49:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201240] Ping does not work after MAC change on ixl (Intel Fortville NIC) link Date: Thu, 07 Jan 2016 23:49:07 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: erj@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 23:49:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D201240 Eric Joyner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |FIXED --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jan 7 23:52:48 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36DA4A6750E for ; Thu, 7 Jan 2016 23:52:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 284CD17B4 for ; Thu, 7 Jan 2016 23:52:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u07NqlMh049097 for ; Thu, 7 Jan 2016 23:52:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206003] pkg crash Date: Thu, 07 Jan 2016 23:52:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: t@tobik.me X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 23:52:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206003 --- Comment #3 from Tobias Kortkamp --- Updated the patch to set a default user agent in that case --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 00:03:51 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2240FA67A84 for ; Fri, 8 Jan 2016 00:03:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED9191CCB for ; Fri, 8 Jan 2016 00:03:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0803ooa016966 for ; Fri, 8 Jan 2016 00:03:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206016] Changing MTU on the interface Infiniband network card (Mellanox MHQH29B-XTR) causes panic Date: Fri, 08 Jan 2016 00:03:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: admin@support.od.ua X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 00:03:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206016 Bug ID: 206016 Summary: Changing MTU on the interface Infiniband network card (Mellanox MHQH29B-XTR) causes panic Product: Base System Version: 10.1-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: admin@support.od.ua I bought on ebay.com map Mellanox Infiniband CONNECTX-2 MHQH29B-XTR ( http://www.mellanox.com/page/products_dyn?product_family=3D4 ) After installing and loading drivers V2.1.6 site Mellanox, the card identif= ies: mlx4_core0@pci0:6:0:0: class=3D0x028000 card=3D0x002115b3 chip=3D0x673c15b= 3 rev=3D0xb0 hdr=3D0x00 vendor =3D 'Mellanox Technologies' device =3D 'MT26428 [ConnectX VPI PCIe 2.0 5GT/s - IB QDR / 10GigE]' class =3D network mlxen1: flags=3D8802 metric 0 mtu 1500 =20=20=20=20=20=20=20 options=3Dd07bb ether 00:00:00:00:00:01 nd6 options=3D29 media: Ethernet autoselect (autoselect ) status: active But after trying to change mtu - ifconfig mlxen1 mtu 1500 UP - server immediately is gone to reboot :( P.S. FreeBSD 10.1-PRERELEASE #0: Fri Sep 5 03:04:51 EEST 2014=20=20=20=20 root@core.domain.com:/usr/obj/usr/src/sys/core.domain.com.2 amd64 I load all modules: # ll /boot/modules total 1799 -rw-r--r-- 1 root 101 652720 8 =D1=8F=D0=BD=D0=B2 00:57 ibcore.ko -rw-r--r-- 1 root 101 99104 8 =D1=8F=D0=BD=D0=B2 00:58 ipoib.ko -rw-r--r-- 1 root 101 429616 8 =D1=8F=D0=BD=D0=B2 00:58 mlx4.ko -rw-r--r-- 1 root 101 256752 8 =D1=8F=D0=BD=D0=B2 00:59 mlx4ib.ko -rw-r--r-- 1 root 101 136736 8 =D1=8F=D0=BD=D0=B2 00:59 mlxen.ko --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 00:08:07 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C0AAA67CE3 for ; Fri, 8 Jan 2016 00:08:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D5CE1377 for ; Fri, 8 Jan 2016 00:08:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08087gx047339 for ; Fri, 8 Jan 2016 00:08:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206016] Changing MTU on the interface Infiniband network card (Mellanox MHQH29B-XTR) causes panic Date: Fri, 08 Jan 2016 00:08:07 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: admin@support.od.ua X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 00:08:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206016 --- Comment #1 from Vladislav V. Prodan --- 5 3 0xffffffff812f1000 a8020 ibcore.ko (/boot/modules/ibcore.ko) Contains modules: Id Name 8 ibcore 6 2 0xffffffff8139a000 3670 toecore.ko (/boot/kernel/toecore.ko) Contains modules: Id Name 7 toecore 7 1 0xffffffff8139e000 1a730 ipoib.ko (/boot/modules/ipoib.ko) Contains modules: Id Name 9 ipoib 8 3 0xffffffff813b9000 6d638 mlx4.ko (/boot/modules/mlx4.ko) Contains modules: Id Name 10 mlx4 9 1 0xffffffff81427000 42770 mlx4ib.ko (/boot/modules/mlx4ib.ko) Contains modules: Id Name 11 mlx4ib 10 1 0xffffffff8146a000 22d80 mlxen.ko (/boot/modules/mlxen.ko) Contains modules: Id Name 12 mlxen --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 00:21:14 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 17374A651A6 for ; Fri, 8 Jan 2016 00:21:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 08FB419AA for ; Fri, 8 Jan 2016 00:21:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u080LDUl075857 for ; Fri, 8 Jan 2016 00:21:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205932] [panic] Kernel panic when copying from ext2fs partition to UFS partition Date: Fri, 08 Jan 2016 00:21:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: junovitch@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 00:21:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205932 Jason Unovitch changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |junovitch@freebsd.org, | |pfg@FreeBSD.org --- Comment #2 from Jason Unovitch --- I noticed pfg@ (CC'd) just fixed a panic in reading ext4 recently. He may = have some additional insight. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 00:47:07 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 91C9EA65C51 for ; Fri, 8 Jan 2016 00:47:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6B8141A0B for ; Fri, 8 Jan 2016 00:47:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u080l7JR024589 for ; Fri, 8 Jan 2016 00:47:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206017] mips binary has segments with different permissions in same page Date: Fri, 08 Jan 2016 00:47:07 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 00:47:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206017 Bug ID: 206017 Summary: mips binary has segments with different permissions in same page Product: Base System Version: 11.0-CURRENT Hardware: mips OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: emaste@freebsd.org MIPS binary has a PT_DYNAMIC segment with RWE perms in the same page as PT_= NOTE with R only; rtld cannot actually accommodate this. volta% readelf -l sh Elf file type is EXEC (Executable file) Entry point 0x4037e0 There are 8 program headers, starting at offset 52 Program Headers: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align PHDR 0x000034 0x00400034 0x00400034 0x00100 0x00100 R E 0x4 INTERP 0x000134 0x00400134 0x00400134 0x00015 0x00015 R 0x1 [Requesting program interpreter: /libexec/ld-elf.so.1] LOPROC+0 0x00017c 0x0040017c 0x0040017c 0x00018 0x00018 R 0x4 LOAD 0x000000 0x00400000 0x00400000 0x2b42c 0x2b42c R E 0x10000 LOAD 0x02b42c 0x0043b42c 0x0043b42c 0x00b68 0x01bb8 RW 0x10000 DYNAMIC 0x000194 0x00400194 0x00400194 0x000f8 0x000f8 RWE 0x4 NOTE 0x00014c 0x0040014c 0x0040014c 0x00030 0x00030 R 0x4 NULL 0x000000 0x00000000 0x00000000 0x00000 0x00000 0x4 Section to Segment mapping: Segment Sections... 00=20=20=20=20=20 01 .interp=20 02 .reginfo=20 03 .interp .note.tag .reginfo .dynamic .hash .dynsym .dynstr .gnu.version .gnu.version_r .init .text .MIPS.stubs .fini .rodata .eh_frame= =20 04 .ctors .dtors .jcr .data.rel.ro .data .rld_map .got .sdata .bss=20 05 .dynamic=20 06 .note.tag=20 07 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 00:53:54 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE427A66094 for ; Fri, 8 Jan 2016 00:53:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB2761FF5 for ; Fri, 8 Jan 2016 00:53:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u080rstf038780 for ; Fri, 8 Jan 2016 00:53:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Fri, 08 Jan 2016 00:53:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jhkingsr@gmail.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 00:53:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 --- Comment #26 from Joseph King --- Okay... installed bmake... did a make -D ALWAYS_CHECK_MAKE kernel-toolchain which went smoothly... did a make -D ALWAYS_CHECK_MAKE buildkernel which resulted in -------------------------------------------------------------- >>> Kernel build for GENERIC completed on Thu Jan 7 19:08:27 EST 2016 -------------------------------------------------------------- Here's the results of the boot. OK boot -v /boot/test/kernel text=3D0xfd24a8 data=3D0x128030+0x207c00 syms=3D[0x8+0x145f20+0x8+0x160160] Booting... Table 'FACP' at 0xbfff0290 Table 'APIC' at 0xbfff0390 APIC: Found table at 0xbfff0390 APIC: Using the MADT enumerator. MADT: Found CPU APIC ID 0 ACPI ID 1: enabled SMP: Added CPU 0 (AP) MADT: Found CPU APIC ID 1 ACPI ID 2: enabled SMP: Added CPU 1 (AP) MADT: Found CPU APIC ID 2 ACPI ID 3: enabled SMP: Added CPU 2 (AP) MADT: Found CPU APIC ID 3 ACPI ID 4: enabled SMP: Added CPU 3 (AP) MADT: Found CPU APIC ID 132 ACPI ID 5: disabled MADT: Found CPU APIC ID 133 ACPI ID 6: disabled MADT: Found CPU APIC ID 134 ACPI ID 7: disabled MADT: Found CPU APIC ID 135 ACPI ID 8: disabled MADT: Found CPU APIC ID 136 ACPI ID 9: disabled MADT: Found CPU APIC ID 137 ACPI ID 10: disabled MADT: Found CPU APIC ID 138 ACPI ID 11: disabled MADT: Found CPU APIC ID 139 ACPI ID 12: disabled Copyright (c) 1992-2016 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 10.2-STABLE #0 f8f7719(pr_198062): Thu Jan 7 18:51:34 EST 2016 =20=20=20 storm@netsys9.isolan.itsmine.com:/usr/obj/ufs/pr_198062-git/freebsd/sys/GEN= ERIC amd64 FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 Preloaded elf kernel "/boot/test/kernel" at 0xffffffff819aa000. Calibrating TSC clock ... TSC clock: 2793054123 Hz CPU: Dual-Core AMD Opteron(tm) Processor 2220 (2793.05-MHz K8-class CPU) Origin=3D"AuthenticAMD" Id=3D0x40f13 Family=3D0xf Model=3D0x41 Steppi= ng=3D3 =20 Features=3D0x178bfbff Features2=3D0x2001 AMD Features=3D0xea500800 AMD Features2=3D0x1f SVM: Features=3D0x0 Revision=3D1, ASIDs=3D64 L1 2MB data TLB: 8 entries, fully associative L1 2MB instruction TLB: 8 entries, fully associative L1 4KB data TLB: 32 entries, fully associative L1 4KB instruction TLB: 32 entries, fully associative L1 data cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L1 instruction cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associat= ive L2 2MB unified TLB: 0 entries, disabled/not present L2 4KB data TLB: 512 entries, 4-way associative L2 4KB instruction TLB: 512 entries, 4-way associative L2 unified cache: 1024 kbytes, 64 bytes/line, 1 lines/tag, 16-way associati= ve real memory =3D 4294967296 (4096 MB) Physical memory chunk(s): 0x0000000000010000 - 0x000000000009bfff, 573440 bytes (140 pages) 0x0000000000100000 - 0x00000000001fffff, 1048576 bytes (256 pages) 0x00000000019eb000 - 0x00000000b7d60fff, 3057082368 bytes (746358 pages) 0x0000000100000000 - 0x000000013ffe7fff, 1073643520 bytes (262120 pages) avail memory =3D 4103352320 (3913 MB) Event timer "LAPIC" quality 400 ACPI APIC Table: <062309 APIC1333> INTR: Adding local APIC 1 as a target INTR: Adding local APIC 2 as a target INTR: Adding local APIC 3 as a target FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs FreeBSD/SMP: 2 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 cpu2 (AP): APIC ID: 2 cpu3 (AP): APIC ID: 3 APIC: CPU 0 has ACPI ID 1 APIC: CPU 1 has ACPI ID 2 APIC: CPU 2 has ACPI ID 3 APIC: CPU 3 has ACPI ID 4 x86bios: IVT 0x000000-0x0004ff at 0xfffff80000000000 x86bios: SSEG 0x098000-0x098fff at 0xfffffe011bbc0000 x86bios: EBDA 0x09f000-0x09ffff at 0xfffff8000009f000 x86bios: ROM 0x0a0000-0x0fefff at 0xfffff800000a0000 XEN: CPU 0 has VCPU ID 1 XEN: CPU 1 has VCPU ID 2 XEN: CPU 2 has VCPU ID 3 XEN: CPU 3 has VCPU ID 4 random device not loaded; using insecure entropy ULE: setup cpu 0 ULE: setup cpu 1 ULE: setup cpu 2 ULE: setup cpu 3 ACPI: RSDP 0x00000000000F8F90 000024 (v02 ACPIAM) ACPI: XSDT 0x00000000BFFF0100 00004C (v01 062309 XSDT1333 20090623 MSFT 00000097) ACPI: FACP 0x00000000BFFF0290 0000F4 (v03 062309 FACP1333 20090623 MSFT 00000097) ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe1Block: 96/64 (20150515/tbfadt-644) ACPI: DSDT 0x00000000BFFF04E0 00370B (v01 0AAAB 0AAAB001 00000001 INTL 02002026) ACPI: FACS 0x00000000BFFFE000 000040 ACPI: APIC 0x00000000BFFF0390 000102 (v01 062309 APIC1333 20090623 MSFT 00000097) ACPI: OEMB 0x00000000BFFFE040 000056 (v01 062309 OEMB1333 20090623 MSFT 00000097) ACPI: SRAT 0x00000000BFFF3BF0 0000E8 (v01 AMD FAM_F_10 00000002 AMD=20 00000001) ACPI: SSDT 0x00000000BFFF3CE0 000574 (v01 A M I POWERNOW 00000001 AMD=20 00000001) MADT: Found IO APIC ID 4, Interrupt 0 at 0xfec00000 ioapic0: Routing external 8259A's -> intpin 0 MADT: Found IO APIC ID 5, Interrupt 16 at 0xfec01000 MADT: Found IO APIC ID 6, Interrupt 32 at 0xfec02000 lapic0: Routing NMI -> LINT1 lapic0: LINT1 trigger: edge lapic0: LINT1 polarity: high lapic1: Routing NMI -> LINT1 lapic1: LINT1 trigger: edge lapic1: LINT1 polarity: high lapic2: Routing NMI -> LINT1 lapic2: LINT1 trigger: edge lapic2: LINT1 polarity: high lapic3: Routing NMI -> LINT1 lapic3: LINT1 trigger: edge lapic3: LINT1 polarity: high MADT: Ignoring local NMI routed to ACPI CPU 5 MADT: Ignoring local NMI routed to ACPI CPU 6 MADT: Ignoring local NMI routed to ACPI CPU 7 MADT: Ignoring local NMI routed to ACPI CPU 8 MADT: Ignoring local NMI routed to ACPI CPU 9 MADT: Ignoring local NMI routed to ACPI CPU 10 MADT: Ignoring local NMI routed to ACPI CPU 11 MADT: Ignoring local NMI routed to ACPI CPU 12 MADT: Interrupt override: source 0, irq 2 ioapic0: Routing IRQ 0 -> intpin 2 MADT: Forcing active-low polarity and level trigger for SCI ioapic0: intpin 9 polarity: low ioapic0: intpin 9 trigger: level ioapic0 irqs 0-15 on motherboard ioapic1 irqs 16-31 on motherboard ioapic2 irqs 32-47 on motherboard cpu0 BSP: ID: 0x00000000 VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 snd_unit_init() u=3D0x00ff8000 [512] d=3D0x00007c00 [32] c=3D0x000003ff [10= 24] feeder_register: snd_unit=3D-1 snd_maxautovchans=3D16 latency=3D5 feeder_ra= te_min=3D1 feeder_rate_max=3D2016000 feeder_rate_round=3D25 wlan: <802.11 Link Layer> Hardware, Intel Secure Key RNG: RDRAND is not present Hardware, VIA Nehemiah Padlock RNG: VIA Padlock RNG not present null: nfslock: pseudo-device Falling back to random adaptor random: initialized VESA: INT 0x10 vector 0xc000:0x1734 VESA: information block 0000 56 45 53 41 00 02 00 01 00 99 01 00 00 00 22 00 0010 00 99 00 02 00 01 0b 01 00 99 21 01 00 99 26 01 0020 00 99 6a 00 02 01 04 01 82 01 0d 01 0e 01 0f 01 0030 20 01 92 01 93 01 94 01 95 01 96 01 a2 01 a3 01 0040 a4 01 a5 01 a6 01 b2 01 b3 01 b4 01 b5 01 b6 01 0050 c2 01 c3 01 c4 01 c5 01 c6 01 00 01 83 01 84 01 0060 85 01 86 01 01 01 10 01 11 01 12 01 21 01 03 01 0070 13 01 14 01 15 01 22 01 05 01 16 01 17 01 18 01 0080 23 01 07 01 19 01 1a 01 1b 01 24 01 09 01 0a 01 0090 30 01 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0100 41 54 49 20 45 53 31 30 30 30 00 41 54 49 20 54 0110 65 63 68 6e 6f 6c 6f 67 69 65 73 20 49 6e 63 2e 0120 00 52 4e 35 30 00 30 31 2e 30 30 00 00 00 00 00 0130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 VESA: 56 mode(s) found VESA: v2.0, 32768k memory, flags:0x1, mode table:0xfffffe011bbfd022 (990000= 22) VESA: ATI ES1000 VESA: ATI Technologies Inc. RN50 01.00 io: VMBUS: load kbd: new array size 4 kbd1 at kbdmux0 mem: hptnr: R750/DC7280 controller driver v1.1.4 hpt27xx: RocketRAID 27xx controller driver v1.2.7 hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2 acpi0: <062309 XSDT1333> on motherboard ACPI: All ACPI Tables successfully acquired ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48 ACPI: Executed 1 blocks of module-level executable AML code acpi0: Power Button (fixed) acpi0: Sleep Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, bff00000 (3) failed cpu0: Processor \_PR_.P001 (ACPI ID 1) -> APIC ID 0 cpu0: on acpi0 cpu0: switching to generic Cx mode cpu1: Processor \_PR_.P002 (ACPI ID 2) -> APIC ID 1 cpu1: on acpi0 cpu2: Processor \_PR_.P003 (ACPI ID 3) -> APIC ID 2 cpu2: on acpi0 cpu3: Processor \_PR_.P004 (ACPI ID 4) -> APIC ID 3 cpu3: on acpi0 ACPI: Processor \_PR_.P005 (ACPI ID 5) ignored ACPI: Processor \_PR_.P006 (ACPI ID 6) ignored ACPI: Processor \_PR_.P007 (ACPI ID 7) ignored ACPI: Processor \_PR_.P008 (ACPI ID 8) ignored ACPI: Processor \_PR_.P009 (ACPI ID 9) ignored ACPI: Processor \_PR_.P00A (ACPI ID 10) ignored ACPI: Processor \_PR_.P00B (ACPI ID 11) ignored ACPI: Processor \_PR_.P00C (ACPI ID 12) ignored attimer0: port 0x40-0x43 irq 0 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 0 vector 49 Event timer "i8254" frequency 1193182 Hz quality 100 atrtc0: port 0x70-0x71 irq 8 on acpi0 atrtc0: registered as a time-of-day clock (resolution 1000000us, adjustment 0.500000000s) ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 50 Event timer "RTC" frequency 32768 Hz quality 0 hpet0: iomem 0xfed00000-0xfed03fff on acpi0 hpet0: vendor 0xffff, rev 0xff, 232831Hz 64bit, 32 timers, legacy route hpet0: t0: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t1: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t2: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t3: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t4: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t5: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t6: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t7: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t8: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t9: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t10: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t11: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t12: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t13: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t14: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t15: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t16: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t17: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t18: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t19: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t20: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t21: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t22: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t23: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t24: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t25: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t26: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t27: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t28: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t29: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t30: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t31: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: HPET never increments, disabling device_attach: hpet0 attach returned 6 ACPI timer: 0/4 1/3 0/4 1/3 1/3 1/3 1/3 1/3 0/4 0/4 -> 6 Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <32-bit timer at 3.579545MHz> port 0x508-0x50b on acpi0 pci_link0: Index IRQ Rtd Ref IRQs Initial Probe 0 9 N 0 3 4 5 7 9 11 12 14 15 Validation 0 9 N 0 3 4 5 7 9 11 12 14 15 After Disable 0 255 N 0 3 4 5 7 9 11 12 14 15 pci_link1: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 11 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link2: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link3: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link4: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link5: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link6: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link7: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link8: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link9: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link10: Index IRQ Rtd Ref IRQs Initial Probe 0 3 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 3 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link11: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 5 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link12: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link13: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link14: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link15: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link16: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link17: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link18: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link19: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link20: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link21: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link22: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link23: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link24: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link25: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link26: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link27: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link28: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link29: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link30: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link31: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 10 Validation 0 10 N 0 10 After Disable 0 255 N 0 10 pci_link32: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 11 Validation 0 11 N 0 11 After Disable 0 255 N 0 11 pcib0: port 0xcf8-0xcff on acpi0 pcib0: decoding 5 range 0-0xff pcib0: decoding 4 range 0-0xcf7 pcib0: decoding 4 range 0xd00-0xffff pcib0: decoding 3 range 0xa0000-0xbffff pcib0: decoding 3 range 0xd0000-0xdffff pcib0: decoding 3 range 0xc0000000-0xffffffff pci0: on pcib0 pci0: domain=3D0, physical bus=3D0 pci0:0:0:0: checking for a device: none pci0:0:1:0: checking for a device: found pci0:0:1:0: before pci_read_cap pci0:0:1:0: before pci_cfg_save pci0:0:1:0: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0036, revid=3D0x00 domain=3D0, bus=3D0, slot=3D1, func=3D0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) pci0:0:1:0: before pci_add_resources secbus=3D1, subbus=3D2 pci0:0:1:0: before pci_child_added pci0:0:2:0: checking for a device: found pci0:0:2:0: before pci_read_cap pci0:0:2:0: before pci_cfg_save pci0:0:2:0: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0205, revid=3D0x00 domain=3D0, bus=3D0, slot=3D2, func=3D0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0107, statreg=3D0x0200, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) pci0:0:2:0: before pci_add_resources pci0:0:2:0: before pci_child_added pci0:0:2:1: checking for a device: found pci0:0:2:1: before pci_read_cap pci0:0:2:1: before pci_cfg_save pci0:0:2:1: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0214, revid=3D0x00 domain=3D0, bus=3D0, slot=3D2, func=3D1 class=3D01-01-8a, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0005, statreg=3D0x0200, cachelnsz=3D16 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) pci0:0:2:1: before pci_add_resources pcib0: allocated type 4 (0x1f0-0x1f7) for rid 10 of pci0:0:2:1 pcib0: allocated type 4 (0x3f6-0x3f6) for rid 14 of pci0:0:2:1 pcib0: allocated type 4 (0x170-0x177) for rid 18 of pci0:0:2:1 pcib0: allocated type 4 (0x376-0x376) for rid 1c of pci0:0:2:1 map[20]: type I/O Port, range 32, base 0xffa0, size 4, enabled pcib0: allocated type 4 (0xffa0-0xffaf) for rid 20 of pci0:0:2:1 pci0:0:2:1: before pci_child_added pci0:0:2:2: checking for a device: found pci0:0:2:2: before pci_read_cap pci0:0:2:2: before pci_cfg_save pci0:0:2:2: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0234, revid=3D0x00 domain=3D0, bus=3D0, slot=3D2, func=3D2 class=3D06-01-00, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0107, statreg=3D0x0200, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) pci0:0:2:2: before pci_add_resources pci0:0:2:2: before pci_child_added pci0:0:2:3: checking for a device: none pci0:0:2:4: checking for a device: none pci0:0:2:5: checking for a device: none pci0:0:2:6: checking for a device: none pci0:0:2:7: checking for a device: none pci0:0:3:0: checking for a device: found pci0:0:3:0: before pci_read_cap pci0:0:3:0: before pci_cfg_save pci0:0:3:0: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0223, revid=3D0x01 domain=3D0, bus=3D0, slot=3D3, func=3D0 class=3D0c-03-10, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0117, statreg=3D0x02b0, cachelnsz=3D16 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) intpin=3Da, irq=3D10 powerspec 2 supports D0 D3 current D0 pci0:0:3:0: before pci_add_resources map[10]: type Memory, range 32, base 0xff6ec000, size 12, enabled pcib0: allocated type 3 (0xff6ec000-0xff6ecfff) for rid 10 of pci0:0:3:0 map[14]: type I/O Port, range 32, base 0xd400, size 8, enabled pcib0: allocated type 4 (0xd400-0xd4ff) for rid 14 of pci0:0:3:0 pcib0: matched entry for 0.3.INTA pcib0: slot 3 INTA hardwired to IRQ 10 ioapic0: Changing trigger for pin 10 to level ioapic0: Changing polarity for pin 10 to low ohci early: SMM active, request owner change pci0:0:3:0: before pci_child_added pci0:0:3:1: checking for a device: found pci0:0:3:1: before pci_read_cap pci0:0:3:1: before pci_cfg_save pci0:0:3:1: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0223, revid=3D0x01 domain=3D0, bus=3D0, slot=3D3, func=3D1 class=3D0c-03-10, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0117, statreg=3D0x02b0, cachelnsz=3D16 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) intpin=3Da, irq=3D10 powerspec 2 supports D0 D3 current D0 pci0:0:3:1: before pci_add_resources map[10]: type Memory, range 32, base 0xff6ed000, size 12, enabled pcib0: allocated type 3 (0xff6ed000-0xff6edfff) for rid 10 of pci0:0:3:1 map[14]: type I/O Port, range 32, base 0xd800, size 8, enabled pcib0: allocated type 4 (0xd800-0xd8ff) for rid 14 of pci0:0:3:1 pcib0: matched entry for 0.3.INTA pcib0: slot 3 INTA hardwired to IRQ 10 ohci early: SMM active, request owner change pci0:0:3:1: before pci_child_added pci0:0:3:2: checking for a device: found pci0:0:3:2: before pci_read_cap pci0:0:3:2: before pci_cfg_save pci0:0:3:2: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0223, revid=3D0x01 domain=3D0, bus=3D0, slot=3D3, func=3D2 class=3D0c-03-20, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0117, statreg=3D0x02b0, cachelnsz=3D16 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) intpin=3Da, irq=3D10 powerspec 2 supports D0 D1 D2 D3 current D0 pci0:0:3:2: before pci_add_resources map[10]: type Memory, range 32, base 0xff6ee000, size 12, enabled pcib0: allocated type 3 (0xff6ee000-0xff6eefff) for rid 10 of pci0:0:3:2 map[14]: type I/O Port, range 32, base 0xe800, size 8, enabled pcib0: allocated type 4 (0xe800-0xe8ff) for rid 14 of pci0:0:3:2 pcib0: matched entry for 0.3.INTA pcib0: slot 3 INTA hardwired to IRQ 10 pci0:0:3:2: before pci_child_added pci0:0:3:3: checking for a device: none pci0:0:3:4: checking for a device: none pci0:0:3:5: checking for a device: none pci0:0:3:6: checking for a device: none pci0:0:3:7: checking for a device: none pci0:0:4:0: checking for a device: found pci0:0:4:0: before pci_read_cap pci0:0:4:0: before pci_cfg_save pci0:0:4:0: before pci_cfg_restore found-> vendor=3D0x8086, dev=3D0x1229, revid=3D0x10 domain=3D0, bus=3D0, slot=3D4, func=3D0 class=3D02-00-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0117, statreg=3D0x0290, cachelnsz=3D16 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x08 (2000 ns), maxlat=3D0x38 (= 14000 ns) intpin=3Da, irq=3D9 powerspec 2 supports D0 D1 D2 D3 current D0 pci0:0:4:0: before pci_add_resources map[10]: type Memory, range 32, base 0xff6eb000, size 12, enabled pcib0: allocated type 3 (0xff6eb000-0xff6ebfff) for rid 10 of pci0:0:4:0 map[14]: type I/O Port, range 32, base 0xec00, size 6, enabled pcib0: allocated type 4 (0xec00-0xec3f) for rid 14 of pci0:0:4:0 map[18]: type Memory, range 32, base 0xff6a0000, size 17, enabled pcib0: allocated type 3 (0xff6a0000-0xff6bffff) for rid 18 of pci0:0:4:0 pcib0: matched entry for 0.4.INTA pcib0: slot 4 INTA hardwired to IRQ 16 pci0:0:4:0: before pci_child_added pci0:0:6:0: checking for a device: found pci0:0:6:0: before pci_read_cap pci0:0:6:0: before pci_cfg_save pci0:0:6:0: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0130, revid=3D0xb0 domain=3D0, bus=3D0, slot=3D6, func=3D0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) pci0:0:6:0: before pci_add_resources secbus=3D3, subbus=3D3 pci0:0:6:0: before pci_child_added pci0:0:7:0: checking for a device: found pci0:0:7:0: before pci_read_cap pci0:0:7:0: before pci_cfg_save pci0:0:7:0: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0130, revid=3D0xb0 domain=3D0, bus=3D0, slot=3D7, func=3D0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) pci0:0:7:0: before pci_add_resources secbus=3D4, subbus=3D4 pci0:0:7:0: before pci_child_added pci0:0:8:0: checking for a device: found pci0:0:8:0: before pci_read_cap ----- System completely frozen at this point ----- --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 00:57:25 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAFF2A661E6 for ; Fri, 8 Jan 2016 00:57:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD05C1276 for ; Fri, 8 Jan 2016 00:57:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u080vP7Y043203 for ; Fri, 8 Jan 2016 00:57:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206017] mips binary has segments with different permissions in same page Date: Fri, 08 Jan 2016 00:57:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 00:57:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206017 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: emaste Date: Fri Jan 8 00:56:42 UTC 2016 New revision: 293403 URL: https://svnweb.freebsd.org/changeset/base/293403 Log: Revert r293201, r293202 (rtld: populate DT_DEBUG iff DYNAMIC segment is writable) It turns out MIPS binaries may have other oddities that can trigger a fault at startup. PR: 206017 Reported by: ray Changes: head/libexec/rtld-elf/rtld.c head/libexec/rtld-elf/rtld.h --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 01:03:58 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7ED45A66476 for ; Fri, 8 Jan 2016 01:03:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 70C7E1629 for ; Fri, 8 Jan 2016 01:03:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0813ww3092191 for ; Fri, 8 Jan 2016 01:03:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206016] Changing MTU on the interface Infiniband network card (Mellanox MHQH29B-XTR) causes panic Date: Fri, 08 Jan 2016 01:03:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: admin@support.od.ua X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 01:03:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206016 --- Comment #2 from Vladislav V. Prodan --- # sysctl sys.device. sys.device.mlx4_core0.fw_ver: 2.9.1530 sys.device.mlx4_core0.hca: MT26428 sys.device.mlx4_core0.board_id: HP_0180000009 sys.device.mlx4_core0.mlx4_port1: eth sys.device.mlx4_core0.mlx4_port2: eth --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 02:34:40 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3352EA66292 for ; Fri, 8 Jan 2016 02:34:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 250BF1C53 for ; Fri, 8 Jan 2016 02:34:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u082YeD7022218 for ; Fri, 8 Jan 2016 02:34:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205932] [panic] Kernel panic when copying from ext2fs partition to UFS partition Date: Fri, 08 Jan 2016 02:34:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: pfg@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc see_also Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 02:34:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205932 Pedro F. Giffuni changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gnehzuil@gmail.com See Also| |https://bugs.freebsd.org/bu | |gzilla/show_bug.cgi?id=3D2= 059 | |38 --- Comment #3 from Pedro F. Giffuni --- Thank you for the report: it is unclear if this is a new panic. I am CC'ing Zheng Liu as he is the ext4 implementation expert. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 03:53:54 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E564DA67ED7 for ; Fri, 8 Jan 2016 03:53:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D523A1BB6 for ; Fri, 8 Jan 2016 03:53:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u083rshq032654 for ; Fri, 8 Jan 2016 03:53:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205932] [panic] Kernel panic when copying from ext2fs partition to UFS partition Date: Fri, 08 Jan 2016 03:53:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: damjan.jov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 03:53:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205932 Damjan Jovanovic changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |damjan.jov@gmail.com --- Comment #4 from Damjan Jovanovic --- sys_write -> write -> ext2_bmap -> ext4_ext_find_extent -> ... -> panic, so looks like a memory mapped file is being written, during which reading from= the mapped memory causes a panic. It seems a specific file is causing this (as opposed to iteration over the filesystem). You could try to narrow it down - use "find" to find the 100th= or so file you suspect, and then copy the files you suspect are causing the pa= nic to narrow it down to the single file that actually does. I suspect that fil= e is sparse, causing a different manifestation of bug 205816 (panic instead of garbage data). Could you test the patch from there? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 05:32:27 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61DA7A674B9 for ; Fri, 8 Jan 2016 05:32:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53438117F for ; Fri, 8 Jan 2016 05:32:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u085WQCs064236 for ; Fri, 8 Jan 2016 05:32:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205932] [panic] Kernel panic when copying from ext2fs partition to UFS partition Date: Fri, 08 Jan 2016 05:32:26 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: will_brokenbourgh@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 05:32:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205932 --- Comment #5 from Will B --- (In reply to Damjan Jovanovic from comment #4) Thank you. The file that it happens on is different each time, and as far as I can tel= l, they are not sparse files. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 09:43:56 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05158A688A5 for ; Fri, 8 Jan 2016 09:43:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E03731D0D for ; Fri, 8 Jan 2016 09:43:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u089htSw074553 for ; Fri, 8 Jan 2016 09:43:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Fri, 08 Jan 2016 09:43:55 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: arcadiy@ivanovy.net X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 09:43:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 --- Comment #8 from arcadiy@ivanovy.net --- Alexander nailed it on the head. Between 10.1 and 10.2 the AHCI has been removed from ada driver. It worked in 10.1 because it was actually there. Adding "device ahci" solved my problem.(In reply to Alexander Motin from comment #7) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 09:48:45 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD62DA68A69 for ; Fri, 8 Jan 2016 09:48:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 936761E22 for ; Fri, 8 Jan 2016 09:48:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u089mjPE080806 for ; Fri, 8 Jan 2016 09:48:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Fri, 08 Jan 2016 09:48:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: arcadiy@ivanovy.net X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 09:48:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 --- Comment #9 from arcadiy@ivanovy.net --- 10.2 dmesg.boot Copyright (c) 1992-2016 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 10.2-STABLE #0 r293336: Thu Jan 7 12:45:10 EST 2016 admin@fw1.home.ivanovy.net:/usr/obj/usr/src/sys/FIREWALL amd64 FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 CPU: Intel(R) Core(TM)2 Duo CPU E7200 @ 2.53GHz (2527.05-MHz K8-class = CPU) Origin=3D"GenuineIntel" Id=3D0x10676 Family=3D0x6 Model=3D0x17 Steppi= ng=3D6 =20 Features=3D0xbfebfbff Features2=3D0x8e39d AMD Features=3D0x20100800 AMD Features2=3D0x1 TSC: P-state invariant, performance statistics real memory =3D 1073741824 (1024 MB) avail memory =3D 1020993536 (973 MB) Event timer "LAPIC" quality 400 ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 random device not loaded; using insecure entropy ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aEventBlock: 32/8 (20150515/tbfadt-644) ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aControlBlock: 1= 6/8 (20150515/tbfadt-644) ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/PmTimerBlock: 32/8 (20150515/tbfadt-644) ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 128/8 (20150515/tbfadt-644) ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aEventBlock: 8, using default 32 (20150515/tbfadt-725) ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 8, using default 16 (20150515/tbfadt-725) ACPI BIOS Warning (bug): Invalid length for FADT/PmTimerBlock: 8, using def= ault 32 (20150515/tbfadt-725) ioapic0: Changing APIC ID to 4 ioapic0 irqs 0-23 on motherboard kbd0 at kbdmux0 random: initialized smbios0: at iomem 0xf0be0-0xf0bfe on motherboard smbios0: Version: 2.5, BCD Revision: 2.5 cryptosoft0: on motherboard acpi0: on motherboard acpi0: Power Button (fixed) cpu0: on acpi0 cpu1: on acpi0 attimer0: port 0x40-0x43 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 Event timer "i8254" frequency 1193182 Hz quality 100 hpet0: iomem 0xfed00000-0xfed003ff irq 0,8 on acpi0 device_attach: hpet0 attach returned 12 atrtc0: port 0x70-0x73 on acpi0 Event timer "RTC" frequency 32768 Hz quality 0 Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: irq 16 at device 1.0 on pci0 pci1: on pcib1 em0: port 0xdf00-0xdf1f mem 0xfdae0000-0xfdafffff,0xfdac0000-0xfdadffff irq 16 at device 0.0 on pci1 em0: Using an MSI interrupt em0: Ethernet address: 00:15:17:85:7b:a2 em1: port 0xde00-0xde1f mem 0xfdaa0000-0xfdabffff,0xfda80000-0xfda9ffff irq 17 at device 0.1 on pci1 em1: Using an MSI interrupt em1: Ethernet address: 00:15:17:85:7b:a3 vgapci0: port 0xff00-0xff07 mem 0xfdf00000-0xfdf7ffff,0xd0000000-0xdfffffff,0xfdc00000-0xfdcfffff irq 16 at device 2.0 on pci0 agp0: on vgapci0 agp0: aperture size is 256M, detected 4194300k stolen memory vgapci0: Boot video device em2: port 0xfe00-0xfe1f mem 0xfdfc0000-0xfdfdffff,0xfdfff000-0xfdffffff irq 20 at device 25.0 on pci0 em2: Using an MSI interrupt em2: Ethernet address: 00:21:9b:0b:a0:8c uhci0: port 0xfd00-0xfd1f irq 16 at de= vice 26.0 on pci0 usbus0 on uhci0 uhci1: port 0xfc00-0xfc1f irq 21 at de= vice 26.1 on pci0 usbus1 on uhci1 uhci2: port 0xfb00-0xfb1f irq 19 at de= vice 26.2 on pci0 usbus2 on uhci2 ehci0: mem 0xfdffe000-0xfdffe3ff i= rq 18 at device 26.7 on pci0 usbus3: EHCI version 1.0 usbus3 on ehci0 uhci3: port 0xfa00-0xfa1f irq 23 at de= vice 29.0 on pci0 usbus4 on uhci3 uhci4: port 0xf900-0xf91f irq 19 at de= vice 29.1 on pci0 usbus5 on uhci4 uhci5: port 0xf800-0xf81f irq 18 at de= vice 29.2 on pci0 usbus6 on uhci5 ehci1: mem 0xfdffd000-0xfdffd3ff i= rq 23 at device 29.7 on pci0 usbus7: EHCI version 1.0 usbus7 on ehci1 pcib2: at device 30.0 on pci0 pci2: on pcib2 isab0: at device 31.0 on pci0 isa0: on isab0 ahci0: port 0xf700-0xf707,0xf600-0xf603,0xf500-0xf507,0xf400-0xf403,0xf300-0xf31f mem 0xfdffc000-0xfdffc7ff irq 19 at device 31.2 on pci0 ahci0: AHCI v1.20 with 6 3Gbps ports, Port Multiplier supported ahcich0: at channel 0 on ahci0 ahcich1: at channel 1 on ahci0 ahcich2: at channel 2 on ahci0 ahcich3: at channel 3 on ahci0 ahcich4: at channel 4 on ahci0 ahcich5: at channel 5 on ahci0 ahciem0: on ahci0 ichsmb0: port 0x500-0x51f mem 0xfdffb000-0xfdffb0ff irq 18 at device 31.3 on pci0 smbus0: on ichsmb0 smb0: on smbus0 acpi_tz0: on acpi0 ichwd0 on isa0 orm0: at iomem 0xcc000-0xcefff,0xcf000-0xd2fff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=3D0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 coretemp0: on cpu0 est0: on cpu0 coretemp1: on cpu1 est1: on cpu1 Timecounters tick every 1.000 msec IPsec: Initialized Security Association Processing. random: unblocking device. usbus0: 12Mbps Full Speed USB v1.0 usbus1: 12Mbps Full Speed USB v1.0 usbus2: 12Mbps Full Speed USB v1.0 usbus3: 480Mbps High Speed USB v2.0 usbus4: 12Mbps Full Speed USB v1.0 usbus5: 12Mbps Full Speed USB v1.0 usbus6: 12Mbps Full Speed USB v1.0 usbus7: 480Mbps High Speed USB v2.0 ugen0.1: at usbus0 uhub0: on usbus0 ugen1.1: at usbus1 uhub1: on usbus1 ugen2.1: at usbus2 uhub2: on usbus2 ugen3.1: at usbus3 uhub3: on usbus3 ugen5.1: at usbus5 uhub4: on usbus5 ugen4.1: at usbus4 uhub5: on usbus4 ugen6.1: at usbus6 uhub6: on usbus6 ugen7.1: at usbus7 uhub7: on usbus7 ada0 at ahcich0 bus 0 scbus0 target 0 lun 0 ada0: ATA-7 SATA 2.x device ada0: Serial Number 5RW48EHG ada0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) ada0: Command Queueing enabled ada0: 76293MB (156250000 512 byte sectors) ada0: Previously was known as ad0 ada1 at ahcich1 bus 0 scbus1 target 0 lun 0 ada1: ATA-7 SATA 2.x device ada1: Serial Number 5RW475QJ ada1: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) ada1: Command Queueing enabled ada1: 76293MB (156250000 512 byte sectors) ada1: Previously was known as ad1 pass2 at ahcich4 bus 0 scbus4 target 0 lun 0 pass2: Removable CD-ROM SCSI device pass2: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO 8192bytes) pass3 at ahciem0 bus 0 scbus6 target 0 lun 0 pass3: SEMB S-E-S 2.00 device GEOM_RAID: Intel-29b44d78: Array Intel-29b44d78 created. GEOM_RAID: Intel-29b44d78: Disk ada0 state changed from NONE to ACTIVE. GEOM_RAID: Intel-29b44d78: Subdisk Volume0:0-ada0 state changed from NONE to ACTIVE. GEOM_RAID: Intel-29b44d78: Disk ada1 state changed from NONE to ACTIVE. GEOM_RAID: Intel-29b44d78: Subdisk Volume0:1-ada1 state changed from NONE to ACTIVE. GEOM_RAID: Intel-29b44d78: Array started. GEOM_RAID: Intel-29b44d78: Volume Volume0 state changed from STARTING to OPTIMAL. GEOM_RAID: Intel-29b44d78: Provider raid/r0 for volume Volume0 created. SMP: AP CPU #1 Launched! hwpmc: SOFT/16/64/0x67 TSC/1/64/0x20 IAP/2/40/0x3ff IAF/3/40/0x67 Timecounter "TSC-low" frequency 1263524823 Hz quality 1000 Root mount waiting for: usbus7 usbus6 usbus5 usbus4 usbus3 usbus2 usbus1 us= bus0 uhub2: 2 ports with 2 removable, self powered uhub1: 2 ports with 2 removable, self powered uhub4: 2 ports with 2 removable, self powered uhub0: 2 ports with 2 removable, self powered uhub6: 2 ports with 2 removable, self powered uhub5: 2 ports with 2 removable, self powered Root mount waiting for: usbus7 usbus3 Root mount waiting for: usbus7 usbus3 uhub3: 6 ports with 6 removable, self powered uhub7: 6 ports with 6 removable, self powered Trying to mount root from ufs:/dev/raid/r0s1a [rw]... ukbd0: on usbus5 kbd1 at ukbd0 . got link em1: link state changed to UP ipfw2 (+ipv6) initialized, divert loadable, nat loadable, default to deny, logging disabled DUMMYNET 0 with IPv6 initialized (100409) load_dn_sched dn_sched FIFO loaded load_dn_sched dn_sched QFQ loaded load_dn_sched dn_sched RR loaded load_dn_sched dn_sched WF2Q+ loaded load_dn_sched dn_sched PRIO loaded --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 09:51:24 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87EF1A68B6C for ; Fri, 8 Jan 2016 09:51:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78C921F67 for ; Fri, 8 Jan 2016 09:51:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u089pNc6086364 for ; Fri, 8 Jan 2016 09:51:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205855] ICH7R identified as ICH9R, doesn't work in RAID mode Date: Fri, 08 Jan 2016 09:51:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mav@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: Not A Bug X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 09:51:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205855 Alexander Motin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Open |Closed Resolution|--- |Not A Bug --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 10:39:58 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8F9A3A67D7F for ; Fri, 8 Jan 2016 10:39:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 807CD1B2A for ; Fri, 8 Jan 2016 10:39:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08Adve4010440 for ; Fri, 8 Jan 2016 10:39:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 142198] SSLv3 failure with irc/xchat on FreeBSD 8.0 Date: Fri, 08 Jan 2016 10:39:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 8.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: brnrd@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 10:39:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D142198 Bernard Spil changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cpbsdmail@gmail.com --- Comment #10 from Bernard Spil --- *** Bug 203699 has been marked as a duplicate of this bug. *** --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 10:43:08 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A86DA67FE9 for ; Fri, 8 Jan 2016 10:43:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B4E11E09 for ; Fri, 8 Jan 2016 10:43:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08Ah7KK020551 for ; Fri, 8 Jan 2016 10:43:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 142198] SSLv3 failure with irc/xchat on FreeBSD 8.0 Date: Fri, 08 Jan 2016 10:43:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 8.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: brnrd@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc flagtypes.name attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 10:43:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D142198 Bernard Spil changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |brnrd@freebsd.org, | |gnome@FreeBSD.org Attachment #165250| |maintainer-approval?(gnome@ Flags| |FreeBSD.org) --- Comment #11 from Bernard Spil --- Created attachment 165250 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165250&action= =3Dedit Patch for inclusion in files Patch taken from 203699 by cpbsdmail@gmail.com --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 10:44:04 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B5ECFA6808E for ; Fri, 8 Jan 2016 10:44:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A64F71EBB for ; Fri, 8 Jan 2016 10:44:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08Ai4s9021849 for ; Fri, 8 Jan 2016 10:44:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 142198] SSLv3 failure with irc/xchat on FreeBSD 8.0 Date: Fri, 08 Jan 2016 10:44:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: brnrd@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: product component version bug_severity assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 10:44:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D142198 Bernard Spil changed: What |Removed |Added ---------------------------------------------------------------------------- Product|Base System |Ports & Packages Component|kern |Individual Port(s) Version|8.0-RELEASE |Latest Severity|Affects Only Me |Affects Some People Assignee|freebsd-bugs@FreeBSD.org |freebsd-ports-bugs@FreeBSD. | |org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 13:49:14 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3607BA66F07 for ; Fri, 8 Jan 2016 13:49:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 26D46131C for ; Fri, 8 Jan 2016 13:49:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08DnEpT069294 for ; Fri, 8 Jan 2016 13:49:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206031] [EFI] boot/loader.efi doesn't export smbios serial numbers (esp. system.uuid) Date: Fri, 08 Jan 2016 13:49:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: sneakywumpus@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 13:49:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206031 Bug ID: 206031 Summary: [EFI] boot/loader.efi doesn't export smbios serial numbers (esp. system.uuid) Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: sneakywumpus@gmail.com Created attachment 165258 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165258&action= =3Dedit Add defines needed to export smbios serial numbers Some defines needed for exporting serial numbers from the SMBIOS seem to ha= ve been missed during integration of SMBIOS support in the EFI boot loader (r281138). Attached patch adds these defines from sys/boot/i386/libi386/Makefile to sys/boot/efi/loader/Makefile This is needed for getting the hostid set from the system hardware UUID. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 14:04:28 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C50FA6764D for ; Fri, 8 Jan 2016 14:04:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 63FDA10EB for ; Fri, 8 Jan 2016 14:04:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08E4SBH034808 for ; Fri, 8 Jan 2016 14:04:28 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206034] Dump Card State Ends Date: Fri, 08 Jan 2016 14:04:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ups_20002@yahoo.co.uk X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 14:04:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206034 Bug ID: 206034 Summary: Dump Card State Ends Product: Base System Version: 10.2-RELEASE Hardware: i386 OS: Any Status: New Severity: Affects Many People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: ups_20002@yahoo.co.uk CC: freebsd-i386@FreeBSD.org CC: freebsd-i386@FreeBSD.org Created attachment 165263 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165263&action= =3Dedit kernel: Dump Card State Ends After 9.3 ..-> 10.0, 10.1, 10.2, 11.0 ( i am test all) is problem with scsi driver I have Supremicro X5DA8 with SCSI =3D AIC 7902: procesor =3D 2 x XEON SCSI driver AIC 7902 HDD SCSI SEAGATE ST3146855LW 320Mb/s video ATI 3650 DVD BLUERAY LG HL-DT-ST BD-RE GGW-H20L YL07 - > NOT WORKING !!! ( in FreeB= SD 9.3 wit recompiling kernel is working ! in 10, 10.1, 10.2 not working) 4,5G SDRAM but the BIG PROBLEM IS : crash kernel I have ( me and another person) this problem: in time instaler no problem b= ut after install : after 10 - 15 min start the kernel/hdd is crash I tray to re-compiling kernel but in 10 min :(((=20 kernel: <<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>> kernel: (da0:ahd0:0:0:0): SCB 500 - timed out kernel: (da0:ahd0:0:0:0): Other SCB Timeout kernel: (da0:ahd0:0:0:0): No other SCB worth waiting for... kernel: ahd0: Issued Channel A Bus Reset. 55 SCBs aborted kernel: (da0:ahd0:0:0:0): WRITE(10). CDB: 2a 00 0d c4 cf 28 00 00 08 00=20 kernel: (da0:ahd0:0:0:0): CAM status: SCSI Status Error kernel: (da0:ahd0:0:0:0): SCSI status: Check Condition kernel: (da0:ahd0:0:0:0): SCSI sense: UNIT ATTENTION asc:29,2 (SCSI bus res= et occurred) kernel: (da0:ahd0:0:0:0): Retrying command (per sense data) Complet error -> in attachment file "error.txt" Thx --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 14:27:43 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07EB4A67E96 for ; Fri, 8 Jan 2016 14:27:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED357130A for ; Fri, 8 Jan 2016 14:27:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08ERghE076515 for ; Fri, 8 Jan 2016 14:27:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 160392] [panic] double fault on configuring for php5-filter-5.3.8 Date: Fri, 08 Jan 2016 14:27:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ports@toco-domains.de X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 14:27:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D160392 --- Comment #3 from Torsten Z=C3=BChlsdorff --- How to handle this PR? PHP 5.3 is no longer in the Portstree, there is no feedback from the submitter for about 2 months and there are no similar iss= ues in the tracker or watchers of this PR. Also the initial report is more than= 4 years ago. Can we close it? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 14:47:34 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 78054A6849D for ; Fri, 8 Jan 2016 14:47:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 68864100F for ; Fri, 8 Jan 2016 14:47:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08ElWnA014891 for ; Fri, 8 Jan 2016 14:47:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194766] [drm:pid12:i915_hangcheck_elapsed] [drm:pid12:i915_hangcheck_hung] *ERROR* Hangcheck timer elapsed... GPU hung Date: Fri, 08 Jan 2016 14:47:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: kennethsalerno@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 14:47:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D194766 --- Comment #39 from Kenneth Salerno --- First of all, this bug has been open 14 months. I would like to believe the= re are fbsd developers left out there that care about laptop/desktop issues, a= nd so I wait. I upgraded to 10.2-RELEASE multiple times to try each "fix" and = then downgraded back to 10.1-RELEASE to have a working Xv acceleration again, bu= t at this point I will wait until I see a code fix enter the 10.2-RELEASE branch rather than try any more "workarounds" (and a clue for other users, it is in the drm2 driver not drm), or wait and see if 10.3-RELEASE incorporates chan= ges from 11-CURRENT that fix the i915kms/drm2 code. This bug is the result of the import of Linux kernel modeset driver code th= at brought the bug along with the version that was copied. If you search throu= gh Linux kernel bug reports you'll see they had the same issue, and freebsd svn logs confirm the wholesale import. Looking through the latest 11-CURRENT branch, I see some attempts in the code to stop the GPU hung messages from appearing but personally have not tested if that is a cosmetic bandaid or n= ot. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 14:47:35 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD40AA684A1 for ; Fri, 8 Jan 2016 14:47:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 859B91014 for ; Fri, 8 Jan 2016 14:47:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08ElZtN015013 for ; Fri, 8 Jan 2016 14:47:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206035] gpiobus causes panic when attached to gpio with a single pin Date: Fri, 08 Jan 2016 14:47:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sgalabov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 14:47:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206035 Bug ID: 206035 Summary: gpiobus causes panic when attached to gpio with a single pin Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: sgalabov@gmail.com Created attachment 165265 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165265&action= =3Dedit Suggested fix for the problem (please see comments for details) While attaching a gpiobus to a GPIO controller with a single pin, the system panics due to a failed KASSERT in gpiobus_init_softc(). This is due to the fact that gpiobus obtains the maximum pin number from the GPIO controller (via GPIO_PIN_MAX) and immediately does a KASSERT, expecting that the obtained value is !=3D 0. In the case of a GPIO controller which controls a single pin, the returned value will be 0 (0 is the maximum pin number), which is absolutely valid. Moreover, right after the KASSERT the code in gpiobus_init_softc() actually adjusts the number of pins to the right value. The suggestion is to change the KASSERT like so: - KASSERT(sc->sc_npins !=3D 0, ("GPIO device with no pins")); + KASSERT(sc->sc_npins >=3D 0, ("GPIO device with no pins")); This, I believe, is a better approach than, say, simply postponing the KASS= ERT until after gpiobus has adjusted the number of pins, since if a broken GPIO controller driver returns a < 0 value we'll be in even more trouble. I've attached a patch with the suggested fix. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 17:10:36 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B81B9A6717F for ; Fri, 8 Jan 2016 17:10:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9010F15DD for ; Fri, 8 Jan 2016 17:10:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08HAaZ8032564 for ; Fri, 8 Jan 2016 17:10:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205932] [panic] Kernel panic when copying from ext2fs partition to UFS partition Date: Fri, 08 Jan 2016 17:10:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: damjan.jov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 17:10:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205932 --- Comment #6 from Damjan Jovanovic --- (In reply to Will B from comment #5) In the "cp" tool, function copy_file() in file /usr/src/bin/cp/utils.c has 2 ways of copying a file: mmap + write, and read + write. mmap + write is used only when all of the following are true: * VM_AND_BUFFER_CACHE_SYNCHRONIZED is defined (it is, in Makefile) * It's a regular file (according to S_ISREG()) * The file's size is > 0 * The file's size is <=3D 8 MiB * Calling mmap() succeeds You say it happens on different files each time. My guess is all of the fil= es that it happens on, are regular non-empty files <=3D 8 MiB in size. There's 2 known bugs where mmap() succeeds but reading the mapped contents = can cause problems: 1. The serious bug 205938 where struct buf leaks from ext4_bmapext(), causi= ng a panic on every attempt to read even 1 byte of the mapped data. Because your trace shows the panic happens with lbn=3D0 (the very first block of the fil= e) this is probably the problem here. This bug was fixed in CURRENT yesterday, which is newer than your 10.2-RELEASE. You could try the patch from that bu= g, it does apply and work for me (for a different mmap problem) on 10.2-RELEAS= E. 2. Even with that bug fixed, sparse blocks will at best contain garbage data read from the wrong disk blocks instead of zeroes, corrupting the copied fi= le you create (maybe a panic is also possible?). This is bug 205816 which I previously mentioned. This isn't even fixed in CURRENT, but there is a patc= h on that bug you can try. (BTW you could also use ext4fuse from ports instead of the in-kernel ext2fs driver since it doesn't suffer from problem 1, but it does suffer from prob= lem 2, and I don't know/have a patch for it) With both those patches, copying files from EXT4 should be reliable and correct, but very slow in the mmap + write case (about 250 kB/second with 1= 00% CPU usage) which is unbearably slow if you have lots of files <=3D 8 MiB. I= have a 1 line patch to speed it up about 100-fold, but it only works on CURRENT - 10.2 panics with it. Will keep trying. This is the sad state of current EXT4 support outside Linux... --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 18:27:49 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54F44A670F3 for ; Fri, 8 Jan 2016 18:27:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4559D121C for ; Fri, 8 Jan 2016 18:27:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08IRlbB058422 for ; Fri, 8 Jan 2016 18:27:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195914] freebsd-update loop on /usr/share/zoneinfo Date: Fri, 08 Jan 2016 18:27:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 8.4-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: andrew.daugherity@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 18:27:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D195914 Andrew Daugherity changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrew.daugherity@gmail.com --- Comment #3 from Andrew Daugherity --- I believe this is the same underlying issue as #189249. Sadly it was never fixed for 8.4, but as 8.4 is now EOL and this bug is fix= ed in all supported releases (9.3, 10.1, 10.2) there's no more need to keep th= is one open. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 18:37:06 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA256A675B9 for ; Fri, 8 Jan 2016 18:37:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA61119DF for ; Fri, 8 Jan 2016 18:37:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08Ib6Cm076326 for ; Fri, 8 Jan 2016 18:37:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205932] [panic] Kernel panic when copying from ext2fs partition to UFS partition Date: Fri, 08 Jan 2016 18:37:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: will_brokenbourgh@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 18:37:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205932 --- Comment #7 from Will B --- (In reply to Damjan Jovanovic from comment #6) Thank you for that explanation, Damjan.=20=20 Fortunately Midnight Commander copies the files just fine, so I used it ins= tead of cp to bring over my 160 GB of data from the ext4 partition. Thanks for the patches. I don't think I'll be able to apply them right awa= y, but maybe I'll get FreeBSD running in a VM and do it that way as my real me= tal is used for my busy day-to-day business. Thanks again! :-) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 18:46:45 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32D4AA679D7 for ; Fri, 8 Jan 2016 18:46:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 230E31F51 for ; Fri, 8 Jan 2016 18:46:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08IkiUK094894 for ; Fri, 8 Jan 2016 18:46:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195914] freebsd-update loop on /usr/share/zoneinfo Date: Fri, 08 Jan 2016 18:46:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 8.4-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 18:46:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D195914 NGie Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |DUPLICATE CC| |ngie@FreeBSD.org --- Comment #4 from NGie Cooper --- (In reply to Andrew Daugherity from comment #3) Agreed based on later comments. I'll mark this bug as a dupe of bug 189249. *** This bug has been marked as a duplicate of bug 189249 *** --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 18:50:24 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 877B8A67B15 for ; Fri, 8 Jan 2016 18:50:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77A8F1157 for ; Fri, 8 Jan 2016 18:50:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08IoOJN099764 for ; Fri, 8 Jan 2016 18:50:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Fri, 08 Jan 2016 18:50:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jhb@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 18:50:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 --- Comment #27 from John Baldwin --- Ok, I've added some more tracing. Please do a 'git pull' and rebuild the kernel and test again. This is still narrowing down where it is hanging and doesn't have a fix yet. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 19:40:44 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC2CFA68F72 for ; Fri, 8 Jan 2016 19:40:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C85C1731 for ; Fri, 8 Jan 2016 19:40:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08Jeimm031328 for ; Fri, 8 Jan 2016 19:40:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205932] [panic] Kernel panic when copying from ext2fs partition to UFS partition Date: Fri, 08 Jan 2016 19:40:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: pfg@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 19:40:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205932 --- Comment #8 from Pedro F. Giffuni --- (In reply to Will B from comment #7) Hello; Unfortunately, testing the ext4 support is difficult because most testsuites out there want to be able to write to the filesystem, so the ext4 support h= as received a lot less testing than ext 2/3. I think the sysutils/fusefs-lkl may be in a better position functionally am= ong the alternatives. Damjan's patches look good and may have some effect here but if we can't reproduce this particular bug we will have to close the issue. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 21:40:20 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BDC3A68EDD for ; Fri, 8 Jan 2016 21:40:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1B5F199E for ; Fri, 8 Jan 2016 21:40:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08LeJFV072395 for ; Fri, 8 Jan 2016 21:40:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206047] TCP Stack: Challenge ACKs and Timestamps Date: Fri, 08 Jan 2016 21:40:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: samkumar99@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 21:40:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206047 Bug ID: 206047 Summary: TCP Stack: Challenge ACKs and Timestamps Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: samkumar99@gmail.com See the email thread at https://lists.freebsd.org/pipermail/freebsd-transport/2016-January/000057.h= tml. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 21:46:01 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B206FA671E0 for ; Fri, 8 Jan 2016 21:46:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A28F41D70 for ; Fri, 8 Jan 2016 21:46:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08Lk1oC085914 for ; Fri, 8 Jan 2016 21:46:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206047] TCP Stack: Challenge ACKs and Timestamps Date: Fri, 08 Jan 2016 21:46:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jtl@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: jtl@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 21:46:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206047 Jonathan T. Looney changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |jtl@freebsd.org CC| |jtl@freebsd.org Status|New |In Progress --- Comment #1 from Jonathan T. Looney --- See https://reviews.freebsd.org/D4808 for proposed change. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 21:48:35 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79328A67433 for ; Fri, 8 Jan 2016 21:48:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6A63C1300 for ; Fri, 8 Jan 2016 21:48:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08LmZqA088953 for ; Fri, 8 Jan 2016 21:48:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206001] tcp fastpath, using ancient struct tcpcb field Date: Fri, 08 Jan 2016 21:48:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: jtl@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: jtl@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution cc assigned_to bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 21:48:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206001 Jonathan T. Looney changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED CC| |jtl@freebsd.org Assignee|freebsd-bugs@FreeBSD.org |jtl@freebsd.org Status|New |Closed --- Comment #3 from Jonathan T. Looney --- Fixed by r293313. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 22:29:41 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67941A683AF for ; Fri, 8 Jan 2016 22:29:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 58FFC1764 for ; Fri, 8 Jan 2016 22:29:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08MTfaA001490 for ; Fri, 8 Jan 2016 22:29:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205787] Can't compile freebsd srcs (/usr/src) with clang/llvm 3.8 and option -march=haswell Date: Fri, 08 Jan 2016 22:29:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: l.andro.cs@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 22:29:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205787 --- Comment #2 from Leo --- (In reply to Ed Maste from comment #1) Hello, adding -DNO_WERROR option to make is ok, but then it stops at /usr/src/sys/boot/i386/boot2 The error is: =3D=3D=3D> sys/boot/i386/boot2 (all) --- boot2 --- -265 bytes available *** [boot2] Error code 1 If I compile with the default clang version that comes with Freebsd 10 (3.4= .1), even if I modify the CFLAGS/CXXFLAGS (-O3 -march=3Dcorei7 -fomit-frame-poi= nter), all goes well, but if I try to compile with clang 3.6 (/usr/ports/lang/clang36), clang 3.7 and clang 3.8 (clang-devel), then this error appears, with variable "-[X] bytes available" error message. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 22:43:19 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 583B4A68786 for ; Fri, 8 Jan 2016 22:43:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 49AE41CED for ; Fri, 8 Jan 2016 22:43:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08MhI00031517 for ; Fri, 8 Jan 2016 22:43:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205787] Can't compile freebsd srcs (/usr/src) with clang/llvm 3.8 and option -march=haswell Date: Fri, 08 Jan 2016 22:43:19 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 22:43:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205787 NGie Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dim@FreeBSD.org, | |ngie@FreeBSD.org --- Comment #3 from NGie Cooper --- CCing dim@ --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jan 8 23:15:32 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3237FA6715D for ; Fri, 8 Jan 2016 23:15:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 234951D65 for ; Fri, 8 Jan 2016 23:15:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u08NFWVL024498 for ; Fri, 8 Jan 2016 23:15:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205787] Can't compile freebsd srcs (/usr/src) with clang/llvm 3.8 and option -march=haswell Date: Fri, 08 Jan 2016 23:15:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dim@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 23:15:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205787 --- Comment #4 from Dimitry Andric --- Without any further information, I'm guessing that your bsd.compiler.mk does not detect the compiler version properly, and that incorrect flags are being used to compile boot2. (The whole sys/boot area is very sensitive to the e= xact optimization flags, it will almost always grow too large if they aren't correct.) Can you provide a log of the commands being used to compile everything under /usr/src/sys/boot? For example, by running "make clean" in there, and then running make as usual, but redirected to a log file. I'm also interested in the COMPILER_TYPE and COMPILER_VERSION detected by y= our version of the build system. E.g. in /usr/src, run: make -V COMPILER_TYPE -V COMPILER_VERSION and paste the output here. Having said all that, I think you will run into multiple problems that will= be pretty tricky to solve, if you continue this way. 10.2-RELEASE is complete= ly frozen, and misses a lot of important fixes and updates which are in 10-STA= BLE, making the task even more difficult. Therefore, I think it is wisest to abandon this attempt. You will most lik= ely not gain any significant performance advantage by compiling with -march=3Dhaswell, as opposed to e.g. -march=3Dcorei7. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:34:35 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 29849A68CD3 for ; Sat, 9 Jan 2016 00:34:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1B03B12C8 for ; Sat, 9 Jan 2016 00:34:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090YYCv046199 for ; Sat, 9 Jan 2016 00:34:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206035] gpiobus causes panic when attached to gpio with a single pin Date: Sat, 09 Jan 2016 00:34:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:34:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206035 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:35:10 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B5302A68D90 for ; Sat, 9 Jan 2016 00:35:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A73D71572 for ; Sat, 9 Jan 2016 00:35:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090ZAk1046862 for ; Sat, 9 Jan 2016 00:35:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206034] Dump Card State Ends Date: Sat, 09 Jan 2016 00:35:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:35:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206034 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |regression --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:35:42 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D48B0A68E35 for ; Sat, 9 Jan 2016 00:35:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C5FBA161C for ; Sat, 9 Jan 2016 00:35:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090ZgSc047532 for ; Sat, 9 Jan 2016 00:35:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206031] [EFI] boot/loader.efi doesn't export smbios serial numbers (esp. system.uuid) Date: Sat, 09 Jan 2016 00:35:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:35:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206031 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:36:05 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 94523A68E92 for ; Sat, 9 Jan 2016 00:36:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 85FAC1751 for ; Sat, 9 Jan 2016 00:36:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090a55M048017 for ; Sat, 9 Jan 2016 00:36:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206017] mips binary has segments with different permissions in same page Date: Sat, 09 Jan 2016 00:36:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emaste@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:36:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206017 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |emaste@freebsd.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:36:27 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54583A68EFB for ; Sat, 9 Jan 2016 00:36:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4594C17B5 for ; Sat, 9 Jan 2016 00:36:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090aQlp048469 for ; Sat, 9 Jan 2016 00:36:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206016] Changing MTU on the interface Infiniband network card (Mellanox MHQH29B-XTR) causes panic Date: Sat, 09 Jan 2016 00:36:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:36:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206016 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:36:49 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E04E3A68F89 for ; Sat, 9 Jan 2016 00:36:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D1F9618CA for ; Sat, 9 Jan 2016 00:36:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090anQQ049046 for ; Sat, 9 Jan 2016 00:36:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206012] jail(8): Cannot assign link-local IPv6 address to a jail Date: Sat, 09 Jan 2016 00:36:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-jail@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:36:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206012 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-jail@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:37:53 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A05AA68057 for ; Sat, 9 Jan 2016 00:37:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B54C19C5 for ; Sat, 9 Jan 2016 00:37:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090brRO050521 for ; Sat, 9 Jan 2016 00:37:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206007] Clean ZFS on root in stripe configuration in MBR format does not boot after install Date: Sat, 09 Jan 2016 00:37:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-sysinstall@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:37:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206007 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-sysinstall@FreeBSD. | |org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:38:34 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A5F8A680D8 for ; Sat, 9 Jan 2016 00:38:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2BD3C1A2F for ; Sat, 9 Jan 2016 00:38:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090cYOg051390 for ; Sat, 9 Jan 2016 00:38:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206005] KDB should give a more helpful error message for encrypted swap Date: Sat, 09 Jan 2016 00:38:34 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:38:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206005 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kern |bin --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:39:15 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D911CA68161 for ; Sat, 9 Jan 2016 00:39:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA6EB1A8F for ; Sat, 9 Jan 2016 00:39:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090dFB6052161 for ; Sat, 9 Jan 2016 00:39:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205998] release/release.sh fails if packages are already installed in chroot Date: Sat, 09 Jan 2016 00:39:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:39:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205998 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:41:20 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0083FA68231 for ; Sat, 9 Jan 2016 00:41:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E649F1C3C for ; Sat, 9 Jan 2016 00:41:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090fJnP057155 for ; Sat, 9 Jan 2016 00:41:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205998] release/release.sh fails if packages are already installed in chroot Date: Sat, 09 Jan 2016 00:41:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gjb@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gjb@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:41:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205998 Glen Barber changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |gjb@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:41:51 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2FC52A68383 for ; Sat, 9 Jan 2016 00:41:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 210BA1CF1 for ; Sat, 9 Jan 2016 00:41:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090foSi059984 for ; Sat, 9 Jan 2016 00:41:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206003] ports-mgmt/pkg crash if env variable HTTP_USER_AGENT is empty Date: Sat, 09 Jan 2016 00:41:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc assigned_to version product component Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:41:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206003 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|pkg crash |ports-mgmt/pkg crash if env | |variable HTTP_USER_AGENT is | |empty Assignee|freebsd-bugs@FreeBSD.org |pkg@FreeBSD.org Version|10.2-STABLE |Latest Product|Base System |Ports & Packages Component|bin |Individual Port(s) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 00:44:31 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E787A68566 for ; Sat, 9 Jan 2016 00:44:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F5DF1183 for ; Sat, 9 Jan 2016 00:44:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u090iV2k064770 for ; Sat, 9 Jan 2016 00:44:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198062] FreeBSD 10.1-RELEASE kernel freezes on 'pci0: on pcib0' Date: Sat, 09 Jan 2016 00:44:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jhkingsr@gmail.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 00:44:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D198062 --- Comment #28 from Joseph King --- OK OK boot -v /boot/test/kernel text=3D0xfd2528 data=3D0x128030+0x207c00 syms=3D[0x8+0x145f20+0x8+0x160160] Booting... Table 'FACP' at 0xbfff0290 Table 'APIC' at 0xbfff0390 APIC: Found table at 0xbfff0390 APIC: Using the MADT enumerator. MADT: Found CPU APIC ID 0 ACPI ID 1: enabled SMP: Added CPU 0 (AP) MADT: Found CPU APIC ID 1 ACPI ID 2: enabled SMP: Added CPU 1 (AP) MADT: Found CPU APIC ID 2 ACPI ID 3: enabled SMP: Added CPU 2 (AP) MADT: Found CPU APIC ID 3 ACPI ID 4: enabled SMP: Added CPU 3 (AP) MADT: Found CPU APIC ID 132 ACPI ID 5: disabled MADT: Found CPU APIC ID 133 ACPI ID 6: disabled MADT: Found CPU APIC ID 134 ACPI ID 7: disabled MADT: Found CPU APIC ID 135 ACPI ID 8: disabled MADT: Found CPU APIC ID 136 ACPI ID 9: disabled MADT: Found CPU APIC ID 137 ACPI ID 10: disabled MADT: Found CPU APIC ID 138 ACPI ID 11: disabled MADT: Found CPU APIC ID 139 ACPI ID 12: disabled Copyright (c) 1992-2016 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 10.2-STABLE #1 64e0804(pr_198062): Fri Jan 8 19:09:56 EST 2016 =20=20=20 jhks@netsys9.isolan.itsmine.com:/usr/obj/ufs/pr_198062-git/freebsd/sys/GENE= RIC amd64 FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 Preloaded elf kernel "/boot/test/kernel" at 0xffffffff819aa000. Calibrating TSC clock ... TSC clock: 2793067889 Hz CPU: Dual-Core AMD Opteron(tm) Processor 2220 (2793.07-MHz K8-class CPU) Origin=3D"AuthenticAMD" Id=3D0x40f13 Family=3D0xf Model=3D0x41 Steppi= ng=3D3 =20 Features=3D0x178bfbff Features2=3D0x2001 AMD Features=3D0xea500800 AMD Features2=3D0x1f SVM: Features=3D0x0 Revision=3D1, ASIDs=3D64 L1 2MB data TLB: 8 entries, fully associative L1 2MB instruction TLB: 8 entries, fully associative L1 4KB data TLB: 32 entries, fully associative L1 4KB instruction TLB: 32 entries, fully associative L1 data cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L1 instruction cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associat= ive L2 2MB unified TLB: 0 entries, disabled/not present L2 4KB data TLB: 512 entries, 4-way associative L2 4KB instruction TLB: 512 entries, 4-way associative L2 unified cache: 1024 kbytes, 64 bytes/line, 1 lines/tag, 16-way associati= ve real memory =3D 4294967296 (4096 MB) Physical memory chunk(s): 0x0000000000010000 - 0x000000000009bfff, 573440 bytes (140 pages) 0x0000000000100000 - 0x00000000001fffff, 1048576 bytes (256 pages) 0x00000000019eb000 - 0x00000000b7d60fff, 3057082368 bytes (746358 pages) 0x0000000100000000 - 0x000000013ffe7fff, 1073643520 bytes (262120 pages) avail memory =3D 4103352320 (3913 MB) Event timer "LAPIC" quality 400 ACPI APIC Table: <062309 APIC1333> INTR: Adding local APIC 1 as a target INTR: Adding local APIC 2 as a target INTR: Adding local APIC 3 as a target FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs FreeBSD/SMP: 2 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 cpu2 (AP): APIC ID: 2 cpu3 (AP): APIC ID: 3 APIC: CPU 0 has ACPI ID 1 APIC: CPU 1 has ACPI ID 2 APIC: CPU 2 has ACPI ID 3 APIC: CPU 3 has ACPI ID 4 x86bios: IVT 0x000000-0x0004ff at 0xfffff80000000000 x86bios: SSEG 0x098000-0x098fff at 0xfffffe011bbc0000 x86bios: EBDA 0x09f000-0x09ffff at 0xfffff8000009f000 x86bios: ROM 0x0a0000-0x0fefff at 0xfffff800000a0000 XEN: CPU 0 has VCPU ID 1 XEN: CPU 1 has VCPU ID 2 XEN: CPU 2 has VCPU ID 3 XEN: CPU 3 has VCPU ID 4 random device not loaded; using insecure entropy ULE: setup cpu 0 ULE: setup cpu 1 ULE: setup cpu 2 ULE: setup cpu 3 ACPI: RSDP 0x00000000000F8F90 000024 (v02 ACPIAM) ACPI: XSDT 0x00000000BFFF0100 00004C (v01 062309 XSDT1333 20090623 MSFT 00000097) ACPI: FACP 0x00000000BFFF0290 0000F4 (v03 062309 FACP1333 20090623 MSFT 00000097) ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe1Block: 96/64 (20150515/tbfadt-644) ACPI: DSDT 0x00000000BFFF04E0 00370B (v01 0AAAB 0AAAB001 00000001 INTL 02002026) ACPI: FACS 0x00000000BFFFE000 000040 ACPI: APIC 0x00000000BFFF0390 000102 (v01 062309 APIC1333 20090623 MSFT 00000097) ACPI: OEMB 0x00000000BFFFE040 000056 (v01 062309 OEMB1333 20090623 MSFT 00000097) ACPI: SRAT 0x00000000BFFF3BF0 0000E8 (v01 AMD FAM_F_10 00000002 AMD=20 00000001) ACPI: SSDT 0x00000000BFFF3CE0 000574 (v01 A M I POWERNOW 00000001 AMD=20 00000001) MADT: Found IO APIC ID 4, Interrupt 0 at 0xfec00000 ioapic0: Routing external 8259A's -> intpin 0 MADT: Found IO APIC ID 5, Interrupt 16 at 0xfec01000 MADT: Found IO APIC ID 6, Interrupt 32 at 0xfec02000 lapic0: Routing NMI -> LINT1 lapic0: LINT1 trigger: edge lapic0: LINT1 polarity: high lapic1: Routing NMI -> LINT1 lapic1: LINT1 trigger: edge lapic1: LINT1 polarity: high lapic2: Routing NMI -> LINT1 lapic2: LINT1 trigger: edge lapic2: LINT1 polarity: high lapic3: Routing NMI -> LINT1 lapic3: LINT1 trigger: edge lapic3: LINT1 polarity: high MADT: Ignoring local NMI routed to ACPI CPU 5 MADT: Ignoring local NMI routed to ACPI CPU 6 MADT: Ignoring local NMI routed to ACPI CPU 7 MADT: Ignoring local NMI routed to ACPI CPU 8 MADT: Ignoring local NMI routed to ACPI CPU 9 MADT: Ignoring local NMI routed to ACPI CPU 10 MADT: Ignoring local NMI routed to ACPI CPU 11 MADT: Ignoring local NMI routed to ACPI CPU 12 MADT: Interrupt override: source 0, irq 2 ioapic0: Routing IRQ 0 -> intpin 2 MADT: Forcing active-low polarity and level trigger for SCI ioapic0: intpin 9 polarity: low ioapic0: intpin 9 trigger: level ioapic0 irqs 0-15 on motherboard ioapic1 irqs 16-31 on motherboard ioapic2 irqs 32-47 on motherboard cpu0 BSP: ID: 0x00000000 VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 snd_unit_init() u=3D0x00ff8000 [512] d=3D0x00007c00 [32] c=3D0x000003ff [10= 24] feeder_register: snd_unit=3D-1 snd_maxautovchans=3D16 latency=3D5 feeder_ra= te_min=3D1 feeder_rate_max=3D2016000 feeder_rate_round=3D25 wlan: <802.11 Link Layer> Hardware, Intel Secure Key RNG: RDRAND is not present Hardware, VIA Nehemiah Padlock RNG: VIA Padlock RNG not present null: nfslock: pseudo-device Falling back to random adaptor random: initialized VESA: INT 0x10 vector 0xc000:0x1734 VESA: information block 0000 56 45 53 41 00 02 00 01 00 99 01 00 00 00 22 00 0010 00 99 00 02 00 01 0b 01 00 99 21 01 00 99 26 01 0020 00 99 6a 00 02 01 04 01 82 01 0d 01 0e 01 0f 01 0030 20 01 92 01 93 01 94 01 95 01 96 01 a2 01 a3 01 0040 a4 01 a5 01 a6 01 b2 01 b3 01 b4 01 b5 01 b6 01 0050 c2 01 c3 01 c4 01 c5 01 c6 01 00 01 83 01 84 01 0060 85 01 86 01 01 01 10 01 11 01 12 01 21 01 03 01 0070 13 01 14 01 15 01 22 01 05 01 16 01 17 01 18 01 0080 23 01 07 01 19 01 1a 01 1b 01 24 01 09 01 0a 01 0090 30 01 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0100 41 54 49 20 45 53 31 30 30 30 00 41 54 49 20 54 0110 65 63 68 6e 6f 6c 6f 67 69 65 73 20 49 6e 63 2e 0120 00 52 4e 35 30 00 30 31 2e 30 30 00 00 00 00 00 0130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 VESA: 56 mode(s) found VESA: v2.0, 32768k memory, flags:0x1, mode table:0xfffffe011bbfd022 (990000= 22) VESA: ATI ES1000 VESA: ATI Technologies Inc. RN50 01.00 io: VMBUS: load kbd: new array size 4 kbd1 at kbdmux0 mem: hptnr: R750/DC7280 controller driver v1.1.4 hpt27xx: RocketRAID 27xx controller driver v1.2.7 hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2 acpi0: <062309 XSDT1333> on motherboard ACPI: All ACPI Tables successfully acquired ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48 ACPI: Executed 1 blocks of module-level executable AML code acpi0: Power Button (fixed) acpi0: Sleep Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, bff00000 (3) failed cpu0: Processor \_PR_.P001 (ACPI ID 1) -> APIC ID 0 cpu0: on acpi0 cpu0: switching to generic Cx mode cpu1: Processor \_PR_.P002 (ACPI ID 2) -> APIC ID 1 cpu1: on acpi0 cpu2: Processor \_PR_.P003 (ACPI ID 3) -> APIC ID 2 cpu2: on acpi0 cpu3: Processor \_PR_.P004 (ACPI ID 4) -> APIC ID 3 cpu3: on acpi0 ACPI: Processor \_PR_.P005 (ACPI ID 5) ignored ACPI: Processor \_PR_.P006 (ACPI ID 6) ignored ACPI: Processor \_PR_.P007 (ACPI ID 7) ignored ACPI: Processor \_PR_.P008 (ACPI ID 8) ignored ACPI: Processor \_PR_.P009 (ACPI ID 9) ignored ACPI: Processor \_PR_.P00A (ACPI ID 10) ignored ACPI: Processor \_PR_.P00B (ACPI ID 11) ignored ACPI: Processor \_PR_.P00C (ACPI ID 12) ignored attimer0: port 0x40-0x43 irq 0 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 0 vector 49 Event timer "i8254" frequency 1193182 Hz quality 100 atrtc0: port 0x70-0x71 irq 8 on acpi0 atrtc0: registered as a time-of-day clock (resolution 1000000us, adjustment 0.500000000s) ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 50 Event timer "RTC" frequency 32768 Hz quality 0 hpet0: iomem 0xfed00000-0xfed03fff on acpi0 hpet0: vendor 0xffff, rev 0xff, 232831Hz 64bit, 32 timers, legacy route hpet0: t0: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t1: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t2: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t3: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t4: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t5: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t6: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t7: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t8: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t9: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t10: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t11: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t12: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t13: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t14: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t15: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t16: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t17: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t18: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t19: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t20: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t21: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t22: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t23: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t24: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t25: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t26: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t27: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t28: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t29: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t30: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: t31: irqs 0xffffffff (31), MSI, 64bit, periodic hpet0: HPET never increments, disabling device_attach: hpet0 attach returned 6 ACPI timer: 1/3 0/4 0/4 0/4 0/4 1/3 0/4 0/4 1/3 0/4 -> 3 Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <32-bit timer at 3.579545MHz> port 0x508-0x50b on acpi0 pci_link0: Index IRQ Rtd Ref IRQs Initial Probe 0 9 N 0 3 4 5 7 9 11 12 14 15 Validation 0 9 N 0 3 4 5 7 9 11 12 14 15 After Disable 0 255 N 0 3 4 5 7 9 11 12 14 15 pci_link1: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 11 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link2: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link3: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link4: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link5: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link6: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link7: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link8: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link9: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link10: Index IRQ Rtd Ref IRQs Initial Probe 0 3 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 3 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link11: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 5 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link12: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link13: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link14: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link15: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link16: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link17: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link18: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link19: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link20: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link21: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link22: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link23: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link24: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link25: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link26: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link27: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link28: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link29: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link30: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 Validation 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 After Disable 0 255 N 0 1 3 4 5 6 7 9 11 12 14 15 pci_link31: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 10 Validation 0 10 N 0 10 After Disable 0 255 N 0 10 pci_link32: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 11 Validation 0 11 N 0 11 After Disable 0 255 N 0 11 pcib0: port 0xcf8-0xcff on acpi0 pcib0: decoding 5 range 0-0xff pcib0: decoding 4 range 0-0xcf7 pcib0: decoding 4 range 0xd00-0xffff pcib0: decoding 3 range 0xa0000-0xbffff pcib0: decoding 3 range 0xd0000-0xdffff pcib0: decoding 3 range 0xc0000000-0xffffffff pci0: on pcib0 pci0: domain=3D0, physical bus=3D0 pci0:0:0:0: checking for a device: none pci0:0:1:0: checking for a device: found pci0:0:1:0: before pci_read_cap pci0:0:1:0: reading cap at [90]: ID 07, nexta0 pci0:0:1:0: reading cap at [a0]: ID 08, nextb0 pci0:0:1:0: reading cap at [b0]: ID 08, nextd8 pci0:0:1:0: reading cap at [d8]: ID 0d, next00 pci0:0:1:0: before pci_cfg_save pci0:0:1:0: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0036, revid=3D0x00 domain=3D0, bus=3D0, slot=3D1, func=3D0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) pci0:0:1:0: before pci_add_resources secbus=3D1, subbus=3D2 pci0:0:1:0: before pci_child_added pci0:0:2:0: checking for a device: found pci0:0:2:0: before pci_read_cap pci0:0:2:0: before pci_cfg_save pci0:0:2:0: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0205, revid=3D0x00 domain=3D0, bus=3D0, slot=3D2, func=3D0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0107, statreg=3D0x0200, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) pci0:0:2:0: before pci_add_resources pci0:0:2:0: before pci_child_added pci0:0:2:1: checking for a device: found pci0:0:2:1: before pci_read_cap pci0:0:2:1: before pci_cfg_save pci0:0:2:1: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0214, revid=3D0x00 domain=3D0, bus=3D0, slot=3D2, func=3D1 class=3D01-01-8a, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0005, statreg=3D0x0200, cachelnsz=3D16 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) pci0:0:2:1: before pci_add_resources pcib0: allocated type 4 (0x1f0-0x1f7) for rid 10 of pci0:0:2:1 pcib0: allocated type 4 (0x3f6-0x3f6) for rid 14 of pci0:0:2:1 pcib0: allocated type 4 (0x170-0x177) for rid 18 of pci0:0:2:1 pcib0: allocated type 4 (0x376-0x376) for rid 1c of pci0:0:2:1 map[20]: type I/O Port, range 32, base 0xffa0, size 4, enabled pcib0: allocated type 4 (0xffa0-0xffaf) for rid 20 of pci0:0:2:1 pci0:0:2:1: before pci_child_added pci0:0:2:2: checking for a device: found pci0:0:2:2: before pci_read_cap pci0:0:2:2: before pci_cfg_save pci0:0:2:2: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0234, revid=3D0x00 domain=3D0, bus=3D0, slot=3D2, func=3D2 class=3D06-01-00, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0107, statreg=3D0x0200, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) pci0:0:2:2: before pci_add_resources pci0:0:2:2: before pci_child_added pci0:0:2:3: checking for a device: none pci0:0:2:4: checking for a device: none pci0:0:2:5: checking for a device: none pci0:0:2:6: checking for a device: none pci0:0:2:7: checking for a device: none pci0:0:3:0: checking for a device: found pci0:0:3:0: before pci_read_cap pci0:0:3:0: reading cap at [dc]: ID 01, next00 pci0:0:3:0: before pci_cfg_save pci0:0:3:0: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0223, revid=3D0x01 domain=3D0, bus=3D0, slot=3D3, func=3D0 class=3D0c-03-10, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0117, statreg=3D0x02b0, cachelnsz=3D16 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) intpin=3Da, irq=3D10 powerspec 2 supports D0 D3 current D0 pci0:0:3:0: before pci_add_resources map[10]: type Memory, range 32, base 0xff6ec000, size 12, enabled pcib0: allocated type 3 (0xff6ec000-0xff6ecfff) for rid 10 of pci0:0:3:0 map[14]: type I/O Port, range 32, base 0xd400, size 8, enabled pcib0: allocated type 4 (0xd400-0xd4ff) for rid 14 of pci0:0:3:0 pcib0: matched entry for 0.3.INTA pcib0: slot 3 INTA hardwired to IRQ 10 ioapic0: Changing trigger for pin 10 to level ioapic0: Changing polarity for pin 10 to low ohci early: SMM active, request owner change pci0:0:3:0: before pci_child_added pci0:0:3:1: checking for a device: found pci0:0:3:1: before pci_read_cap pci0:0:3:1: reading cap at [dc]: ID 01, next00 pci0:0:3:1: before pci_cfg_save pci0:0:3:1: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0223, revid=3D0x01 domain=3D0, bus=3D0, slot=3D3, func=3D1 class=3D0c-03-10, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0117, statreg=3D0x02b0, cachelnsz=3D16 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) intpin=3Da, irq=3D10 powerspec 2 supports D0 D3 current D0 pci0:0:3:1: before pci_add_resources map[10]: type Memory, range 32, base 0xff6ed000, size 12, enabled pcib0: allocated type 3 (0xff6ed000-0xff6edfff) for rid 10 of pci0:0:3:1 map[14]: type I/O Port, range 32, base 0xd800, size 8, enabled pcib0: allocated type 4 (0xd800-0xd8ff) for rid 14 of pci0:0:3:1 pcib0: matched entry for 0.3.INTA pcib0: slot 3 INTA hardwired to IRQ 10 ohci early: SMM active, request owner change pci0:0:3:1: before pci_child_added pci0:0:3:2: checking for a device: found pci0:0:3:2: before pci_read_cap pci0:0:3:2: reading cap at [dc]: ID 01, next00 pci0:0:3:2: before pci_cfg_save pci0:0:3:2: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0223, revid=3D0x01 domain=3D0, bus=3D0, slot=3D3, func=3D2 class=3D0c-03-20, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0117, statreg=3D0x02b0, cachelnsz=3D16 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) intpin=3Da, irq=3D10 powerspec 2 supports D0 D1 D2 D3 current D0 pci0:0:3:2: before pci_add_resources map[10]: type Memory, range 32, base 0xff6ee000, size 12, enabled pcib0: allocated type 3 (0xff6ee000-0xff6eefff) for rid 10 of pci0:0:3:2 map[14]: type I/O Port, range 32, base 0xe800, size 8, enabled pcib0: allocated type 4 (0xe800-0xe8ff) for rid 14 of pci0:0:3:2 pcib0: matched entry for 0.3.INTA pcib0: slot 3 INTA hardwired to IRQ 10 pci0:0:3:2: before pci_child_added pci0:0:3:3: checking for a device: none pci0:0:3:4: checking for a device: none pci0:0:3:5: checking for a device: none pci0:0:3:6: checking for a device: none pci0:0:3:7: checking for a device: none pci0:0:4:0: checking for a device: found pci0:0:4:0: before pci_read_cap pci0:0:4:0: reading cap at [dc]: ID 01, next00 pci0:0:4:0: before pci_cfg_save pci0:0:4:0: before pci_cfg_restore found-> vendor=3D0x8086, dev=3D0x1229, revid=3D0x10 domain=3D0, bus=3D0, slot=3D4, func=3D0 class=3D02-00-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0117, statreg=3D0x0290, cachelnsz=3D16 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x08 (2000 ns), maxlat=3D0x38 (= 14000 ns) intpin=3Da, irq=3D9 powerspec 2 supports D0 D1 D2 D3 current D0 pci0:0:4:0: before pci_add_resources map[10]: type Memory, range 32, base 0xff6eb000, size 12, enabled pcib0: allocated type 3 (0xff6eb000-0xff6ebfff) for rid 10 of pci0:0:4:0 map[14]: type I/O Port, range 32, base 0xec00, size 6, enabled pcib0: allocated type 4 (0xec00-0xec3f) for rid 14 of pci0:0:4:0 map[18]: type Memory, range 32, base 0xff6a0000, size 17, enabled pcib0: allocated type 3 (0xff6a0000-0xff6bffff) for rid 18 of pci0:0:4:0 pcib0: matched entry for 0.4.INTA pcib0: slot 4 INTA hardwired to IRQ 16 pci0:0:4:0: before pci_child_added pci0:0:6:0: checking for a device: found pci0:0:6:0: before pci_read_cap pci0:0:6:0: reading cap at [90]: ID 07, nexta0 pci0:0:6:0: reading cap at [a0]: ID 08, nextb0 pci0:0:6:0: reading cap at [b0]: ID 08, next00 pci0:0:6:0: before pci_cfg_save pci0:0:6:0: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0130, revid=3D0xb0 domain=3D0, bus=3D0, slot=3D6, func=3D0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) pci0:0:6:0: before pci_add_resources secbus=3D3, subbus=3D3 pci0:0:6:0: before pci_child_added pci0:0:7:0: checking for a device: found pci0:0:7:0: before pci_read_cap pci0:0:7:0: reading cap at [90]: ID 07, nexta0 pci0:0:7:0: reading cap at [a0]: ID 08, next00 pci0:0:7:0: before pci_cfg_save pci0:0:7:0: before pci_cfg_restore found-> vendor=3D0x1166, dev=3D0x0130, revid=3D0xb0 domain=3D0, bus=3D0, slot=3D7, func=3D0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 n= s) pci0:0:7:0: before pci_add_resources secbus=3D4, subbus=3D4 pci0:0:7:0: before pci_child_added pci0:0:8:0: checking for a device: found pci0:0:8:0: before pci_read_cap pci0:0:8:0: reading cap at [a0]: ID 08, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 pci0:0:8:0: reading cap at [b0]: ID b0, nextb0 Keeps cycling the "pci0:0:8:0: reading cap at [b0]: ID b0, nextb0" endlessl= y. Due to the constraints of the posting system I'm omitting the over 800 of a= ll of these that appeared before I stopped it. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 02:10:52 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4AABDA68259 for ; Sat, 9 Jan 2016 02:10:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B3151AF1 for ; Sat, 9 Jan 2016 02:10:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u092AqT3007891 for ; Sat, 9 Jan 2016 02:10:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 160392] [panic] double fault on configuring for php5-filter-5.3.8 Date: Sat, 09 Jan 2016 02:10:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: junovitch@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: Not Enough Information X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: junovitch@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 02:10:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D160392 Jason Unovitch changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |junovitch@freebsd.org Status|In Progress |Closed Resolution|--- |Not Enough Information --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 04:30:46 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0413AA68F83 for ; Sat, 9 Jan 2016 04:30:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0BD51EFE for ; Sat, 9 Jan 2016 04:30:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u094Ujf9008041 for ; Sat, 9 Jan 2016 04:30:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206053] There is a bug in kqueue support code of netmap Date: Sat, 09 Jan 2016 04:30:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: btw@mail.ustc.edu.cn X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 04:30:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206053 Bug ID: 206053 Summary: There is a bug in kqueue support code of netmap Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: btw@mail.ustc.edu.cn It seems that there is a bug in kqueue support code of netmap which can cau= se kernel panic. And I can reproduce the kernel panic with this simple program= on -HEAD: #include #include #include #include #include #ifndef NETMAP_WITH_LIBS #define NETMAP_WITH_LIBS #endif #include static int kq_add(int kq, int fd) { struct kevent changes[1]; int ret; EV_SET(&changes[0], fd, EVFILT_READ, EV_ADD, 0, 0, NULL); ret =3D kevent(kq, changes, 1, NULL, 0, NULL); assert(ret !=3D -1); printf("[%s] success\n", __func__); return (ret); } static void kq_wait(int kq) { struct kevent events[1]; int ret; ret =3D kevent(kq, NULL, 0, events, 1, NULL); assert(ret !=3D -1); printf("[%s] success\n", __func__); } int main(void) { const char *ifname =3D "vale0:vm1"; struct nm_desc *d; int kq; d =3D nm_open(ifname, NULL, 0, 0); assert(d !=3D NULL); kq =3D kqueue(); assert(kq !=3D -1); kq_add(kq, d->fd); kq_wait(kq); return (0); } And below is part of the crash summary: freebsd dumped core - see /var/crash/vmcore.0 Fri Jan 8 22:19:39 CST 2016 FreeBSD freebsd 11.0-CURRENT FreeBSD 11.0-CURRENT #2 d1f6105(master)-dirty:= Fri Jan 8 21:55:33 CST 2016 btw@freebsd:/usr/obj/root/freebsd/sys/GENERIC= =20 amd64 ...... panic: mutex nm_kn_lock not owned at /root/freebsd/sys/kern/kern_event.c:20= 73 cpuid =3D 1 KDB: stack backtrace: db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame 0xfffffe011744c= 420 vpanic() at vpanic+0x182/frame 0xfffffe011744c4a0 panic() at panic+0x43/frame 0xfffffe011744c500 __mtx_assert() at __mtx_assert+0xbf/frame 0xfffffe011744c510 knlist_add() at knlist_add+0x20/frame 0xfffffe011744c540 netmap_kqfilter() at netmap_kqfilter+0x101/frame 0xfffffe011744c580 devfs_kqfilter_f() at devfs_kqfilter_f+0x81/frame 0xfffffe011744c5d0 kqueue_register() at kqueue_register+0x5bf/frame 0xfffffe011744c670 kqueue_kevent() at kqueue_kevent+0xc8/frame 0xfffffe011744c840 kern_kevent_fp() at kern_kevent_fp+0x99/frame 0xfffffe011744c890 kern_kevent() at kern_kevent+0x9f/frame 0xfffffe011744c8f0 sys_kevent() at sys_kevent+0x11c/frame 0xfffffe011744c9a0 amd64_syscall() at amd64_syscall+0x2db/frame 0xfffffe011744cab0 Xfast_syscall() at Xfast_syscall+0xfb/frame 0xfffffe011744cab0 --- syscall (363, FreeBSD ELF64, sys_kevent), rip =3D 0x80095bc7a, rsp =3D 0x7fffffffe988, rbp =3D 0x7fffffffe9e0 --- KDB: enter: panic ...... --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 05:16:00 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57DC5A69C22 for ; Sat, 9 Jan 2016 05:16:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 447911BFF for ; Sat, 9 Jan 2016 05:16:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u095FxUh037363 for ; Sat, 9 Jan 2016 05:16:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206055] share/zoneinfo "beforeinstall" fails to create needed directories in DESTDIR Date: Sat, 09 Jan 2016 05:15:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rpokala@panasas.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 05:16:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206055 Bug ID: 206055 Summary: share/zoneinfo "beforeinstall" fails to create needed directories in DESTDIR Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: rpokala@panasas.com CC: dws@panasas.com Timezone files used to be installed with `zic', but they have been switched= to using `install' as of r245265. However, that does not create the required subdirectories leading to the final destination. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 05:16:32 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CDC5CA69C7F for ; Sat, 9 Jan 2016 05:16:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BDA221C51 for ; Sat, 9 Jan 2016 05:16:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u095GWMV038190 for ; Sat, 9 Jan 2016 05:16:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206056] [ext2fs][patch][panic] EXT4: mount panic from freeing invalid pointers Date: Sat, 09 Jan 2016 05:16:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: damjan.jov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 05:16:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206056 Bug ID: 206056 Summary: [ext2fs][patch][panic] EXT4: mount panic from freeing invalid pointers Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: damjan.jov@gmail.com CC: freebsd-fs@FreeBSD.org Keywords: patch Created attachment 165290 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165290&action= =3Dedit Preventing a panic when pointers from struct ext2mount's um_e2fs are freed On Linux I made a 500MB EXT4 filesystem for testing, and when I tried to mo= unt it in FreeBSD with: mdconfig -a /path/to/filesystem mount -t ext2fs -o ro /dev/md0 /path/to/mountpoint the following error got printed out, followed immediately by a panic: ext2fs: no space for extra inode timestamps Fatal trap 12: page fault while in kernel mode cpuid =3D 0; apicid =3D 00 fault_virtual_address =3D 0x4 fault code =3D supervisor read, page not present instruction pointer =3D 0x20:0xc0b1f1cc stack pointer =3D 0x28:0xcebee898 frame pointer =3D 0x28:0xcebee8c0 code segment =3D base 0x0, limit 0xfffff, type 0x1b =3D DPL 0, pres 1, def32 1, gran 1 processor eflags =3D interrupt enabled, resume, IOPL =3D 0 current process =3D 777 (mount) [ thread pid 777 tid 100065 ] Stopped at free+0x5c: movl 0x4(%eax),%eax db> bt Tracing pid 777 tid 100065 td 0xc4e0c620 free(aa,c54ab298,2a3,2a1,0,...) at free+0x5c/frame 0xcebee8c0 ext2_mount(c4e16a80,c54ab208,c5374380,c4e10800,c4c40a70,...) at ext2_mount+0x1604/frame 0xceebe9e8 vfs_donmount(c4e4c620,1,0,c4c11b00,c4c11b00,...) at vfs_donmount+0xdc6/frame 0xceebebf0 sys_nmount(c4e0c620,ceebeca8,c506890c,c4e0c620,c506890c,...) at sys_nmount+0x78/frame 0xceebec18 syscall(ceebece8) at syscall+0x4a6/frame 0xceebecdc Xint0x80_syscall() at Xint0x80_syscall+0x21/frame 0xceebecdc --- syscall (378, FreeBSD ELF32, sys_nmount), eip =3D 0x280e013b, esp =3D 0xbfbfdd20, ebp =3D 0xbfbfe278 The "ext2fs: no space for extra inode timestamps" message comes from compute_sb_data() in ext2_vfsops.c, which returns EINVAL after printing it, never reaching the subsequent lines that initialize fs->e2fs_gd and fs->e2fs_contigdirs. When ext2_mountfs() calls compute_sb_data(), it does a "goto out" on error, and in "out" it attempts to free() those 2 fields. Sin= ce the memory for the struct those fields are in wasn't initialized when it was allocated, free() is being passed invalid pointers, resulting in a panic. The attached patch initializes the struct with those fields to zeroes on allocation, preventing the panic. I'll investigate the original error that caused this buggy error path to be taken in a separate issue. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 05:20:29 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 157FCA69E05 for ; Sat, 9 Jan 2016 05:20:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0248C1DAA for ; Sat, 9 Jan 2016 05:20:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u095KS9f043548 for ; Sat, 9 Jan 2016 05:20:28 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206055] share/zoneinfo "beforeinstall" fails to create needed directories in DESTDIR Date: Sat, 09 Jan 2016 05:20:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rpokala@panasas.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 05:20:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206055 --- Comment #1 from Ravi Pokala --- Phabricator: https://reviews.freebsd.org/D4840 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 07:51:22 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BBA99A68D90 for ; Sat, 9 Jan 2016 07:51:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD0C1158D for ; Sat, 9 Jan 2016 07:51:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u097pMOT050390 for ; Sat, 9 Jan 2016 07:51:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206059] [ext2fs][patch] EXT4: cannot mount filesystems < 512 MiB in size: "ext2fs: no space for extra inode timestamps" Date: Sat, 09 Jan 2016 07:51:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: damjan.jov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 07:51:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206059 Bug ID: 206059 Summary: [ext2fs][patch] EXT4: cannot mount filesystems < 512 MiB in size: "ext2fs: no space for extra inode timestamps" Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: damjan.jov@gmail.com CC: freebsd-fs@FreeBSD.org Created attachment 165293 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165293&action= =3Dedit Allow inode size < sizeof(struct ext2fs_dinode) when EXT2F_ROCOMPAT_EXTRA_I= SIZE is set When making the EXT4 filesystem, mkfs.ext4 uses different inode sizes depen= ding on the filesystem file. For a large filesystem, "dumpe2fs" returns these relevant fields: Filesystem features: has_journal ext_attr resize_inode dir_index filet= ype extent flex_bg sparse_super large_file huge_file uninit_bg dir_nlink extra_isize Inode size: 256 Required extra isize: 28 Desired extra isize: 28 For a small filesystem, "dumpe2fs" returns this instead, and "Required extra isize" and "Desired extra isize" are missing: Filesystem features: has_journal ext_attr resize_inode dir_index filet= ype extent flex_bg sparse_super huge_file uninit_bg dir_nlink extra_isize Inode size: 128 Bisection searching with different filesystem sizes ("dd if=3D/dev/zero of=3D/tmp/filesystem bs=3D1M count=3D..." + "mkfs.ext4 /tmp/filesystem" + "= dumpe2fs -h /tmp/filesystem") shows inode size 256 is used for filesystems >=3D 512 = MiB, and smaller filesystems use inode size 128. Attemping to mount the small filesystems fails with this error (and unless you've patched ext2fs with the patch from bug 206056, also panics the kernel!!): ext2fs: no space for extra inode timestamps That message comes from compute_sb_data() in ext2_vfsops.c, which does /* Check for extra isize in big inodes. */ if (EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_EXTRA_ISIZE) && EXT2_INODE_SIZE(fs) < sizeof(struct ext2fs_dinode)) { printf("ext2fs: no space for extra inode timestamps\n"); return (EINVAL); } which must be wrong, because even small filesystems have the extra_isize feature set, yet the inode size is 128 which is smaller than sizeof(struct ext2fs_dinode). Since EXT2F_ROCOMPAT_EXTRA_ISIZE isn't used anywhere else in the ext2fs mod= ule, I've made a patch that deletes that entire section, and it gets the small filesystems to mount and work. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 09:00:54 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FE4BA68C7F for ; Sat, 9 Jan 2016 09:00:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 71D781BF3 for ; Sat, 9 Jan 2016 09:00:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0990r3x036446 for ; Sat, 9 Jan 2016 09:00:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205834] rtadvd: accessing freed struct Date: Sat, 09 Jan 2016 09:00:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 09:00:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205834 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ae@FreeBSD.org --- Comment #1 from Andrey V. Elsukov --- Created attachment 165294 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165294&action= =3Dedit Proposed patch (untested) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 09:03:36 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18F6BA68E9C for ; Sat, 9 Jan 2016 09:03:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0AB201E39 for ; Sat, 9 Jan 2016 09:03:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0993ZMV060682 for ; Sat, 9 Jan 2016 09:03:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205834] rtadvd: accessing freed struct Date: Sat, 09 Jan 2016 09:03:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 09:03:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205834 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hrs@FreeBSD.org --- Comment #2 from Andrey V. Elsukov --- The code here looks very strange to me. I added the patch, that fixes (prob= ably possible) leak of rainfo when ifi is removed, and avoids reported use after free. But I have no idea how to test it. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 09:07:39 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CEC4BA69046 for ; Sat, 9 Jan 2016 09:07:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C08B5110F for ; Sat, 9 Jan 2016 09:07:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0997d97083712 for ; Sat, 9 Jan 2016 09:07:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205834] rtadvd: accessing freed struct Date: Sat, 09 Jan 2016 09:07:39 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 09:07:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205834 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #165294|0 |1 is obsolete| | --- Comment #3 from Andrey V. Elsukov --- Created attachment 165295 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165295&action= =3Dedit Proposed patch (untested) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 09:09:59 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 898AFA69185 for ; Sat, 9 Jan 2016 09:09:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B5CF14A0 for ; Sat, 9 Jan 2016 09:09:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0999wxR057813 for ; Sat, 9 Jan 2016 09:09:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205834] rtadvd: accessing freed struct Date: Sat, 09 Jan 2016 09:09:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 09:09:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205834 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #165295|0 |1 is obsolete| | --- Comment #4 from Andrey V. Elsukov --- Created attachment 165296 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165296&action= =3Dedit Proposed patch (untested) Another cleanup :) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 09:12:10 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6EFA8A692F0 for ; Sat, 9 Jan 2016 09:12:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60B9D17CA for ; Sat, 9 Jan 2016 09:12:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u099CAQq010533 for ; Sat, 9 Jan 2016 09:12:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205834] rtadvd: accessing freed struct Date: Sat, 09 Jan 2016 09:12:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 09:12:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205834 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #165296|0 |1 is obsolete| | --- Comment #5 from Andrey V. Elsukov --- Created attachment 165297 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165297&action= =3Dedit Proposed patch (untested) Grrr.. Now seems ok. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 09:38:06 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AD15A69A17 for ; Sat, 9 Jan 2016 09:38:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F00E41281 for ; Sat, 9 Jan 2016 09:38:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u099c51f055393 for ; Sat, 9 Jan 2016 09:38:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205932] [panic] Kernel panic when copying from ext2fs partition to UFS partition Date: Sat, 09 Jan 2016 09:38:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: damjan.jov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 09:38:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205932 --- Comment #9 from Damjan Jovanovic --- On 10.2 I get a very similar panic to Will B when reading mmaped files, and= the patch from bug 205938 fixes it, so this is probably a duplicate of 205938: panic: __lockmgr_args: recursing on non recusive lockmgr getblk @ (null):0 And the stack trace (details left out, due to i386 vs amd64 differences): db_trace_self_wrapper kdb_backtrace vpanic panic __lockmgr_args getblk breadn_flags ext4_ext_find_extent ext2_bmap VOP_BMAP_APV vnode_pager_generic_getpages ext2_getpages VOP_GETPAGES_APV vnode_pager_getpages vm_fault_hold vm_fault trap_pfault trap calltrap Oh and sysutils/fusefs-lkl looks awesome, thank you! It should also help ot= her projects interoperating with Linux drivers, such as webcamd. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 09:45:43 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 585EBA69CC6 for ; Sat, 9 Jan 2016 09:45:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48EB115AF for ; Sat, 9 Jan 2016 09:45:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u099jgvn071116 for ; Sat, 9 Jan 2016 09:45:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205928] Ipfw segmentation fault with nat command Date: Sat, 09 Jan 2016 09:45:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 09:45:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205928 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ae@FreeBSD.org Resolution|--- |DUPLICATE Status|New |Closed --- Comment #1 from Andrey V. Elsukov --- Hi, this is already fixed. Thanks! *** This bug has been marked as a duplicate of bug 203494 *** --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 17:33:44 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 486F3A69863 for ; Sat, 9 Jan 2016 17:33:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 39B141E6A for ; Sat, 9 Jan 2016 17:33:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09HXiof050056 for ; Sat, 9 Jan 2016 17:33:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 204549] freebsd-update should fetch e.g. /etc/ntp.conf.default Date: Sat, 09 Jan 2016 17:33:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: dave@horsfall.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 17:33:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D204549 --- Comment #1 from dave@horsfall.org --- Any progress on this, anyone? It's been two months, and so far not even so = much as an acknowledgement... --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 20:38:54 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37E3DA6981A for ; Sat, 9 Jan 2016 20:38:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 286AF1782 for ; Sat, 9 Jan 2016 20:38:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09KcrVt039126 for ; Sat, 9 Jan 2016 20:38:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206083] opera (version 32) crashes under linuxulator (64) Date: Sat, 09 Jan 2016 20:38:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: yaroslavfyodor.pushkin@mail.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 20:38:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206083 Bug ID: 206083 Summary: opera (version 32) crashes under linuxulator (64) Product: Base System Version: 10.2-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: yaroslavfyodor.pushkin@mail.ru CC: dchagin@FreeBSD.org, freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Created attachment 165329 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165329&action= =3Dedit ktraced and dumped into text file When i run 64bit opera binary under linuxulator (jailed ubuntu 14.04 64bit)= it fails to run with the following "ExceptionHandler::GenerateDump waitpid failed:No child processes Aborted" --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 20:43:44 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C7F3A69A4A for ; Sat, 9 Jan 2016 20:43:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1CA9E1A60 for ; Sat, 9 Jan 2016 20:43:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09Khhew050773 for ; Sat, 9 Jan 2016 20:43:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 204549] freebsd-update should fetch e.g. /etc/ntp.conf.default Date: Sat, 09 Jan 2016 20:43:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 20:43:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D204549 NGie Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cperciva@FreeBSD.org, | |ngie@FreeBSD.org --- Comment #2 from NGie Cooper --- How are you using freebsd-update.conf? The default version seems (haven't tested) that it should handle merging properly... --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 20:47:42 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5CF61A69B41 for ; Sat, 9 Jan 2016 20:47:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4D9D81B03 for ; Sat, 9 Jan 2016 20:47:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09KlfnV055717 for ; Sat, 9 Jan 2016 20:47:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206083] opera (version 32) crashes under linuxulator (64) Date: Sat, 09 Jan 2016 20:47:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dchagin@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: dchagin@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 20:47:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206083 Dmitry Chagin changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |dchagin@FreeBSD.org --- Comment #1 from Dmitry Chagin --- grab it --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 21:07:31 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3BD0A6A369 for ; Sat, 9 Jan 2016 21:07:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B3F3A172C for ; Sat, 9 Jan 2016 21:07:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09L7V80053396 for ; Sat, 9 Jan 2016 21:07:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191951] [build] stable/10 with WITHOUT_OPENSSL not compiling multiple issues Date: Sat, 09 Jan 2016 21:07:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: brnrd@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 21:07:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D191951 --- Comment #9 from Bernard Spil --- Created attachment 165331 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D165331&action= =3Dedit svn diff for share/mk/src.opts.mk I believe this fixes a number of the WITHOUT_OPENSSL issues where the dependency has not been registered in the build framework --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 21:12:10 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05AC0A6A447 for ; Sat, 9 Jan 2016 21:12:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA47119B8 for ; Sat, 9 Jan 2016 21:12:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09LC8Av079639 for ; Sat, 9 Jan 2016 21:12:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191951] [build] stable/10 with WITHOUT_OPENSSL not compiling multiple issues Date: Sat, 09 Jan 2016 21:12:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: brnrd@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 21:12:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D191951 Bernard Spil changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |delphij@FreeBSD.org --- Comment #10 from Bernard Spil --- *** Bug 201509 has been marked as a duplicate of this bug. *** --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 21:12:40 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 91AA6A6A53C for ; Sat, 9 Jan 2016 21:12:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81A1B1A48 for ; Sat, 9 Jan 2016 21:12:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09LCePW080261 for ; Sat, 9 Jan 2016 21:12:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 182977] [build] error of buildworld at the use of WITHOUT_OPENSSL (WITHOUT_CRYPT) Date: Sat, 09 Jan 2016 21:12:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.0-BETA1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: brnrd@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 21:12:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D182977 Bernard Spil changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |brnrd@freebsd.org Resolution|--- |DUPLICATE Status|In Progress |Closed --- Comment #1 from Bernard Spil --- *** This bug has been marked as a duplicate of bug 191951 *** --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 21:12:41 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9F0CA6A53F for ; Sat, 9 Jan 2016 21:12:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA81D1A4B for ; Sat, 9 Jan 2016 21:12:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09LCePc080261 for ; Sat, 9 Jan 2016 21:12:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191951] [build] stable/10 with WITHOUT_OPENSSL not compiling multiple issues Date: Sat, 09 Jan 2016 21:12:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: brnrd@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 21:12:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D191951 Bernard Spil changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |v.erakov@siteworks.com.ua --- Comment #11 from Bernard Spil --- *** Bug 182977 has been marked as a duplicate of this bug. *** --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 21:14:39 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBE86A6A608 for ; Sat, 9 Jan 2016 21:14:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC15E1B60 for ; Sat, 9 Jan 2016 21:14:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09LEdvm082865 for ; Sat, 9 Jan 2016 21:14:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191951] [build] stable/10 with WITHOUT_OPENSSL not compiling multiple issues Date: Sat, 09 Jan 2016 21:14:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: brnrd@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: dependson Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 21:14:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D191951 Bernard Spil changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |164208, 164209, 164210 Referenced Bugs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D164208 [Bug 164208] [build] [patch] buildworld WITHOUT_OPENSSL stops at lib/libbsnmp/libbsnmp https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D164209 [Bug 164209] [build] [patch] buildworld WITHOUT_OPENSSL stops at usr.sbin/wpa/hostapd https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D164210 [Bug 164210] [build] [patch] buildworld WITHOUT_OPENSSL stops at usr.sbin/wpa/wpa_supplicant --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 21:34:08 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EAB2A6AE03 for ; Sat, 9 Jan 2016 21:34:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8EF701DEC for ; Sat, 9 Jan 2016 21:34:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09LY7HY019554 for ; Sat, 9 Jan 2016 21:34:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191951] [build] stable/10 with WITHOUT_OPENSSL not compiling multiple issues Date: Sat, 09 Jan 2016 21:34:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 21:34:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D191951 Bug 191951 depends on bug 164208, which changed state. Bug 164208 Summary: [build] [patch] buildworld WITHOUT_OPENSSL stops at lib= /libbsnmp/libbsnmp https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D164208 What |Removed |Added ---------------------------------------------------------------------------- Status|In Progress |Closed Resolution|--- |FIXED --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 22:00:31 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D03AA697B9 for ; Sat, 9 Jan 2016 22:00:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F15921B24 for ; Sat, 9 Jan 2016 22:00:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09M0Up3073031 for ; Sat, 9 Jan 2016 22:00:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206059] [ext2fs][patch] EXT4: cannot mount filesystems < 512 MiB in size: "ext2fs: no space for extra inode timestamps" Date: Sat, 09 Jan 2016 22:00:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-fs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 22:00:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206059 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-fs@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 22:00:41 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 73E61A697E6 for ; Sat, 9 Jan 2016 22:00:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 643811C02 for ; Sat, 9 Jan 2016 22:00:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09M0fhE076737 for ; Sat, 9 Jan 2016 22:00:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206056] [ext2fs][patch][panic] EXT4: mount panic from freeing invalid pointers Date: Sat, 09 Jan 2016 22:00:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-fs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 22:00:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206056 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-fs@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 22:01:13 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 40680A6989F for ; Sat, 9 Jan 2016 22:01:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30FA01D46 for ; Sat, 9 Jan 2016 22:01:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09M1Cx2085844 for ; Sat, 9 Jan 2016 22:01:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206055] share/zoneinfo "beforeinstall" fails to create needed directories in DESTDIR Date: Sat, 09 Jan 2016 22:01:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 22:01:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206055 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Jan 9 22:01:31 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 59FE4A698E8 for ; Sat, 9 Jan 2016 22:01:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4AE931DD7 for ; Sat, 9 Jan 2016 22:01:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u09M1UHp090486 for ; Sat, 9 Jan 2016 22:01:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206053] There is a bug in kqueue support code of netmap Date: Sat, 09 Jan 2016 22:01:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 22:01:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206053 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.=