From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 01:40:41 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4234AB0F for ; Sun, 4 Jan 2015 01:40:41 +0000 (UTC) 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 0F20F139F for ; Sun, 4 Jan 2015 01:40:41 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t041eeed031809 for ; Sun, 4 Jan 2015 01:40:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196473] sbin/camcontrol error no member ccb->cgds allocated or queued, during i386 rescue only compile Date: Sun, 04 Jan 2015 01:40:41 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dewayne@heuristicsystems.com.au X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 01:40:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196473 Bug ID: 196473 Summary: sbin/camcontrol error no member ccb->cgds allocated or queued, during i386 rescue only compile Product: Base System Version: 10.1-STABLE Hardware: i386 OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: dewayne@heuristicsystems.com.au While trying to recover an older machine. I tried to build rescue ONLY on a separate i386 server, received this message. cc -O2 -pipe -pipe -O2 -g0 -ggdb0 -DSTRIP_FBSDID -DRESCUE -std=gnu99 -Qunused-arguments -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wmissing-variable-declarations -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -c /usr/src/sbin/camcontrol/camcontrol.c /usr/src/sbin/camcontrol/camcontrol.c:4472:51: error: no member named 'allocated' in 'struct ccb_getdevstats' fprintf(stdout, "allocated %d\n", ccb->cgds.allocated); ~~~~~~~~~ ^ /usr/src/sbin/camcontrol/camcontrol.c:4474:51: error: no member named 'queued' in 'struct ccb_getdevstats' fprintf(stdout, "queued %d\n", ccb->cgds.queued); ~~~~~~~~~ ^ 2 errors generated. *** Error code 1 Stop. make[3]: stopped in /usr/src/sbin/camcontrol *** Error code 1 Stop. make[2]: stopped in /usr/obj/usr/src/rescue/rescue *** Error code 1 Stop. make[1]: stopped in /usr/src/rescue/rescue *** Error code 1 Commenting out the associated lines enabled a clean compilation of camcontrol. Though I probably should've just reverted https://svnweb.freebsd.org/base/head/sbin/camcontrol/camcontrol.c?r1=268240&r2=271588&sortby=date -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 02:07:34 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BFF82E4C for ; Sun, 4 Jan 2015 02:07:34 +0000 (UTC) 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 A6FD31874 for ; Sun, 4 Jan 2015 02:07:34 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0427YOd017451 for ; Sun, 4 Jan 2015 02:07:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196473] sbin/camcontrol error no member ccb->cgds allocated or queued, during i386 rescue only compile Date: Sun, 04 Jan 2015 02:07: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: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dewayne@heuristicsystems.com.au X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 02:07:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196473 --- Comment #1 from dewayne@heuristicsystems.com.au --- Apologies, this is on a 10.1R system using an updated /usr/src from today's 10.1Stable. I've verified that ccb_getdevstats existed grep ccb_getdevstats /usr/include/cam/* but failed to appreciate that I also needed to check the struct contents. Please disregard/close, as a simple fix is to update the base system's include files. (Though how to do that properly is a mystery, fortunately the differences are small) diff /usr/include/cam/cam_ccb.h /usr/src/sys/cam/cam_ccb.h and a cp is ok Pity there isn't a cd /usr/src && make include ;) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 02:07:50 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8B7AE96 for ; Sun, 4 Jan 2015 02:07:50 +0000 (UTC) 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 BF4591882 for ; Sun, 4 Jan 2015 02:07:50 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0427oIB017566 for ; Sun, 4 Jan 2015 02:07:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196473] sbin/camcontrol error no member ccb->cgds allocated or queued, during i386 rescue only compile Date: Sun, 04 Jan 2015 02:07:51 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dewayne@heuristicsystems.com.au X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 02:07:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196473 dewayne@heuristicsystems.com.au changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|New |Closed -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 03:09:13 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C15F53E1 for ; Sun, 4 Jan 2015 03:09:13 +0000 (UTC) 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 A93DA12A7 for ; Sun, 4 Jan 2015 03:09:13 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0439DS8018640 for ; Sun, 4 Jan 2015 03:09:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 03:09: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.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: thomas@bartelmess.io X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 03:09:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 Bug ID: 196474 Summary: jls causes kernel panic Product: Base System Version: 10.1-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: thomas@bartelmess.io Created attachment 151310 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151310&action=edit Crash log When I run the jls tool to see the running jails, I get a kernel panic when there is a jail where ip4 is set to "new" but ip4.addr is not set to anything. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 03:11:09 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E604F4BA for ; Sun, 4 Jan 2015 03:11:09 +0000 (UTC) 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 CD7A9137F for ; Sun, 4 Jan 2015 03:11:09 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t043B9X4080881 for ; Sun, 4 Jan 2015 03:11:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 03:11: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.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: thomas@bartelmess.io X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 03:11:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 --- Comment #1 from Thomas Bartelmess --- Created attachment 151311 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151311&action=edit Jail configuration -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 03:11:32 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B073B508 for ; Sun, 4 Jan 2015 03:11:32 +0000 (UTC) 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 88F561399 for ; Sun, 4 Jan 2015 03:11:32 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t043BWnc002516 for ; Sun, 4 Jan 2015 03:11:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 03:11: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: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: thomas@bartelmess.io X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 03:11:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 Thomas Bartelmess changed: What |Removed |Added ---------------------------------------------------------------------------- Component|misc |kern -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 03:18:05 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C53AE5A8 for ; Sun, 4 Jan 2015 03:18:05 +0000 (UTC) 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 AD66C1435 for ; Sun, 4 Jan 2015 03:18:05 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t043I5SX039692 for ; Sun, 4 Jan 2015 03:18:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 03:18: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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: thomas@bartelmess.io X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 03:18:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 --- Comment #2 from Thomas Bartelmess --- fastest way to reproduce: $ sudo jail -n crashme -c ip4=new persist $ jls -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 03:24:49 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8BCD465A for ; Sun, 4 Jan 2015 03:24:49 +0000 (UTC) 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 7386C1575 for ; Sun, 4 Jan 2015 03:24:49 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t043OnxU049038 for ; Sun, 4 Jan 2015 03:24:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 03: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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 03:24:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 Oliver Pinter changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |op@freebsd.org Severity|Affects Only Me |Affects Some People -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 03:25:21 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C72546A8 for ; Sun, 4 Jan 2015 03:25:21 +0000 (UTC) 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 AECFA158B for ; Sun, 4 Jan 2015 03:25:21 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t043PL63049487 for ; Sun, 4 Jan 2015 03:25:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 03:25:22 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 03:25:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 --- Comment #3 from Oliver Pinter --- I can reproduce this on 11-CURRENT too. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 04:45:10 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57C41C20 for ; Sun, 4 Jan 2015 04:45:10 +0000 (UTC) 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 403973004 for ; Sun, 4 Jan 2015 04:45:10 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t044jAtB091903 for ; Sun, 4 Jan 2015 04:45:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 04:45: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.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 04:45:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 --- Comment #4 from Oliver Pinter --- please try the following path: --- sys/kern/vfs_mount.c.orig 2015-01-04 05:38:40.000000000 +0100 +++ sys/kern/vfs_mount.c 2015-01-04 05:38:05.000000000 +0100 @@ -1643,7 +1643,7 @@ if (opt->value == NULL) opt->len = len; else { - if (opt->len < len) + if (len < 0 || opt->len < len) return (EINVAL); opt->len = len; bcopy(value, opt->value, len); This fixed the problem for me: root@opn ~# jail -n crashme -c ip4=new persist root@opn ~# jls JID IP Address Hostname Path jls: jail_get: Invalid argument Btw, this is a possible DoS in typical jail based hosting environments. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 04:53:43 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1750CCC8 for ; Sun, 4 Jan 2015 04:53:43 +0000 (UTC) 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 F3F8330F7 for ; Sun, 4 Jan 2015 04:53:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t044rgjA029440 for ; Sun, 4 Jan 2015 04:53:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 04:53:42 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 04:53:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 --- Comment #5 from Oliver Pinter --- https://github.com/HardenedBSD/hardenedBSD/commit/c520b81fbda3baced04d0843760cf6de53cd7829 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 05:19:09 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D7F98F for ; Sun, 4 Jan 2015 05:19:09 +0000 (UTC) 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 254E4336E for ; Sun, 4 Jan 2015 05:19:09 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t045J989017870 for ; Sun, 4 Jan 2015 05:19:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 05:19:09 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: mjg@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 05:19:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 Mateusz Guzik changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg@FreeBSD.org --- Comment #6 from Mateusz Guzik --- So in this case we have: error = vfs_setopt_part(opts, "ip4.addr", pr->pr_ip4, pr->pr_ip4s * sizeof(*pr->pr_ip4)); where pr_ip4s is -1. I disagree with the patch. First off, the bug is in the caller. If anything, bcopy could assert the size to be positive. Unfortunately it is a md code so the check would have to be replicated. Proper fix would return an empty ip table (or no table), but no error. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 05:43:03 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4A263EC for ; Sun, 4 Jan 2015 05:43:03 +0000 (UTC) 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 9D13664807 for ; Sun, 4 Jan 2015 05:43:03 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t045h3Nk076844 for ; Sun, 4 Jan 2015 05:43:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 05:43: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: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: mjg@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 05:43:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 Mateusz Guzik changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jamie@FreeBSD.org --- Comment #7 from Mateusz Guzik --- The following does the trick for me. Adding the author to cc:. diff --git a/sys/kern/kern_jail.c b/sys/kern/kern_jail.c index f8ae0e6..9ca0616 100644 --- a/sys/kern/kern_jail.c +++ b/sys/kern/kern_jail.c @@ -2028,13 +2028,13 @@ kern_jail_get(struct thread *td, struct uio *optuio, int flags) goto done_deref; #ifdef INET error = vfs_setopt_part(opts, "ip4.addr", pr->pr_ip4, - pr->pr_ip4s * sizeof(*pr->pr_ip4)); + pr->pr_ip4s == -1 ? 0 : pr->pr_ip4s * sizeof(*pr->pr_ip4)); if (error != 0 && error != ENOENT) goto done_deref; #endif #ifdef INET6 error = vfs_setopt_part(opts, "ip6.addr", pr->pr_ip6, - pr->pr_ip6s * sizeof(*pr->pr_ip6)); + pr->pr_ip6s == -1 ? 0 : pr->pr_ip6s * sizeof(*pr->pr_ip6)); if (error != 0 && error != ENOENT) goto done_deref; #endif With this the outpus is: JID IP Address Hostname Path 1 - / -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 09:14:37 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE173A05 for ; Sun, 4 Jan 2015 09:14:37 +0000 (UTC) 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 A527F66464 for ; Sun, 4 Jan 2015 09:14:37 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t049Ebg3082114 for ; Sun, 4 Jan 2015 09:14:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196478] [enhancement] Change make.conf parser to accept "" like rc.conf Date: Sun, 04 Jan 2015 09:14:37 +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.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rsimmons0@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 09:14:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196478 Bug ID: 196478 Summary: [enhancement] Change make.conf parser to accept "" like rc.conf Product: Base System Version: 10.1-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: rsimmons0@gmail.com The parser for make.conf does not work well with quotation marks. If the value has multiple entries, using quotation marks prevents the file from being parsed properly. For example, if you enter OPTIONS_UNSET="DOCS EXAMPLES NLS" it is not parsed properly. If you enter OPTIONS_UNSET=DOCS EXAMPLES everything works fine. If the parser was changed so that quotation marks are parsed well, then the sysrc(8) utility can be used to create and modify make.conf. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 11:59:32 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E804F8FF for ; Sun, 4 Jan 2015 11:59:32 +0000 (UTC) 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 CFC5F39B6 for ; Sun, 4 Jan 2015 11:59:32 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04BxWfo026725 for ; Sun, 4 Jan 2015 11:59:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 11:59: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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 11:59:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 --- Comment #8 from Oliver Pinter --- Sure, my fix is a quick fix, and handled at lower level. Your fix is fine. Btw, bcopy expected unsigned len parameter, but the vfs_setopt_part's len is signed. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 13:32:44 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B07F8CEB for ; Sun, 4 Jan 2015 13:32:44 +0000 (UTC) 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 6641630FA for ; Sun, 4 Jan 2015 13:32:07 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04DW7VP012615 for ; Sun, 4 Jan 2015 13:32:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196483] [patch] change vfs_setopt{,_part}(...)'s len parameter to fix possible DoS Date: Sun, 04 Jan 2015 13:32:07 +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.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 13:32:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196483 Bug ID: 196483 Summary: [patch] change vfs_setopt{,_part}(...)'s len parameter to fix possible DoS Product: Base System Version: 10.1-STABLE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: op@freebsd.org Created attachment 151321 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151321&action=edit 0001-HBSD-change-vfs_setopt-_part-.-s-len-type-to-check-b.patch The bcopy(...) expected size_t (aka unsigned) len parameter, but in vfs_setopt{,_part}(...) the len parameter is signed, which will cause possible DoS in some scenarios. After this change, the vfs_setopt{,_part}(...) function properly checks the constraints. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 13:34:19 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 55660D4F for ; Sun, 4 Jan 2015 13:34:19 +0000 (UTC) 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 3CB77385C for ; Sun, 4 Jan 2015 13:34:19 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04DYJEL032581 for ; Sun, 4 Jan 2015 13:34:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196483] [patch] change vfs_setopt{,_part}(...)'s len parameter to fix possible DoS Date: Sun, 04 Jan 2015 13:34:19 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 13:34:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196483 Oliver Pinter changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.freebsd.org/bu | |gzilla/show_bug.cgi?id=1964 | |74 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 13:34:20 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41B62D56 for ; Sun, 4 Jan 2015 13:34:20 +0000 (UTC) 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 29FE33861 for ; Sun, 4 Jan 2015 13:34:20 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04DYKoO032621 for ; Sun, 4 Jan 2015 13:34:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 13:34:19 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 13:34:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 Oliver Pinter changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.freebsd.org/bu | |gzilla/show_bug.cgi?id=1964 | |83 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 13:34:57 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D446DF1 for ; Sun, 4 Jan 2015 13:34:57 +0000 (UTC) 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 04804387E for ; Sun, 4 Jan 2015 13:34:57 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04DYuEQ033176 for ; Sun, 4 Jan 2015 13:34:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196483] [patch] change vfs_setopt{,_part}(...)'s len parameter to fix possible DoS Date: Sun, 04 Jan 2015 13:34: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.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 13:34:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196483 --- Comment #1 from Oliver Pinter --- https://github.com/HardenedBSD/hardenedBSD/commit/7cc6ffbda459280327491d43cf4514f7296728d4 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 14:09:42 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ACF2D5D4 for ; Sun, 4 Jan 2015 14:09:42 +0000 (UTC) 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 93BDC3F10 for ; Sun, 4 Jan 2015 14:09:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04E9gIo041069 for ; Sun, 4 Jan 2015 14:09:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196485] [patch] bsdconfig generates obsolete values after VT related changes Date: Sun, 04 Jan 2015 14:09:42 +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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 14:09:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196485 Bug ID: 196485 Summary: [patch] bsdconfig generates obsolete values after VT related changes Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: op@freebsd.org The bsdconfig tool generates wrong values into /etc/rc.conf, when us.ctrl keyboard layout specified. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 14:11:00 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36B3C63D for ; Sun, 4 Jan 2015 14:11:00 +0000 (UTC) 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 1CF4E3F35 for ; Sun, 4 Jan 2015 14:11:00 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04EAxtJ046127 for ; Sun, 4 Jan 2015 14:10:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196485] [patch] bsdconfig generates obsolete values after VT related changes Date: Sun, 04 Jan 2015 14:11:00 +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: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 14:11:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196485 --- Comment #1 from Oliver Pinter --- Created attachment 151323 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151323&action=edit 0001-HBSD-bsdconfig-use-us.ctrl-instead-of-us.pc-ctrl-aft.patch -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 17:11:19 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD46C6E2 for ; Sun, 4 Jan 2015 17:11:19 +0000 (UTC) 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 9589B2785 for ; Sun, 4 Jan 2015 17:11:19 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04HBJlZ012420 for ; Sun, 4 Jan 2015 17:11:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Sun, 04 Jan 2015 17:11:19 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bz@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 17:11:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 Bjoern A. Zeeb changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bz@FreeBSD.org --- Comment #9 from Bjoern A. Zeeb --- That jail command should error and never succeed. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 17:53:11 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64343E42 for ; Sun, 4 Jan 2015 17:53:11 +0000 (UTC) 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 4ADD12FBC for ; Sun, 4 Jan 2015 17:53:11 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04HrBbM036426 for ; Sun, 4 Jan 2015 17:53:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 166442] [build] nfsd error when not compiled into kernel Date: Sun, 04 Jan 2015 17:53: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: 9.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: zaphod@berentweb.com X-Bugzilla-Status: Closed X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 17:53:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=166442 zaphod@berentweb.com changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|In Progress |Closed -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 17:54:16 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5726F03 for ; Sun, 4 Jan 2015 17:54:16 +0000 (UTC) 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 A8D902FDF for ; Sun, 4 Jan 2015 17:54:16 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04HsGju043983 for ; Sun, 4 Jan 2015 17:54:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 163815] [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controller [AHCI] Date: Sun, 04 Jan 2015 17:54: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: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: zaphod@berentweb.com X-Bugzilla-Status: Closed X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 17:54:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=163815 zaphod@berentweb.com changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|In Progress |Closed -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 20:26:25 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 30F99ABD for ; Sun, 4 Jan 2015 20:26:25 +0000 (UTC) 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 17AEC3826 for ; Sun, 4 Jan 2015 20:26:25 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04KQOGQ070165 for ; Sun, 4 Jan 2015 20:26:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 120128] [libc] [patch] __getcwd erroneously returning ENOENT Date: Sun, 04 Jan 2015 20:26:25 +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-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 20:26:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=120128 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|attilio@FreeBSD.org |freebsd-bugs@FreeBSD.org --- Comment #9 from Mark Linimon --- attilio has turned in his commit bit. To submitter: is this problem still present in modern releases of FreeBSD? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 20:28:14 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 91DEFB6A for ; Sun, 4 Jan 2015 20:28:14 +0000 (UTC) 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 788CA3871 for ; Sun, 4 Jan 2015 20:28:14 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t04KSEAB070725 for ; Sun, 4 Jan 2015 20:28:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 170695] sysutils/fusefs-ntfs - instant reboot when mv from UFS Date: Sun, 04 Jan 2015 20:28:12 +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: linimon@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 20:28:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=170695 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|attilio@FreeBSD.org |freebsd-bugs@FreeBSD.org --- Comment #8 from Mark Linimon --- attilio has turned in his commit bit. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 01:11:02 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 31EA0C62 for ; Mon, 5 Jan 2015 01:11:02 +0000 (UTC) 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 1A93134AF for ; Mon, 5 Jan 2015 01:11:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t051B1eW056861 for ; Mon, 5 Jan 2015 01:11:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196497] On some PowerBooks vt crashes in early boot Date: Mon, 05 Jan 2015 01:11:02 +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: jhibbits@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 01:11:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196497 Bug ID: 196497 Summary: On some PowerBooks vt crashes in early boot Product: Base System Version: 11.0-CURRENT Hardware: ppc OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: jhibbits@FreeBSD.org On a specific PowerBook (1.5GHz, adb keyboard, ATI graphics), vt crashes very early in boot, before printing even the `KDB:...' lines, unless we break into Open Firmware at boot, and boot the loader using the `mac-boot' command. Removing vt and using sc instead works just fine. This is an anomaly, as on 3 other PowerBooks of different generations from this one work just fine with vt(4). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 04:03:26 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6FD5FD for ; Mon, 5 Jan 2015 04:03:26 +0000 (UTC) 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 BE9AD3136 for ; Mon, 5 Jan 2015 04:03:26 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0543Qbr099422 for ; Mon, 5 Jan 2015 04:03:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196498] zpool create panic with file-backed pool Date: Mon, 05 Jan 2015 04:03: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: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: editor@callfortesting.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 04:03:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196498 Bug ID: 196498 Summary: zpool create panic with file-backed pool Product: Base System Version: 10.1-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: editor@callfortesting.org File-backed zpools appear to experienced a regression in 10.1, resulting in a panic. This bug appears to be absent in 9.3 and 10-STABLE. To reproduce it: # truncate -s 300M foo.img # zpool create foo /dev/foo.img Fatal trap 12: page fault while in kernel mode cpuid = 2; apic id = 02 fault virtual address = 0x0 fault code = supervisor read data, page not present instruction pointer = 0x20:0xffffffff80d3e2d6 stack pointer = 0x28:0xfffffe011efbce50 frame pointer = 0x28:0xfffffe011efbceb0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 1040 (zpool) [ thread pid 1040 tid 100401 ] Stopped at bcopy+0x16: repe movsq (%rsi),%es:(%rdi) db> bt Tracing pid 1040 tid 100401 td 0xfffff8000b976920 bcopy() at bcopy+0x16/frame 0xfffffe011efbceb0 dmu_write_uio_dnode() at dmu_write_uio_dnode+0xcc/frame 0xfffffe011efbcf30 dmu_write_uio_dbuf() at dmu_write_uio_dbuf+0x3b/frame 0xfffffe011efbcf60 zfs_freebsd_write() at zfs_freebsd_write+0x5e2/frame 0xfffffe011efbd190 VOP_WRITE_APV() at VOP_WRITE_APV+0x145/frame 0xfffffe011efbd2a0 vn_rdwr() at vn_rdwr+0x299/frame 0xfffffe011efbd380 vdev_file_io_start() at vdev_file_io_start+0x165/frame 0xfffffe011efbd400 zio_vdev_io_start() at zio_vdev_io_start+0x326/frame 0xfffffe011efbd460 zio_execute() at zio_execute+0x162/frame 0xfffffe011efbd4c0 zio_wait() at zio_wait+0x23/frame 0xfffffe011efbd4f0 vdev_label_init() at vdev_label_init+0x22d/frame 0xfffffe011efbd5c0 vdev_label_init() at vdev_label_init+0x57/frame 0xfffffe011efbd690 vdev_create() at vdev_create+0x54/frame 0xfffffe011efbd6c0 spa_create() at spa_create+0x217/frame 0xfffffe011efbd750 zfs_ioc_pool_create() at zfs_ioc_pool_create+0x25d/frame 0xfffffe011efbd7d0 zfsdev_ioctl() at zfsdev_ioctl+0x6f0/frame 0xfffffe011efbd890 devfs_ioctl_f() at devfs_ioctl_f+0x114/frame 0xfffffe011efbd8e0 kern_ioctl() at kern_ioctl+0x255/frame 0xfffffe011efbd950 sys_ioctl() at sys_ioctl+0x13c/frame 0xfffffe011efbd9a0 amd64_syscall() at amd64_syscall+0x351/frame 0xfffffe011efbdab0 Xfast_syscall() at Xfast_syscall+0xfb/frame 0xfffffe011efbdab0 --- syscall (54, FreeBSD ELF64, sys_ioctl), rip = 0x8019f9b9a, rsp = 0x7fffffffb9e8, rbp = 0x7fffffffba60 --- db> I have tested this with 64M (ZFS minimum) through 300M virtual block devices. Confirmed by grehan@ Removing this functionality is not a valid solution. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 04:09:07 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6EA1B196 for ; Mon, 5 Jan 2015 04:09:07 +0000 (UTC) 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 56B22317F for ; Mon, 5 Jan 2015 04:09:07 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t054972H003079 for ; Mon, 5 Jan 2015 04:09:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196499] buildkernel fails after clang 3.5 import Date: Mon, 05 Jan 2015 04:09:07 +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: bugs@bergstroem.nu X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 04:09:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196499 Bug ID: 196499 Summary: buildkernel fails after clang 3.5 import Product: Base System Version: 11.0-CURRENT Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: bugs@bergstroem.nu Running a buildkernel since roughly a week ago (well, first attempt was after the 3.5 import) fails building for me: cc -c -x assembler-with-cpp -DLOCORE -O2 -pipe -fno-strict-aliasing -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -Wno-error-format -Wno-error-parentheses -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/dev/ath -I/usr/src/sys/dev/ath/ath_hal -I/usr/src/sys/contrib/dev/ath/ath_hal -I/usr/src/sys/contrib/ngatm -I/usr/src/sys/dev/twa -I/usr/src/sys/dev/cxgb -I/usr/src/sys/dev/cxgbe -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -gdwarf-2 -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -Wno-error-format -Wno-error-parentheses -mno-aes -mno-avx -std=iso9899:1999 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -Wno-error-format -Wno-error-parentheses -Werror /usr/src/sys/amd64/acpica/acpi_wakecode.S /usr/src/sys/amd64/acpica/acpi_wakecode.S:57:2: error: unexpected directive .code16 .code16 ^ /usr/src/sys/amd64/acpica/acpi_wakecode.S:57:9: error: .code16 not supported yet .code16 ^ /usr/src/sys/amd64/acpica/acpi_wakecode.S:119:2: error: invalid instruction mnemonic 'lgdtl' lgdtl bootgdtdesc - wakeup_start ^~~~~ *** Error code 1 uname: FreeBSD poolia 11.0-CURRENT FreeBSD 11.0-CURRENT #8 20daa3d(master): Thu Nov 27 11:42:07 AEDT 2014 root@poolia:/usr/obj/usr/src/sys/SIMPL amd64 Kernel config differences: nooptions DDB nooptions GDB nooptions DEADLKRES nooptions INVARIANTS nooptions INVARIANT_SUPPORT nooptions WITNESS nooptions WITNESS_SKIPSPIN device pf device pflog device pfsync options ALTQ options ALTQ_CBQ options ALTQ_RED options ALTQ_RIO options ALTQ_HFSC options ALTQ_PRIQ options ALTQ_NOPCC I additionally tried the GENERIC kernel (same issue), and using clang35 from the pkg tree with no success -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 09:55:55 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45F97CB for ; Mon, 5 Jan 2015 09:55:55 +0000 (UTC) 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 2E3AD64842 for ; Mon, 5 Jan 2015 09:55:55 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t059ttDm099123 for ; Mon, 5 Jan 2015 09:55:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195458] Hang on shutdown/root unmount after FreeBSD 10.1R upgrade Date: Mon, 05 Jan 2015 09:55: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.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: daniel@blodan.se X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 09:55:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195458 daniel@blodan.se changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |daniel@blodan.se --- Comment #9 from daniel@blodan.se --- I just went from 10.1-p0 to 10.1-p3 on a completly new server and got stuck after "All buffers synced" so started looking around and found this pr :) Last week i upgraded 16 supermicro boxes from 10.0 to 10.1 and every single one of them got stuck att "All buffers synced" after freebsd-update -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 13:53:08 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0559D72C for ; Mon, 5 Jan 2015 13:53:08 +0000 (UTC) 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 DA026645E6 for ; Mon, 5 Jan 2015 13:53:07 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05Dr7Oo089082 for ; Mon, 5 Jan 2015 13:53:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196510] [Patch] Fixing panic in vt_fb_blank() if fb_size is not a multiple of fb_stride Date: Mon, 05 Jan 2015 13:53:07 +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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: andre@fbsd.ata.myota.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 13:53:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196510 Bug ID: 196510 Summary: [Patch] Fixing panic in vt_fb_blank() if fb_size is not a multiple of fb_stride Product: Base System Version: 9.3-RELEASE Hardware: i386 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: andre@fbsd.ata.myota.org [According to emaste@ this has been fixed in -HEAD in a different way but needs MFC to -STABLE. If an MFC is not possible, the fix in this PR should do it.] I can reliably crash an older notebook (Fujitsu E8310) with Intel graphics (GM965) by loading i915kms after having booted but only if vt(4) is used instead of old syscons. Reason for the crash is a page fault in vt_fb_blank() which is in /sys/dev/vt/hw/fb/vt_fb.c: #7 0xc08c929e in bcopy () at /src/src-9/sys/i386/i386/support.s:198 #8 0xc08d93e0 in memmove (dest=0xedfd3c00, src=0xeda30000, n=5632) at /src/src-9/sys/libkern/memmove.c:36 #9 0xc053fac7 in vt_fb_mem_copy (sc=0xc6919500, offset_to=5913600, offset_from=0, size=5632) at /src/src-9/sys/dev/fb/fbd.c:205 #10 0xc060370e in vt_fb_blank (vd=0xc09c3c40, color=) at /src/src-9/sys/dev/vt/hw/fb/vt_fb.c:179 #11 0xc0603b10 in vt_fb_init (vd=0xc09c3c40) at /src/src-9/sys/dev/vt/hw/fb/vt_fb.c:306 #12 0xc06098db in vt_allocate (drv=0xc09c3b80, softc=0xc6919500) at /src/src-9/sys/dev/vt/vt_core.c:1970 in vt_fb_blank() we find: for (o = info->fb_stride; o < info->fb_size; o += info->fb_stride) { info->copy(info, o, 0, info->fb_stride); } fb_size gets calculated in intelfb_create() which is in /sys/dev/drm2/i915/intel_fb.c as size = mode_cmd.pitches[0] * mode_cmd.height; size = roundup2(size, PAGE_SIZE); with fb_stride being the result of mode_cmd.pitches[0] = roundup2( (mode_cmd.width * ((sizes->surface_bpp + 7) / 8), 64); So with my funky resolution of 1400 x 1050 @32bit we get fb_stride = 5632 fb_size = 5914624 We see that fb_stride won't fit into fb_size in whole numbers (5914624 / 5632 = 1050.18181818181818181818) so this is why the loop runs beyond fb_size and gives a page fault. I am now using this modified loop in vt_fb_blank() which does not try to run to the end of the fb by replacing info->fb_size by info->fb_height * info->fb_stride for (o = info->fb_stride; o < info->fb_height * info->fb_stride; o += info->fb_stride) { info->copy(info, o, 0, info->fb_stride); } -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 14:00:02 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 75FFE957 for ; Mon, 5 Jan 2015 14:00:02 +0000 (UTC) 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 5CDC1646C2 for ; Mon, 5 Jan 2015 14:00:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05E02Kh099335 for ; Mon, 5 Jan 2015 14:00:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196510] [Patch] Fixing panic in vt_fb_blank() if fb_size is not a multiple of fb_stride Date: Mon, 05 Jan 2015 14:00:02 +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.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: andre@fbsd.ata.myota.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 14:00:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196510 --- Comment #1 from andre@fbsd.ata.myota.org --- The changes in HEAD which should fix the problem are r268771 and r268796. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 14:04:06 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46FF5B53 for ; Mon, 5 Jan 2015 14:04:06 +0000 (UTC) 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 2DC3D647F2 for ; Mon, 5 Jan 2015 14:04:06 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05E46Nq037294 for ; Mon, 5 Jan 2015 14:04:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196511] [Patch] Bring back ALT_BREAK_TO_DEBUGGER functionality to vt(4) Date: Mon, 05 Jan 2015 14:04:06 +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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: andre@fbsd.ata.myota.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 14:04:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196511 Bug ID: 196511 Summary: [Patch] Bring back ALT_BREAK_TO_DEBUGGER functionality to vt(4) Product: Base System Version: 9.3-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: andre@fbsd.ata.myota.org Created attachment 151355 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151355&action=edit patch vt(4) misses the ALT_BREAK_TO_DEBUGGER feature (at least in 9-STABLE but probably in all versions). This patch brings it back. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 14:10:01 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1CDD6CF9 for ; Mon, 5 Jan 2015 14:10:01 +0000 (UTC) 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 035FF64886 for ; Mon, 5 Jan 2015 14:10:01 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05EA0pT039374 for ; Mon, 5 Jan 2015 14:10:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196512] vt(4): Keyboard not working properly when not using kbdmux(4) Date: Mon, 05 Jan 2015 14:10:01 +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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: andre@fbsd.ata.myota.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 14:10:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196512 Bug ID: 196512 Summary: vt(4): Keyboard not working properly when not using kbdmux(4) Product: Base System Version: 9.3-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: andre@fbsd.ata.myota.org Created attachment 151356 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151356&action=edit patch PR 194718 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194718 was closed but never MFC'ed to 9-STABLE. The patch below should apply cleanly. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 14:16:24 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9CBBEE90 for ; Mon, 5 Jan 2015 14:16:24 +0000 (UTC) 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 830C264A1F for ; Mon, 5 Jan 2015 14:16:24 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05EGOGS076786 for ; Mon, 5 Jan 2015 14:16:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 164909] [cam] devfs does not create entries when removable media is inserted Date: Mon, 05 Jan 2015 14:16: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: 7.4-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: Andre.Albsmeier@siemens.com X-Bugzilla-Status: Closed X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 14:16:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=164909 Andre.Albsmeier@siemens.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Progress |Closed Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 14:44:26 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B2062443 for ; Mon, 5 Jan 2015 14:44:26 +0000 (UTC) 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 9974666C89 for ; Mon, 5 Jan 2015 14:44:26 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05EiQYj033542 for ; Mon, 5 Jan 2015 14:44:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196514] bsdconfig usermgt: selected user for edit always not found Date: Mon, 05 Jan 2015 14:44:26 +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: olevole@olevole.ru X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 14:44:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196514 Bug ID: 196514 Summary: bsdconfig usermgt: selected user for edit always not found 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: olevole@olevole.ru Created attachment 151358 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151358&action=edit work arond for login not found in bsdconfig usermgmt I tried to use bsdconfig usermgm to edit an existing entry on FreeBSD-current and when select a user received: XXX: Login not found. It seems this line in user.subr not quite right: f_quietly pw usershow -n "$input" -u -1 pw with negative number for -u return error: % pw usershow -n "oleg" -u -1 pw: -u expects a number % echo $? 64 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 14:44:40 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6DBAB490 for ; Mon, 5 Jan 2015 14:44:40 +0000 (UTC) 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 54AFB66C91 for ; Mon, 5 Jan 2015 14:44:40 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05EieEm033616 for ; Mon, 5 Jan 2015 14:44:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196515] /usr/include/lwres/string.h missing from base/{head,stable/10}/ObsoleteFiles.inc Date: Mon, 05 Jan 2015 14:44:40 +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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: Trond.Endrestol@ximalas.info X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 14:44:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196515 Bug ID: 196515 Summary: /usr/include/lwres/string.h missing from base/{head,stable/10}/ObsoleteFiles.inc Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: Trond.Endrestol@ximalas.info /usr/include/lwres/string.h should be added to base/{head,stable/10}/ObsoleteFiles.inc, otherwise make delete-old complains about not being able to remove the /usr/include/lwres directory. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 14:45:10 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8D3A4E7 for ; Mon, 5 Jan 2015 14:45:10 +0000 (UTC) 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 8BA2166CA7 for ; Mon, 5 Jan 2015 14:45:10 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05EjAhR033818 for ; Mon, 5 Jan 2015 14:45:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196515] /usr/include/lwres/string.h missing from base/{head,stable/10}/ObsoleteFiles.inc Date: Mon, 05 Jan 2015 14:45:10 +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: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: Trond.Endrestol@ximalas.info X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 14:45:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196515 Trond.Endrestol@ximalas.info changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Affects Only Me |Affects Many People -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 15:37:29 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B640E07 for ; Mon, 5 Jan 2015 15:37:29 +0000 (UTC) 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 32B266748E for ; Mon, 5 Jan 2015 15:37:29 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05FbTtt024328 for ; Mon, 5 Jan 2015 15:37:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195349] CAM status: Command timeout since upgrade to 10.1 Date: Mon, 05 Jan 2015 15:37: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: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: trasz@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 15:37:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195349 --- Comment #24 from Edward Tomasz Napierala --- Is there anyone who had this problem and the 'hint.ahci.0.msi="0"' workaround did _not_ help? FWIW, I have the same problem with HP Microserver N40L, with four WD Red in RAIDZ. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 15:51:12 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24F0D1F9 for ; Mon, 5 Jan 2015 15:51:12 +0000 (UTC) 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 0BE0267627 for ; Mon, 5 Jan 2015 15:51:12 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05FpB2J042832 for ; Mon, 5 Jan 2015 15:51:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192324] [uefi] 2014-07-14 11.0-CURRENT snapshot doesn't boot on minnowboard max Date: Mon, 05 Jan 2015 15:51: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: uefi X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 15:51:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192324 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Unable to Reproduce Status|Open |Closed --- Comment #8 from Ed Maste --- With video attached 11-CURRENT works. Serial console will not work until PR 194952 is addressed. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 17:56:53 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A1BD3167 for ; Mon, 5 Jan 2015 17:56:53 +0000 (UTC) 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 89EC53A1E for ; Mon, 5 Jan 2015 17:56:53 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05Hurgl031605 for ; Mon, 5 Jan 2015 17:56:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194301] ssh-copy-id doesn't work on 10.1-RC2 Date: Mon, 05 Jan 2015 17:56:52 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ohauer@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: eadler@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 17:56:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194301 Olli Hauer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Affects Some People |Affects Many People CC| |ohauer@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |eadler@FreeBSD.org --- Comment #3 from Olli Hauer --- - Assign to eadler -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 18:04:03 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F3B5B63A for ; Mon, 5 Jan 2015 18:04:02 +0000 (UTC) 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 C96CA3CC2 for ; Mon, 5 Jan 2015 18:04:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05I42XS003371 for ; Mon, 5 Jan 2015 18:04:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195990] file: File 5.19 supports only version 12 magic files. `/usr/share/misc/magic.mgc' is version 8 Date: Mon, 05 Jan 2015 18:04:02 +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 Some People X-Bugzilla-Who: joshruehlig@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 18:04:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195990 joshruehlig@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |joshruehlig@gmail.com --- Comment #4 from joshruehlig@gmail.com --- Browsing through github it looks like some regression was fixed regarding this back in October 2014 (r273688). This fix is only on master and was never backported to stable/10 even though the regression exists there. This bug is also affecting my php application which uses 'file'. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 20:35:47 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E21D562 for ; Mon, 5 Jan 2015 20:35:47 +0000 (UTC) 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 3659D287A for ; Mon, 5 Jan 2015 20:35:47 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05KZl14052998 for ; Mon, 5 Jan 2015 20:35:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196447] vi(1) misbehavior when encountered invalid Unicode character Date: Mon, 05 Jan 2015 20:35:47 +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: lichray@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 20:35:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196447 --- Comment #1 from lichray@gmail.com --- (In reply to Xin LI from comment #0) We know these types of issues for quite a long time, but I don't have a desired behavior in mind. For now, the workaround would be to set the correct locale: env LC_CTYPE=en_US.ISO8859-1 nvi /usr/src/sys/dev/ata/atapi-cd.c or to make use of the 8-bit mode: env LC_CTYPE=C nvi /usr/src/sys/dev/ata/atapi-cd.c Specific encoding can be set after the file is loaded, with ":se fe=iso-8859-1", but 8-bit mode cannot (unfortunately due to a display related bug which I cannot solve). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 20:52:40 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C409CDA for ; Mon, 5 Jan 2015 20:52:40 +0000 (UTC) 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 ABD8F2D12 for ; Mon, 5 Jan 2015 20:52:40 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05KqeKj088428 for ; Mon, 5 Jan 2015 20:52:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196447] vi(1) misbehavior when encountered invalid Unicode character Date: Mon, 05 Jan 2015 20:52: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: lichray@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 20:52:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196447 --- Comment #2 from lichray@gmail.com --- (In reply to Xin LI from comment #0) Forgot to answer your original question: why the search does not go across the first defected line. The whole story is much worse than this: if you write the file, nothing is written after line 2: https://github.com/lichray/nvi2/issues/12 Right now I left them "consistently" awful. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 21:09:46 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F754642 for ; Mon, 5 Jan 2015 21:09:46 +0000 (UTC) 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 EB7A02F6E for ; Mon, 5 Jan 2015 21:09:45 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05L9jTi004080 for ; Mon, 5 Jan 2015 21:09:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196447] vi(1) misbehavior when encountered invalid Unicode character Date: Mon, 05 Jan 2015 21:09: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: delphij@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 21:09:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196447 --- Comment #3 from Xin LI --- (In reply to lichray from comment #2) Well, data corruption is much more serious than merely not having search working. I think vi should probably ask the user whether they want to reload the file in 'C' locale when it encountered an error and quit if the user chooses not to. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 21:32:19 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5AD4CB82 for ; Mon, 5 Jan 2015 21:32:19 +0000 (UTC) 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 41C0A643B6 for ; Mon, 5 Jan 2015 21:32:19 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05LWJZv037288 for ; Mon, 5 Jan 2015 21:32:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196311] DESTROOT is now broken for installworld if not previously bootstrapped (ie clean dir) Date: Mon, 05 Jan 2015 21:32:18 +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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: brooks@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 21:32:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196311 Brooks Davis changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |brooks@FreeBSD.org Status|New |Closed Resolution|--- |Works As Intended --- Comment #4 from Brooks Davis --- You can avoid this problem with the DB_FROM_SRC make variable to use the passwd and group files in the source tree instead of the installed system. For example: # make installworld DESTDIR=${NFSROOTDIR} -DDB_FROM_SRC This failure mode has been around forever. Unfortunately, it is not entirely safe to enable DB_FROM_SRC by default as there may be different uid/gid values on the target system. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 21:51:43 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D81A7398 for ; Mon, 5 Jan 2015 21:51:43 +0000 (UTC) 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 BF84E3628 for ; Mon, 5 Jan 2015 21:51:43 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t05LphxI078690 for ; Mon, 5 Jan 2015 21:51:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196447] vi(1) misbehavior when encountered invalid Unicode character Date: Mon, 05 Jan 2015 21:51:43 +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: lichray@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2015 21:51:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196447 --- Comment #4 from lichray@gmail.com --- (In reply to Xin LI from comment #3) It's not quite "data corruption", since an error will be shown, and your data is not immediately lost: just switch to the correct encoding (at runtime, after the error is shown) with ":se fe=iso-8859-1" and write again then your data is back. Reload the file, like, as if ":e"? Sounds interesting. Added to the github issue. But I need to implement the raw-write first, otherwise the data is really lost. The change itself does not solve the problem. For example, when you open a slightly larger file, and the conversion error is close to the end of the file, then during your editing no error is shown (the conversion is only needed when the line is needed); the error only happens when writing. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 01:04:05 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EC3F881B for ; Tue, 6 Jan 2015 01:04:05 +0000 (UTC) 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 D371166361 for ; Tue, 6 Jan 2015 01:04:05 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06145et002341 for ; Tue, 6 Jan 2015 01:04:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196311] DESTROOT is now broken for installworld if not previously bootstrapped (ie clean dir) Date: Tue, 06 Jan 2015 01:04: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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: michelle@sorbs.net X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 01:04:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196311 --- Comment #5 from Michelle Sullivan --- Ok then it's probably not "closed".. ( I won't reopen, but I would appreciate if you would consider and re-open based on my feedback ) consider this... The docs don't make mention. The error says: ERROR: Required auditdistd user is missing, see /usr/src/UPDATING. Perhaps the error should be changed to give more information or a link to a page with the information... I've never heard of -DDB_FROM_SRC and I have done this more than once (though last time was around 6.1/6.2)... A more user friendly error would seem appropriate... especially as a link where it can explain "Unfortunately, it is not entirely safe to enable DB_FROM_SRC by default as there may be different uid/gid values on the target system." This is no longer an issue for me, but it will catch others, some will not ask/report. Regards, Michelle -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 04:31:58 2015 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59F40731 for ; Tue, 6 Jan 2015 04:31:58 +0000 (UTC) Received: from mail63-16.bne1.au.emdbms.com (mail63-16.bne1.au.emdbms.com [203.145.63.16]) by mx1.freebsd.org (Postfix) with ESMTP id 00C3264C11 for ; Tue, 6 Jan 2015 04:31:57 +0000 (UTC) Received: from backend2.bne1.au.emdbms.com (192.168.2.157) by mail63-16.bne1.au.emdbms.com (PowerMTA(TM) v3.5r15) id hldijs0kaa44 for ; Tue, 6 Jan 2015 14:01:48 +1000 (envelope-from <4fcc896.a44773.10168877.1@mbounces.com>) Received: from 24.120.28.146 (ACD:44773.94147.396461) by www.vision6.com.au (5.8.48) with HTTP for ; Tue, 06 Jan 2015 14:01:48 +1000 X-Report-Abuse-To: abuse@vision6.com.au X-Send-Timestamp: 1420516908.10168877.44773 Message-Id: <513108254ab5e2ca697f.1420516908@www.vision6.com.au> Date: Tue, 06 Jan 2015 14:01:48 +1000 From: "Importer Deals Spa Sale" To: Subject: Back In Stock Last Batch Sold within 24 hrs MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 04:31:58 -0000 [1]Shop ImporterDeals [2]Importer Dealer HOT PRODUCT LIMITED STOCK Swim Spa Pool [pool.png] Only $8,999.00 Was 26,999.00 Buy Now Details This Swim pool a is manufactured in high standards to ensure you get a high quality product at an competitive price. Years of experince in making hot tubs, which makes us know very well of the customers' needs. With hydrotherapy jets, the massage is from the full-body massage to concentrated back relief. View HOT PRODUCT LIMITED STOCK Outdoor / Indoor Spa Bath Hot Tub Reduced [spa.png] Only $3,999.00 Was $8,599.00 Buy Now Details Today there is a body of research to support the use of warm-water immersion, coupled with massaging jets, to promote healing and increase both a physical and mental sense of well-being. FREE DELIVERY! View HOT PRODUCT LIMITED STOCK Spa Cover [cover.png] Only $450.00 Was $1,050.00 Buy Now Details Keeping your spa protected is important and our vinyl covers are made to measure ensuring a perfect fit. Spa Covers are purpose designed and manufactured to withstand the harshest of Australian climate conditions. Our special protective UV stabilising compounds help in preventing direct sunlight degradation. All Spa Covers have a unique anti-bacterial treatment agent which adds further protection against fungal attack. View "When a women says "what?" it's not because she didn't hear you. She's giving you a chance to change what you just said." Safe Wash - Only $299.00 Watch Video [3]Visit our website | QLD Australia Phone: (07) 3014 0345 This email was sent by Importer Deals, Brisbane QLD 4000 to freebsd-bugs@freebsd.org [4]Unsubscribe References Visible links 1. http://www.vision6.com.au/ch/44773/cgxmh/1738542/9303816zf9.html 2. http://www.vision6.com.au/ch/44773/cgxmh/1738543/93038b93r.html 3. http://www.vision6.com.au/ch/44773/cgxmh/1738542/9303816zf9-1.html 4. http://www.vision6.com.au/forms/u/4fcc896/44773/10168877.html Hidden links: 6. http://www.vision6.com.au/ch/44773/cgxmh/1780288/93038ftxt.html 7. http://www.vision6.com.au/ch/44773/cgxmh/1780288/93038ftxt-1.html 8. http://www.vision6.com.au/ch/44773/cgxmh/1780289/93038p4hn.html 9. http://www.vision6.com.au/ch/44773/cgxmh/1780289/93038p4hn-1.html 10. http://www.vision6.com.au/ch/44773/cgxmh/1780290/93038k208.html 11. http://www.vision6.com.au/ch/44773/cgxmh/1780290/93038k208-1.html 12. http://www.vision6.com.au/ch/44773/cgxmh/1780291/93038k060.html From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 06:36:38 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7B5DF26 for ; Tue, 6 Jan 2015 06:36:38 +0000 (UTC) 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 8FD5D64AFA for ; Tue, 6 Jan 2015 06:36:38 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t066acuX030613 for ; Tue, 6 Jan 2015 06:36:38 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196533] ZFS Clone Core Dump Date: Tue, 06 Jan 2015 06:36:38 +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 Some People X-Bugzilla-Who: rami.jebara@tuangru.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 06:36:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196533 Bug ID: 196533 Summary: ZFS Clone Core Dump Product: Base System Version: 10.1-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: rami.jebara@tuangru.com System: FreeBSD AMD64 10.1-RELEASE-p3. Base standard distro with GENERIC kernel. All binaries from main Repo System has a ZFS Root (Mirrored Drives) and 2 3-Disk pools (RAIDZ1). Issue: Inadvertently tried to clone a snapshot from pool1 to pool2 (instead of using send/receive) Result was a zfs command core dump. Expected result: Error message Command used: % sudo zfs clone pool1/jails/base@base10.1-p3 pool2/jails/jailclone % sudo gdb -c ./zfs.core /sbin/zfs Password: GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd"...(no debugging symbols found)... Core was generated by `zfs'. Program terminated with signal 6, Aborted. Reading symbols from /lib/libgeom.so.5...(no debugging symbols found)...done. Loaded symbols for /lib/libgeom.so.5 Reading symbols from /lib/libjail.so.1...(no debugging symbols found)...done. Loaded symbols for /lib/libjail.so.1 Reading symbols from /lib/libnvpair.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/libnvpair.so.2 Reading symbols from /lib/libumem.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/libumem.so.2 Reading symbols from /lib/libutil.so.9...(no debugging symbols found)...done. Loaded symbols for /lib/libutil.so.9 Reading symbols from /lib/libuutil.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/libuutil.so.2 Reading symbols from /lib/libzfs_core.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/libzfs_core.so.2 Reading symbols from /lib/libzfs.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/libzfs.so.2 Reading symbols from /lib/libc.so.7...(no debugging symbols found)...done. Loaded symbols for /lib/libc.so.7 Reading symbols from /lib/libbsdxml.so.4...(no debugging symbols found)...done. Loaded symbols for /lib/libbsdxml.so.4 Reading symbols from /lib/libsbuf.so.6...(no debugging symbols found)...done. Loaded symbols for /lib/libsbuf.so.6 Reading symbols from /lib/libmd.so.6...(no debugging symbols found)...done. Loaded symbols for /lib/libmd.so.6 Reading symbols from /lib/libthr.so.3...(no debugging symbols found)...done. Loaded symbols for /lib/libthr.so.3 Reading symbols from /lib/libm.so.5...(no debugging symbols found)...done. Loaded symbols for /lib/libm.so.5 Reading symbols from /lib/libavl.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/libavl.so.2 Reading symbols from /libexec/ld-elf.so.1...(no debugging symbols found)...done. Loaded symbols for /libexec/ld-elf.so.1 #0 0x00000008019faa1a in kill () from /lib/libc.so.7 [New Thread 803006400 (LWP 101566/zfs)] (gdb) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 06:41:02 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49DD6FA7 for ; Tue, 6 Jan 2015 06:41:02 +0000 (UTC) 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 3187764BDE for ; Tue, 6 Jan 2015 06:41:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t066f22p035887 for ; Tue, 6 Jan 2015 06:41:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196091] freebsd-update wants to remove / as part of update! Date: Tue, 06 Jan 2015 06:41:02 +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: harrison.grundy@astrodoggroup.com X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 06:41:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196091 Harrison Grundy changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |harrison.grundy@astrodoggro | |up.com Resolution|--- |DUPLICATE Status|New |Closed --- Comment #2 from Harrison Grundy --- *** This bug has been marked as a duplicate of bug 196055 *** -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 08:25:59 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 33D5CA05 for ; Tue, 6 Jan 2015 08:25:59 +0000 (UTC) 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 1BEDD648C1 for ; Tue, 6 Jan 2015 08:25:59 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t068PwpG049351 for ; Tue, 6 Jan 2015 08:25:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195859] Reproduceble panic with VIMAGE + if_bridge Date: Tue, 06 Jan 2015 08:25: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rodrigc@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 08:25:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195859 Craig Rodrigues changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rodrigc@FreeBSD.org --- Comment #1 from Craig Rodrigues --- Can you apply this patch, rebuild your system and see if it fixes the problem? Index: if_bridge.c =================================================================== --- if_bridge.c (revision 275555) +++ if_bridge.c (working copy) @@ -1812,6 +1812,7 @@ /* Check if the interface is a span port */ BRIDGE_LIST_LOCK(); + CURVNET_SET(ifp->if_vnet); LIST_FOREACH(sc, &V_bridge_list, sc_list) { BRIDGE_LOCK(sc); LIST_FOREACH(bif, &sc->sc_spanlist, bif_next) @@ -1822,6 +1823,7 @@ BRIDGE_UNLOCK(sc); } + CURVNET_RESTORE(); BRIDGE_LIST_UNLOCK(); } -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 14:11:20 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7DD5EE3 for ; Tue, 6 Jan 2015 14:11:20 +0000 (UTC) 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 901A766333 for ; Tue, 6 Jan 2015 14:11:20 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06EBKQJ085543 for ; Tue, 6 Jan 2015 14:11:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195349] CAM status: Command timeout since upgrade to 10.1 Date: Tue, 06 Jan 2015 14:11:09 +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: akos.tamasi@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 14:11:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195349 akos.tamasi@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |akos.tamasi@gmail.com --- Comment #25 from akos.tamasi@gmail.com --- This workaround works for me too. I have 2 HP Proliant Microserver N54L with 3 WD RED 3TB and ZFS raidz. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 14:33:24 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D995C577 for ; Tue, 6 Jan 2015 14:33:24 +0000 (UTC) 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 C1D31666E2 for ; Tue, 6 Jan 2015 14:33:24 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06EXOiQ058795 for ; Tue, 6 Jan 2015 14:33:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196542] System stops booting with "ACPI APIC Table: " Date: Tue, 06 Jan 2015 14:33:24 +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.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jonas@jonas-keidel.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 14:33:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196542 Bug ID: 196542 Summary: System stops booting with "ACPI APIC Table: " Product: Base System Version: 10.1-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: jonas@jonas-keidel.de FreeBSD 10.1 does not boot on Intel S1200RPv3 board correctly. We did some tests with mfsBSD based on FreeBSD 10.1 (http://mfsbsd.vx.sk/). After booting it the first time with following reboot it wont boot and stops with the following message: ACPI APIC Table: To fix it, we need to boot a linux system. After booting the linux correctly the FreeBSD will boot the next time correctly. But with the next reboot it wont start again. Maybe there is an initializing problem with the ACPI table, which the linux does correctly, the FreeBSD not. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 15:25:22 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23586C2F for ; Tue, 6 Jan 2015 15:25:22 +0000 (UTC) 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 0BD8FC2 for ; Tue, 6 Jan 2015 15:25:22 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06FPLkh022687 for ; Tue, 6 Jan 2015 15:25:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196542] System stops booting with "ACPI APIC Table: " Date: Tue, 06 Jan 2015 15:25:22 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jhb@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 15:25:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196542 --- Comment #1 from John Baldwin --- Are you using boot -v? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 15:52:43 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5389AE01 for ; Tue, 6 Jan 2015 15:52:43 +0000 (UTC) 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 0A38F21C2 for ; Tue, 6 Jan 2015 15:52:23 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06FqMfw094418 for ; Tue, 6 Jan 2015 15:52:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196543] make xdev for mips fails PC relative code linking to non PC relative code R_MIPS_PC16 Date: Tue, 06 Jan 2015 15:52:23 +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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mmitchel@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 15:52:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196543 Bug ID: 196543 Summary: make xdev for mips fails PC relative code linking to non PC relative code R_MIPS_PC16 Product: Base System Version: 10.0-STABLE Hardware: mips OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: mmitchel@gmail.com To Duplicate: cd /usr/src make XDEV=mips XDEV_ARCH=mips xdev Resulting Output clang -fpic -DPIC -O -pipe -G0 -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../include -I/usr/src/lib/libc/mips -DSOFTFLOAT -D__DBINTERFACE_PRIVATE -I/usr/src/lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DINET6 -I/usr/obj/mips-freebsd/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../contrib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/usr/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/usr/src/lib/libc/rpc -I/usr/src/lib/libc/mips/softfloat -I/usr/src/lib/libc/softfloat -DSOFTFLOAT_FOR_GCC -DYP -DNS_CACHING -DSYMBOL_VERSIONING -std=gnu99 -Qunused-arguments -w -c /usr/src/lib/libc/string/wmemset.c -o wmemset.So building shared library libc.so.7 //usr/mips-freebsd/usr/bin/ld: /usr/mips-freebsd/usr/lib/crtbeginS.o: warning: linking PIC files with non-PIC files //usr/mips-freebsd/usr/bin/ld: /usr/mips-freebsd/usr/lib/crtn.o: warning: linking PIC files with non-PIC files exect.So: In function `exect': (.text+0x18): relocation truncated to fit: R_MIPS_PC16 against `__cerror' setjmp.So: In function `botch': (.text+0x118): relocation truncated to fit: R_MIPS_PC16 against `abort' _setjmp.So: In function `botch': (.text+0xa0): relocation truncated to fit: R_MIPS_PC16 against `abort' _sigwait.So: In function `err': (.text+0x18): relocation truncated to fit: R_MIPS_PC16 against `__cerror' _getlogin.So: In function `err': (.text+0x18): relocation truncated to fit: R_MIPS_PC16 against `__cerror' ppoll.So: In function `err': (.text+0x18): relocation truncated to fit: R_MIPS_PC16 against `__cerror' procctl.So: In function `err': (.text+0x18): relocation truncated to fit: R_MIPS_PC16 against `__cerror' aio_mlock.So: In function `err': (.text+0x18): relocation truncated to fit: R_MIPS_PC16 against `__cerror' pipe2.So: In function `err': (.text+0x18): relocation truncated to fit: R_MIPS_PC16 against `__cerror' accept4.So: In function `err': (.text+0x18): relocation truncated to fit: R_MIPS_PC16 against `__cerror' chflagsat.So: In function `err': (.text+0x18): additional relocation overflows omitted from the output clang: error: linker command failed with exit code 1 (use -v to see invocation) *** Error code 1 Stop. make[4]: stopped in /usr/src/lib/libc *** Error code 1 Stop. make[3]: stopped in /usr/src *** Error code 1 Stop. make[2]: stopped in /usr/src *** Error code 1 Stop. make[1]: stopped in /usr/src *** Error code 1 Stop. make: stopped in /usr/src -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 16:56:42 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C35FDDB5 for ; Tue, 6 Jan 2015 16:56:42 +0000 (UTC) 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 AB2526442D for ; Tue, 6 Jan 2015 16:56:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06GugN6086568 for ; Tue, 6 Jan 2015 16:56:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196546] [patch] resurrect altlog_proglist in etc/rd.d/syslogd Date: Tue, 06 Jan 2015 16:56:42 +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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bugzilla.freebsd@omnilan.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 16:56:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196546 Bug ID: 196546 Summary: [patch] resurrect altlog_proglist in etc/rd.d/syslogd Product: Base System Version: 10.0-STABLE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: bugzilla.freebsd@omnilan.de Created attachment 151400 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151400&action=edit Add "syslogd_altlog_proglist" for rc.conf When bind left base, altlog_proglist="named" was removed in r257694 (https://svnweb.freebsd.org/base/head/etc/rc.d/syslogd?view=patch&r1=257694&r2=257693&pathrev=257694). For the past-bind-epoch, this simple attached patch makes syslogd_precmd() containing less dead code ;-) I've ever since used syslogd_altlog_proglist in my rc.conf to get syslog socket for chrooted daemons like isc-dhcp and bind (with a slightly different patch). This is a nice thing to have, IMHO. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 17:06:46 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6EA51AC for ; Tue, 6 Jan 2015 17:06:46 +0000 (UTC) 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 9EFA166597 for ; Tue, 6 Jan 2015 17:06:46 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06H6kVS027281 for ; Tue, 6 Jan 2015 17:06:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196546] [patch] resurrect altlog_proglist in etc/rd.d/syslogd Date: Tue, 06 Jan 2015 17:06:46 +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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bugzilla.freebsd@omnilan.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 17:06:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196546 Harald Schmalzbauer changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.freebsd.org/bu | |gzilla/show_bug.cgi?id=1965 | |47 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 17:22:24 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 006215C4 for ; Tue, 6 Jan 2015 17:22:23 +0000 (UTC) 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 DC108668BA for ; Tue, 6 Jan 2015 17:22:23 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06HMNTN073111 for ; Tue, 6 Jan 2015 17:22:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196546] [patch] resurrect altlog_proglist in etc/rd.d/syslogd Date: Tue, 06 Jan 2015 17:22:24 +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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bugzilla.freebsd@omnilan.de X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 17:22:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196546 Harald Schmalzbauer changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Not A Bug Status|New |Closed --- Comment #1 from Harald Schmalzbauer --- Sorry, I missed that r257694 also added altlog_proglist="" to defaults/rc.conf. So "Bug 196546" is not relevant anymore! -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 20:03:51 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7CFBEC14 for ; Tue, 6 Jan 2015 20:03:51 +0000 (UTC) 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 9AC18270E for ; Tue, 6 Jan 2015 18:13:15 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06IDFkn014650 for ; Tue, 6 Jan 2015 18:13:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196567] iconv() function crashes with cryptic error message if linked statically Date: Tue, 06 Jan 2015 18:13:15 +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: quintus@quintilianus.eu X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 20:03:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D196567 Bug ID: 196567 Summary: iconv() function crashes with cryptic error message if linked statically 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: quintus@quintilianus.eu Hi everyone, I=E2=80=99ve been trying to link a program statically that calls the iconv(= 3) function and was confronted with it printing the rather cryptic message "Service unavailable" and immediately exiting the program. After some websearch, I f= ound this thread on the freebsd-current mailinglist: * https://docs.freebsd.org/cgi/getmsg.cgi?fetch=3D140017+0+archive/2013/freeb= sd-current/20130825.freebsd-current * https://docs.freebsd.org/cgi/getmsg.cgi?fetch=3D177755+0+archive/2013/freeb= sd-current/20130825.freebsd-current * https://docs.freebsd.org/cgi/getmsg.cgi?fetch=3D195390+0+archive/2013/freeb= sd-current/20130825.freebsd-current It appears nothing has happened since that thread, so I add it to the track= er now so it won=E2=80=99t get forgotten and because I just experienced that i= ssue as well. Here=E2=80=99s the minimal example program from that ML thread to reproduce= the crash: ~~~~~~~~~~~~~~~~~~~~~~ int main(void) { iconv_t ic =3D iconv_open("UTF-8", "ISO-8859-1"); if (ic =3D=3D (iconv_t)-1) err(1, "iconv_open failed"); iconv_close(ic); return 0; } ~~~~~~~~~~~~~~~~~~~~~~ Save in `foo.c` and compile like this: ~~~~~~~~~~~~~~~~~~~~~~ $ cc -static foo.c -o foo ~~~~~~~~~~~~~~~~~~~~~~ Then run: ~~~~~~~~~~~~~~~~~~~~~~ $ ./foo foo: iconv_open failed: Invalid argument Service unavailable ~~~~~~~~~~~~~~~~~~~~~~ I can confirm this behaviour stil exists in FreeBSD 10.1-RELEASE. The above example program still "works" (i.e. fails and demonstrates the problem). Expected behaviour is to print a useful and understandable error message if= it really isn=E2=80=99t possible to get iconv() to work in a statically linked= program. Greetings, Marvin --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 20:05:11 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 95ADBCF8 for ; Tue, 6 Jan 2015 20:05:11 +0000 (UTC) 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 CF9292725 for ; Tue, 6 Jan 2015 18:13:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06IDiVq039409 for ; Tue, 6 Jan 2015 18:13:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196567] iconv() function crashes with cryptic error message if linked statically Date: Tue, 06 Jan 2015 18:13:45 +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 Some People X-Bugzilla-Who: quintus@quintilianus.eu X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 20:05:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D196567 Marvin G=C3=BClker 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 Tue Jan 6 20:05:23 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F25D123 for ; Tue, 6 Jan 2015 20:05:23 +0000 (UTC) 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 DA36667138 for ; Tue, 6 Jan 2015 19:29:01 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06JT19h047152 for ; Tue, 6 Jan 2015 19:29:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196571] sysctl dev.cpu.0 causes panic: page fault Date: Tue, 06 Jan 2015 19:29:01 +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: emmh@gulli.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 20:05:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196571 Bug ID: 196571 Summary: sysctl dev.cpu.0 causes panic: page fault Product: Base System Version: 10.1-RELEASE Hardware: i386 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: emmh@gulli.com sysctl dev.cpu.0 causes kernel panic: page fault How-To-Repeat: Grep an IBM ThinkPad T20, select BIOS-Defaults, install 10.1-RELEASE and reboot. It's an old Laptop, but 10.0-RELEASE it works fine. ################################################################### > uname -a FreeBSD arthur 10.1-RELEASE FreeBSD 10.1-RELEASE #0 r274401: Tue Nov 11 22:51:51 UTC 2014 root@releng1.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 ################################################################### > pciconf -l hostb0@pci0:0:0:0: class=0x060000 card=0x00000000 chip=0x71908086 rev=0x03 hdr=0x00 pcib1@pci0:0:1:0: class=0x060400 card=0x00000000 chip=0x71918086 rev=0x03 hdr=0x01 cbb0@pci0:0:2:0: class=0x060700 card=0x01301014 chip=0xac1b104c rev=0x03 hdr=0x02 cbb1@pci0:0:2:1: class=0x060700 card=0x01301014 chip=0xac1b104c rev=0x03 hdr=0x02 xl0@pci0:0:3:0: class=0x020000 card=0x635610b7 chip=0x605610b7 rev=0x20 hdr=0x00 none0@pci0:0:3:1: class=0x078000 card=0x615910b7 chip=0x100710b7 rev=0x20 hdr=0x00 csa0@pci0:0:5:0: class=0x040100 card=0x01531014 chip=0x60031013 rev=0x01 hdr=0x00 isab0@pci0:0:7:0: class=0x068000 card=0x00000000 chip=0x71108086 rev=0x02 hdr=0x00 atapci0@pci0:0:7:1: class=0x010180 card=0x00000000 chip=0x71118086 rev=0x01 hdr=0x00 uhci0@pci0:0:7:2: class=0x0c0300 card=0x00000000 chip=0x71128086 rev=0x01 hdr=0x00 none1@pci0:0:7:3: class=0x068000 card=0x00000000 chip=0x71138086 rev=0x03 hdr=0x00 vgapci0@pci0:1:0:0: class=0x030000 card=0x017f1014 chip=0x8c125333 rev=0x11 hdr=0x00 ################################################################### > dmesg Copyright (c) 1992-2014 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.1-RELEASE #0 r274401: Tue Nov 11 22:51:51 UTC 2014 root@releng1.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 VT: running with driver "vga". CPU: Intel Pentium III (696.99-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x686 Family = 0x6 Model = 0x8 Stepping = 6 Features=0x383f9ff real memory = 268435456 (256 MB) avail memory = 239337472 (228 MB) kbd1 at kbdmux0 random: initialized module_register_init: MOD_LOAD (vesa, 0xc0f8d070, 0) error 19 acpi0: on motherboard acpi0: Power Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, ff00000 (3) failed cpu0: on acpi0 attimer0: port 0x40-0x43 irq 0 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 Event timer "i8254" frequency 1193182 Hz quality 100 atrtc0: port 0x70-0x73 irq 8 on acpi0 Event timer "RTC" frequency 32768 Hz quality 0 Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 acpi_ec0: port 0x62,0x66 on acpi0 acpi_lid0: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: on hostb0 pcib1: at device 1.0 on pci0 pci1: on pcib1 vgapci0: mem 0xf0000000-0xf7ffffff irq 11 at device 0.0 on pci1 vgapci0: Boot video device cbb0: mem 0x50000000-0x50000fff irq 11 at device 2.0 on pci0 cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 cbb1: mem 0x50100000-0x50100fff irq 11 at device 2.1 on pci0 cardbus1: on cbb1 pccard1: <16-bit PCCard bus> on cbb1 xl0: <3Com 3c556B Fast Etherlink XL> irq 11 at device 3.0 on pci0 miibus0: on xl0 acphy0: PHY 0 on miibus0 acphy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow xl0: Ethernet address: 00:00:86:46:2a:e4 pci0: at device 3.1 (no driver attached) csa0: mem 0xe8100000-0xe8100fff,0xe8000000-0xe80fffff irq 11 at device 5.0 on pci0 csa: card is Thinkpad 600X/A20/T20 csa0: [GIANT-LOCKED] pcm0: on csa0 pcm0: pcm0: [GIANT-LOCKED] isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x1c00-0x1c0f at device 7.1 on pci0 ata0: at channel 0 on atapci0 ata1: at channel 1 on atapci0 uhci0: port 0x1c20-0x1c3f irq 11 at device 7.2 on pci0 usbus0 on uhci0 pci0: at device 7.3 (no driver attached) acpi_tz0: on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model Generic PS/2 mouse, device ID 0 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 battery0: on acpi0 acpi_acad0: on acpi0 acpi_ibm0: on acpi0 pmtimer0 on isa0 orm0: at iomem 0xc0000-0xcbfff,0xcc000-0xcc7ff,0xe0000-0xeffff pnpid ORM0000 on isa0 ppc0: parallel port not found. smist0: on cpu0 random: unblocking device. usbus0: 12Mbps Full Speed USB v1.0 Timecounters tick every 1.000 msec ugen0.1: at usbus0 uhub0: on usbus0 uhub0: 2 ports with 2 removable, self powered ada0 at ata0 bus 0 scbus0 target 0 lun 0 cd0 at ata1 bus 0 scbus1 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: 33.300MB/s transfers (UDMA2, ATAPI 12bytes, PIO 65534bytes) cd0: Attempt to query device size failed: NOT READY, Medium not present ada0: ATA-5 device ada0: Serial Number 13YZB2 ada0: 33.300MB/s transfers (UDMA2, PIO 8192bytes) ada0: 19077MB (39070080 512 byte sectors: 15H 63S/T 16383C) ada0: Previously was known as ad0 Timecounter "TSC" frequency 696986781 Hz quality 800 Trying to mount root from ufs:/dev/ada0p2 [rw]... WARNING: / was not properly dismounted WARNING: /: mount pending error: blocks 0 files 1 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 20:24:15 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4E70F4A for ; Tue, 6 Jan 2015 20:24:15 +0000 (UTC) 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 AB718273 for ; Tue, 6 Jan 2015 20:24:15 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06KOFdn021522 for ; Tue, 6 Jan 2015 20:24:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196311] installworld/kernel without updated passwd/group databases requires under-documented DB_FROM_SRC option Date: Tue, 06 Jan 2015 20:24: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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: brooks@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc resolution bug_severity bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 20:24:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196311 Brooks Davis changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|DESTROOT is now broken for |installworld/kernel without |installworld if not |updated passwd/group |previously bootstrapped (ie |databases requires |clean dir) |under-documented | |DB_FROM_SRC option Resolution|Works As Intended |--- Severity|Affects Many People |Affects Some People Status|Closed |Open --- Comment #6 from Brooks Davis --- Reopen at submitter's request and attempt to describe the documentation problem in the title. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 20:47:37 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58414840 for ; Tue, 6 Jan 2015 20:47:37 +0000 (UTC) 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 3A62E79E for ; Tue, 6 Jan 2015 20:47:37 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06KlbDK069523 for ; Tue, 6 Jan 2015 20:47:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196574] Bug in parsing jail.conf Date: Tue, 06 Jan 2015 20:47:37 +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.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: logik@centrum.cz X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 20:47:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196574 Bug ID: 196574 Summary: Bug in parsing jail.conf Product: Base System Version: 10.1-STABLE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: logik@centrum.cz It seems to me, that when one redefines $name variable in jail.conf, the jail command begin misbehave: i get strange results as - segmentation fault - bad variables substitution $name = something $ip_addr = "192.168.6.210" $ip = 210 "/sbin/ifconfig epair${ip}b inet ${ip_addr} up" results in running "/sbin/ifconfig epair210b ine192.168.6.210t up" - or other strange errors vnet.interface = epair210b results in calling ifconfig epair210b vnet (instead of ifconfig epair210b vnet ) which naturaly failed on ifconfig: 'vnet' requires argument o even in some cases ifconfig epair210b vnet I think, that the best bugfix is to forbid to change predefined variables as $name. ----------------------------------------------------------------------------- jail.conf, that causes one of described errors (ifconfig: 'vnet' requires argument), when calling: jail -c dhcp * { exec.start = "/bin/bash /etc/rc"; exec.stop = "/bin/bash /etc/rc.shutdown"; exec.consolelog = "/var/log/jail/$name"; path = "/usr/jails/$name"; mount.fstab = "/etc/jail.fstab/$name"; host.hostname = "$name.dionyska.cz"; devfs_ruleset = "4"; mount.devfs; mount.fdescfs; $ip_addr = "192.168.6.${ip}" ; } dhcp { $name='dhcp'; $ip = "210" ; $ip_route = "192.168.6.1" ; vnet; vnet.interface = "epair${ip}b"; exec.prestart = "ifconfig epair${ip}a destroy 2>/dev/null || true"; exec.prestart += "ifconfig epair$ip create up"; exec.prestart += "ifconfig bridge0 addm epair${ip}a"; exec.start = "/sbin/ifconfig lo0 127.0.0.1 up"; exec.start += "/sbin/ifconfig epair${ip}b inet 192.168.6.210 up" ; exec.start += "/sbin/route add default $ip_route " ; exec.start += "/bin/sh /etc/rc"; exec.poststop = "ifconfig bridge0 delem epair${ip}"; exec.poststop = "ifconfig epair${ip}a destroy " ; persist; devfs_ruleset=5 ; allow.raw_sockets=1 ; allow.socket_af = 1; } -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 20:48:01 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20DCE8A0 for ; Tue, 6 Jan 2015 20:48:01 +0000 (UTC) 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 088997CA for ; Tue, 6 Jan 2015 20:48:01 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06Km0fm069693 for ; Tue, 6 Jan 2015 20:48:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196575] Need methods to write to disk from powerpc loader Date: Tue, 06 Jan 2015 20:48:01 +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: jhibbits@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 20:48:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196575 Bug ID: 196575 Summary: Need methods to write to disk from powerpc loader Product: Base System Version: 11.0-CURRENT Hardware: ppc OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: jhibbits@FreeBSD.org The PowerPC loader doesn't currently support writing to disk from the loader. This causes 'nextboot -k' to always boot the next kernel, unless explicitly unloaded, whereas on i386 once the test kernel is loaded, the behavior is reverted back to the default kernel, in case of failure. On powerpc (32-bit) the kernel can be unloaded, which reduces the impact of this issue, but on powerpc64, unloading the kernel doesn't completely work, so loading a new kernel does not work, and panics or load failures ensue. Of course, this itself should be fixed, to allow unloading, but that's another problem entirely. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 21:55:03 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 010F7BA for ; Tue, 6 Jan 2015 21:55:02 +0000 (UTC) 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 C2E6166251 for ; Tue, 6 Jan 2015 21:55:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06Lt2oY004047 for ; Tue, 6 Jan 2015 21:55:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196574] Bug in parsing jail.conf Date: Tue, 06 Jan 2015 21:55: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.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: logik@centrum.cz X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 21:55:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196574 --- Comment #1 from logik@centrum.cz --- The problem is probably on two places: following jail.conf, where no $name redefinition is, leads to errors too: Maybe two substitutions on one line is the problem here? [root@platys ~]# jail -c dhcp epair210a dhcp: created jail: dhcp: /sbin/ifconfig epair210b in192.168.6.210et up: failed dhcp: removed When I replace exec.start += "/sbin/ifconfig epair${ip}b inet $ip_addr up" ; with exec.start += "/sbin/ifconfig epair210b inet $ip_addr up" ; the problem disappear. But two variables on line is not the only problem, because adding (after correcting previous error) new line: $name='dhcp'; throw the error mentioned in my first post: [root@platys ~]# jail -c dhcp epair210a dhcp: created ifconfig: 'vnet' requires argument jail: dhcp: /sbin/ifconfig epair210b vnet: failed dhcp: removed jail.conf: * { exec.start = "/bin/bash /etc/rc"; exec.stop = "/bin/bash /etc/rc.shutdown"; exec.consolelog = "/var/log/jail/$name"; path = "/usr/jails/$name"; mount.fstab = "/etc/jail.fstab/$name"; host.hostname = "$name.dionyska.cz"; devfs_ruleset = "4"; mount.devfs; mount.fdescfs; $ip_addr = "192.168.6.${ip}" ; } dhcp { $ip = "210" ; $ip_route = "192.168.6.1" ; vnet; vnet.interface = "epair${ip}b"; exec.prestart = "ifconfig epair${ip}a destroy 2>/dev/null || true"; exec.prestart += "ifconfig epair$ip create up"; exec.prestart += "ifconfig bridge0 addm epair${ip}a"; exec.start = "/sbin/ifconfig lo0 127.0.0.1 up"; exec.start += "/sbin/ifconfig epair${ip}b inet $ip_addr up" ; exec.start += "/sbin/route add default $ip_route " ; exec.start += "/bin/sh /etc/rc"; exec.poststop = "ifconfig bridge0 delem epair${ip}"; exec.poststop = "ifconfig epair${ip}a destroy " ; persist; devfs_ruleset=5 ; allow.raw_sockets=1 ; allow.socket_af = 1; } -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 23:00:59 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 00B23EF8 for ; Tue, 6 Jan 2015 23:00:58 +0000 (UTC) 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 DBC17C72 for ; Tue, 6 Jan 2015 23:00:58 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t06N0wiQ096712 for ; Tue, 6 Jan 2015 23:00:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195683] [geli] geli boot passphrase prompt skips keys when newcons enabled, usb keyboard Date: Tue, 06 Jan 2015 23:00: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.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dor.bsd@fastmail.fm X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 23:00:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195683 David O'Rourke changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dor.bsd@fastmail.fm --- Comment #1 from David O'Rourke --- I too am experiencing this issue. I'm happy to have found this bug since now I know I can disable newcons and regain my sanity. I was experiencing it on a MacBook Pro from 2009, the keyboard of this MBP is attached to the USB bus. I would guess this means that all MacBooks since then are of a similar configuration. I'm happy to test patches if any are made available. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 00:10:53 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EAA1B71F for ; Wed, 7 Jan 2015 00:10:53 +0000 (UTC) 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 D20B7647E5 for ; Wed, 7 Jan 2015 00:10:53 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t070ArTS088718 for ; Wed, 7 Jan 2015 00:10:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195683] [geli] geli boot passphrase prompt skips keys when newcons enabled, usb keyboard Date: Wed, 07 Jan 2015 00:10: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 Only Me X-Bugzilla-Who: dor.bsd@fastmail.fm X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 00:10:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195683 --- Comment #2 from David O'Rourke --- Disabling newcons does help the situation, however, the first password attempt is always broken, with key presses going missing. Searching around, there are threads on the FreeBSD forum going back to 2009 reporting similar issues with USB keyboards and GELI passphrases at boot. (eg. https://forums.freebsd.org/threads/problems-entering-geli-password-during-boot.1358/) This issue seems to have existed for a long time. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 02:11:33 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44BFCEA2 for ; Wed, 7 Jan 2015 02:11:33 +0000 (UTC) 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 2D3D764ABE for ; Wed, 7 Jan 2015 02:11:33 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t072BXNr095745 for ; Wed, 7 Jan 2015 02:11:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196571] sysctl dev.cpu.0 causes panic: page fault Date: Wed, 07 Jan 2015 02:11:33 +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: emmh@gulli.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 02:11:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196571 --- Comment #1 from emmh@gulli.com --- (kgdb) bt #0 sched_switch (td=0xc1545ef0, newtd=) at /usr/src/sys/kern/sched_ule.c:1945 #1 0xc0b20f12 in mi_switch (flags=, newtd=0xc1545ef0) at /usr/src/sys/kern/kern_synch.c:494 #2 0xc0b5f65b in sleepq_switch (wchan=, pri=) at /usr/src/sys/kern/subr_sleepqueue.c:538 #3 0xc0b5fd8f in sleepq_timedwait (wchan=0xc1545bf4, pri=84) at /usr/src/sys/kern/subr_sleepqueue.c:652 #4 0xc0b20822 in _sleep (ident=0xc140ab01, lock=, priority=, sbt=42949670000, pr=0, flags=) at /usr/src/sys/kern/kern_synch.c:252 #5 0xc0dbe6a0 in swapper () at /usr/src/sys/vm/vm_glue.c:750 #6 0xc04b2e77 in begin () at /usr/src/sys/i386/i386/locore.s:327 Current language: auto; currently minimal (kgdb) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 02:47:48 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EAA4534C for ; Wed, 7 Jan 2015 02:47:48 +0000 (UTC) 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 D293C64F7E for ; Wed, 7 Jan 2015 02:47:48 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t072lmqc058702 for ; Wed, 7 Jan 2015 02:47:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196499] buildkernel fails after clang 3.5 import Date: Wed, 07 Jan 2015 02:47: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: bugs@bergstroem.nu X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 02:47:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D196499 Johan Bergstr=C3=B6m changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |Overcome By Events --- Comment #1 from Johan Bergstr=C3=B6m --- I just tried pulling again; seems to be fixed. Haven't bisected, but will if anyone requests it. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 05:29:42 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8411878 for ; Wed, 7 Jan 2015 05:29:42 +0000 (UTC) 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 BFDC51A50 for ; Wed, 7 Jan 2015 05:29:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t075Tg8P081357 for ; Wed, 7 Jan 2015 05:29:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196571] sysctl dev.cpu.0 causes panic: page fault Date: Wed, 07 Jan 2015 05:29: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: emmh@gulli.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 05:29:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196571 --- Comment #2 from emmh@gulli.com --- Created attachment 151444 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151444&action=edit core.txt.0 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 05:49:08 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1126AB48 for ; Wed, 7 Jan 2015 05:49:08 +0000 (UTC) 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 ED005DF2 for ; Wed, 7 Jan 2015 05:49:07 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t075n7K9030549 for ; Wed, 7 Jan 2015 05:49:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196571] sysctl dev.cpu.0 causes panic: page fault Date: Wed, 07 Jan 2015 05:49:08 +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: emmh@gulli.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 05:49:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196571 --- Comment #3 from emmh@gulli.com --- Note core.txt(.0) 'HIGH' und 'NONE' (lines 1344 and 1345) are a result of my changes to /etc/rc.d/power_profile -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 07:17:17 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8F6A616 for ; Wed, 7 Jan 2015 07:17:17 +0000 (UTC) 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 D001E1A8A for ; Wed, 7 Jan 2015 07:17:17 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t077HH24059179 for ; Wed, 7 Jan 2015 07:17:17 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196542] System stops booting with "ACPI APIC Table: " Date: Wed, 07 Jan 2015 07:17:17 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jonas@jonas-keidel.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 07:17:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196542 --- Comment #2 from Jonas Keidel --- Created attachment 151448 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151448&action=edit Intel S1200 FreeBSD 10.1 "ACPI Denlow" I have started the system with "Verbose" = "on". But there is no further information found. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 07:20:32 2015 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18EB468A for ; Wed, 7 Jan 2015 07:20:32 +0000 (UTC) Received: from mail63-16.bne1.au.emdbms.com (mail63-16.bne1.au.emdbms.com [203.145.63.16]) by mx1.freebsd.org (Postfix) with ESMTP id B401A1AB2 for ; Wed, 7 Jan 2015 07:20:31 +0000 (UTC) Received: from backend2.bne1.au.emdbms.com (192.168.2.157) by mail63-16.bne1.au.emdbms.com (PowerMTA(TM) v3.5r15) id hljf3u0kaa4l for ; Wed, 7 Jan 2015 17:20:23 +1000 (envelope-from <60e8434.a44773.10234663.1@mbounces.com>) Received: from 24.120.28.146 (ACD:44773.94147.396461) by www.vision6.com.au (5.8.48) with HTTP for ; Wed, 07 Jan 2015 17:20:23 +1000 X-Report-Abuse-To: abuse@vision6.com.au X-Send-Timestamp: 1420615223.10234663.44773 Message-Id: <108621885154acde378f38f.1420615223@www.vision6.com.au> Date: Wed, 07 Jan 2015 17:20:23 +1000 From: "ImporterDeals" To: Subject: BLACK Box Safety Car Truck Camera Recorder MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 07:20:32 -0000 [1]Importer Dealer [dash.jpg] HOT PRODUCT LIMITED STOCK Car Camera Dash Video Recorder [dash.png] Only $55.00 Was $399.00 Buy Now Details Driving has its dangers, and one of these dangers is other drivers. In the unfortunate event of a car accident, avoid a case of their word against yours. With the Camera Dash Video Recorder you’ll have proof that you were in the right. View 240 Watt Solar Folding Only $290.00 View More Safe Wash Only $299.00 Watch Video [2]Visit our website | QLD Australia This email was sent by ImporterDeals, Brisbane QLD 4000 to freebsd-bugs@freebsd.org [3]Unsubscribe References Visible links 1. http://www.vision6.com.au/ch/44773/cj1pd/1738543/9bba9b93r.html 2. http://www.vision6.com.au/ch/44773/cj1pd/1738542/9bba916zf9.html 3. http://www.vision6.com.au/forms/u/60e8434/44773/10234663.html Hidden links: 5. http://www.vision6.com.au/ch/44773/cj1pd/1870780/9bba9r8yv.html 6. http://www.vision6.com.au/ch/44773/cj1pd/1870780/9bba9r8yv-1.html 7. http://www.vision6.com.au/ch/44773/cj1pd/1870781/9bba9mjw0.html 8. http://www.vision6.com.au/ch/44773/cj1pd/1870782/9bba9zgmq.html From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 07:43:44 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69A5C93D for ; Wed, 7 Jan 2015 07:43:44 +0000 (UTC) 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 511D41EFB for ; Wed, 7 Jan 2015 07:43:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t077hiHJ015425 for ; Wed, 7 Jan 2015 07:43:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196585] Regression in nsupdate, vendor patch available Date: Wed, 07 Jan 2015 07:43:44 +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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: andre@fbsd.ata.myota.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 07:43:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196585 Bug ID: 196585 Summary: Regression in nsupdate, vendor patch available Product: Base System Version: 9.3-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: andre@fbsd.ata.myota.org [This actually applies to 9.3-STABLE] r275890 (Update BIND to 9.9.6-P1) introduced a regression in nsupdate. A vendor patch is available from https://kb.isc.org/article/AA-01220/. It applies cleanly to 9.3-STABLE and fixes the problem. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 08:07:36 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 299C5C70 for ; Wed, 7 Jan 2015 08:07:36 +0000 (UTC) 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 104F366170 for ; Wed, 7 Jan 2015 08:07:36 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0787ZNr096354 for ; Wed, 7 Jan 2015 08:07:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192889] accept4 socket hangs in CLOSED (memcached) Date: Wed, 07 Jan 2015 08:07:36 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: arne.claus@trivago.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 08:07:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192889 --- Comment #12 from Arne Claus --- We're now running tests with the following configuration FreeBSD 10.1-RELEASE (GENERIC) #0 r274401 memcached 1.4.22 libevent 2.0.21-stable As of now everything works fine, so the situation has at least improved. As I did not see any directly related changes on the FreeBSD changelog (the TCP fixes seem not be relevant for this case) my current assumption is that changes in memcached 1.4.22 fixed the issue. I did not test 1.4.22 on FreeBSD 10.0 though. As the bug shows signs of a race condition especially the threading fixes in memcached 1.4.22 are good candidates for having fixed the issue: https://code.google.com/p/memcached/wiki/ReleaseNotes1422#Memcached_1.4.22_Release_Notes -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 08:51:03 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0EB2744 for ; Wed, 7 Jan 2015 08:51:03 +0000 (UTC) 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 7D64A6676E for ; Wed, 7 Jan 2015 08:51:03 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t078p3mj096151 for ; Wed, 7 Jan 2015 08:51:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196586] [vm][patch] Using sysctl to set new limits on kern.ipc.nmbjumbo9 or kern.ipc.nmbjumbo16 does not work as expected Date: Wed, 07 Jan 2015 08:51:03 +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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: arnaud.ysmal@stormshield.eu X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 08:51:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196586 Bug ID: 196586 Summary: [vm][patch] Using sysctl to set new limits on kern.ipc.nmbjumbo9 or kern.ipc.nmbjumbo16 does not work as expected Product: Base System Version: 9.3-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: arnaud.ysmal@stormshield.eu Created attachment 151450 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151450&action=edit Use (uk_maxpages / uk_ppera) * uk_ipers to compute the number of items Overview: Using sysctl to set a new value to kern.ipc.nmbjumbo9 or kern.ipc.nmbjumbo16 leads to a wrong value. This appears in FreeBSD 9.3 with the revision 254515 (https://svnweb.freebsd.org/base?view=revision&revision=254515) which MFC the revision 243631. How to reproduce: # sysctl kern.ipc.nmbjumbo9=224000 kern.ipc.nmbjumbo9: 223263 -> 672000 Expected Results: # sysctl kern.ipc.nmbjumbo9=224000 kern.ipc.nmbjumbo9: 223263 -> 224000 Audit: The sysctls functions in sys/kern/kern_mbuf.c got the new value from the uma_zone_set_max (sys/vm/uma_core.c) function. The formula used in uma_core.c to compute the number of items based on the number of pages is not always the same (uk_ppera is sometimes missing). Fix: The enclosed patch fixes this issue by always using the same formula to compute the number of items. Additional Information: This report is a follow up of my mail on freebsd-net (https://lists.freebsd.org/pipermail/freebsd-net/2014-December/040584.html). This issue was previously discussed on FreeBSD-hackers (https://lists.freebsd.org/pipermail/freebsd-hackers/2014-September/046158.html). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 09:05:24 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2CE2191C for ; Wed, 7 Jan 2015 09:05:24 +0000 (UTC) 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 13A6766A7E for ; Wed, 7 Jan 2015 09:05:24 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0795NYG065249 for ; Wed, 7 Jan 2015 09:05:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195683] [geli] geli boot passphrase prompt skips keys when newcons enabled, usb keyboard Date: Wed, 07 Jan 2015 09:05: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 Only Me X-Bugzilla-Who: acheron.blackflow@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 09:05:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195683 --- Comment #3 from Vlad "Blackflow" K. --- I don't know if it is the same issue but "evolved", or something different, but this is not the case of only the *first* attempt not working, at least in my case. Also, it would appear that without newcons enabled, the first attempt actually now *works*. Maybe it's a statistical fluke that the few reboots I tried it just worked, maybe others can confirm? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 09:33:09 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FC89EBE for ; Wed, 7 Jan 2015 09:33:09 +0000 (UTC) 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 5DB131E82 for ; Wed, 7 Jan 2015 09:33:09 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t079X99U073736 for ; Wed, 7 Jan 2015 09:33:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195859] Reproduceble panic with VIMAGE + if_bridge Date: Wed, 07 Jan 2015 09:33:09 +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: max.n.boyarov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 09:33:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195859 --- Comment #2 from max.n.boyarov@gmail.com --- (In reply to Craig Rodrigues from comment #1) Same panic after apply patch. But in my configuration i have 2 jails with epairs in bridge #1 0xffffffff80966327 in kern_reboot (howto=Unhandled dwarf expression opcode 0x93 ) at /usr/src/sys/kern/kern_shutdown.c:447 #2 0xffffffff80966918 in vpanic (fmt=, ap=) at /usr/src/sys/kern/kern_shutdown.c:746 #3 0xffffffff80966742 in kassert_panic (fmt=) at /usr/src/sys/kern/kern_shutdown.c:634 #4 0xffffffff8095024a in __mtx_lock_flags (c=0xfffffe0069a26278, opts=Unhandled dwarf expression op code 0x93 ) at /usr/src/sys/kern/kern_mutex.c:214 #5 0xffffffff8241457f in bridge_ifdetach (arg=, ifp=0xfffff80105552800) at /usr/src/sys/modules/if_bridge/../../net/if_bridge.c:1814 #6 0xffffffff80a3794d in if_detach_internal (ifp=0xfffff80105552800, vmove=0) at /usr/src/sys/net/if.c:932 #7 0xffffffff80a375ea in if_detach (ifp=0x0) at /usr/src/sys/net/if.c:863 #8 0xffffffff80a43d16 in lo_clone_destroy (ifp=0xfffff80105552800) at /usr/src/sys/net/if_loop.c:116 #9 0xffffffff80a3f220 in if_clone_destroyif (ifc=0xfffff8000f00da80, ifp=) at /usr/src/sys/net/if_clone.c:676 #10 0xffffffff80a3fae8 in if_clone_detach (ifc=) at /usr/src/sys/net/if_clone.c:450 #11 0xffffffff80a43ba6 in vnet_loif_uninit (unused=) at /usr/src/sys/net/if_loop.c:167 #12 0xffffffff80a55437 in vnet_destroy (vnet=0xfffff80105509380) at /usr/src/sys/net/vnet.c:593 #13 0xffffffff80939b9d in prison_deref (pr=0xffffffff81516eb0, flags=Cannot access memory at address 0x3 ) at /usr/src/sys/kern/kern_jail.c:2582 #14 0xffffffff8093b224 in sys_jail_remove (td=, uap=) at /usr/src/sys/kern/kern_jail.c:2248 #15 0xffffffff80d9a90a in amd64_syscall (td=0xfffff8000f445940, traced=0) at subr_syscall.c:133 #16 0xffffffff80d78e6b in Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:395 #17 0x0000000800ec3b6a in ?? () Previous frame inner to this frame (corrupt stack?) Current language: auto; currently minimal -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 09:46:03 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A9394108 for ; Wed, 7 Jan 2015 09:46:03 +0000 (UTC) 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 910F21FF2 for ; Wed, 7 Jan 2015 09:46:03 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t079k3vg093043 for ; Wed, 7 Jan 2015 09:46:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195859] Reproduceble panic with VIMAGE + if_bridge Date: Wed, 07 Jan 2015 09:46: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 Only Me X-Bugzilla-Who: max.n.boyarov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 09:46:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195859 --- Comment #3 from max.n.boyarov@gmail.com --- (kgdb) f 5 #5 0xffffffff8241457f in bridge_ifdetach (arg=, ifp=0xfffff80105552800) at /usr/src/sys/modules/if_bridge/../../net/if_bridge.c:1814 1814 BRIDGE_LIST_LOCK(); Current language: auto; currently minimal (kgdb) list 1809 BRIDGE_UNLOCK(sc); 1810 return; 1811 } 1812 1813 /* Check if the interface is a span port */ 1814 BRIDGE_LIST_LOCK(); 1815 CURVNET_SET(ifp->if_vnet); 1816 LIST_FOREACH(sc, &V_bridge_list, sc_list) { 1817 BRIDGE_LOCK(sc); 1818 LIST_FOREACH(bif, &sc->sc_spanlist, bif_next) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 09:49:57 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51AD01BF for ; Wed, 7 Jan 2015 09:49:57 +0000 (UTC) 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 399346404B for ; Wed, 7 Jan 2015 09:49:57 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t079nvst094413 for ; Wed, 7 Jan 2015 09:49:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195859] Reproduceble panic with VIMAGE + if_bridge Date: Wed, 07 Jan 2015 09:49: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: max.n.boyarov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 09:49:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195859 --- Comment #4 from max.n.boyarov@gmail.com --- Panic String: mtx_lock() of destroyed mutex @ /usr/src/sys/modules/if_bridge/../../net/if_bridge.c:1814 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 10:27:55 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B45957F for ; Wed, 7 Jan 2015 10:27:55 +0000 (UTC) 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 0297B6659C for ; Wed, 7 Jan 2015 10:27:55 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07ARsBo019819 for ; Wed, 7 Jan 2015 10:27:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195683] [geli] geli boot passphrase prompt skips keys when newcons enabled, usb keyboard Date: Wed, 07 Jan 2015 10:27: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 Only Me X-Bugzilla-Who: acheron.blackflow@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 10:27:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195683 --- Comment #4 from Vlad "Blackflow" K. --- I just did 10 reboots with and without newcons, this doesn't seem to be a statistical fluke. Without newcons the geli prompt ALWAYS works on first attempt. With newcons it almost always skips at least one key, regardless of the number of attempts. Input also "feels" a bit sluggish compared to without newcons. Another observation, compared to FreeBSD 10.0, now the geli prompt is NOT buried in the output (eg. a keyboard device line would appear AFTER the prompt is shown, back in 10.0) on the same hardware, with or without newcons. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 10:39:15 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82382715 for ; Wed, 7 Jan 2015 10:39:15 +0000 (UTC) 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 690C76672C for ; Wed, 7 Jan 2015 10:39:15 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07AdF8u058869 for ; Wed, 7 Jan 2015 10:39:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196542] System stops booting with "ACPI APIC Table: " Date: Wed, 07 Jan 2015 10:39: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: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jonas@jonas-keidel.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 10:39:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196542 --- Comment #3 from Jonas Keidel --- Created attachment 151451 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151451&action=edit Complete Dmesg with verbose on I've added a complete dmesg of installed FreeBSD 10.1 booting with verbose on. The system hangs some time on the Denlow message and after that it sometimes boots through to login. But in some random reboots, it hangs there forever (strange). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 13:44:34 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B7CAC95 for ; Wed, 7 Jan 2015 13:44:34 +0000 (UTC) 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 322BD146B for ; Wed, 7 Jan 2015 13:44:34 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07DiYs8085981 for ; Wed, 7 Jan 2015 13:44:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191359] [memguard] [panic] Memory modified after free w/MEMGUARD build Date: Wed, 07 Jan 2015 13:44:34 +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: luke.tw@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 13:44:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191359 luke.tw@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |luke.tw@gmail.com --- Comment #1 from luke.tw@gmail.com --- Dear Peter, I managed to find the root cause. The bug can be reproduced by setting "sysctl vm.memguard.options=2" and ssh activity 1. memguard.options = 2 enable memguard to protect all allocations that are bigger than PAGE_SIZE. 2. ssh activity allocates mbuf that uses zone with UMA_ZONE_REFCNT flag. The zone is protected by memguard. However, these two features save values in the same union plinks in vm_page 1. memguard save allocation size in vm_page->plinks.memguard.v 2. UMA_ZONE_REFCNT save refcount in vm_page->plinks.s.pv The following patch can work around this bug. Index: sys/vm/memguard.c =================================================================== --- sys/vm/memguard.c (revision 276729) +++ sys/vm/memguard.c (working copy) @@ -506,6 +506,9 @@ zone->uz_flags & UMA_ZONE_NOFREE) return (0); + if (zone->uz_flags & UMA_ZONE_REFCNT) + return (0); + if (memguard_cmp(zone->uz_size)) return (1); -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 16:07:14 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B2509FE for ; Wed, 7 Jan 2015 16:07:14 +0000 (UTC) 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 830041BB2 for ; Wed, 7 Jan 2015 16:07:14 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07G7E24040844 for ; Wed, 7 Jan 2015 16:07:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196597] clang 3.5.0 buildworld -DWITH_OFED fails Date: Wed, 07 Jan 2015 16:07:14 +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: lars@eggert.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 16:07:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196597 Bug ID: 196597 Summary: clang 3.5.0 buildworld -DWITH_OFED fails 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: lars@eggert.org There seem to be issues when building world with clang 3.5 with -DWITH_OFED: --- contrib/ofed.all__D --- /usr/home/elars/src/contrib/ofed/usr.bin/opensm/../../management/opensm/opensm/osm_ucast_ftree.c:2996:8: error: taking the absolute value of unsigned type 'unsigned int' has no effect [-Werror,-Wabsolute-value] if (abs(p_sw->rank - p_remote_sw->rank) != 1) { -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 16:13:37 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF022E36 for ; Wed, 7 Jan 2015 16:13:37 +0000 (UTC) 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 D68A964BA0 for ; Wed, 7 Jan 2015 16:13:37 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07GDbhb074362 for ; Wed, 7 Jan 2015 16:13:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194361] [BUG] 11-CURRENT does not build on 10.1-STABLE Date: Wed, 07 Jan 2015 16:13: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: op@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 16:13:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194361 Oliver Pinter changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |op@freebsd.org --- Comment #1 from Oliver Pinter --- I run into same error: https://github.com/HardenedBSD/hardenedBSD/issues/102 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 16:17:14 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59341283 for ; Wed, 7 Jan 2015 16:17:14 +0000 (UTC) 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 402EA64C43 for ; Wed, 7 Jan 2015 16:17:14 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07GHEsK079610 for ; Wed, 7 Jan 2015 16:17:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196597] clang 3.5.0 buildworld -DWITH_OFED fails Date: Wed, 07 Jan 2015 16:17:14 +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: hselasky@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: hselasky@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 16:17:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196597 Hans Petter Selasky changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |hselasky@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 17:12:27 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 68F38CA4 for ; Wed, 7 Jan 2015 17:12:27 +0000 (UTC) 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 50B6C666F1 for ; Wed, 7 Jan 2015 17:12:27 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07HCRX1040447 for ; Wed, 7 Jan 2015 17:12:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196598] makefs option typo Date: Wed, 07 Jan 2015 17:12:27 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dan.mcgregor@usask.ca X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 17:12:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196598 Bug ID: 196598 Summary: makefs option typo Product: Base System Version: 10.1-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: dan.mcgregor@usask.ca Created attachment 151466 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151466&action=edit fix for makefs maxbpg option makefs has a typo in its handling of the maxbpg option for ffs. It is parsing maxbpf instead. # makefs -t ffs -o version=2,maxbpg=4096 -s 4g -N etc ../rootfs METALOG makefs: Unknown option `maxbpg' -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 21:39:08 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 967593A3 for ; Wed, 7 Jan 2015 21:39:08 +0000 (UTC) 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 7E9D737C for ; Wed, 7 Jan 2015 21:39:08 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07Ld8D8067249 for ; Wed, 7 Jan 2015 21:39:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196447] vi(1) misbehavior when encountered invalid Unicode character Date: Wed, 07 Jan 2015 21:39:08 +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: delphij@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 21:39:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196447 --- Comment #5 from Xin LI --- (In reply to lichray from comment #4) Well, depends on how we define it. I think the editor should not "eat" file contents :) Yes, I think the editor should ask the user and reject edits if it's not possible to write the whole file, it's much better than writing partial file. BTW. I discovered that typing in command mode does not give me the character, while older version of vi do (so one can say :1,$ s/^//g to add a tab character in front of all lines). Is this related to locale settings? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 22:18:27 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D7532ECE for ; Wed, 7 Jan 2015 22:18:27 +0000 (UTC) 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 BEE179BA for ; Wed, 7 Jan 2015 22:18:27 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07MIRdx094396 for ; Wed, 7 Jan 2015 22:18:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194525] Restart Apache Causes page fault and kernel dump Date: Wed, 07 Jan 2015 22:18: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: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: syepes@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 22:18:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194525 Sebastian YEPES F. changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |syepes@gmail.com --- Comment #3 from Sebastian YEPES F. --- Hello, I have also noticed this issue even in the -STABLE branch. This is happening very frequently this is a VM (ESXi 5.5) with ZFS. Has anyone found a solution to this panic? ------------ pkgs: apache24-2.4.10_2 ap24-mod_wsgi3-3.5 # uname -a FreeBSD mutgra2 10.1-STABLE FreeBSD 10.1-STABLE #1 r276775: Wed Jan 7 15:07:49 CET 2015 root@mutgra2:/usr/obj/usr/src/sys/GENERIC amd64 cat /var/crash/info.0 Dump header from device /dev/da0p2 Architecture: amd64 Architecture Version: 2 Dump Length: 599506944B (571 MB) Blocksize: 512 Dumptime: Wed Jan 7 17:21:41 2015 Hostname: eud3-pr-mutgra2 Magic: FreeBSD Kernel Dump Version String: FreeBSD 10.1-STABLE #1 r276775: Wed Jan 7 15:07:49 CET 2015 root@eud3-pr-mutgra2:/usr/obj/usr/src/sys/GENERIC Panic String: page fault Dump Parity: 1099763522 Bounds: 0 Dump Status: good ~ root@mutgra2:/usr/obj/usr/src/sys/GENERIC # kgdb /boot/kernel/kernel /var/crash/vmcore.0 GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd"... Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 fault virtual address = 0x30058 fault code = supervisor write data, page not present instruction pointer = 0x20:0xffffffff8091294a stack pointer = 0x28:0xfffffe00c8ec2770 frame pointer = 0x28:0xfffffe00c8ec2840 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 37420 (httpd) trap number = 12 panic: page fault cpuid = 0 KDB: stack backtrace: #0 0xffffffff80969500 at kdb_backtrace+0x60 #1 0xffffffff8092da35 at panic+0x155 #2 0xffffffff80d2bc4f at trap_fatal+0x38f #3 0xffffffff80d2bf68 at trap_pfault+0x308 #4 0xffffffff80d2b5ca at trap+0x47a #5 0xffffffff80d11a12 at calltrap+0x8 #6 0xffffffff80913115 at lf_advlock+0x45 #7 0xffffffff809bf157 at vop_stdadvlock+0xc7 #8 0xffffffff80e4b187 at VOP_ADVLOCK_APV+0xa7 #9 0xffffffff808e8859 at kern_fcntl+0xb39 #10 0xffffffff808e7c9c at kern_fcntl_freebsd+0xac #11 0xffffffff80d2c587 at amd64_syscall+0x357 #12 0xffffffff80d11cfb at Xfast_syscall+0xfb Uptime: 1h36m20s Dumping 571 out of 8164 MB:..3%..12%..23%..31%..42%..51%..62%..73%..82%..93% Reading symbols from /boot/kernel/zfs.ko.symbols...done. Loaded symbols for /boot/kernel/zfs.ko.symbols Reading symbols from /boot/kernel/opensolaris.ko.symbols...done. Loaded symbols for /boot/kernel/opensolaris.ko.symbols Reading symbols from /boot/kernel/aio.ko.symbols...done. Loaded symbols for /boot/kernel/aio.ko.symbols Reading symbols from /boot/kernel/fdescfs.ko.symbols...done. Loaded symbols for /boot/kernel/fdescfs.ko.symbols Reading symbols from /usr/local/lib/vmware-tools/modules/drivers/vmmemctl.ko...done. Loaded symbols for /usr/local/lib/vmware-tools/modules/drivers/vmmemctl.ko Reading symbols from /usr/local/lib/vmware-tools/modules/drivers/vmxnet.ko...done. Loaded symbols for /usr/local/lib/vmware-tools/modules/drivers/vmxnet.ko Reading symbols from /usr/local/lib/vmware-tools/modules/drivers/vmblock.ko...done. Loaded symbols for /usr/local/lib/vmware-tools/modules/drivers/vmblock.ko Reading symbols from /boot/kernel/linux.ko.symbols...done. Loaded symbols for /boot/kernel/linux.ko.symbols #0 doadump (textdump=) at pcpu.h:219 219 __asm("movq %%gs:%1,%0" : "=r" (td) (kgdb) backtrace #0 doadump (textdump=) at pcpu.h:219 #1 0xffffffff8092d6b2 in kern_reboot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:452 #2 0xffffffff8092da74 in panic (fmt=) at /usr/src/sys/kern/kern_shutdown.c:759 #3 0xffffffff80d2bc4f in trap_fatal (frame=, eva=) at /usr/src/sys/amd64/amd64/trap.c:865 #4 0xffffffff80d2bf68 in trap_pfault (frame=0xfffffe00c8ec26c0, usermode=) at /usr/src/sys/amd64/amd64/trap.c:676 #5 0xffffffff80d2b5ca in trap (frame=0xfffffe00c8ec26c0) at /usr/src/sys/amd64/amd64/trap.c:440 #6 0xffffffff80d11a12 in calltrap () at /usr/src/sys/amd64/amd64/exception.S:236 #7 0xffffffff8091294a in lf_advlockasync (ap=0xfffffe00c8ec2850, statep=0xfffff8000cc82ab8, size=) at /usr/src/sys/kern/kern_lockf.c:745 #8 0xffffffff80913115 in lf_advlock (ap=, statep=0x0, size=0) at /usr/src/sys/kern/kern_lockf.c:771 #9 0xffffffff809bf157 in vop_stdadvlock (ap=0xfffffe00c8ec2a08) at /usr/src/sys/kern/vfs_default.c:421 #10 0xffffffff80e4b187 in VOP_ADVLOCK_APV (vop=, a=) at vnode_if.c:2531 #11 0xffffffff808e8859 in kern_fcntl (td=, fd=, cmd=, arg=) at vnode_if.h:1041 #12 0xffffffff808e7c9c in kern_fcntl_freebsd (td=0xfffff8013338b920, fd=14, cmd=, arg=34384006568) at /usr/src/sys/kern/kern_descrip.c:465 #13 0xffffffff80d2c587 in amd64_syscall (td=0xfffff8013338b920, traced=0) at subr_syscall.c:134 #14 0xffffffff80d11cfb in Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:396 #15 0x0000000801c9596a in ?? () Previous frame inner to this frame (corrupt stack?) Current language: auto; currently minimal (kgdb) ------------ -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 22:23:46 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 080FFAD for ; Wed, 7 Jan 2015 22:23:46 +0000 (UTC) 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 E3BFEA9D for ; Wed, 7 Jan 2015 22:23:45 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07MNjlY002126 for ; Wed, 7 Jan 2015 22:23:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194525] Restart www/apache24 Causes page fault and kernel dump Date: Wed, 07 Jan 2015 22:23:46 +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: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 22:23:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194525 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Restart Apache Causes page |Restart www/apache24 Causes |fault and kernel dump |page fault and kernel dump CC| |apache@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 22:29:42 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 397A01B8 for ; Wed, 7 Jan 2015 22:29:42 +0000 (UTC) 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 21A96AE7 for ; Wed, 7 Jan 2015 22:29:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07MTft0004704 for ; Wed, 7 Jan 2015 22:29:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196447] vi(1) misbehavior when encountered invalid Unicode character Date: Wed, 07 Jan 2015 22:29: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: lichray@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 22:29:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196447 --- Comment #6 from lichray@gmail.com --- (In reply to Xin LI from comment #5) The default action is horrible, I agree. Not a locale problem. I explained the tab issue before, it's my fault, because I bound the filename completion key to by default. You can either ":se filec=some thing else" in .nexrc, or press Ctrl-V before entering . I know this is a regression, but I don't have a better solution yet, since nvi's ex command parsing code is not reusable to solve these kinds of problem. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 22:30:35 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CAC16213 for ; Wed, 7 Jan 2015 22:30:35 +0000 (UTC) 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 988DBAF5 for ; Wed, 7 Jan 2015 22:30:35 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07MUZFY006346 for ; Wed, 7 Jan 2015 22:30:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192827] `syslogd -s` listens on 514/udp6 Date: Wed, 07 Jan 2015 22:30:35 +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.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: delphij@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution cc bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 22:30:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192827 Xin LI changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Works As Intended CC| |delphij@FreeBSD.org Status|New |Closed --- Comment #5 from Xin LI --- (In reply to florian.ermisch from comment #4) This is totally intentional and it's not a bug. With UDP, you have to bind() the socket or the system will allocate an arbitrary port to send the packet from (like binding on INADDR_ANY). RFC 3164 says, quote: %%% 2. Transport Layer Protocol syslog uses the user datagram protocol (UDP) [1] as its underlying transport layer mechanism. The UDP port that has been assigned to syslog is 514. It is RECOMMENDED that the source port also be 514 to indicate that the message is from the syslog process of the sender, but there have been cases seen where valid syslog messages have come from a sender with a source port other than 514. If the sender uses a source port other than 514 then it is RECOMMENDED and has been considered to be good form that subsequent messages are from a single consistent port. %%% Later RFC e.g. RFC 5426 have the following requirement: %%% 3.3. Source and Target Ports Syslog receivers MUST support accepting syslog datagrams on the well- known UDP port 514, but MAY be configurable to listen on a different port. Syslog senders MUST support sending syslog message datagrams to the UDP port 514, but MAY be configurable to send messages to a different port. Syslog senders MAY use any source UDP port for transmitting messages. %%% Binding the socket is desirable because it gives the maximum compatibility. Please also see the source code for 'NoBind' option (-N) and comments. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 22:45:51 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A8EE66D for ; Wed, 7 Jan 2015 22:45:51 +0000 (UTC) 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 726A4CA7 for ; Wed, 7 Jan 2015 22:45:51 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t07MjpIX052435 for ; Wed, 7 Jan 2015 22:45:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194525] Restart www/apache24 Causes page fault and kernel dump Date: Wed, 07 Jan 2015 22:45: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.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: syepes@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 22:45:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194525 --- Comment #4 from Sebastian YEPES F. --- I can now constantly reproduce the core dumps simply by stopping apache (/usr/local/etc/rc.d/apache24 stop) If you need more info to find the issue don't hesitate in contacting me. ------------ root@mutgra2:/var/crash # ll total 282939 -rw-r--r-- 1 root wheel 2B Jan 7 23:40 bounds -rw------- 1 root wheel 158K Jan 7 17:22 core.txt.0 -rw------- 1 root wheel 182K Jan 7 22:24 core.txt.1 -rw------- 1 root wheel 194K Jan 7 23:41 core.txt.2 -rw------- 1 root wheel 447B Jan 7 17:22 info.0 -rw------- 1 root wheel 447B Jan 7 22:24 info.1 -rw------- 1 root wheel 447B Jan 7 23:40 info.2 lrwxr-xr-x 1 root wheel 6B Jan 7 23:40 info.last@ -> info.2 -rw-r--r-- 1 root wheel 5B Dec 7 22:28 minfree -rw------- 1 root wheel 572M Jan 7 17:22 vmcore.0 -rw------- 1 root wheel 439M Jan 7 22:24 vmcore.1 -rw------- 1 root wheel 425M Jan 7 23:40 vmcore.2 lrwxr-xr-x 1 root wheel 8B Jan 7 23:40 vmcore.last@ -> vmcore.2 ------------ -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 01:04:25 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 618FCA92 for ; Thu, 8 Jan 2015 01:04:25 +0000 (UTC) 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 486AFBD4 for ; Thu, 8 Jan 2015 01:04:25 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0814P9P004896 for ; Thu, 8 Jan 2015 01:04:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191799] [patch] openssl - fix regression from CVE-2014-0224 - "ccs received early" Date: Thu, 08 Jan 2015 01:04: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: 8.4-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: andrew.daugherity@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 01:04:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191799 --- Comment #1 from Andrew Daugherity --- This bug still needs attention -- I have to rebuild libssl locally (with this patch) after each openssl advisory. For releng/10.1 it was fixed with the import of openssl 1.0.1i in r269686. It has not been fixed for releng/10.0, 9.3, or 8.4 (or 9.1/9.2, but those have fallen out of support). Can someone please add the 'patch' and 'regression' keywords (or whatever is appropriate -- I apparently can't set them myself) so the appropriate people see it and the patch can be reviewed/committed? Thanks! -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 01:05:07 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D0969AEB for ; Thu, 8 Jan 2015 01:05:07 +0000 (UTC) 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 B1CBFBE2 for ; Thu, 8 Jan 2015 01:05:07 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t08157RI005190 for ; Thu, 8 Jan 2015 01:05:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196608] sys/x86/x86/busdma_machdep.c fails to compile with PAE Date: Thu, 08 Jan 2015 01:05:07 +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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mi@ALDAN.algebra.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 01:05:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196608 Bug ID: 196608 Summary: sys/x86/x86/busdma_machdep.c fails to compile with PAE Product: Base System Version: 9.3-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: mi@ALDAN.algebra.com Created attachment 151485 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151485&action=edit Add explicit cast to the assignment to work-around the problem Trying to build kernel with the 9.3-STABLE sources as of today, I get: cc -c -O -pipe -march=prescott -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/mi/src/sys -I/mi/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -Werror /mi/src/sys/x86/x86/busdma_machdep.c cc1: warnings being treated as errors /mi/src/sys/x86/x86/busdma_machdep.c: In function 'alloc_bounce_zone': /mi/src/sys/x86/x86/busdma_machdep.c:1041: warning: initialization from incompatible pointer type The same error from clang is easier to understand: /mi/src/sys/x86/x86/busdma_machdep.c:1041:2: error: incompatible pointer types initializing 'uint64_t *' (aka 'unsigned long long *') with an expression of type 'bus_size_t *' (aka 'unsigned int *') [-Werror,-Wincompatible-pointer-types] SYSCTL_ADD_BUS_SIZE_T(busdma_sysctl_tree(bz), ^ /mi/src/sys/x86/x86/busdma_machdep.c:968:31: note: expanded from macro 'SYSCTL_ADD_BUS_SIZE_T' #define SYSCTL_ADD_BUS_SIZE_T SYSCTL_ADD_UQUAD ^ /mi/src/sys/sys/sysctl.h:394:12: note: expanded from macro 'SYSCTL_ADD_UQUAD' uint64_t *__ptr = (ptr); \ Patching sysctl.h to add explicit cast to the above assignment -- as the attached patch is doing -- allows the build to succeed and the resulting kernel seems to work (I'm typing this, am I not?), but it is, probably, not right on some level... The r273912, probably, had something to do with this... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 01:05:31 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 152E5B3C for ; Thu, 8 Jan 2015 01:05:31 +0000 (UTC) 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 F0E11BEA for ; Thu, 8 Jan 2015 01:05:30 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0815UhA005307 for ; Thu, 8 Jan 2015 01:05:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196608] sys/x86/x86/busdma_machdep.c fails to compile with PAE Date: Thu, 08 Jan 2015 01:05: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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mi@ALDAN.algebra.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: hselasky@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 01:05:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196608 Mikhail T. changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |hselasky@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 01:20:50 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E277B139 for ; Thu, 8 Jan 2015 01:20:50 +0000 (UTC) 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 C9CA6DA9 for ; Thu, 8 Jan 2015 01:20:50 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t081KoOb046632 for ; Thu, 8 Jan 2015 01:20:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196514] bsdconfig usermgt: selected user for edit always not found Date: Thu, 08 Jan 2015 01:20:49 +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: dteske@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: dteske@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 01:20:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196514 Devin Teske changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |dteske@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 01:56:22 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3297971 for ; Thu, 8 Jan 2015 01:56:22 +0000 (UTC) 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 9A337E1 for ; Thu, 8 Jan 2015 01:56:22 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t081uMBV039762 for ; Thu, 8 Jan 2015 01:56:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191799] [patch] openssl - fix regression from CVE-2014-0224 - "ccs received early" Date: Thu, 08 Jan 2015 01:56: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: 8.4-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: delphij@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 01:56:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191799 Xin LI changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |benl@FreeBSD.org, | |delphij@FreeBSD.org, | |jkim@FreeBSD.org --- Comment #2 from Xin LI --- (In reply to Andrew Daugherity from comment #1) The change was superseded later by commit e94a6c0 [1] which looks like needs to be ported, too? Adding OpenSSL maintainers for their opinion as well. [1] https://github.com/openssl/openssl/commit/e94a6c0ede623960728415b68650a595e48f5a43 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 03:49:31 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7E4FAFB for ; Thu, 8 Jan 2015 03:49:31 +0000 (UTC) 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 B010CE4A for ; Thu, 8 Jan 2015 03:49:31 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t083nV5H067274 for ; Thu, 8 Jan 2015 03:49:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196609] Install(1) doesn't set correct group permissions Date: Thu, 08 Jan 2015 03:49:31 +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 Many People X-Bugzilla-Who: tsara-4-ben@hotmail.co.uk X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 03:49:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196609 Bug ID: 196609 Summary: Install(1) doesn't set correct group permissions Product: Base System Version: 10.1-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: tsara-4-ben@hotmail.co.uk When passing -g to install when creating directories with -d, only the top directory gets the correct group. For example, if I were to create the direct test/test/test while none of those exist, using: install -o root -g wheel -dm755 test/test/test/ Only the the very last directory is set to root:wheel, while the two previous directories are set to root:amzo. This is the case even when using sudo. I'm unsure if this is intended, but all directories created with install(1) should have the owner and group set to the ones passed. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 03:55:20 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EBC63C75 for ; Thu, 8 Jan 2015 03:55:20 +0000 (UTC) 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 D26BCF07 for ; Thu, 8 Jan 2015 03:55:20 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t083tKNO005966 for ; Thu, 8 Jan 2015 03:55:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196609] Install(1) doesn't set correct group Date: Thu, 08 Jan 2015 03:55:21 +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 Many People X-Bugzilla-Who: tsara-4-ben@hotmail.co.uk X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 03:55:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196609 Anthony Donnelly changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Install(1) doesn't set |Install(1) doesn't set |correct group permissions |correct group -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 06:50:35 2015 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 033B87F8 for ; Thu, 8 Jan 2015 06:50:35 +0000 (UTC) Received: from mail63-16.bne1.au.emdbms.com (mail63-16.bne1.au.emdbms.com [203.145.63.16]) by mx1.freebsd.org (Postfix) with ESMTP id 93EADA for ; Thu, 8 Jan 2015 06:50:34 +0000 (UTC) Received: from backend2.bne1.au.emdbms.com (192.168.2.157) by mail63-16.bne1.au.emdbms.com (PowerMTA(TM) v3.5r15) id hlokbk0kaa47 for ; Thu, 8 Jan 2015 16:50:31 +1000 (envelope-from <6cf3e24.a44773.10300215.1@mbounces.com>) Received: from 24.120.28.146 (ACD:44773.94147.396461) by www.vision6.com.au (5.8.48) with HTTP for ; Thu, 08 Jan 2015 16:50:31 +1000 X-Report-Abuse-To: abuse@vision6.com.au X-Send-Timestamp: 1420699831.10300215.44773 Message-Id: <29637231254ae28b77d831.1420699831@www.vision6.com.au> Date: Thu, 08 Jan 2015 16:50:31 +1000 From: "ImporterDeals Furniture" To: Subject: Indoor Outdoor Furniture Set Clearance Sale MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 06:50:35 -0000 [1]Importer Dealer [white.jpg] HOT PRODUCT LIMITED STOCK Wicker 5pcs Glass Top Table And Chair Set [white-set.png] Only $399.00 Was $1,299.00 Buy Now Details This stunning handwoven dining setting is the perfect addition to any home, with its modern design and sophistication this piece will create luxury and resort living style in any outdoor or indoor area. View 240 Watt Solar Folding Only $290.00 View More Safe Wash Only $299.00 Watch Video [2]Visit our website | QLD Australia This email was sent by Importer Deals, Brisbane QLD 4000 to freebsd-bugs@freebsd.org [3]Unsubscribe References Visible links 1. http://www.vision6.com.au/ch/44773/czwkf/1738543/95f6eb93r.html 2. http://www.vision6.com.au/ch/44773/czwkf/1738542/95f6e16zf9.html 3. http://www.vision6.com.au/forms/u/6cf3e24/44773/10300215.html Hidden links: 5. http://www.vision6.com.au/ch/44773/czwkf/1871159/95f6ed99g.html 6. http://www.vision6.com.au/ch/44773/czwkf/1871159/95f6ed99g-1.html 7. http://www.vision6.com.au/ch/44773/czwkf/1871160/95f6ej6vc.html 8. http://www.vision6.com.au/ch/44773/czwkf/1871161/95f6e2jrn.html From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 10:58:40 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47A66E49 for ; Thu, 8 Jan 2015 10:58:40 +0000 (UTC) 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 2F761DB6 for ; Thu, 8 Jan 2015 10:58:40 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t08Awewi098090 for ; Thu, 8 Jan 2015 10:58:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191359] [memguard] [panic] Memory modified after free w/MEMGUARD build Date: Thu, 08 Jan 2015 10:58:39 +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: pho@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 10:58:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191359 Peter Holm changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |glebius@FreeBSD.org --- Comment #2 from Peter Holm --- Patch tested on r276791. Nu problems seen. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 15:53:55 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD9B150F for ; Thu, 8 Jan 2015 15:53:55 +0000 (UTC) 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 A49B812E for ; Thu, 8 Jan 2015 15:53:55 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t08Frt7f099258 for ; Thu, 8 Jan 2015 15:53:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193762] [cc_cdg] crash after change net.inet.tcp.cc.cdg.smoothing_factor Date: Thu, 08 Jan 2015 15:53: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.1-BETA1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: michael.letzgus@uni-bielefeld.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 15:53:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193762 --- Comment #15 from michael.letzgus@uni-bielefeld.de --- Same problem here (FreeBSD 10.1-RELEASE #0 r274401: Tue Nov 11 21:02:49): Chrash&restart after settign window size to zero. Just guessing without looking at the code: Is it a divide by zero problem? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 19:31:54 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4CE7BE41 for ; Thu, 8 Jan 2015 19:31:54 +0000 (UTC) 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 33F12D99 for ; Thu, 8 Jan 2015 19:31:54 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t08JVsFl072355 for ; Thu, 8 Jan 2015 19:31:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196622] vm_map.h defines "min_offset" and "max_offset" which causes namespace pollution. Date: Thu, 08 Jan 2015 19:31:54 +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: tjj5036@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 19:31:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196622 Bug ID: 196622 Summary: vm_map.h defines "min_offset" and "max_offset" which causes namespace pollution. 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: tjj5036@gmail.com Created attachment 151507 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151507&action=edit A patch to fix the issue In vm_map.h, there is a struct called vm_map that has two members named min_offset and max_offset respectively. There are macros that define these two to header.start and header.end respectively. Unfortunately, if you include vm_map.h anywhere, it causes issues with anything also declared to be min_/max_ offset. ZFS actually undefines them. This fix would remove the defines, making it so you can include the header safely without fear of unexpected bugs. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 22:41:53 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 505E7D9D for ; Thu, 8 Jan 2015 22:41:53 +0000 (UTC) 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 1F0803CE for ; Thu, 8 Jan 2015 22:41:53 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t08MfrNu061261 for ; Thu, 8 Jan 2015 22:41:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196474] jls causes kernel panic Date: Thu, 08 Jan 2015 22:41: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.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jamie@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: jamie@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to bug_status attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 22:41:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474 Jamie Gritton changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |jamie@FreeBSD.org Status|New |In Progress --- Comment #10 from Jamie Gritton --- Created attachment 151509 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151509&action=edit Don't set pr_ip4s to -1 I'm with Bjoern in that I see the problem on the jail_set end, and not the jail_get end. But I wouldn't want to make the command fail. It seems a reasonable analog to (the correct) "ip4=disable", and in fact ends up treating it the same way in every respect except the jail_get panic. It's never proper for pr_ip4 to have a negative value. It used to be, before the PR_IP4_DISABLE flag, and I would test for it in the proper places. But I was incorrect to keep that vestige when I added the flag. I must have considered it proper at the time since I took pains to keep it, but a years-later code review concludes differently. My patch merely gets rid of the -1 that doesn't belong. After that, the only difference between an ip4-disabled jail and one that is set to no addresses is the PR_IP4_DISABLED flag. Both have no addresses, and will not admit to supporting IPV4. In fact, PR_IP4_DISABLED, which is only ever referenced in kern_jail.c, becomes write-only and useless. I plan to issue a second patch which removes it entirely. But that isn't quite part of this bug. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 23:31:31 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 11070FE5 for ; Thu, 8 Jan 2015 23:31:31 +0000 (UTC) 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 EC95DBDE for ; Thu, 8 Jan 2015 23:31:30 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t08NVUIo005387 for ; Thu, 8 Jan 2015 23:31:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191799] [patch] openssl - fix regression from CVE-2014-0224 - "ccs received early" Date: Thu, 08 Jan 2015 23:31: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: 8.4-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: andrew.daugherity@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 23:31:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191799 --- Comment #3 from Andrew Daugherity --- (In reply to Xin LI from comment #2) Interestingly, that fix was not committed to the upstream OpenSSL_0_9_8-stable branch. No idea if that's an oversight or intentional. If it was correctly omitted, then only FreeBSD 10.x would need the extra fix, as 8.x and 9.x track 0.9.8 and would only need the original one-line patch. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 23:41:20 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 04ADD1DF for ; Thu, 8 Jan 2015 23:41:20 +0000 (UTC) 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 DFCB2C2A for ; Thu, 8 Jan 2015 23:41:19 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t08NfJ8e038955 for ; Thu, 8 Jan 2015 23:41:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196622] vm_map.h defines "min_offset" and "max_offset" which causes namespace pollution. Date: Thu, 08 Jan 2015 23:41: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: tjj5036@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 23:41:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196622 tjj5036@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Affects Only Me |Affects Some People -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 00:39:50 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4069890 for ; Fri, 9 Jan 2015 00:39:50 +0000 (UTC) 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 27CEE208 for ; Fri, 9 Jan 2015 00:39:50 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t090doSH033751 for ; Fri, 9 Jan 2015 00:39:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196631] [PATCH] fix for IPv4 bitmasking in src/sys/ofed/include/ip.h Date: Fri, 09 Jan 2015 00:39:50 +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: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 00:39:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631 Bug ID: 196631 Summary: [PATCH] fix for IPv4 bitmasking in src/sys/ofed/include/ip.h 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: ngie@FreeBSD.org Created attachment 151518 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151518&action=edit Fix The bitmask operation on buf[16]in ip_ib_mc_map(..) whacks the upper nibble, which in turn causes IB to not talk on all multicast groups. The attached patch fixes that. Submitted by: Jeff Meeghan -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 00:40:27 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0DC3DDD for ; Fri, 9 Jan 2015 00:40:27 +0000 (UTC) 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 E889720F for ; Fri, 9 Jan 2015 00:40:26 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t090eQ5F035580 for ; Fri, 9 Jan 2015 00:40:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196631] [PATCH] fix upper nibble whacking in ip_ib_mc_map(..) in src/sys/ofed/include/ip.h Date: Fri, 09 Jan 2015 00:40:27 +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: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 00:40:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631 Garrett Cooper,425-314-3911 changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[PATCH] fix for IPv4 |[PATCH] fix upper nibble |bitmasking in |whacking in |src/sys/ofed/include/ip.h |ip_ib_mc_map(..) in | |src/sys/ofed/include/ip.h CC| |benno@FreeBSD.org, | |hselasky@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 00:41:18 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 79D75132 for ; Fri, 9 Jan 2015 00:41:18 +0000 (UTC) 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 60E52220 for ; Fri, 9 Jan 2015 00:41:18 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t090fIuv037667 for ; Fri, 9 Jan 2015 00:41:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196631] [PATCH] fix upper nibble whacking in ip_ib_mc_map(..) in src/sys/ofed/include/ip.h Date: Fri, 09 Jan 2015 00:41: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 00:41:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631 --- Comment #1 from Garrett Cooper,425-314-3911 --- I typoed Jeff's e-mail address :/. Submitted by: Jeff Meeghan -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 00:41:43 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02EBD185 for ; Fri, 9 Jan 2015 00:41:43 +0000 (UTC) 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 DE32422B for ; Fri, 9 Jan 2015 00:41:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t090fge7038780 for ; Fri, 9 Jan 2015 00:41:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196631] [PATCH] fix upper nibble whacking in ip_ib_mc_map(..) in src/sys/ofed/include/ip.h Date: Fri, 09 Jan 2015 00:41:42 +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: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 00:41:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631 --- Comment #2 from Garrett Cooper,425-314-3911 --- And his name. There isn't an h... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 03:39:19 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C4D815C for ; Fri, 9 Jan 2015 03:39:19 +0000 (UTC) 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 33A027CD for ; Fri, 9 Jan 2015 03:39:19 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t093dJW2074373 for ; Fri, 9 Jan 2015 03:39:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195879] pkg update fails on fresh 10.1-RELEASE installation Date: Fri, 09 Jan 2015 03:39: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.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ngarpc@gmail.com X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 03:39:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195879 snaed changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ngarpc@gmail.com --- Comment #2 from snaed --- Had this issue with 9.3-RELEASE after install of xorg,xdg-user-dirs,compton,redshift,xfce4 All the packages were installed using pkg install. After first reboot and on first login to xfce4 started getting the eroors. I simply did a "make deinstall" on the pkg port and ran a make install again. Once completed i ran pkg2ng. It worked after that. Strange, I could not trace what the cause of the error was. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 06:39:17 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1CD234D8 for ; Fri, 9 Jan 2015 06:39:17 +0000 (UTC) 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 04D268E6 for ; Fri, 9 Jan 2015 06:39:17 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t096dGmU051593 for ; Fri, 9 Jan 2015 06:39:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196631] [PATCH] fix upper nibble whacking in ip_ib_mc_map(..) in src/sys/ofed/include/ip.h Date: Fri, 09 Jan 2015 06:39:17 +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: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 06:39:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: hselasky Date: Fri Jan 9 06:39:08 UTC 2015 New revision: 276879 URL: https://svnweb.freebsd.org/changeset/base/276879 Log: Don't mask the IP-address when doing multicast IP over infiniband. PR: 196631 MFC after: 3 days Sponsored by: Mellanox Technologies Changes: head/sys/ofed/include/net/ip.h -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 06:39:55 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9BA7F52A for ; Fri, 9 Jan 2015 06:39:55 +0000 (UTC) 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 8338A8F3 for ; Fri, 9 Jan 2015 06:39:55 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t096dtEE051975 for ; Fri, 9 Jan 2015 06:39:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196631] [PATCH] fix upper nibble whacking in ip_ib_mc_map(..) in src/sys/ofed/include/ip.h Date: Fri, 09 Jan 2015 06:39: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: hselasky@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 06:39:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631 Hans Petter Selasky changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 10:00:25 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D3B9F77 for ; Fri, 9 Jan 2015 10:00:25 +0000 (UTC) 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 5ABEBCEA for ; Fri, 9 Jan 2015 10:00:25 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t09A0PnT066618 for ; Fri, 9 Jan 2015 10:00:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195744] Unable to boot FreeBSD 10.1 memstick image; readin failed Date: Fri, 09 Jan 2015 10:00:25 +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 Only Me X-Bugzilla-Who: joecarmstrong+fbsd@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 10:00:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195744 joecarmstrong+fbsd@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |joecarmstrong+fbsd@gmail.co | |m --- Comment #2 from joecarmstrong+fbsd@gmail.com --- I have exactly the same issue, and have made no progress. Laptop: Chromebook Pixel with Developer mode and SeaBIOS enabled as per: http://vger.kernel.org/~davem/chromebook_pixel_linux.txt 32GB SSD Intel CORE i5 Ivy Bridge with Panther Point PCH Flash Drives tried: Strontium 16GB Apacer 4GB Formatting USB Drives with Disk Utility on OSX as Fat32, tried MBR and GUID. Also tried formatting with Windows. Using DD on OSX to write to the bootable USBs: dd if=FreeBSD-10.1-RELEASE-amd64-memstick.img of=/dev/disk2 bs=64k conv=sync Tried: FreeBSD-10.1-RELEASE-amd64-memstick.img FreeBSD-10.1-RELEASE-amd64-uefi-memstick.img Noticed the comment RE mem=XX, which is mentioned at step 7) of the above link. Have not figured out how to set this kernel parameter on FreeBSD. --------------- Output of the screen -------------------- /boot/kernel/kernel text=0xf8f898 readin failed elf64_loadimage: read failed can't load file '/boot/kernel/kernel': input/output error Error while including /boot/menu.rc, in the line: menu-display - Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel]... /boot/kernel/kernel text=0xf8f898 readin failed can't load 'kernel' Type '?' for a list of commands, 'help' for more detailed help OK -------------------------------------------------------- -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 10:29:21 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD0DE6D4 for ; Fri, 9 Jan 2015 10:29:21 +0000 (UTC) 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 9433BFD9 for ; Fri, 9 Jan 2015 10:29:21 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t09ATL01048399 for ; Fri, 9 Jan 2015 10:29:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195744] Unable to boot FreeBSD 10.1 memstick image; readin failed Date: Fri, 09 Jan 2015 10:29: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 Only Me X-Bugzilla-Who: applepuffs@fedoraproject.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 10:29:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195744 --- Comment #3 from applepuffs@fedoraproject.org --- This issue is fixed after flashing coreboot firmware on my chromebox. Seems that stock firmware doesn't have support to non-linux os. But please be noted that after flashing coreboot firmware you won't be able to boot back to chromeos as your chromebook will turn to a "ordinary x86 machine". Reference link : http://forum.kodi.tv/showthread.php?tid=194362 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 10:41:01 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7EE9784C for ; Fri, 9 Jan 2015 10:41:01 +0000 (UTC) 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 6653D153 for ; Fri, 9 Jan 2015 10:41:01 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t09Af1Oj090490 for ; Fri, 9 Jan 2015 10:41:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195744] Unable to boot FreeBSD 10.1 memstick image; readin failed Date: Fri, 09 Jan 2015 10:41: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: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: joecarmstrong+fbsd@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 10:41:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195744 --- Comment #4 from joecarmstrong+fbsd@gmail.com --- (In reply to ApplePuffs from comment #3) Thank you very much for the prompt response. Is it easy/possible to revert the firmware change? I'd consider doing it temporarily to the Pixel, but don't think I would if it's basically permanent. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 10:50:40 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5292BA75 for ; Fri, 9 Jan 2015 10:50:40 +0000 (UTC) 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 39D45266 for ; Fri, 9 Jan 2015 10:50:40 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t09AoeCl000939 for ; Fri, 9 Jan 2015 10:50:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195744] Unable to boot FreeBSD 10.1 memstick image; readin failed Date: Fri, 09 Jan 2015 10:50:40 +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 Only Me X-Bugzilla-Who: applepuffs@fedoraproject.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 10:50:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195744 --- Comment #5 from ApplePuffs --- You can restore to stock firmware using chromium os. They have the same set of recovery commands as in chrome os. Firmware images may available on the internet but it is better to do the backup before flashing. You may refer to the the link I posted before for the actual steps. Good luck and enjoy ! -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 10:52:40 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6406DADA for ; Fri, 9 Jan 2015 10:52:40 +0000 (UTC) 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 4B5D1332 for ; Fri, 9 Jan 2015 10:52:40 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t09AqeDS020987 for ; Fri, 9 Jan 2015 10:52:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195744] Unable to boot FreeBSD 10.1 memstick image; readin failed Date: Fri, 09 Jan 2015 10:52:40 +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 Only Me X-Bugzilla-Who: joecarmstrong+fbsd@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 10:52:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195744 --- Comment #6 from joecarmstrong+fbsd@gmail.com --- (In reply to ApplePuffs from comment #5) Thanks, you've saved me a lot of time :) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 10:59:51 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD034B5 for ; Fri, 9 Jan 2015 10:59:51 +0000 (UTC) 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 94464392 for ; Fri, 9 Jan 2015 10:59:51 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t09AxpMK036343 for ; Fri, 9 Jan 2015 10:59:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195744] Unable to boot FreeBSD 10.1 memstick image; readin failed Date: Fri, 09 Jan 2015 10:59: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.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: joecarmstrong+fbsd@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 10:59:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195744 --- Comment #7 from joecarmstrong+fbsd@gmail.com --- (In reply to joecarmstrong+fbsd from comment #6) As a note for others: The Chromebook Pixel is an Intel Core i5-3427U (dual-core 1.8 GHz) CPU, meaning that using the specific firmware in the guide above will likely brick the device. The guide is for ChromeBoxes. Thanks again ApplePuffs. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 11:11:11 2015 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2450D3FD for ; Fri, 9 Jan 2015 11:11:11 +0000 (UTC) Received: from mail63-15.bne1.au.emdbms.com (mail63-15.bne1.au.emdbms.com [203.145.63.15]) by mx1.freebsd.org (Postfix) with ESMTP id C01B5697 for ; Fri, 9 Jan 2015 11:11:09 +0000 (UTC) Received: from backend2.bne1.au.emdbms.com (192.168.2.157) by mail63-15.bne1.au.emdbms.com (PowerMTA(TM) v3.5r15) id hlurks0kaa4p for ; Fri, 9 Jan 2015 20:40:56 +1000 (envelope-from <5000f9c.a44773.10365680.1@mbounces.com>) Received: from 24.120.28.146 (ACD:44773.94147.396461) by www.vision6.com.au (5.8.49) with HTTP for ; Fri, 09 Jan 2015 20:40:56 +1000 X-Report-Abuse-To: abuse@vision6.com.au X-Send-Timestamp: 1420800056.10365680.44773 Message-Id: <52674418154afb03802706.1420800056@www.vision6.com.au> Date: Fri, 09 Jan 2015 20:40:56 +1000 From: "ImporterDeals." To: Subject: Perfect Wedding Honeymoon Gift MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 11:11:11 -0000 [1]Importer Dealer [luggages-top.jpg] HOT PRODUCT LIMITED STOCK Travel Bags Luggages Set + BONUS Traver Case [luggages.png] Only $199.00 Was $599.00 Buy Now Details Available colours: Black White This luggage has a full 360 degrees range of motion with its advanced wheels for great maneuverability. The tough Polycarbonate shell which is sleek and stylish yet hard wearing to withstand regular use. View 240 Watt Solar Folding Only $290.00 View More Safe Wash Only $299.00 Watch Video [2]Visit our website | QLD Australia This email was sent by Importer Deals, Brisbane QLD 4000 to freebsd-bugs@freebsd.org [3]Unsubscribe References Visible links 1. http://www.vision6.com.au/ch/44773/cnrck/1738543/db257b93r.html 2. http://www.vision6.com.au/ch/44773/cnrck/1738542/db25716zf9.html 3. http://www.vision6.com.au/forms/u/5000f9c/44773/10365680.html Hidden links: 5. http://www.vision6.com.au/ch/44773/cnrck/1871581/db257qj1h.html 6. http://www.vision6.com.au/ch/44773/cnrck/1871581/db257qj1h-1.html 7. http://www.vision6.com.au/ch/44773/cnrck/1871582/db2575tdf.html 8. http://www.vision6.com.au/ch/44773/cnrck/1871583/db25712n7q.html From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 19:02:00 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C5B64D8 for ; Fri, 9 Jan 2015 19:02:00 +0000 (UTC) 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 E8A11E99 for ; Fri, 9 Jan 2015 19:01:59 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t09J1x0S019692 for ; Fri, 9 Jan 2015 19:01:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195078] em tx_dma_fails and dropped packets Date: Fri, 09 Jan 2015 19:02: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: 9.2-RELEASE X-Bugzilla-Keywords: easy, regression X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: fusionfoto@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 19:02:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195078 --- Comment #3 from DJ --- After further testing, even platforms that have hw.em.rxd/txd set to 256 will start logging errors like tx_dma_fail at high throughputs. The only solution is to turn off txcsum, rxcsum and tso4 for these em0 cards. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 21:46:53 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF7B94F0 for ; Fri, 9 Jan 2015 21:46:53 +0000 (UTC) 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 96979238 for ; Fri, 9 Jan 2015 21:46:53 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t09Lkrji095924 for ; Fri, 9 Jan 2015 21:46:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196631] [PATCH] fix upper nibble whacking in ip_ib_mc_map(..) in src/sys/ofed/include/ip.h Date: Fri, 09 Jan 2015 21:46: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: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2015 21:46:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631 --- Comment #4 from Garrett Cooper,425-314-3911 --- (In reply to commit-hook from comment #3) Thanks HPS :)! -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 10 01:54:25 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA7ECC2A for ; Sat, 10 Jan 2015 01:54:25 +0000 (UTC) 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 C2AD9D85 for ; Sat, 10 Jan 2015 01:54:25 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0A1sPNU058259 for ; Sat, 10 Jan 2015 01:54:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196646] r276149 breaks gif with if_bridge and EtherIP Date: Sat, 10 Jan 2015 01:54:25 +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.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: john@jnielsen.net X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jan 2015 01:54:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196646 Bug ID: 196646 Summary: r276149 breaks gif with if_bridge and EtherIP Product: Base System Version: 10.1-STABLE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: john@jnielsen.net CC: ae@FreeBSD.org I discovered this under 10-STABLE but it probably affects 11-CURRENT (after r273087) as well. I've been using a gif(4) Ethernet (EtherIP/if_bridge) tunnel between two 10-STABLE FreeBSD machines for a while with no problem. After updating both sides on 2014-12-30 the tunnel stopped working. Today I reverted r276149 (the MFC of the if_gif overhaul) from my source tree and rebuilt the kernel. The tunnel works again. I'm sure the if_gif overhaul was needed but it would be great to get the EtherIP functionality restored. Both ends of the tunnel are running: 10.1-STABLE FreeBSD 10.1-STABLE #2 r276732M [minus r276149]: Fri Jan 9 11:16:55 MST 2015 I'm happy to test patches. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 10 01:56:40 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E50FD38 for ; Sat, 10 Jan 2015 01:56:40 +0000 (UTC) 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 66076DA7 for ; Sat, 10 Jan 2015 01:56:40 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0A1ueTg059023 for ; Sat, 10 Jan 2015 01:56:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196646] r276149 breaks gif with if_bridge and EtherIP Date: Sat, 10 Jan 2015 01:56:40 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ae@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jan 2015 01:56:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196646 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |ae@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 10 06:48:55 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0CD51F25 for ; Sat, 10 Jan 2015 06:48:55 +0000 (UTC) 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 E8A60B94 for ; Sat, 10 Jan 2015 06:48:54 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0A6msXU016650 for ; Sat, 10 Jan 2015 06:48:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194525] Restart www/apache24 Causes page fault and kernel dump Date: Sat, 10 Jan 2015 06:48: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: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: delphij@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: delphij@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jan 2015 06:48:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194525 Xin LI changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |delphij@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |delphij@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 10 06:54:29 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AB251F2 for ; Sat, 10 Jan 2015 06:54:29 +0000 (UTC) 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 721D1C62 for ; Sat, 10 Jan 2015 06:54:29 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0A6sT3v052991 for ; Sat, 10 Jan 2015 06:54:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196650] [PATCH] Display progress during getmemsize() so the kernel doesn't look like it hanged Date: Sat, 10 Jan 2015 06:54: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: rpokala@panasas.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jan 2015 06:54:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196650 Bug ID: 196650 Summary: [PATCH] Display progress during getmemsize() so the kernel doesn't look like it hanged 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: rpokala@panasas.com Created attachment 151564 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151564&action=edit Add a progress indicator to getmemsize() memory mapping - print a dot every GB Several people have noticed that there can be a long, silent pause early in boot on amd64 systems with large amounts of physical RAM. This is while all the memory ranges are getting mapped in. Even with the memory tests disabled, this can take a noticeably long time, to the point that its easy to think that the kernel has stopped booting. The attached patch provides a basic progress indicator (print a dot as every GB is mapped), so it is obvious that progress actually is being made. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 10 07:00:00 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C51F12E0 for ; Sat, 10 Jan 2015 07:00:00 +0000 (UTC) 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 9219BC90 for ; Sat, 10 Jan 2015 07:00:00 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0A700PN055061 for ; Sat, 10 Jan 2015 07:00:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196650] [PATCH] Display progress during getmemsize() so the kernel doesn't look like it hanged Date: Sat, 10 Jan 2015 07:00: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: rpokala@panasas.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jan 2015 07:00:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196650 Ravi Pokala changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |adrian@freebsd.org, | |rpokala@panasas.com --- Comment #1 from Ravi Pokala --- Example output; new lines are noted with '<=='. This isn't a very good example, because mapping 4GB doesn't take very long, but still... /boot/kernel/kernel text=0x1021578 data=0x12e020+0x3fac70 syms=[0x8+0x1491f0+0x8+0x164b2a] Booting... GDB: no debug ports present KDB: debugger backends: ddb KDB: current backend: ddb Mapping system memory... <== Mapped 3 GB + 1023 MB total <== Copyright (c) 1992-2014 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 11.0-CURRENT #0 r276355M: Sun Dec 28 23:59:52 PST 2014 root@fbsd-X:/usr/obj/usr/src/sys/GENERIC amd64 FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 WARNING: WITNESS option enabled, expect reduced performance. VT: running with driver "vga". CPU: Intel(R) Core(TM) i7-4850HQ CPU @ 2.30GHz (2267.07-MHz K8-class CPU) Origin="GenuineIntel" Id=0x40661 Family=0x6 Model=0x46 Stepping=1 Features=0x1783fbff Features2=0x201 AMD Features=0x28100800 AMD Features2=0x1 real memory = 4831838208 (4608 MB) avail memory = 4106944512 (3916 MB) -- You are receiving this mail because: You are the assignee for the bug.