From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 02:43:50 2014 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 409FBFF3 for ; Sun, 12 Oct 2014 02:43: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 27ABF88D for ; Sun, 12 Oct 2014 02:43: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 s9C2hoYQ064348 for ; Sun, 12 Oct 2014 02:43:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194311] New: [ixgbe] DROP_EN needs to be set early to avoid RX queue hanging Date: Sun, 12 Oct 2014 02:43: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 Only Me X-Bugzilla-Who: adrian@freebsd.org X-Bugzilla-Status: Needs Triage 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, 12 Oct 2014 02:43:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194311 Bug ID: 194311 Summary: [ixgbe] DROP_EN needs to be set early to avoid RX queue hanging Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: adrian@freebsd.org >From Luigi Rizzo: reviving this thread: i am just running experiments on 10.1 beta3 and even setting dev.ix.*.fc=0 and flipping the interface up and down does not seem to help: if i read only from a subset of the queues, the entire rx unit stalls eventually. I need to drain all queues to keep moving. Just tested this with 8 instances of netmap-ipfw running on an 8-core machine (8 queues enabled). netmap-ipfw netmap:ix0-0 netmap:ix1-0 netmap-ipfw netmap:ix0-1 netmap:ix1-1 ... and the source on another box is blasting on multiple queues with pkt-gen -f tx -i ix0 -d 10.0.10.0-10.0.10.255 I going to look at the driver's code now to see if/how this issue can be addressed. ... don't have a way to test this on HEAD. Do you know if there is any change that could be related ? On 10.1 beta 3 I noticed is that when I open a single queue on an ixgbe (and with incoming traffic), the rx unit stalls no matter what the previous state of dev.ix.*.fc (i.e. the DROP_EN bits) or QDE are. In this state, toggling DROP_EN has no effect, whereas something that seems effective is setting the QDE bit(s) in the PFQDE register for all queues, _after_ i open the device. >From the above my take is the following: - on NIC reset, the SRRCTL register starts at 0 including DROP_EN; same goes for PFQDE.QDE - setting SRRCTL.DROP_EN must happen before the receive unit is started; - conversely, toggling PFQDE.QDE has effect even when the receive unit has started - sysctl dev.ix.*.fc sets/clear DROP_EN but at the wrong time (the right time seems to be the window between reset and start) I am going to run more tests to figure out. cheers ... Index: sys/dev/ixgbe/ixgbe.c =================================================================== --- sys/dev/ixgbe/ixgbe.c (revision 272974) +++ sys/dev/ixgbe/ixgbe.c (working copy) @@ -4377,6 +4377,20 @@ srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK; srrctl |= bufsz; srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF; + + /* + * Set DROP_EN iff we have no flow control and >1 queue. + * Note that srrctl was cleared shortly before during reset, + * so we do not need to clear the bit, but do it just in case + * this code is moved elsewhere. + */ + if (adapter->num_queues > 1 && + adapter->hw.fc.requested_mode == ixgbe_fc_none) { + srrctl |= IXGBE_SRRCTL_DROP_EN; + } else { + srrctl &= ~IXGBE_SRRCTL_DROP_EN; + } + IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(i), srrctl); /* Setup the HW Rx Head and Tail Descriptor Pointers */ -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 02:44:20 2014 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 D3105C8 for ; Sun, 12 Oct 2014 02:44: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 BA084894 for ; Sun, 12 Oct 2014 02:44: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 s9C2iKjM064620 for ; Sun, 12 Oct 2014 02:44:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194311] [ixgbe] DROP_EN needs to be set early to avoid RX queue hanging Date: Sun, 12 Oct 2014 02:44: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adrian@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: bug_status 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, 12 Oct 2014 02:44:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194311 Adrian Chadd changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Open CC| |adrian@freebsd.org, | |gnn@FreeBSD.org, | |luigi@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 06:15:40 2014 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 5F57A4CC for ; Sun, 12 Oct 2014 06:15: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 45E17B43 for ; Sun, 12 Oct 2014 06:15: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 s9C6Fdgl057948 for ; Sun, 12 Oct 2014 06:15:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194256] [cam] xptpdrvtraverse spins and deadlocks CAM Date: Sun, 12 Oct 2014 06:15: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Issue Resolved 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, 12 Oct 2014 06:15:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194256 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: mav Date: Sun Oct 12 06:14:51 UTC 2014 New revision: 272977 URL: https://svnweb.freebsd.org/changeset/base/272977 Log: Use proper variable when looping through periphs with CAM_PERIPH_FREE. PR: 194256 Submitted by: Scott M. Ferris Sponsored by: EMC/Isilon Storage Division Changes: _U stable/10/ stable/10/sys/cam/cam_xpt.c -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 09:12:07 2014 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 D5F65398 for ; Sun, 12 Oct 2014 09:12: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 BDDB0CDD for ; Sun, 12 Oct 2014 09:12: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 s9C9C7kT075439 for ; Sun, 12 Oct 2014 09:12:07 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: Sun, 12 Oct 2014 09:12: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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: pkubaj@riseup.net X-Bugzilla-Status: Needs Triage 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, 12 Oct 2014 09:12:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194301 --- Comment #1 from pkubaj@riseup.net --- I obviously meant public key, not the private one :) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 09:13:05 2014 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 0C5CB3F6 for ; Sun, 12 Oct 2014 09:13: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 CDBC0CEE for ; Sun, 12 Oct 2014 09:13:04 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s9C9D4Rq028228 for ; Sun, 12 Oct 2014 09:13:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194314] New: [ixgbe] driver makes some dangerous assumptions with struct mbuf sizing with IXGBE_RX_COPY_LEN Date: Sun, 12 Oct 2014 09:13:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 12 Oct 2014 09:13:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194314 Bug ID: 194314 Summary: [ixgbe] driver makes some dangerous assumptions with struct mbuf sizing with IXGBE_RX_COPY_LEN Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Many People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: ngie@FreeBSD.org The code in sys/dev/ixgbe/ixgbe.h assumes that MLEN is always > 160, and doesn't exceed the size of the mbuf. MSIZE is set to 256, so if MHLEN = MSIZE - sizeof(struct m_hdr) - sizeof(struct pkthdr) < 160, ixgbe will scribble over the header information in mbufs. Similarly, if IXGBE_RX_COPY_LEN is greater than the size of the mbuf, it will scribble over other memory, potentially in the same mbuf chain, or elsewhere. This optimization needs better bounds checking/handling. 155 /* 156 * Used for optimizing small rx mbufs. Effort is made to keep the copy 157 * small and aligned for the CPU L1 cache. 158 * 159 * MHLEN is typically 168 bytes, giving us 8-byte alignment. Getting 160 * 32 byte alignment needed for the fast bcopy results in 8 bytes being 161 * wasted. Getting 64 byte alignment, which _should_ be ideal for 162 * modern Intel CPUs, results in 40 bytes wasted and a significant drop 163 * in observed efficiency of the optimization, 97.9% -> 81.8%. 164 */ 165 #define IXGBE_RX_COPY_LEN 160 166 #define IXGBE_RX_COPY_ALIGN (MHLEN - IXGBE_RX_COPY_LEN) 60 * MLEN is data length in a normal mbuf. 61 * MHLEN is data length in an mbuf with pktheader. 62 * MINCLSIZE is a smallest amount of data that should be put into cluster. 63 */ 64 #define MLEN ((int)(MSIZE - sizeof(struct m_hdr))) 65 #define MHLEN ((int)(MLEN - sizeof(struct pkthdr))) 66 #define MINCLSIZE (MHLEN + 1) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 09:15:01 2014 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 61E86461 for ; Sun, 12 Oct 2014 09:15: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 48FC0D02 for ; Sun, 12 Oct 2014 09:15: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 s9C9F1xT056640 for ; Sun, 12 Oct 2014 09:15:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194314] [ixgbe] driver makes some dangerous assumptions with struct mbuf sizing with IXGBE_RX_COPY_LEN Date: Sun, 12 Oct 2014 09:15:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 12 Oct 2014 09:15:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194314 Garrett Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jfv@FreeBSD.org, | |ricera10@gmail.com --- Comment #1 from Garrett Cooper --- Credit goes to Anton Rang @ Isilon for finding the bug. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 09:15:21 2014 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 BFE364B5 for ; Sun, 12 Oct 2014 09:15: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 A76F4D0D for ; Sun, 12 Oct 2014 09:15: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 s9C9FLUx056974 for ; Sun, 12 Oct 2014 09:15:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194314] [ixgbe] driver makes some dangerous assumptions with struct mbuf sizing with IXGBE_RX_COPY_LEN Date: Sun, 12 Oct 2014 09:15: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@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, 12 Oct 2014 09:15:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194314 Garrett Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 15:26:22 2014 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 A67267AF for ; Sun, 12 Oct 2014 15:26: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 8E55F333 for ; Sun, 12 Oct 2014 15:26: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 s9CFQMu4078183 for ; Sun, 12 Oct 2014 15:26:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194321] New: lagg/lacp does not work on startup. Date: Sun, 12 Oct 2014 15:26:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ki@hh.iij4u.or.jp X-Bugzilla-Status: Needs Triage 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, 12 Oct 2014 15:26:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194321 Bug ID: 194321 Summary: lagg/lacp does not work on startup. Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: ki@hh.iij4u.or.jp After commit 272547, lagg interface is not initialized in lacp mode properly. before commit: laggproto lacp lagghash l2,l3,l4 laggport: em2 flags=1c laggport: em1 flags=1c after commit: laggproto lacp lagghash l2,l3,l4 laggport: em1 flags=1c laggport: em2 flags=18 <-- this interface does not become active. In 272547, lladdr configuration for the primary port to a taskqueue. I suppose this change cause this bug, but I cannot understand lacp yet. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 17:08:25 2014 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 81B81830 for ; Sun, 12 Oct 2014 17:08: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 69658E4F for ; Sun, 12 Oct 2014 17:08: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 s9CH8PpF083832 for ; Sun, 12 Oct 2014 17:08:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194321] lagg/lacp does not work on startup. Date: Sun, 12 Oct 2014 17:08: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: hrs@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: hrs@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: Sun, 12 Oct 2014 17:08:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194321 Hiroki Sato changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hrs@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |hrs@FreeBSD.org --- Comment #1 from Hiroki Sato --- Take. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 18:01:30 2014 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 35B2794 for ; Sun, 12 Oct 2014 18:01:30 +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 1D0D1603 for ; Sun, 12 Oct 2014 18:01: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 s9CI1TIf092877 for ; Sun, 12 Oct 2014 18:01:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193646] UEFI Memory stick For 10.1-BETA1 hangs Date: Sun, 12 Oct 2014 18:01:30 +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-BETA1 X-Bugzilla-Keywords: uefi X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: reub2000@gmail.com X-Bugzilla-Status: Needs Triage 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, 12 Oct 2014 18:01:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193646 --- Comment #5 from Reuben --- Same behavior on RC2. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 21:00:28 2014 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 831F4B99 for ; Sun, 12 Oct 2014 21:00:28 +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 7321F904 for ; Sun, 12 Oct 2014 21:00:28 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s9CL0S2Q033491 for ; Sun, 12 Oct 2014 21:00:28 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201410122100.s9CL0S2Q033491@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: freebsd-bugs@FreeBSD.org Subject: Problem reports for freebsd-bugs@FreeBSD.org that need special attention X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Date: Sun, 12 Oct 2014 21:00:28 +0000 Content-Type: text/plain; charset="UTF-8" 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, 12 Oct 2014 21:00:28 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ----------------+-----------+------------------------------------------------- Needs MFC | 155028 | init(8): "init q" in single user causes segfaul Needs MFC | 156481 | [kernel] [patch] kernel incorrectly reports PPS Needs MFC | 165630 | [ndis][panic][patch] IRQL_NOT_GREATER_THAN Needs MFC | 167133 | stale files in /usr/share/examples Needs MFC | 169471 | [patch] pw(8) deletes group "username" on userd Needs MFC | 171779 | [patch] passwd(1): make option NO_FSCHG incompl Needs MFC | 181155 | [libc] [patch] *access*(2) does not handle inva Needs MFC | 184681 | A bug of bsdconfig(8) in 10.0 RC1 Needs MFC | 190186 | [patch] i915 driver: enable opregion handling Needs MFC | 192730 | [build] make checkdpadd failures with LD* varia Needs MFC | 192760 | [build] sbin/ifconfig: missing DPADD for LIBM Patch Ready | 192350 | [ipf] ipnat doesn't work with INET6 kernel opti 12 problems total for which you should take action. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 21:53:57 2014 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 2D05A795 for ; Sun, 12 Oct 2014 21:53: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 141F2DB2 for ; Sun, 12 Oct 2014 21:53: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 s9CLru7x011742 for ; Sun, 12 Oct 2014 21:53:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 169302] [libc] [patch] Applied MidnightBSD regex memory consumption limits Date: Sun, 12 Oct 2014 21:53: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: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Discussion 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: Sun, 12 Oct 2014 21:53:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=169302 --- Comment #4 from commit-hook@freebsd.org --- A commit references this bug: Author: ngie Date: Sun Oct 12 21:53:13 UTC 2014 New revision: 273010 URL: https://svnweb.freebsd.org/changeset/base/273010 Log: Implement 64MB memory limit for test to ensure that it fails reliably in 600 seconds; it would previously fail inconsistently when run in some virtual machine configurations This patch might need to be reverted or revisited later (see the attached PR for more details) PR: 169302 Submitted by: pho Sponsored by: EMC / Isilon Storage Division Changes: head/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 23:47:10 2014 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 4109D13D for ; Sun, 12 Oct 2014 23:47: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 275F7A66 for ; Sun, 12 Oct 2014 23:47: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 s9CNlACY034860 for ; Sun, 12 Oct 2014 23:47:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 189821] [libc] [patch] nice(3) on FreeBSD returns EACCES instead of EPERM when provided negative prio's; is not compatible with Linux/NetBSD/POSIX Date: Sun, 12 Oct 2014 23:47:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Discussion 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: Sun, 12 Oct 2014 23:47:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189821 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: ngie Date: Sun Oct 12 23:46:25 UTC 2014 New revision: 273015 URL: https://svnweb.freebsd.org/changeset/base/273015 Log: Expect nice_err to fail on FreeBSD with unprivileged users PR: 189821 Sponsored by: EMC / Isilon Storage Division Changes: head/contrib/netbsd-tests/lib/libc/gen/t_nice.c -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 04:20:36 2014 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 9EF45144 for ; Mon, 13 Oct 2014 04:20: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 85EC17EF for ; Mon, 13 Oct 2014 04:20: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 s9D4Kawc054188 for ; Mon, 13 Oct 2014 04:20:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 169302] [libc] [patch] Applied MidnightBSD regex memory consumption limits Date: Mon, 13 Oct 2014 04:20: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: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: In Discussion 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: Mon, 13 Oct 2014 04:20:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=169302 --- Comment #5 from Garrett Cooper --- (In reply to Pedro F. Giffuni from comment #3) > Added ngie@: > > Hi Garrett, > > I haven't been able to reproduce this locally. Perhaps you can reproduce > this test failure from the NetBSD tests? > > http://cvsweb.netbsd.org/bsdweb.cgi/src/tests/lib/libc/regex/t_exhaust.c > > Also verifying if the patch works would be good ;). There doesn't appear to be a functional regression. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 05:13:07 2014 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 593AD947 for ; Mon, 13 Oct 2014 05:13: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 3F7FFC95 for ; Mon, 13 Oct 2014 05:13: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 s9D5D7T5037840 for ; Mon, 13 Oct 2014 05:13:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 169302] [libc] [patch] Applied MidnightBSD regex memory consumption limits Date: Mon, 13 Oct 2014 05:13:07 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pfg@FreeBSD.org X-Bugzilla-Status: Issue Resolved 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, 13 Oct 2014 05:13:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=169302 Pedro F. Giffuni changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved Resolution|--- |Unable to Reproduce --- Comment #6 from Pedro F. Giffuni --- (In reply to Garrett Cooper from comment #5) > (In reply to Pedro F. Giffuni from comment #3) > > Added ngie@: > > > > Hi Garrett, > > > > I haven't been able to reproduce this locally. Perhaps you can reproduce > > this test failure from the NetBSD tests? > > > > http://cvsweb.netbsd.org/bsdweb.cgi/src/tests/lib/libc/regex/t_exhaust.c > > > > Also verifying if the patch works would be good ;). > > There doesn't appear to be a functional regression. And that's exactly why the patch was not committed. Thanks! -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 08:00:03 2014 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 1A0479F1 for ; Mon, 13 Oct 2014 08:00: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 EE6B8E03 for ; Mon, 13 Oct 2014 08: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 s9D802wk035077 for ; Mon, 13 Oct 2014 08:00:02 GMT (envelope-from bugzilla-noreply@freebsd.org) Message-Id: <201410130800.s9D802wk035077@kenobi.freebsd.org> From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [FreeBSD Bugzilla] Commit Needs MFC MIME-Version: 1.0 X-Bugzilla-Type: whine X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated Date: Mon, 13 Oct 2014 08:00:02 +0000 Content-Type: text/plain 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: Mon, 13 Oct 2014 08:00:03 -0000 Hi, You have a bug in the "Needs MFC" state which has not been touched in 7 or more days. This email serves as a reminder that you may want to MFC this bug or marked it as completed. In the event you have a longer MFC timeout you may update this bug with a comment and I won't remind you again for 7 days. This reminder is only sent on Mondays. Please file a bug about concerns you may have. This search was scheduled by eadler@FreeBSD.org. (11 bugs) Bug 155028: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=155028 Severity: Affects Only Me Priority: Normal Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: init(8): "init q" in single user causes segfault Bug 156481: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=156481 Severity: Affects Only Me Priority: Normal Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: [kernel] [patch] kernel incorrectly reports PPS jitter with accurate measurements Bug 165630: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=165630 Severity: Affects Only Me Priority: Normal Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: [ndis][panic][patch] IRQL_NOT_GREATER_THAN Bug 167133: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=167133 Severity: Affects Only Me Priority: Normal Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: stale files in /usr/share/examples Bug 169471: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=169471 Severity: Affects Only Me Priority: Normal Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: [patch] pw(8) deletes group "username" on userdel even if group "username" is not assoc. w/user "username" Bug 171779: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=171779 Severity: Affects Only Me Priority: Normal Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: [patch] passwd(1): make option NO_FSCHG incomplete Bug 181155: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=181155 Severity: Affects Only Me Priority: Normal Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: [libc] [patch] *access*(2) does not handle invalid amodes properly Bug 184681: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184681 Severity: Affects Only Me Priority: Normal Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: A bug of bsdconfig(8) in 10.0 RC1 Bug 190186: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190186 Severity: Affects Only Me Priority: Normal Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: [patch] i915 driver: enable opregion handling Bug 192730: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192730 Severity: Affects Some People Priority: --- Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: [build] make checkdpadd failures with LD* variables being added to LDADD Bug 192760: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192760 Severity: Affects Some People Priority: --- Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: [build] sbin/ifconfig: missing DPADD for LIBM From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 11:42:23 2014 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 81FF47DD for ; Mon, 13 Oct 2014 11:42:23 +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 42B2181F for ; Mon, 13 Oct 2014 11:42:22 +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 h7et9u0kaa42 for ; Mon, 13 Oct 2014 21:42:14 +1000 (envelope-from <0623d87.a44773.7443532.1@mbounces.com>) Received: from 101.170.127.238 (ACD:44773.94147.396461) by www.vision6.com.au (5.8.38b) with HTTP for ; Mon, 13 Oct 2014 21:42:14 +1000 X-Report-Abuse-To: abuse@vision6.com.au X-Send-Timestamp: 1413200534.7443532.44773 Message-Id: <1031437073543bba96e83ec.1413200534@www.vision6.com.au> Date: Mon, 13 Oct 2014 21:42:14 +1000 From: "Importer Deals" To: Subject: Generator Portable 240vac Power 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: Mon, 13 Oct 2014 11:42:23 -0000 [1]Shop ImporterDeals [2]Importer Dealer [gen.jpg] HOT PRODUCT LIMITED STOCK Portable Silent 4.4kVA Camping Generator [black.png] Only $599.00 Was $1,599.00 Buy Now Details Featuring Honda technology, you are assured of cleanly generated power with low fuel consumption superior to other types of generators. With an advanced throttle control technology, the RPM of this generator is automatically adjusted depending on the equipment connected to it, reducing fuel consumption by up to 20% compared to conventional generators. View "As we work to create light for others, we naturally light our own way" Safe Wash - Only $299.00 Watch Video [3]Visit our website | QLD Australia 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/95khm/1738542/5d56216zf9.html 2. http://www.vision6.com.au/ch/44773/95khm/1738543/5d562b93r.html 3. http://www.vision6.com.au/ch/44773/95khm/1738542/5d56216zf9-1.html 4. http://www.vision6.com.au/forms/u/0623d87/44773/7443532.html Hidden links: 6. http://www.vision6.com.au/ch/44773/95khm/1817559/5d562th4y.html 7. http://www.vision6.com.au/ch/44773/95khm/1817559/5d562th4y-1.html 8. http://www.vision6.com.au/ch/44773/95khm/1817560/5d562s8d.html From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 14:12:47 2014 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 0052EA3F for ; Mon, 13 Oct 2014 14:12: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 DB928A36 for ; Mon, 13 Oct 2014 14:12: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 s9DECkBd098508 for ; Mon, 13 Oct 2014 14:12:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193873] [PATCH] Unify dumpsys() under generic kern_dump.c. Date: Mon, 13 Oct 2014 14:12: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: conrad.meyer@isilon.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 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, 13 Oct 2014 14:12:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193873 Conrad Meyer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #147868|0 |1 is obsolete| | --- Comment #8 from Conrad Meyer --- Created attachment 148257 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=148257&action=edit v2 of the patch rebased on top of r273035 (past conflicting r272766) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 14:58:12 2014 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 65ACB61F for ; Mon, 13 Oct 2014 14:58: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 4C9B3E52 for ; Mon, 13 Oct 2014 14:58: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 s9DEwCZ8007262 for ; Mon, 13 Oct 2014 14:58:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 186251] authpf(8) always fails with "error removing stale rulesets" on 10.0-RELEASE Date: Mon, 13 Oct 2014 14:58: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: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: thomas.apel@gmx.net X-Bugzilla-Status: In Discussion 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: Mon, 13 Oct 2014 14:58:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186251 --- Comment #1 from thomas.apel@gmx.net --- I just checked: The problem still exists on the 10.1-RC2. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 16:12:41 2014 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 2F249F22 for ; Mon, 13 Oct 2014 16:12: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 167C7B39 for ; Mon, 13 Oct 2014 16:12: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 s9DGCe7F081038 for ; Mon, 13 Oct 2014 16:12:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194292] Patch for adding firewall_myservices_tcp and firewall_myservices_udp support to rc.conf Date: Mon, 13 Oct 2014 16:12:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: hrs@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: hrs@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: Mon, 13 Oct 2014 16:12:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194292 Hiroki Sato changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hrs@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |hrs@FreeBSD.org --- Comment #3 from Hiroki Sato --- Take. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 19:35:16 2014 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 30FFD8A9 for ; Mon, 13 Oct 2014 19:35: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 F25FC676 for ; Mon, 13 Oct 2014 19:35: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 s9DJZFTC021576 for ; Mon, 13 Oct 2014 19:35:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194209] ahciems should be optional (at build or at run time) Date: Mon, 13 Oct 2014 19:35:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: Needs Triage 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: Mon, 13 Oct 2014 19:35:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194209 Garrett Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|ahciems should be optional |ahciems should be optional | |(at build or at run time) --- Comment #2 from Garrett Cooper --- (In reply to Alexander Motin from comment #1) > Not sure I understand your proposition. Do you want ahciem to be separate > module, or do you want some tunable to disable it, or something else? I jumped to a conclusion without providing a proper problem statement. Basically we have a platform at work that has ahciems support, but our software isn't coded up to handle ahciems currently, so this causes our software to poke at the boot drives for ahciems status a little too much. Having the support on by default makes sense from a usability perspective. In general, being able to enable/disable ahciems on a global or a per-controller basis (like atc.wc.enable) is desirable, because the end-user might not want ahciems support to be enabled, or the device support provided/integrated in with some vendors might be buggy/broken. PS I was working on a patch to separate out the drivers, but then I realized that it would introduce unnecessary complexity because of how the driver currently hangs ahciems devices off of ahci controllers, and how the ahciems instances are created/destroyed at ahci controller attach/detach. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 21:50:22 2014 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 3D29E656 for ; Mon, 13 Oct 2014 21:50: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 244D73D1 for ; Mon, 13 Oct 2014 21:50: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 s9DLoMEb022166 for ; Mon, 13 Oct 2014 21:50:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 183598] [patch] netstat(1): wrong display of humanized packets counter Date: Mon, 13 Oct 2014 21:50: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: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: olivier@cochard.me X-Bugzilla-Status: In Discussion 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: Mon, 13 Oct 2014 21:50:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=183598 --- Comment #1 from olivier@cochard.me --- The patch fix counters "input errs" and " output errs" too. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 14 02:15:49 2014 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 C3DF2122 for ; Tue, 14 Oct 2014 02:15: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 ABFEA320 for ; Tue, 14 Oct 2014 02:15: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 s9E2FnMO027000 for ; Tue, 14 Oct 2014 02:15:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194344] New: [regression] Wake on LAN no longer works on em(4) Date: Tue, 14 Oct 2014 02:15:49 +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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: wblock@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 14 Oct 2014 02:15:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194344 Bug ID: 194344 Summary: [regression] Wake on LAN no longer works on em(4) Product: Base System Version: 10.0-STABLE Hardware: amd64 OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: wblock@FreeBSD.org Wake on LAN worked up until a couple of months ago. The target computer has this network card: em0@pci0:8:0:0: class=0x020000 card=0x13768086 chip=0x107c8086 rev=0x05 hdr=0x00 vendor = 'Intel Corporation' device = '82541PI Gigabit Ethernet Controller' class = network subclass = ethernet It is running: FreeBSD nas.wonkity.com 10.1-PRERELEASE FreeBSD 10.1-PRERELEASE #0 r273066: Mon Oct 13 19:23:15 MDT 2014 root@nas.wonkity.com:/usr/obj/usr/src/sys/GENERIC amd64 This might be related to bug 189531 (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189531). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 14 11:14:22 2014 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 3CC3CBEF for ; Tue, 14 Oct 2014 11:14: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 246AFC47 for ; Tue, 14 Oct 2014 11:14: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 s9EBEMYT098109 for ; Tue, 14 Oct 2014 11:14:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194347] New: Return an error when rc service is not enabled Date: Tue, 14 Oct 2014 11:14:22 +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-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: roy@marples.name X-Bugzilla-Status: Needs Triage 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, 14 Oct 2014 11:14:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194347 Bug ID: 194347 Summary: Return an error when rc service is not enabled Product: Base System Version: 10.0-RELEASE Hardware: Any OS: Any Status: Needs Triage Severity: Affects Many People Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: roy@marples.name Created attachment 148290 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=148290&action=edit Return an error if service is not enabled. Currently the rc service returns success when testing any function and it's not enabled. # in rc.conf ntpd_enable=NO # or unset # in a sample script if /etc/rc.d/ntpd status >/dev/null 2>&1; then # ntpd is running but we changed it's config, lets restart it for the new one /etc/rc.d/ntpd restart fi -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 14 11:51:42 2014 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 95D78DAC for ; Tue, 14 Oct 2014 11:51:42 +0000 (UTC) Received: from mail63-17.bne1.au.emdbms.com (mail63-17.bne1.au.emdbms.com [203.145.63.17]) by mx1.freebsd.org (Postfix) with ESMTP id 58949E4 for ; Tue, 14 Oct 2014 11:51:42 +0000 (UTC) Received: from backend2.bne1.au.emdbms.com (192.168.2.157) by mail63-17.bne1.au.emdbms.com (PowerMTA(TM) v3.5r15) id h7k74s0kaa4d for ; Tue, 14 Oct 2014 21:21:32 +1000 (envelope-from <759d6c5.a44773.7514074.1@mbounces.com>) Received: from 101.117.45.169 (ACD:44773.94147.396461) by www.vision6.com.au (5.8.39) with HTTP for ; Tue, 14 Oct 2014 21:21:32 +1000 X-Report-Abuse-To: abuse@vision6.com.au X-Send-Timestamp: 1413285692.7514074.44773 Message-Id: <1738285941543d073c25db9.1413285692@www.vision6.com.au> Date: Tue, 14 Oct 2014 21:21:32 +1000 From: "Importer Deals Australia" To: Subject: Car Boat Caravan Inverter Power 12vdc to 240vac 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, 14 Oct 2014 11:51:42 -0000 [1]Shop ImporterDeals [2]Importer Dealer [inverter.jpg] HOT PRODUCT LIMITED STOCK 3000W Power Inverter 12VDC - 240VAC [inverter.png] Only $249.00 was $699.00 Buy Now Details This power inverter converts low voltage DC power to high voltage AC household power. It is widely used indoor and outdoor. It can be used by many types of equipment just with the battery. Power inverter takes a big convenience for people on the power off situation. View Safe Wash - Only $299.00 Watch Video [3]Visit our website | QLD Australia 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/988t4/1738542/647a816zf9.html 2. http://www.vision6.com.au/ch/44773/988t4/1738543/647a8b93r.html 3. http://www.vision6.com.au/ch/44773/988t4/1738542/647a816zf9-1.html 4. http://www.vision6.com.au/forms/u/759d6c5/44773/7514074.html Hidden links: 6. http://www.vision6.com.au/ch/44773/988t4/1837244/647a81265t.html 7. http://www.vision6.com.au/ch/44773/988t4/1837244/647a81265t-1.html 8. http://www.vision6.com.au/ch/44773/988t4/1837245/647a8145yf.html From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 14 16:35:21 2014 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 BC7A5602 for ; Tue, 14 Oct 2014 16:35: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 A47B4392 for ; Tue, 14 Oct 2014 16:35: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 s9EGZLOk038023 for ; Tue, 14 Oct 2014 16:35:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194304] gbde does not announce destroyed keys Date: Tue, 14 Oct 2014 16:35: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: mwlucas@michaelwlucas.com X-Bugzilla-Status: Needs Triage 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, 14 Oct 2014 16:35:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194304 --- Comment #1 from mwlucas@michaelwlucas.com --- This seems to be a generic GBDE error message breakage. Here I change key 0's passphrase and key file. # gbde setkey da0p1 -n 0 -l da0p1.lock -k rat.jpg -L da0p1.lock-new Enter passphrase: Opened with key 0 Enter new passphrase: Reenter new passphrase: I now have a new lock file with a new passphrase. Let's try the old key file and see what happens. It appears to work, except it doesn't. # gbde attach da0p1 -l da0p1.lock -k rat.jpg Enter passphrase: # ls /dev/da0p1* /dev/da0p1 # gbde detach da0p1 gbde: Detach of da0p1 failed: Geom not found: "da0p1.bde" The new lock file and passphrase do work. I would have expected the attach command to call me an idiot rather than fail silently. An ignorant, uneducated, non-programmer look at the code encourages my belief. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 14 22:54:40 2014 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 26C85488 for ; Tue, 14 Oct 2014 22:54: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 0DC8933B for ; Tue, 14 Oct 2014 22:54: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 s9EMsdTl009312 for ; Tue, 14 Oct 2014 22:54:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] New: bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Tue, 14 Oct 2014 22:54:40 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: cperciva@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 14 Oct 2014 22:54:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 Bug ID: 194359 Summary: bsdinstall should set active flag in GPT PMBR if not booting using EFI Product: Base System Version: 10.1-BETA3 Hardware: amd64 OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: cperciva@FreeBSD.org As mentioned in bug #133493, some systems will not boot if there is no "active" slice in the "MBR". Others, such as my laptop, will boot but only after printing "Invalid partition table!" and waiting for someone to hit Enter. This was fixed in 2009 by r198097; but it turned out that this broke EFI booting (since EFI requires that the GPT protective MBR has no active bits set). EFI was unbroken 16 months ago by r251588... but this re-broke non-EFI booting on the affected machines. It seems to me that the right compromise here would be for bsdinstall to set the "active" flag if and only if a system is being set up for GPT with "legacy" booting. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 14 23:03:12 2014 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 D098CFD9 for ; Tue, 14 Oct 2014 23:03: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 B7B79668 for ; Tue, 14 Oct 2014 23:03: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 s9EN3CpX056081 for ; Tue, 14 Oct 2014 23:03:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191748] Installing FreeBSD-10-STABLE pmbr makes disk unbootable Date: Tue, 14 Oct 2014 23:03:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: cperciva@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: Normal 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, 14 Oct 2014 23:03:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191748 Colin Percival changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cperciva@FreeBSD.org --- Comment #2 from Colin Percival --- Can you try reinstalling the 10.0 boot code and then running 'gpart set -a active ada0'? I'm wondering if this is the same the same issue as bug #194359 which I just reported... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 14 23:15:02 2014 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 2F9B4685 for ; Tue, 14 Oct 2014 23:15: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 16CC57CB for ; Tue, 14 Oct 2014 23:15: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 s9ENF1S3095545 for ; Tue, 14 Oct 2014 23:15:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Tue, 14 Oct 2014 23:15:02 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: allanjude@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 14 Oct 2014 23:15:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #1 from Allan Jude --- Is there an easy way to do that? Generally we're just installing what is in the '/boot/pmbr' file. I don't think the gpart utility has the ability to set this flag. We either need gpart to be able to do that, or a 2nd file like /boot/pmbr.active -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 14 23:17:57 2014 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 8CB70827 for ; Tue, 14 Oct 2014 23:17: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 738617EA for ; Tue, 14 Oct 2014 23:17: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 s9ENHvpA097319 for ; Tue, 14 Oct 2014 23:17:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Tue, 14 Oct 2014 23:17:57 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: cperciva@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 14 Oct 2014 23:17:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #2 from Colin Percival --- Very easy, once you know how: gpart set -a active -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 14 23:27:11 2014 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 6A5F0DC9 for ; Tue, 14 Oct 2014 23:27: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 4B74C8C7 for ; Tue, 14 Oct 2014 23:27: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 s9ENRBn9007052 for ; Tue, 14 Oct 2014 23:27:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194361] New: [BUG] 11-CURRENT does not build on 10.1-STABLE Date: Tue, 14 Oct 2014 23:27:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: never@nevermind.kiev.ua X-Bugzilla-Status: Needs Triage 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, 14 Oct 2014 23:27:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194361 Bug ID: 194361 Summary: [BUG] 11-CURRENT does not build on 10.1-STABLE Product: Base System Version: 11.0-CURRENT Hardware: amd64 OS: Any Status: Needs Triage Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: never@nevermind.kiev.ua One cannot build 11-CURRENT on 10-STABLE Log follows: ===> rescue/rescue/chown/tests (depend) (cd /ssd/never/head/usr.sbin/chown/tests && make -f /ssd/never/head/usr.sbin/chown/tests/Makefile SUBDIR= _RECURSING_PROGS= depend) cc -O2 -pipe -march=nocona -DRESCUE -std=gnu99 -fstack-protector -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 -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /ssd/never/head/usr.sbin/chown/chown.c MAKEOBJDIRPREFIX=/ssd/never/obj/ssd/never/head/rescue/rescue make -f rescue.mk exe cc -O2 -pipe -march=nocona -c rescue.c rescue.c:59:2: warning: implicit declaration of function 'crunched_usage' is invalid in C99 [-Wimplicit-function-declaration] crunched_usage(); ^ 1 warning generated. echo "int _crunched_cat_stub(int argc, char **argv, char **envp){return main(argc,argv,envp);}" >cat_stub.c cc -O2 -pipe -march=nocona -c cat_stub.c cat_stub.c:1:67: warning: implicit declaration of function 'main' is invalid in C99 [-Wimplicit-function-declaration] int _crunched_cat_stub(int argc, char **argv, char **envp){return main(argc,argv,envp);} ^ 1 warning generated. make[5]: don't know how to make /ssd/never/obj/ssd/never/head/rescue/rescue//ssd/never/head/bin/cat/cat.o. Stop make[5]: stopped in /ssd/never/obj/ssd/never/head/rescue/rescue *** Error code 2 Stop. make[4]: stopped in /ssd/never/head/rescue/rescue *** Error code 1 Stop. make[3]: stopped in /ssd/never/head/rescue *** Error code 1 Stop. make[2]: stopped in /ssd/never/head *** Error code 1 Stop. make[1]: stopped in /ssd/never/head *** Error code 1 Stop. make: stopped in /ssd/never/head -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 00:37:14 2014 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 873F7882 for ; Wed, 15 Oct 2014 00:37: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 6E370E84 for ; Wed, 15 Oct 2014 00:37: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 s9F0bEYl033910 for ; Wed, 15 Oct 2014 00:37:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Wed, 15 Oct 2014 00:37:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: marcel@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 00:37:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #3 from Marcel Moolenaar --- Indeed. The set attribute command was deliberately changed to apply not just to partitions, but also to the scheme itself. This made it possible to to set the active flag in the PMBR for the GPT scheme, even though GPT partitions themselves do not have an active flag. If the installer knows what the firmware is ((I don't know if we pass anything from the loader to the kernel), then it can indeed set the active flag in PMBR when the firmware is a BIOS and not do that when the firmware is (U)EFI. And only do this on x86... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 00:53:56 2014 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 3F940998 for ; Wed, 15 Oct 2014 00:53:56 +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 26536FF1 for ; Wed, 15 Oct 2014 00:53:56 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s9F0ruN0079142 for ; Wed, 15 Oct 2014 00:53:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Wed, 15 Oct 2014 00:53:56 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: cperciva@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 00:53:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #4 from Colin Percival --- I have only a very vague notion of how booting works these days, but my understanding is that we're already setting up things differently based on whether we expect to boot via BIOS or UEFI; and that (aside from when using a ZFS root, which is incompatible with UEFI) the installer detects how it was booted and sets up the system to boot the same way. If the above is correct, I think all we need is a "if we're setting up the disk to be booted via BIOS, gpart set -a active it". Allan, does this make sense? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 01:03:58 2014 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 53F0AA82 for ; Wed, 15 Oct 2014 01:03: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 39D3713C for ; Wed, 15 Oct 2014 01:03: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 s9F13vBA025790 for ; Wed, 15 Oct 2014 01:03:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Wed, 15 Oct 2014 01:03:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: allanjude@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 01:03:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #5 from Allan Jude --- I don't have one of the systems that does not work, so it is hard for me to test. Who has a system that refuses to boot if the fake partition in the fake MBR used in a GPT partition table is not set to active? Does running the gpart set command from the install cd then make it work? What systems refuse to boot if it IS set active? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 01:12:10 2014 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 8AAE8B80 for ; Wed, 15 Oct 2014 01:12: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 718F21FB for ; Wed, 15 Oct 2014 01:12: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 s9F1CAAL049294 for ; Wed, 15 Oct 2014 01:12:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Wed, 15 Oct 2014 01:12:10 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: cperciva@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 01:12:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #6 from Colin Percival --- Allan: My laptop doesn't refuse to boot, but it does behave badly (bogus error message) when booting via BIOS + GPT if the fake MBR is not set to active. Running the above-mentioned command fixes this. My understanding from Marcel's commit r251588 is that having the fake MBR set as active breaks UEFI booting, but I haven't tested this myself. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 01:15:55 2014 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 D9629E11 for ; Wed, 15 Oct 2014 01:15: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 C0A2C21D for ; Wed, 15 Oct 2014 01:15: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 s9F1Ft5u069678 for ; Wed, 15 Oct 2014 01:15:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Wed, 15 Oct 2014 01:15:56 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: allanjude@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 01:15:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #7 from Allan Jude --- Ok, I can test the UEFI stuff on this side. I can easily add the gpart set to the zfsboot portion of bsdinstall Although I might make more sense to add it elsewhere to make it apply to Nathan's parts of the installer as well. We can detect if the installer was booted BIOS or UEFI from a sysctl: machdep.bootmethod -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 01:23:06 2014 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 F3AB21EE for ; Wed, 15 Oct 2014 01:23: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 DAAAC328 for ; Wed, 15 Oct 2014 01:23: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 s9F1N575078930 for ; Wed, 15 Oct 2014 01:23:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194311] [ixgbe] DROP_EN needs to be set early to avoid RX queue hanging Date: Wed, 15 Oct 2014 01:23:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adrian@freebsd.org X-Bugzilla-Status: Needs MFC X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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, 15 Oct 2014 01:23:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194311 Adrian Chadd changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Open |Needs MFC -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 01:23:25 2014 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 1C771243 for ; Wed, 15 Oct 2014 01:23: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 033BB334 for ; Wed, 15 Oct 2014 01:23: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 s9F1NOZA079109 for ; Wed, 15 Oct 2014 01:23:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194311] [ixgbe] DROP_EN needs to be set early to avoid RX queue hanging Date: Wed, 15 Oct 2014 01:23: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Needs MFC 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, 15 Oct 2014 01:23:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194311 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: adrian Date: Wed Oct 15 01:22:56 UTC 2014 New revision: 273112 URL: https://svnweb.freebsd.org/changeset/base/273112 Log: Set the DROP_EN bit before the RX queue is brought up and active. He noticed issues setting this bit in SRRCTL after the queue was up, so doing it from the sysctl handler isn't enough and may not actually work correctly. This commit doesn't remove the sysctl path or try to change its behaviour. I'll talk with others about how to finish fixing that before I tackle that. PR: kern/194311 Submitted by: luigi MFC after: 3 days Sponsored by: Norse Corp, Inc Changes: head/sys/dev/ixgbe/ixgbe.c -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 03:24:18 2014 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 F245D222 for ; Wed, 15 Oct 2014 03:24: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 D9EA0120 for ; Wed, 15 Oct 2014 03:24: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 s9F3OIG9099006 for ; Wed, 15 Oct 2014 03:24:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Wed, 15 Oct 2014 03:24:19 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: rodrigc@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 03:24:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 Craig Rodrigues changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rodrigc@FreeBSD.org --- Comment #8 from Craig Rodrigues --- @Allan: I installed FreeBSD with GPT/ZFS on an HP Elitebook 8460p laptop, with BIOS, not using EFI. The system would not boot until I set the active partition. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 08:37:21 2014 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 6C38452B for ; Wed, 15 Oct 2014 08:37: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 53ADC220 for ; Wed, 15 Oct 2014 08:37: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 s9F8bLUO059740 for ; Wed, 15 Oct 2014 08:37:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194376] New: [FreeBSD 10.1 RC2 on Hyper-v] In FreeBSD VM, cannot recognize the second IDE disk Date: Wed, 15 Oct 2014 08:37:21 +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-BETA2 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: kyliel@microsoft.com X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 08:37:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194376 Bug ID: 194376 Summary: [FreeBSD 10.1 RC2 on Hyper-v] In FreeBSD VM, cannot recognize the second IDE disk Product: Base System Version: 10.1-BETA2 Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: kyliel@microsoft.com In FreeBSD VM, cannot recognize the second IDE disk. this only happens on FreeBSD 10.1 RC2. In hyper-v server 2012 R2: 1. Install FreeBSD 10.1 RC2 VM from ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/amd64/ISO-IMAGES/10.1/FreeBSD-10.1-RC2-amd64-dvd1.iso 2. Add second IDE disk in IDE controller 0 3. ls /dev/da* dmesg | grep da -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 10:45:41 2014 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 EA92D70A for ; Wed, 15 Oct 2014 10:45: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 D1ECB230 for ; Wed, 15 Oct 2014 10:45: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 s9FAjf2h057594 for ; Wed, 15 Oct 2014 10:45:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191348] [mps] LSI2308 with WD3000FYYZ drives disappears after hotswapping Date: Wed, 15 Oct 2014 10:45: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.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: alchemyx@uznam.net.pl X-Bugzilla-Status: Patch Ready 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: 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, 15 Oct 2014 10:45:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D191348 --- Comment #11 from Micha=C5=82 Margula --- Hello, I really appreciate and thank you for your effort. Today I applied patch to 10.0-RELEASE-p9. It still works flawlessly=C2=A0- I can remove disk and rei= nsert them freely, but few things: - to apply that patch I had to change version inside patch (mpsvar.h file) because your contains version 19.00.00.00-fbsd and mine in that FreeBSD rel= ease is 16.00.00.00-fbsd - sysctl does not work properly - I set hw.mps.spinup_wait_time=3D5 in /boot/loader.conf and it shows in sysctl properly: root@boromir:~ # sysctl dev.mps.0.spinup_wait_time dev.mps.0.spinup_wait_time: 5 But in dmesg I see (after a reboot of course): Oct 15 12:01:47 boromir kernel: Sleeping 3 seconds Oct 15 12:01:50 boromir kernel: finished Sleeping 3 seconds Also can't change that setting while running (but it may be proper behaviou= r, I don't know FreeBSD that much): root@boromir:~ # sysctl dev.mps.0.spinup_wait_time=3D5 sysctl: oid 'dev.mps.0.spinup_wait_time' is read only If you need anything else, please let me know. Once again - big thanks. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 16:42:44 2014 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 94B10CE4 for ; Wed, 15 Oct 2014 16:42: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 7B88AF34 for ; Wed, 15 Oct 2014 16:42: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 s9FGgib2039051 for ; Wed, 15 Oct 2014 16:42:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 117711] [rpc] rpcbind binds to all interfaces on random ports even when using the -h flag Date: Wed, 15 Oct 2014 16:42:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 6.3-PRERELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: harry.weppner@gmx.net X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal 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, 15 Oct 2014 16:42:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=117711 Harry Weppner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |harry.weppner@gmx.net --- Comment #11 from Harry Weppner --- I just also encountered this on 10.0-RELEASE issue while setting up a jail. 7 years is a pretty long time... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 17:21:24 2014 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 0F53EA00 for ; Wed, 15 Oct 2014 17:21: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 EAEFE3FE for ; Wed, 15 Oct 2014 17:21: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 s9FHLNSh072146 for ; Wed, 15 Oct 2014 17:21:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 160760] (Kernel) Log messages garbled/interleaved Date: Wed, 15 Oct 2014 17:21: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: 8.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: tilghman@meg.abyt.es X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal 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, 15 Oct 2014 17:21:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=160760 tilghman@meg.abyt.es changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tilghman@meg.abyt.es --- Comment #1 from tilghman@meg.abyt.es --- This issue has now just occurred to us, as well, on FreeBSD 9.1: -----snip----- <<<<66>n66>n>e>newwnnenffessw wsnfe serrs vsneevefr sr vfrsrervee r fereeefr refnnasearns:/amse:/mnennt/:/mpatn/t/poopoool/l/zosez/ooel:///amaznoe/rtta/poo/rlima/t/rgiezomate//iarmgsaet/igessma: g:eno:s : nnot trote respo rendnsinsgpp oo nd <6ing <>6>tndin respgo n ding newnfs server freenas:/mnt/pool/zoe/art/imagesne:n wenfwsn fsnoervts e rseerverspro fnrdeinenag fs <<6>6>:r/emennnatse:w/m/npnoewnftons f/s lserse/vrpooezrl/ vozoe/fartre/ee/enarimaa rtfreegse:s:n//a s:minmnt/apges: /mnonoott t /prresol/zpoeospnoe/ondiol/dingng a -----snip----- The message fragments seem to be specifically about a constantly mounted NFS server (running FreeNAS). The server on which this occurred also happens to be running under VMware (as is the FreeNAS server). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 17:38:48 2014 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 1E079375 for ; Wed, 15 Oct 2014 17:38:48 +0000 (UTC) Received: from eastrmfepo202.cox.net (eastrmfepo202.cox.net [68.230.241.217]) by mx1.freebsd.org (Postfix) with ESMTP id AED077B2 for ; Wed, 15 Oct 2014 17:38:47 +0000 (UTC) Received: from eastrmimpo209 ([68.230.241.224]) by eastrmfepo202.cox.net (InterMail vM.8.01.05.15 201-2260-151-145-20131218) with ESMTP id <20141015173846.PBJQ19010.eastrmfepo202.cox.net@eastrmimpo209> for ; Wed, 15 Oct 2014 13:38:46 -0400 Received: from [192.168.3.15] ([72.219.202.186]) by eastrmimpo209 with cox id 3Vel1p00E41obj401VelmW; Wed, 15 Oct 2014 13:38:45 -0400 X-CT-Class: Clean X-CT-Score: 0.00 X-CT-RefID: str=0001.0A020206.543EB125.0301,ss=1,re=0.000,fgs=0 X-CT-Spam: 0 X-Authority-Analysis: v=2.0 cv=H/cFNZki c=1 sm=1 a=k40gPPfQ5QH6qv5U/EJc3Q==:17 a=f5xKl4ys9bwA:10 a=G8Uczd0VNMoA:10 a=8nJEP1OIZ-IA:10 a=kviXuzpPAAAA:8 a=6I5d2MoRAAAA:8 a=Dj-Pp8WnAAAA:8 a=s9oXJcMGAAAA:8 a=ZRk1Yctssq7E-TSQTB8A:9 a=wPNLvfGTeEIA:10 a=qVvN-Adz7pAA:10 a=SV7veod9ZcQA:10 a=aeAeFniDEMsA:10 a=k40gPPfQ5QH6qv5U/EJc3Q==:117 X-CM-Score: 0.00 Authentication-Results: cox.net; none Message-ID: <543EB117.1060705@cox.net> Date: Wed, 15 Oct 2014 13:38:31 -0400 From: "John D. Hendrickson" User-Agent: Thunderbird 2.0.0.24 (X11/20100228) MIME-Version: 1.0 To: bugzilla-noreply@freebsd.org Subject: Re: [Bug 194236] New: Hourly cron jobs running to early References: <0YXQ1p01Q2X408g01YXRfJ> In-Reply-To: <0YXQ1p01Q2X408g01YXRfJ> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-bugs@FreeBSD.org 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, 15 Oct 2014 17:38:48 -0000 now keep in mind this note isn't about you in particular. there's a massive problem with people hacking away with free permissions that end up causing others a life time of "upgrade failed" problems which is what i'm really getting at. i'm not so sure your right - maybe cron is runnign same code as always for i386 (unless someone hacked it): and those people would be harmed by your hacking in changes what your saying is in order to fix your computer that i386 you wish to damage anyone running a cron i386 who is NOT using amd64 (are you on a VAX?): which is wrong. my guess is your pc is f'ed up (is it from china?), or that cron always ran at the end of the minute (under certain conditions) and the new code is f'ed up (ie, they "smartly" added better time resolution not realizing how cron ever ran to begin with) or that bsd, when i386 is in use falsely reports time: which again it's not a reason to hack cron it's a reason to firmly question who hacking IN the problem in bsd in the past i've tried to make a tight system that relied on time before and canceled it: it's just too likely to go wrong (clock settings and updates, even the code handling, are too UNRELIABLE), too likely even when, say, two pc's are continually checked to stay even: even then it's too unreliable for file/data safety. another thing i found is time resolution. if you end up relying on a resolution that's shorter than what is really effective: you will end up either missing not once BUT ALWAYS or doubling your trigger (what i mean is you shouldn't intently write code that will become a race condition, only your pc has Hz configuration sharable with itself: if that, and your not a realtime HP unix: if that). were NOT all running one amd. some regularly deal with various sites: some of which are UTC or not, some of which have correct time, others that are misconfigured. ESPECIALLY if your talking about code distributed on many OSes and platforms: hacking in hardware time improvments that only work on some little pc's into cron to fix it on one computer (break it on another). bad, bad, bad i don't mean to be stiff on you only why doesn't my cron, which i compiled myself, on three different chips (and i used to compile 386 and distribute bins instead of recompiling everwhere, far easier) why doesn't cron start on wrong times? WAY WAY before filing a bug against cron and suggesting it's wrong and you'd like to edit it, you should be in user channel asking other questions, posting code you think may be responsible, and even posting A PATCH THAT FIXES IT it's pretty pretentious to assume the old generation did not have elaborate plans, engineering degrees, and act in good faith and know exactly what they were doing. i see a lot of disrespect and irresponsibility going on. and i mean distro admins not bug posters. (they've broken countless softwares and hardwares, incurred countless complaints: on stuff that was working fine, due to allowing their friends to hack anything for any reason. i'm pissed personally.) bugzilla-noreply@freebsd.org wrote: > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194236 > > Bug ID: 194236 > Summary: Hourly cron jobs running to early > Product: Base System > Version: 10.0-RELEASE > Hardware: i386 > OS: Any > Status: Needs Triage > Severity: Affects Some People > Priority: --- > Component: bin > Assignee: freebsd-bugs@FreeBSD.org > Reporter: uffe@uffe.org > > Seen on FreeBSD 10.0-RELEASE-p9 i386 > > After upgrading from 9.2-RELEASE-p12 (i386) to 10.0-RELEASE-p9 (i386) > > cron runs hourly jobs up to a minutte too early. > > This causes tasks like newsyslog to skip logrotation at the intended time - > rotation will occour one hour delayed. > > It has been discussed here: > > http://lists.freebsd.org/pipermail/freebsd-stable/2014-June/079106.html > > and is reported solved - but I'm seeing the problem on latest official patch > level (10.0-RELEASE-p9) > > Note: This seems to be an i386 problem only - as the equivalent amd64 > installations runs hourly cron at the exact time. > > # uname -a > FreeBSD asuseee 10.0-RELEASE-p9 FreeBSD 10.0-RELEASE-p9 #0: Mon Sep 15 14:32:29 > UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC > i386 > > > BEFORE upgrade (running 9.2-RELEASE-p12 (i386)) > > # cat /var/log/cron | grep newsyslog > > Oct 5 13:00:00 smtpd /usr/sbin/cron[11742]: (root) CMD (newsyslog) > Oct 5 14:00:00 smtpd /usr/sbin/cron[12271]: (root) CMD (newsyslog) > Oct 5 15:00:00 smtpd /usr/sbin/cron[12995]: (root) CMD (newsyslog) > Oct 5 16:00:00 smtpd /usr/sbin/cron[13595]: (root) CMD (newsyslog) > Oct 5 17:00:00 smtpd /usr/sbin/cron[14654]: (root) CMD (newsyslog) > Oct 5 18:00:00 smtpd /usr/sbin/cron[15614]: (root) CMD (newsyslog) > Oct 5 19:00:00 smtpd /usr/sbin/cron[16319]: (root) CMD (newsyslog) > Oct 5 20:00:00 smtpd /usr/sbin/cron[17884]: (root) CMD (newsyslog) > Oct 5 21:00:00 smtpd /usr/sbin/cron[38642]: (root) CMD (newsyslog) > Oct 6 00:00:00 smtpd /usr/sbin/cron[20850]: (root) CMD (newsyslog) > > AFTER upgrade (running 10.0-RELEASE-p9 (i386)) > > # cat /var/log/cron | grep newsyslog > > Oct 6 00:59:42 smtpd /usr/sbin/cron[7632]: (root) CMD (newsyslog) > Oct 6 01:59:38 smtpd /usr/sbin/cron[6222]: (root) CMD (newsyslog) > Oct 6 02:59:34 smtpd /usr/sbin/cron[7616]: (root) CMD (newsyslog) > Oct 6 03:59:34 smtpd /usr/sbin/cron[9793]: (root) CMD (newsyslog) > Oct 6 04:59:38 smtpd /usr/sbin/cron[10369]: (root) CMD (newsyslog) > Oct 6 05:58:55 smtpd /usr/sbin/cron[10897]: (root) CMD (newsyslog) > Oct 6 06:59:34 smtpd /usr/sbin/cron[11420]: (root) CMD (newsyslog) > Oct 6 07:58:55 smtpd /usr/sbin/cron[11848]: (root) CMD (newsyslog) > Oct 6 08:59:51 smtpd /usr/sbin/cron[12478]: (root) CMD (newsyslog) > Oct 6 09:59:47 smtpd /usr/sbin/cron[12995]: (root) CMD (newsyslog) > Oct 6 10:58:42 smtpd /usr/sbin/cron[13733]: (root) CMD (newsyslog) > Oct 6 11:58:55 smtpd /usr/sbin/cron[14416]: (root) CMD (newsyslog) > Oct 6 12:59:34 smtpd /usr/sbin/cron[15188]: (root) CMD (newsyslog) > Oct 6 13:59:29 smtpd /usr/sbin/cron[15935]: (root) CMD (newsyslog) > Oct 6 14:59:38 smtpd /usr/sbin/cron[16440]: (root) CMD (newsyslog) > Oct 6 15:59:42 smtpd /usr/sbin/cron[17655]: (root) CMD (newsyslog) > Oct 6 16:59:47 smtpd /usr/sbin/cron[18513]: (root) CMD (newsyslog) > Oct 6 17:59:34 smtpd /usr/sbin/cron[19025]: (root) CMD (newsyslog) > Oct 6 18:59:47 smtpd /usr/sbin/cron[19916]: (root) CMD (newsyslog) > Oct 6 20:00:00 smtpd /usr/sbin/cron[20624]: (root) CMD (newsyslog) > Oct 6 20:59:29 smtpd /usr/sbin/cron[21680]: (root) CMD (newsyslog) > Oct 6 21:59:34 smtpd /usr/sbin/cron[22962]: (root) CMD (newsyslog) > Oct 6 22:59:38 smtpd /usr/sbin/cron[23582]: (root) CMD (newsyslog) > Oct 6 23:59:47 smtpd /usr/sbin/cron[24275]: (root) CMD (newsyslog) > Oct 7 00:59:47 smtpd /usr/sbin/cron[24988]: (root) CMD (newsyslog) > Oct 7 01:59:34 smtpd /usr/sbin/cron[25758]: (root) CMD (newsyslog) > Oct 7 02:59:21 smtpd /usr/sbin/cron[26291]: (root) CMD (newsyslog) > Oct 7 03:59:47 smtpd /usr/sbin/cron[28272]: (root) CMD (newsyslog) > Oct 7 05:00:00 smtpd /usr/sbin/cron[28715]: (root) CMD (newsyslog) > Oct 7 05:59:12 smtpd /usr/sbin/cron[29252]: (root) CMD (newsyslog) > Oct 7 06:58:46 smtpd /usr/sbin/cron[29821]: (root) CMD (newsyslog) > Oct 7 07:59:51 smtpd /usr/sbin/cron[30357]: (root) CMD (newsyslog) > Oct 7 08:59:34 smtpd /usr/sbin/cron[31222]: (root) CMD (newsyslog) > Oct 7 09:59:51 smtpd /usr/sbin/cron[31980]: (root) CMD (newsyslog) > Oct 7 10:59:47 smtpd /usr/sbin/cron[32710]: (root) CMD (newsyslog) > Oct 7 11:59:51 smtpd /usr/sbin/cron[33278]: (root) CMD (newsyslog) > Oct 7 12:59:55 smtpd /usr/sbin/cron[33832]: (root) CMD (newsyslog) > Oct 7 13:59:34 smtpd /usr/sbin/cron[34276]: (root) CMD (newsyslog) > Oct 7 14:59:51 smtpd /usr/sbin/cron[34833]: (root) CMD (newsyslog) > Oct 7 15:59:21 smtpd /usr/sbin/cron[35492]: (root) CMD (newsyslog) > Oct 7 16:58:42 smtpd /usr/sbin/cron[36213]: (root) CMD (newsyslog) > Oct 7 17:59:42 smtpd /usr/sbin/cron[37072]: (root) CMD (newsyslog) > Oct 7 18:59:47 smtpd /usr/sbin/cron[37958]: (root) CMD (newsyslog) > Oct 7 19:59:47 smtpd /usr/sbin/cron[38780]: (root) CMD (newsyslog) > Oct 7 20:59:12 smtpd /usr/sbin/cron[39330]: (root) CMD (newsyslog) > Oct 7 21:58:55 smtpd /usr/sbin/cron[40561]: (root) CMD (newsyslog) > Oct 7 22:59:55 smtpd /usr/sbin/cron[41477]: (root) CMD (newsyslog) > Oct 7 23:59:25 smtpd /usr/sbin/cron[47064]: (root) CMD (newsyslog) > From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 17:47:27 2014 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 6860B543 for ; Wed, 15 Oct 2014 17:47:27 +0000 (UTC) Received: from mail-pd0-x241.google.com (mail-pd0-x241.google.com [IPv6:2607:f8b0:400e:c02::241]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3FD0E8A4 for ; Wed, 15 Oct 2014 17:47:27 +0000 (UTC) Received: by mail-pd0-f193.google.com with SMTP id v10so609847pde.4 for ; Wed, 15 Oct 2014 10:47:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:mime-version:from:to:reply-to:subject:content-type :content-transfer-encoding; bh=9agDyBVxaUz7HZXjUzgiGemeqaeiXxy1WOQI6iFDenM=; b=PyuZxC8LH5OdVI81YHK/9orB1r+PJlvnXheDX9UJxsS5u9zB8vnBmUwLddHJyIbOLf 8/ZdULDOMaoNCDT/tT4kLIFbdY1DFB2qdG0rZQaDk4RJkLxCd9siwq1MiaM5DoRzahxR 1EaKQgdjNfulsepxMOZ/1ZGZrAwoBBLLkY2A5Pv+ueJjczpl0f8bIfauryXc3LrTMy9u iU5iRaGrrkEi3kIW+V4tTa+zDftXKmBeMk7S+qeWDeZOrrlONQzMfhHZ/diy1F/AISop K6BePB8opQcbYVKAYwsRJtmMmAW4x7rAfXwklDjSuUwFEnQSlkezZve4C7BhMXbq4mEt ddNA== X-Received: by 10.68.234.103 with SMTP id ud7mr14381094pbc.46.1413395246857; Wed, 15 Oct 2014 10:47:26 -0700 (PDT) Received: from Inder-PC ([27.255.188.64]) by mx.google.com with ESMTPSA id r9sm17652655pdl.60.2014.10.15.10.47.25 for (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 15 Oct 2014 10:47:26 -0700 (PDT) Message-ID: <543eb32e.e92a460a.5abb.03fc@mx.google.com> Date: Wed, 15 Oct 2014 10:47:26 -0700 (PDT) X-Google-Original-Date: 15 Oct 2014 23:17:28 +0530 From: americans76132@gmail.com To: freebsd-bugs@freebsd.org Reply-To: limpid75154@gmail.com Subject: Has your website : mail-archive.com been penalized by Google ? MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" 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, 15 Oct 2014 17:47:27 -0000 Good Morning Bussiness Owner Has your website lost traffic or rankings in last few weeks ? If yes, then your website is a VICTIM to these NEW google algorithm updates. To correct this you need to hire a professioanl Search Engine Optimization company who understands these changes better than what you can. More with these new updates coming each month you need your online web presence to be taken care by a group of SEO Experts who are dedicated to learn all these new changes coming their way. We are presently offering a 15 days FREE Trial for our S.E.O Service, so that you can experience our expert S.E.O skills and then decided to sign up with us. Our S.E.O Plans start from just 199$ and go to 399$ / month making sure your website is optimized for all possible keywords and not just 10-20 keywords like other companies offer. Google has recently launched 3 Big updates and refreshes keep coming every month 1) Google Panda Update : Targeting Websites with Bad ONSITE 2) Google Penguin : Targeting Websites with Bad backlinks 3) Google Pigeon : Targeting Websites with bad local presence We have helped our clients pass all these algorithms pass these updates in last 3 years and we are one of those few ONLY SEO companies who have not been affected MUCH by these updates. What makes our company different : 1) We optimize website not keywords : ( We optimize your website for as many keywords possible ) 2) We assure results in first 15 days itself 3) We have the best possible pricing on the web 4) We abide by all google rules 5) Every link built is shared with for your future use 6) We Offer complete SEO Service not just LINK BUILDING Email us back with your website and your phone number so we can study your website and email you back with our Customized proposal. Looking forward working with you. Regards Vince G SEO Manager ( TOB ) Skype ________________________________________ NO CLICK in the subject to STOP EMAILS From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 19:06:00 2014 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 BFED6E43 for ; Wed, 15 Oct 2014 19:06: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 A73D4107 for ; Wed, 15 Oct 2014 19:06: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 s9FJ60hP000222 for ; Wed, 15 Oct 2014 19:06:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Wed, 15 Oct 2014 19:06:00 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 19:06:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #9 from Ed Maste --- > If the installer knows what the firmware is ((I don't know if we pass anything from the loader to the kernel)) We report if the system was booted by BIOS or UEFI via the machdep.bootmethod sysctl (returns BIOS or UEFI). I think this won't help though, because it returns BIOS for both the legacy BIOS case and the UEFI CSM (i.e. simulated BIOS) case, and based on the discussion here it seems (some) real BIOS needs the PMBR active flag set while CSM needs it unset. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 19:33:02 2014 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 B6D7BCF8 for ; Wed, 15 Oct 2014 19:33: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 9E25B634 for ; Wed, 15 Oct 2014 19:33: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 s9FJX2eG081941 for ; Wed, 15 Oct 2014 19:33:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Wed, 15 Oct 2014 19:33:02 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: hans@beastielabs.net X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 19:33:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 hans@beastielabs.net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hans@beastielabs.net --- Comment #10 from hans@beastielabs.net --- (In reply to Allan Jude from comment #7) > Ok, I can test the UEFI stuff on this side. > Allen, Back home I have a legacy system that is affected by this issue and another one that isn't, see: https://lists.freebsd.org/pipermail/freebsd-stable/2014-October/080500.html Whenever I get home (hopefully by tomorrow) I can help testing. Both systems are available, nothing else is currently running on them. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 19:59:08 2014 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 39278AF1 for ; Wed, 15 Oct 2014 19:59: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 20A8C952 for ; Wed, 15 Oct 2014 19:59: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 s9FJx7Y9036615 for ; Wed, 15 Oct 2014 19:59:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194386] New: Common storage of original MAC address Date: Wed, 15 Oct 2014 19:59:08 +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: Needs Triage 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, 15 Oct 2014 19:59:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194386 Bug ID: 194386 Summary: Common storage of original MAC address Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: rpokala@panasas.com Add a common location in the network stack to store the original MAC address for an interface. It will be preserved even if the working MAC address has changed due to being manually set w/ `ifconfig', or being part of a lagg(4). Discussed on freebsd-hackers@ in thread "Common storage of original MAC address": https://lists.freebsd.org/pipermail/freebsd-hackers/2014-August/thread.html#45822 https://lists.freebsd.org/pipermail/freebsd-hackers/2014-September/thread.html#45955 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 20:01:25 2014 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 D8C9BEFF for ; Wed, 15 Oct 2014 20:01: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 BEC83A09 for ; Wed, 15 Oct 2014 20:01: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 s9FK1PuG063256 for ; Wed, 15 Oct 2014 20:01:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194386] Common storage of original MAC address Date: Wed, 15 Oct 2014 20:01: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: rpokala@panasas.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 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, 15 Oct 2014 20:01:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194386 rpokala@panasas.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rpokala@panasas.com --- Comment #1 from rpokala@panasas.com --- Created attachment 148347 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=148347&action=edit Patch to add common storage of original MAC address 194386.patch - Patch to implement the desired functionality, as discussed on freebsd-hackers@. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 20:01:55 2014 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 20AFFF97 for ; Wed, 15 Oct 2014 20:01: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 081A0A1C for ; Wed, 15 Oct 2014 20:01: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 s9FK1sNl069873 for ; Wed, 15 Oct 2014 20:01:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Wed, 15 Oct 2014 20:01:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: marcel@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 20:01:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #11 from Marcel Moolenaar --- (In reply to Ed Maste from comment #9) > > If the installer knows what the firmware is ((I don't know if we pass anything from the loader to the kernel)) > > We report if the system was booted by BIOS or UEFI via the > machdep.bootmethod sysctl (returns BIOS or UEFI). > > I think this won't help though, because it returns BIOS for both the legacy > BIOS case and the UEFI CSM (i.e. simulated BIOS) case, and based on the > discussion here it seems (some) real BIOS needs the PMBR active flag set > while CSM needs it unset. I guess that means we need to be able to distinguish between true BIOS and UEFI CSM. There seems to be some code for that: http://kernel.ubuntu.com/git?p=cking/debug-code/.git;a=commit;h=2e654e01bf4014b27387cf64bb03316064478eea I have no idea how well this works or if this is at all a legit way to do that. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 20:17:45 2014 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 AC3824D1 for ; Wed, 15 Oct 2014 20:17:45 +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 93DC6B74 for ; Wed, 15 Oct 2014 20:17: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 s9FKHjId020216 for ; Wed, 15 Oct 2014 20:17:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Wed, 15 Oct 2014 20:17:45 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 20:17:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #12 from Ed Maste --- >From that file: > 73 if (stat("/sys/firmware/efi", &buf) != -1) > 74 flag |= EFI_SUPPORT; I'm not sure if Linux creates /sys/firmware/efi for the legacy boot case, but if so we'd need to find out how it does that. Do we know which systems fail to boot with PMBR active bit set in the non-(U)EFI boot case? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 23:05:49 2014 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 0B824516 for ; Wed, 15 Oct 2014 23:05: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 E6D16EDD for ; Wed, 15 Oct 2014 23:05: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 s9FN5mOD029387 for ; Wed, 15 Oct 2014 23:05:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194394] New: rc infrastructure uses egrep in places; egrep not provided with /rescue; breaks some custom infrastructures like mfsbsd Date: Wed, 15 Oct 2014 23:05:49 +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: ngie@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 15 Oct 2014 23:05:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194394 Bug ID: 194394 Summary: rc infrastructure uses egrep in places; egrep not provided with /rescue; breaks some custom infrastructures like mfsbsd Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: ngie@FreeBSD.org mfsbsd doesn't have /usr mounted immediately, so some tools like egrep aren't available, which means that some of the rc infrastructure doesn't necessarily work as expected. egrep should be added to /rescue as a hardlink. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 15 23:09:19 2014 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 48C665B9 for ; Wed, 15 Oct 2014 23:09: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 2F358F07 for ; Wed, 15 Oct 2014 23:09: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 s9FN9Jmo031048 for ; Wed, 15 Oct 2014 23:09:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194394] rc infrastructure uses egrep in places; egrep not provided with /rescue; breaks some custom infrastructures like mfsbsd Date: Wed, 15 Oct 2014 23:09: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: Issue Resolved 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: Wed, 15 Oct 2014 23:09:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194394 Garrett Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Issue Resolved Resolution|--- |Not A Bug --- Comment #1 from Garrett Cooper --- Sorry. The change done was internal to Isilon, i.e. not a bug :(... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 01:08:00 2014 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 AD2A8F10 for ; Thu, 16 Oct 2014 01:08: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 94DC4D17 for ; Thu, 16 Oct 2014 01:08: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 s9G180WE094883 for ; Thu, 16 Oct 2014 01:08:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Thu, 16 Oct 2014 01:08:00 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: marcel@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 16 Oct 2014 01:08:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #13 from Marcel Moolenaar --- (In reply to Ed Maste from comment #12) > From that file: > > 73 if (stat("/sys/firmware/efi", &buf) != -1) > > 74 flag |= EFI_SUPPORT; > > I'm not sure if Linux creates /sys/firmware/efi for the legacy boot case, > but if so we'd need to find out how it does that. > > Do we know which systems fail to boot with PMBR active bit set in the > non-(U)EFI boot case? I known ia64 rejects the partitioning entirely. I belief lstewart@ ran into the problems on x86 that triggered the change to not set the active flag by default. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 01:21:44 2014 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 30A19ED for ; Thu, 16 Oct 2014 01:21: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 1800CE89 for ; Thu, 16 Oct 2014 01:21: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 s9G1LhPQ039915 for ; Thu, 16 Oct 2014 01:21:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall should set active flag in GPT PMBR if not booting using EFI Date: Thu, 16 Oct 2014 01:21:43 +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-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: rodrigc@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 16 Oct 2014 01:21:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 --- Comment #14 from Craig Rodrigues --- lstewart described the problem he encountered here: https://lists.freebsd.org/pipermail/freebsd-fs/2012-August/014864.html -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 01:28:07 2014 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 78049198 for ; Thu, 16 Oct 2014 01:28: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 5FBD0EBE for ; Thu, 16 Oct 2014 01:28: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 s9G1S7rk043529 for ; Thu, 16 Oct 2014 01:28:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194397] New: Base GNU grep does not handle \s in extended regex Date: Thu, 16 Oct 2014 01:28:07 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: Needs Triage 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, 16 Oct 2014 01:28:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194397 Bug ID: 194397 Summary: Base GNU grep does not handle \s in extended regex Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: emaste@freebsd.org \s should match whitespace but does not: FreeBSD 11.0-CURRENT from Sep. 21 joule% echo 'a b' | /usr/bin/grep -E '^a\sb' joule% joule% /usr/bin/grep --version grep (GNU grep) 2.5.1-FreeBSD GNU grep package works: joule% echo 'a b' | /usr/local/bin/grep -E '^a\sb' a b joule% /usr/local/bin/grep --version /usr/local/bin/grep (GNU grep) 2.20 BSD grep works: echo 'a b' | /usr/bin/bsdgrep -E '^a\sb' joule% /usr/bin/bsdgrep --version bsdgrep (BSD grep) 2.5.1-FreeBSD BSD grep and base GNU grep both link against /usr/lib/libgnuregex.so.5 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 03:39:40 2014 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 928D8DB8 for ; Thu, 16 Oct 2014 03:39: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 7A18CD7F for ; Thu, 16 Oct 2014 03:39: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 s9G3de8k015165 for ; Thu, 16 Oct 2014 03:39:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194397] Base GNU grep does not handle \s in extended regex Date: Thu, 16 Oct 2014 03:39: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 Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: Needs Triage 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, 16 Oct 2014 03:39:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194397 Ed Maste 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 Thu Oct 16 06:07:46 2014 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 51BF4C54 for ; Thu, 16 Oct 2014 06:07: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 38A06CA1 for ; Thu, 16 Oct 2014 06:07: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 s9G67koR064118 for ; Thu, 16 Oct 2014 06:07:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194398] New: lib/libc/posix1e/acl_size.c is stubbed out/not integrated into lib/libc; should it be reaped? Date: Thu, 16 Oct 2014 06:07:46 +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: ngie@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 16 Oct 2014 06:07:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194398 Bug ID: 194398 Summary: lib/libc/posix1e/acl_size.c is stubbed out/not integrated into lib/libc; should it be reaped? Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: ngie@FreeBSD.org Something I noticed in passing while reading through some XXX comments about it "being present in libc, but not available in the build" at Isilon. $ grep -r acl_size /usr/src/lib/libc/ /usr/src/lib/libc/posix1e/acl_size.c:acl_size(acl_t acl) $ grep acl_size /usr/src/lib/libc/posix1e/Makefile.inc || echo not found not found Maybe the file should just be removed? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 09:14:15 2014 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 BDB53C9A for ; Thu, 16 Oct 2014 09:14: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 A545D303 for ; Thu, 16 Oct 2014 09:14: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 s9G9EFrE037432 for ; Thu, 16 Oct 2014 09:14:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192431] Crypt(3) (-lcrypt) does not work as documented Date: Thu, 16 Oct 2014 09:14:15 +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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: des@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc 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: Thu, 16 Oct 2014 09:14:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D192431 Dag-Erling Sm=C3=83=C2=B8rgrav changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Issue Resolved CC| |des@FreeBSD.org Resolution|--- |DUPLICATE --- Comment #1 from Dag-Erling Sm=C3=83=C2=B8rgrav --- *** This bug has been marked as a duplicate of bug 192277 *** --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 10:45:23 2014 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 D12649FE for ; Thu, 16 Oct 2014 10:45: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 9FA23F0B for ; Thu, 16 Oct 2014 10:45: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 s9GAjNYe087902 for ; Thu, 16 Oct 2014 10:45:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194401] New: bsd.port.mk's OSVERSION change interferes with option WITHOUT_TOOLCHAIN in src.conf Date: Thu, 16 Oct 2014 10:45:23 +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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bugzilla.freebsd@omnilan.de X-Bugzilla-Status: Needs Triage 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, 16 Oct 2014 10:45:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194401 Bug ID: 194401 Summary: bsd.port.mk's OSVERSION change interferes with option WITHOUT_TOOLCHAIN in src.conf Product: Base System Version: 10.0-STABLE Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: bugzilla.freebsd@omnilan.de Created attachment 148369 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=148369&action=edit Install /usr/include/sys/param.h with WITHOUT_TOOLCHAIN set In ports/Mk/bsd.ports.mk the following cahnge was made: -OSVERSION!= ${SYSCTL} -n kern.osreldate +.error Unable to determine OS version. Either define OSVERSION, install /usr/include/sys/param.h or define SRC_BASE. On systems which were installed with "WITHOUT_TOOLCHAIN=true" in src.conf, there is no 'param.h'. Since BSD.include.dist will always be populated by mtree at installworld stage, regardless the WITHOUT_TOOLCHAIN option, I'd like to see param.h beeing present an all systems, also regardless of WITHOUT_TOOLCHAIN. The attached patch incorporates this. It's useful for using the ports-tree as information source, when someone might want to 'make fetch' or 'make makesum' (for automated updates of own ports) or 'make -V'... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 15:35:31 2014 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 319AFB9C for ; Thu, 16 Oct 2014 15:35: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 184CF6EB for ; Thu, 16 Oct 2014 15:35: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 s9GFZUAm092068 for ; Thu, 16 Oct 2014 15:35:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194401] bsd.port.mk's OSVERSION change interferes with option WITHOUT_TOOLCHAIN in src.conf Date: Thu, 16 Oct 2014 15:35:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: brooks@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 16 Oct 2014 15:35:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194401 Brooks Davis changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |brooks@FreeBSD.org --- Comment #1 from Brooks Davis --- How is the ports collection remotely useful on a system without a toolchain? I guess "make index" might work, but nothing will build so what's the point? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 16:06:49 2014 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 2FDADA6B for ; Thu, 16 Oct 2014 16:06: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 16664A9F for ; Thu, 16 Oct 2014 16:06: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 s9GG6m5E087066 for ; Thu, 16 Oct 2014 16:06:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194401] bsd.port.mk's OSVERSION change interferes with option WITHOUT_TOOLCHAIN in src.conf Date: Thu, 16 Oct 2014 16:06:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: brooks@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 16 Oct 2014 16:06:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194401 --- Comment #2 from Brooks Davis --- Sorry, missed your examples in the first message. I apologize for not reading carefully. The first two cases seem like the sort of thing we'd like to note support as they could be harmful to the project. It really don't make sense to update a port if you can't build it. The error message suggests a perfectly functional workaround. Why is that not acceptable? Just add: OSVERSION!=sysctl -n kern.osreldate to your make.conf or put in your environment. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 16:44:44 2014 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 38D8D14D for ; Thu, 16 Oct 2014 16:44: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 19D81E8A for ; Thu, 16 Oct 2014 16:44: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 s9GGihpj083589 for ; Thu, 16 Oct 2014 16:44:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194401] bsd.port.mk's OSVERSION change interferes with option WITHOUT_TOOLCHAIN in src.conf Date: Thu, 16 Oct 2014 16:44:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bugzilla.freebsd@omnilan.de X-Bugzilla-Status: Needs Triage 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: 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: Thu, 16 Oct 2014 16:44:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D194401 --- Comment #3 from Harald Schmalzbauer --- (In reply to Brooks Davis from comment #2) > Sorry, missed your examples in the first message. I apologize for not > reading carefully. The first two cases seem like the sort of thing we'd > like to note support as they could be harmful to the project. It really > don't make sense to update a port if you can't build it. The 'make makesum' example is from a very special case! We do automated 'distfile' updates for local (inofficial) ports with a script running on a jail-host without toolchain. The 'make fetch' example is often useful if you want to get a quick look in= to any unknown project. Downloading source doesn't implicate the intention to compile it =E2=80=93 but it could be done in a very convenient way with the= help of 'make fetch'. Checking for updates without compiling them (portmaster -ai e.g.) absolutely makes sense, also on machines which can't even compile anything themself! I frequently do this on remote machines without toolchains, but with read-o= nly (temporary) ports tree because it's the fastest way (I'm ware of) to determ= ine what updates _would_ be available. If there's something relevant for upgrading revealed, I go to the build host (which has knwoledge of detailed project info regarding the destination hos= t, like what complete port set is installed, corresponding db/ports/* options etc.) and roll out a package repository CD on that build host, which afterw= ard gets mounted on the destination machine and pkg upgrade will do the rest. (Using FreeBSDs pkg repositroy is not an option for almost all of my setups, since virtually every port was compiled with non-standard options defined!) > The error message suggests a perfectly functional workaround. Why is that > not acceptable? Just add: >=20 > OSVERSION!=3Dsysctl -n kern.osreldate >=20 > to your make.conf or put in your environment. For the same reason it was changed in bsd.ports.mk. It's very often wrong. Doesn't matter for the tasks described here, but I think there's a better solution - unconditionally shipping param.h. Like described, regardless of = the WITHOUT_TOOLCHAIN option, there's always a populated /usr/include directory tree, so adding the 11kB "param.h" shouldn't hurt in any way, but it could = be used as a reliable source of correct version information, which si not poss= ible with 'sysctl -n kern.osreldate' Thanks, -Harry --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 18:30:48 2014 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 14F48F26 for ; Thu, 16 Oct 2014 18:30: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 F06DCBBE for ; Thu, 16 Oct 2014 18:30: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 s9GIUlcI013100 for ; Thu, 16 Oct 2014 18:30:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194398] lib/libc/posix1e/acl_size.c is stubbed out/not integrated into lib/libc; should it be reaped? Date: Thu, 16 Oct 2014 18:30:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: trasz@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: trasz@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 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, 16 Oct 2014 18:30:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194398 Edward Tomasz Napierala changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Open CC| |trasz@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |trasz@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 20:03:03 2014 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 4FF5EF65 for ; Thu, 16 Oct 2014 20:03: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 3832B849 for ; Thu, 16 Oct 2014 20:03: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 s9GK334b019344 for ; Thu, 16 Oct 2014 20:03:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194234] [ixgbe] Update ixgbe to 2.5.27 Date: Thu, 16 Oct 2014 20:03: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: ricera10@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: Normal 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, 16 Oct 2014 20:03:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194234 Eric Joyner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jhb@FreeBSD.org --- Comment #2 from Eric Joyner --- I'll re-submit a core code patch; John Baldwin made valid comments about some parts of it. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 20:18:08 2014 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 2B7BE4B8 for ; Thu, 16 Oct 2014 20:18: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 136039A8 for ; Thu, 16 Oct 2014 20:18: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 s9GKI76r059255 for ; Thu, 16 Oct 2014 20:18:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 183494] [PATCH] limits(1): usr.bin/limits: cannot set kqueues limit Date: Thu, 16 Oct 2014 20:18: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: 1.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bdrewery@FreeBSD.org X-Bugzilla-Status: Issue Resolved 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 cc 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: Thu, 16 Oct 2014 20:18:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=183494 Bryan Drewery changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved CC| |bdrewery@FreeBSD.org Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 20:18:29 2014 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 83EA7504 for ; Thu, 16 Oct 2014 20:18: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 6B9E49AF for ; Thu, 16 Oct 2014 20:18: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 s9GKIT1R059506 for ; Thu, 16 Oct 2014 20:18:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 183484] [PATCH] limits(1): usr.bin/limits: make -e work without /proc Date: Thu, 16 Oct 2014 20:18:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 1.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bdrewery@FreeBSD.org X-Bugzilla-Status: Issue Resolved 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 cc 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: Thu, 16 Oct 2014 20:18:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=183484 Bryan Drewery changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved CC| |bdrewery@FreeBSD.org Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 21:27:30 2014 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 4BB47EF for ; Thu, 16 Oct 2014 21:27:30 +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 33ABF214 for ; Thu, 16 Oct 2014 21:27: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 s9GLRUGt060718 for ; Thu, 16 Oct 2014 21:27:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194386] Common storage of original MAC address Date: Thu, 16 Oct 2014 21:27:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: rpokala@panasas.com X-Bugzilla-Status: Needs Triage 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, 16 Oct 2014 21:27:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194386 --- Comment #2 from rpokala@panasas.com --- Brooks / Allan / John - since you all chimed in on the thread where this was designed, could one of you review this and submit it for me? Thanks! -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 22:38:49 2014 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 45FDAAC0 for ; Thu, 16 Oct 2014 22:38: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 2D880B20 for ; Thu, 16 Oct 2014 22:38: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 s9GMcnp4082034 for ; Thu, 16 Oct 2014 22:38:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193496] Inconsistent trailing space in "geli init" output Date: Thu, 16 Oct 2014 22:38: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: gavin@FreeBSD.org X-Bugzilla-Status: Needs Triage 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, 16 Oct 2014 22:38:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193496 Gavin Atkinson changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gavin@FreeBSD.org --- Comment #1 from Gavin Atkinson --- Hi, It doesn't look lie your patch was attached to the PR successfully - could you resubmit it please? Thanks, Gavin -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 22:39:59 2014 Return-Path: Delivered-To: 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 31B63B17 for ; Thu, 16 Oct 2014 22:39:59 +0000 (UTC) Received: from mail.style.aqhostdns.com (mail.style.aqhostdns.com [67.222.109.59]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 15CC1B2E for ; Thu, 16 Oct 2014 22:39:58 +0000 (UTC) Received: from [174.32.165.208] (port=62607 helo=[192.168.2.7]) by style.aqhostdns.com with esmtpa (Exim 4.82) (envelope-from ) id 1Xesak-0007de-Dk for bugs@freebsd.org; Thu, 16 Oct 2014 14:28:16 -0700 Message-Id: Mime-Version: 1.0 From: Heavenly Words To: bugs@freebsd.org Subject: [Prophecy] October 16, 2014 Communique - Gog And Magog - Part III Date: Thu, 16 Oct 2014 14:28:12 -0700 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - style.aqhostdns.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - angelofthelord.net X-Get-Message-Sender-Via: style.aqhostdns.com: authenticated_id: heavenlywords@angelofthelord.net Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: quoted-printable 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, 16 Oct 2014 22:39:59 -0000 Christian Media Communiqu=E9 GOG AND MAGOG - Part III The Valley Of Dry Bones In our last installment examining the prophecies of Ezekiel preceding the famous Gog and Magog attack on Israel in Ezekiel 38 and 39, we showed how God pronounced judgment on Mount Seir, and the Idumaean identity, for their ongoing “envy” of Israel=2E This repudiation of the descendants of Esau, Abraham’s promissory descendant who wasted his preferential position, is confirmed in adjacent prophets, notably Isaiah, Obadiah, and Malachi=2E “…and they shall call them…The people against whom the Lord hath indignation forever” (Malachi 1:4)=2E Isaiah provides a 2nd witness to Ezekiel’s denunciation of “Mount Seir,” Esau’s ancestral home, saying it will be a land of eternal desolation, a dusty desolate locale which is to be the object of God’s eternal wrath: “And the streams thereof shall be turned into pitch, and dust thereof into brimstone, and the land thereof shall become burning pitch…from generation to generation it shall lie waste; none shall pass through it forever and ever” (Isaiah 34:9)=2E This wrath of God against the Edomite identity (Idumaea is a variant name of Edomaea), occurs in the same chapter of Ezekiel, in which God promises to eternally bless the lost sheep of the house of Israel, through the work of “one shepherd” – who is associated with the house of David=2E This grace, which is to be Spiritually poured out upon Israel, in which God vows to install “a new heart” and “put my spirit within you,” occurs in the chapter preceding Ezekiel 37, where we find the astonishing prophecy of the LORD raising up a people out of a valley filled with dead and dry bones: “Then he said unto me, Son of man, these bones are the whole house of Israel: behold, they say, Our bones are dried, and our hope is lost…as I prophesied, there was a noise, and behold a shaking, and the bones came together, bone to his bone, the skin covered them above…and the breath came into them, and they lived, and stood upon their feet…” (Ezekiel 37:11, 10)=2E Such passages expose those who insist on literal prophetic fulfillment as exceedingly foolish=2E However, metaphorically speaking, it is a historical fact that this was fulfilled long ago=2E Years after the time of Ezekiel, in the days of the Persian Union (well after the 70 years of the Babylonian captivity of Ezekiel and Daniel’s generations), Nehemiah received the “commandment to restore and to build Jerusalem” (Daniel 9:25) and, in the midst of fierce opposition, he achieved the re-settlement of Jewish exiles in Judaea and Jerusalem: “…when Sanballat, and Tobiah, and the Arabians, and the Ashdodites [all related to Edom] heard that the walls of Jerusalem were made up, and that the breaches began to be stopped, then they were very wroth=2E And conspired all of them together to come and fight against Jerusalem, and to hinder it” (Nehemiah 4:7, 8)=2E After many years of hardship, with tremendous antagonism and significant violence arrayed against them, the Jews led by Nehemiah, were regathered in Jerusalem, and rebuilt the temple of the LORD -- but the entrance of the Spirit of the LORD would await the arrival of JESUS, many generations later=2E “…but there was no breath in them [the dry bones]=2E Then he said unto me, Prophesy unto the wind, prophesy, son of man, and say to the wind, Thus saith the Lord God; Come from the four winds, O breath, and breathe upon these slain, that they may live” (Ezekiel 37: 8,9)=2E When the Word of God, Jesus Christ, arrived centuries later to regenerate Israel, the Jews had long forgotten the revival of their faith which had occurred in the days of Nehemiah=2E However, God had not forgotten His promises, given through Ezekiel, to “take away the stony heart” and place “a new spirit” (Ezekiel 36:26) within what was to become born again Israel: “…some seeds…=2Efell upon stony places, where they had not much earth…some fell by the way side, and it was trodden down, and the fowls of the air devoured it=2E But other fell into good ground, and brought forth fruit, some an hundredfold, some sixtyfold, some thirtyfold” (Matthew 13:4, 5, Luke 8:5, Matthew 13:8) The prophet Ezekiel, in the last chapter preceding the introduction of Gog and Magog as the ultimate enemy of God’s people Israel, clearly separated the regathering of Israel, from the breath of God which was to resurrect them: “…but there was no breath in them [the dry bones]=2E Then he said unto me, Prophesy unto the wind, prophesy, son of man, and say to the wind, Thus saith the Lord God; Come from the four winds, O breath, and breathe upon these slain, that they may live” (Ezekiel 37: 8,9)=2E Thus, after His crucifixion and resurrection, as Jesus had assembled His temple of believers to give them His parting instructions, he told His disciples to remain in Jerusalem because there was one more phase of God’s ancient promise in Ezekiel, which was yet to come: “And, behold, I send the promise of my Father upon you: but tarry ye in the city of Jerusalem, until ye be endued with power from on high” (Luke 24:49)=2E Most believers know the astonishing story of how the disciples were all gathered together, when the promise of the Father to fill those dry bones with His Spirit was miraculously fulfilled: “And suddenly there came a sound from heaven as of a rushing mighty wind, and it filled all the house where they were sitting=2E And they were all filled with the Holy Ghost, and began to speak with other tongues, as the Spirit gave them utterance…and the same day were added unto them about three thousand souls” (Acts 2: 2, 41)=2E When the LORD’s Spirit was poured out, Jerusalem was hosting people from the surrounding nations, who had gathered for the feast of Pentecost: “And they were all amazed and marvelled…Parthians, and Medes, and Elamites, and the dwellers in Mosopotamia, and in Judaea, and Cappadocia, in Pontus, and Asia=2E Phygia, and Pamphylia, in Egypt, and in the parts of Libya about Cyrene, and strangers of Rome, Jews and proselytes=2E Cretess and Arabians…And when this was noised abroad, the multitude came together…=2E” (Acts 2:7, 9-11, 6)=2E Thus, the passage of the Dry Bones, in which the LORD said He would gather together His people from the nations, and put “a new spirit” within them, a prophecy characterizing the Spirit of God as wind, was fulfilled: “For I will take you from among the heathen, and gather you out of all countries…=2EAfter many days thou shalt be visited: in the latter years thou shalt come into the land that is brought back from the sword, and is gathered out of many people, against the mountains of Israel, which have been always waste; but it is brought forth out of the nations, and they shall dwell safely all of them” (Ezekiel 36:24, 38:8)=2E Those who retained their “stony” heart, and those who mocked the amazing fulfillment of God’s promise to redeem the metaphoric “mountains of Israel,” became the Spiritual mountains of Idumaea (Ezekiel 35:2, 8, 15), even as rivers of living water flowed throughout the genuine Israel of God (Galatians 6:16, Romans 8:14) – the body of believers who heard and responded to the call of Jesus of Nazareth=2E -- James Lloyd Next: The Two Houses Of Israel And Judah Are Made One House With One King ________________________________________________________________________ ________________________________________________________________________ Dear Christian Friend, This prophecy article was sent to you by one of our volunteers – a person who believes the LORD is doing a very special work at the ministry which produces this writing=2E People need to receive this information, but the resistance is fierce in these end times=2E The Communique is but a part of the Christian Media ministry=2E A lot of people are trying to stop us from what we’re doing in Bible Prophecy, so if you’d like to read more along the lines of the present writing, we would love to send you the Communique in the future -- but we need to hear from you, as there are far too many people out there to continually send it on an unsolicited basis=2E To get the next installment of the Communique (it’s all free), just hit reply and put the word YES! in the subject line, and the person who forwarded this email to you will arrange for us to send you links on prophecy and predictions of things you can expect to see in the near future=2E We also stream prophecy audio 24/7 and have downloadable video shows as well, so a YES! response will get you all the links you need to access these materials=2E Some are convinced Christians should never send an Email to someone without permission (Did the Disciples of Jesus ask people for permission to tell them the Good News?), while others don’t consider prophecy important – and there are other reasons people don’t want to receive our material=2E If that’s the case, just reply with the word REMOVE in the subject line (that part is important as our software looks for that word), and we will cheerfully delete your name from our database=2E Thanks for reading this far, and we hope you’ll respond favorably, reply with a YES!, and take a look at what the LORD has shown us here at the Christian Media ministry=2E ________________________________________________________________________ __________________ Welcome To The World Of Christian Media! Christian Media PO Box 1414 Medford OR 97501 541/899/8888     From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 16 22:45:31 2014 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 53907156 for ; Thu, 16 Oct 2014 22:45: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 398F1BFC for ; Thu, 16 Oct 2014 22:45: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 s9GMjVgF091280 for ; Thu, 16 Oct 2014 22:45:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192000] ports-mgmt/pkg reports wrong version when refusing to downgrade Date: Thu, 16 Oct 2014 22:45:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: gavin@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status component version assigned_to product 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, 16 Oct 2014 22:45:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192000 Gavin Atkinson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Open Component|bin |Individual Port(s) Version|11.0-CURRENT |Latest Assignee|freebsd-bugs@FreeBSD.org |freebsd-ports-bugs@FreeBSD. | |org Product|Base System |Ports Tree Summary|pkg reports wrong version |ports-mgmt/pkg reports |when refusing to downgrade |wrong version when refusing | |to downgrade -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 03:56:01 2014 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 E88A3F1A for ; Fri, 17 Oct 2014 03:56: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 D038EBE2 for ; Fri, 17 Oct 2014 03:56: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 s9H3u111091733 for ; Fri, 17 Oct 2014 03:56:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 146079] FreeBSD-8.0 handbook out of date Date: Fri, 17 Oct 2014 03:56:01 +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: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Issue Resolved 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, 17 Oct 2014 03:56:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=146079 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: gjb Date: Fri Oct 17 03:55:34 UTC 2014 New revision: 273204 URL: https://svnweb.freebsd.org/changeset/base/273204 Log: Add more descriptive metadata to the ISO images. PR: 146079 Submitted by: Roman Bogorodskiy MFC after: 3 days X-MFC-10.1: yes Sponsored by: The FreeBSD Foundation Changes: head/release/Makefile -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 03:59:19 2014 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 8A6D9FA2 for ; Fri, 17 Oct 2014 03:59: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 723A1BFC for ; Fri, 17 Oct 2014 03:59: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 s9H3xJDT094450 for ; Fri, 17 Oct 2014 03:59:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 146079] FreeBSD-8.0 handbook out of date Date: Fri, 17 Oct 2014 03:59:19 +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: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gjb@FreeBSD.org X-Bugzilla-Status: Issue Resolved 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, 17 Oct 2014 03:59:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=146079 --- Comment #4 from Glen Barber --- Oops, referenced wrong PR in this commit. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 06:19:00 2014 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 A081330E for ; Fri, 17 Oct 2014 06:19: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 88E9396F for ; Fri, 17 Oct 2014 06:19: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 s9H6J0rX069502 for ; Fri, 17 Oct 2014 06:19:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 164763] [vnet] Memory leak in VNET Date: Fri, 17 Oct 2014 06:19: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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rodrigc@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-net@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: Fri, 17 Oct 2014 06:19:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=164763 Craig Rodrigues changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rodrigc@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org --- Comment #5 from Craig Rodrigues --- Bjoern gave a link to his Perforce repo here: https://lists.freebsd.org/pipermail/freebsd-net/2014-October/040075.html It would be good to merge these memory leak fixes into FreeBSD HEAD -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 06:37:25 2014 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 9B91A609 for ; Fri, 17 Oct 2014 06:37: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 831B3B0C for ; Fri, 17 Oct 2014 06:37: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 s9H6bPC4018797 for ; Fri, 17 Oct 2014 06:37:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191468] [vimage] options VIMAGE - kernel panic, crashes during system boot Date: Fri, 17 Oct 2014 06:37: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: 9.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: rodrigc@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@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: Fri, 17 Oct 2014 06:37:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191468 Craig Rodrigues changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rodrigc@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 06:40:31 2014 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 704D86FB for ; Fri, 17 Oct 2014 06:40: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 57DCFB26 for ; Fri, 17 Oct 2014 06:40: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 s9H6eV0J023318 for ; Fri, 17 Oct 2014 06:40:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 184149] [vimage] IPv6 link-local collisions on epair[n]b devices Date: Fri, 17 Oct 2014 06:40: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: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rodrigc@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-net@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: Fri, 17 Oct 2014 06:40:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184149 Craig Rodrigues changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rodrigc@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 09:57:34 2014 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 86E534BB for ; Fri, 17 Oct 2014 09:57: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 6F031F4F for ; Fri, 17 Oct 2014 09:57: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 s9H9vY53028938 for ; Fri, 17 Oct 2014 09:57:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194416] New: Testing123 Date: Fri, 17 Oct 2014 09:57:34 +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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gavin@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: Normal 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: Fri, 17 Oct 2014 09:57:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194416 Bug ID: 194416 Summary: Testing123 Product: Base System Version: 10.0-STABLE Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: Normal Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: gavin@FreeBSD.org Just a test Environment: System: FreeBSD 10.0-STABLE FreeBSD 10.0-STABLE #0 r264497: Tue Apr 15 15:30:43 BST 2014 ga9@g500s.lab.devrandom.co.uk:/usr/obj/space/freebsd/stable/10/sys/GENERIC amd64 How-To-Repeat: Test Fix: Test -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 11:14:49 2014 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 3F84C2FB for ; Fri, 17 Oct 2014 11:14: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 26365947 for ; Fri, 17 Oct 2014 11:14: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 s9HBEntB092580 for ; Fri, 17 Oct 2014 11:14:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193496] Inconsistent trailing space in "geli init" output Date: Fri, 17 Oct 2014 11:14: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: fk@fabiankeil.de X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 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, 17 Oct 2014 11:14:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193496 fk@fabiankeil.de changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #147130|0 |1 is obsolete| | --- Comment #2 from fk@fabiankeil.de --- Created attachment 148389 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=148389&action=edit Patch to remove trailing space in message requesting reentry of new passphrase -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 11:16:42 2014 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 38927374 for ; Fri, 17 Oct 2014 11:16: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 2038C966 for ; Fri, 17 Oct 2014 11:16: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 s9HBGfXd093785 for ; Fri, 17 Oct 2014 11:16:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193496] Inconsistent trailing space in "geli init" output Date: Fri, 17 Oct 2014 11:16: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 Some People X-Bugzilla-Who: fk@fabiankeil.de X-Bugzilla-Status: Needs Triage 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, 17 Oct 2014 11:16:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193496 --- Comment #3 from fk@fabiankeil.de --- The second attempt seems to have been successful. Thanks. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 11:17:25 2014 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 5100E4A5 for ; Fri, 17 Oct 2014 11:17: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 38081973 for ; Fri, 17 Oct 2014 11:17: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 s9HBHPgK094148 for ; Fri, 17 Oct 2014 11:17:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 181116] CURRENT build always uses bmake, even though WITHOUT_BMAKE is specified Date: Fri, 17 Oct 2014 11:17:25 +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: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marino@FreeBSD.org X-Bugzilla-Status: Issue Resolved 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 cc 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, 17 Oct 2014 11:17:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=181116 John Marino changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved CC| |marino@FreeBSD.org Resolution|--- |Overcome By Events --- Comment #7 from John Marino --- It seems that WITHOUT_BMAKE isn't implemented anymore. In fact, the old make isn't an option anymore, so this PR is obsolete. I'm closing it. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 11:32:36 2014 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 9099C8AE for ; Fri, 17 Oct 2014 11:32: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 77985AF3 for ; Fri, 17 Oct 2014 11:32: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 s9HBWaSF028656 for ; Fri, 17 Oct 2014 11:32:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193496] Inconsistent trailing space in "geli init" output Date: Fri, 17 Oct 2014 11:32:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: fk@fabiankeil.de X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete 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, 17 Oct 2014 11:32:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193496 fk@fabiankeil.de changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #148389|0 |1 is obsolete| | --- Comment #4 from fk@fabiankeil.de --- Comment on attachment 148389 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=148389 Patch to remove trailing space in message requesting reentry of new passphrase Please disregard this patch, I'll provide a better one in a couple of minutes. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 11:45:43 2014 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 79F88EB for ; Fri, 17 Oct 2014 11:45: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 585AAC12 for ; Fri, 17 Oct 2014 11:45: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 s9HBjhjA049812 for ; Fri, 17 Oct 2014 11:45:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193496] Inconsistent trailing space in "geli init" output Date: Fri, 17 Oct 2014 11:45: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 Some People X-Bugzilla-Who: fk@fabiankeil.de X-Bugzilla-Status: Needs Triage 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: Fri, 17 Oct 2014 11:45:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193496 --- Comment #5 from fk@fabiankeil.de --- Created attachment 148390 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=148390&action=edit geli: Consistently use a trailing space in passphrase promts This patch adds trailing spaces to the two prompts that currently don't have one. All the other geli passphrase prompts seem to use a trailing space and the example in geli(8) were the password is shown has a space, too. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 12:30:44 2014 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 30973CD8 for ; Fri, 17 Oct 2014 12:30: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 175DBFF6 for ; Fri, 17 Oct 2014 12:30: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 s9HCUhlK041454 for ; Fri, 17 Oct 2014 12:30:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194063] [uefi] installer fails to boot / kernel panic on HP Probook 430 G1 Date: Fri, 17 Oct 2014 12:30:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-BETA3 X-Bugzilla-Keywords: i915, uefi, vt X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: op@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: 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: Fri, 17 Oct 2014 12:30:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194063 Oliver Pinter changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Open --- Comment #24 from Oliver Pinter --- The UEFI mode remained broken, but in legacy mode I can install FreeBSD with the described hack. In overall, in legacy mode the system will boot if copied the loader binary (compiled with gcc) from FreeBSD 9.3 release to memstick usb installer, and named loader.gcc, and manually change to load them at boot time. After this, the installation completed as expected and the system able to boot up with the original 11-CURRENT's loader (which compiled with clang). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 13:55:54 2014 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 B0A653A7 for ; Fri, 17 Oct 2014 13:55: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 96E09AA8 for ; Fri, 17 Oct 2014 13:55: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 s9HDtseX012968 for ; Fri, 17 Oct 2014 13:55:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192248] [vt] panic in vtbuf_fill_locked from vt_upgrade with no vt(4) drivers attached Date: Fri, 17 Oct 2014 13:55: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: 11.0-CURRENT X-Bugzilla-Keywords: vt X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Needs Triage 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, 17 Oct 2014 13:55:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192248 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: emaste Date: Fri Oct 17 13:55:46 UTC 2014 New revision: 273219 URL: https://svnweb.freebsd.org/changeset/base/273219 Log: Do nothing in vt_upgrade if there is no vt driver Previously, if no drivers attached at boot we would panic with "vtbuf_fill_locked begin.tp_row 0 must be < screen height 0". PR: 192248 Reviewed by: ray MFC after: 3 days Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D954 Changes: head/sys/dev/vt/vt_core.c -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 16:16:16 2014 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 E6428F31 for ; Fri, 17 Oct 2014 16:16: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 CE26FC35 for ; Fri, 17 Oct 2014 16:16: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 s9HGGGWI076314 for ; Fri, 17 Oct 2014 16:16:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194420] New: [vt] unloading i915kms causes black screen and reboot. Date: Fri, 17 Oct 2014 16:16:16 +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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: sasamotikomi@gmail.com X-Bugzilla-Status: Needs Triage 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: Fri, 17 Oct 2014 16:16:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194420 Bug ID: 194420 Summary: [vt] unloading i915kms causes black screen and reboot. Product: Base System Version: 10.0-STABLE Hardware: amd64 OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: sasamotikomi@gmail.com I update my system (freebsd-update) from 10.1-RC1 to 10.1-RC2 and I see problem with unloading kernel module: I can load module(without X): # kldload i915kms (I think all fine but screen isn't cleaning for some reason) If I try unload kernel module (without X): # kldload i915kms I got black screen and system freeze(keyboard and mouse isn't work) and after 5-10 min just reboot without panic or any message. Hardware is intel GMA 3150. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 16:29:08 2014 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 EA5102A2 for ; Fri, 17 Oct 2014 16:29: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 D254AD62 for ; Fri, 17 Oct 2014 16:29: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 s9HGT8lL086993 for ; Fri, 17 Oct 2014 16:29:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194421] New: [vt] output still messy and discontinuous. Date: Fri, 17 Oct 2014 16:29:08 +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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sasamotikomi@gmail.com X-Bugzilla-Status: Needs Triage 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: Fri, 17 Oct 2014 16:29:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194421 Bug ID: 194421 Summary: [vt] output still messy and discontinuous. Product: Base System Version: 10.0-STABLE Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: sasamotikomi@gmail.com I tested (intel GMA 3150) 10.1-BETA 2/3 and 10.1-RC1/2 output still dirty and occurs in spurts and not so smooth compared with SYSCONS. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 16:59:20 2014 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 B1D10C71 for ; Fri, 17 Oct 2014 16:59: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 9996DF8 for ; Fri, 17 Oct 2014 16:59: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 s9HGxKlw072681 for ; Fri, 17 Oct 2014 16:59:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194421] [vt] output still messy and discontinuous. Date: Fri, 17 Oct 2014 16:59:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: vt X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords 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, 17 Oct 2014 16:59:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194421 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |vt CC| |emaste@freebsd.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 17:00:30 2014 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 DA931DC5 for ; Fri, 17 Oct 2014 17:00:30 +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 C0C7A1A4 for ; Fri, 17 Oct 2014 17:00: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 s9HH0U2E082720 for ; Fri, 17 Oct 2014 17:00:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194421] [vt] output still messy and discontinuous. Date: Fri, 17 Oct 2014 17:00: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.0-STABLE X-Bugzilla-Keywords: vt X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: Needs Triage 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, 17 Oct 2014 17:00:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194421 --- Comment #1 from Ed Maste --- Can you please quantify "dirty"? Perhaps a video showing what you observe. Also, please add details on the system. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 18:23:16 2014 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 64F37C6D for ; Fri, 17 Oct 2014 18:23: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 4C2A4B89 for ; Fri, 17 Oct 2014 18:23: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 s9HINGPT055351 for ; Fri, 17 Oct 2014 18:23:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194420] unloading i915kms causes black screen and reboot. Date: Fri, 17 Oct 2014 18:23: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: 10.0-STABLE X-Bugzilla-Keywords: i915 X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cc 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: Fri, 17 Oct 2014 18:23:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194420 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |i915 Status|Needs Triage |In Discussion CC| |emaste@freebsd.org Summary|[vt] unloading i915kms |unloading i915kms causes |causes black screen and |black screen and reboot. |reboot. | --- Comment #1 from Ed Maste --- > If I try unload kernel module (without X): > # kldload i915kms Presumably you meant "kldunload i915kms" there. This is an issue with the i915 driver, it is not currently unloadable. (There is a related vt issue in code review D687, but the driver needs to be sorted out first for that to matter here. https://reviews.freebsd.org/D687 ) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 18:37:16 2014 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 2FDC2185 for ; Fri, 17 Oct 2014 18:37: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 18215CAD for ; Fri, 17 Oct 2014 18:37: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 s9HIbFag094646 for ; Fri, 17 Oct 2014 18:37:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194424] New: mountd(8): feature enhancement: no DNS, ip only Date: Fri, 17 Oct 2014 18:37:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ldang@nahannisys.com X-Bugzilla-Status: Needs Triage 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, 17 Oct 2014 18:37:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194424 Bug ID: 194424 Summary: mountd(8): feature enhancement: no DNS, ip only Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: ldang@nahannisys.com Created attachment 148395 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=148395&action=edit mountd ip-only option In an environment without reverse DNS for dynamic clients, mounting NFS fileystems take a delay until mountd fails to get the DNS entry for the client. This patch adds an "-i" switch to use only IP addresses for everything. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 18:50:35 2014 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 5818A2F9 for ; Fri, 17 Oct 2014 18:50: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 406A7DB8 for ; Fri, 17 Oct 2014 18:50: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 s9HIoZNm009392 for ; Fri, 17 Oct 2014 18:50:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194421] [vt] output still messy and discontinuous. Date: Fri, 17 Oct 2014 18:50:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: vt X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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: Fri, 17 Oct 2014 18:50:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194421 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |In Discussion -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 19:13:31 2014 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 8D7D3746 for ; Fri, 17 Oct 2014 19:13: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 7527DBC for ; Fri, 17 Oct 2014 19:13: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 s9HJDVST026926 for ; Fri, 17 Oct 2014 19:13:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194420] unloading i915kms causes black screen and reboot. Date: Fri, 17 Oct 2014 19:13: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.0-STABLE X-Bugzilla-Keywords: i915 X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: sasamotikomi@gmail.com X-Bugzilla-Status: In Discussion 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, 17 Oct 2014 19:13:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194420 --- Comment #2 from sasamotikomi@gmail.com --- (In reply to Ed Maste from comment #1) > > If I try unload kernel module (without X): > > # kldload i915kms > > Presumably you meant "kldunload i915kms" there. This is an issue with the > i915 driver, it is not currently unloadable. > > (There is a related vt issue in code review D687, but the driver needs to be > sorted out first for that to matter here. https://reviews.freebsd.org/D687 ) Yes, sorry it's my mistake, this is look like my problem, it's patch should include in RC3? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 19:16:06 2014 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 C51D37CA for ; Fri, 17 Oct 2014 19:16: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 AC860D7 for ; Fri, 17 Oct 2014 19:16: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 s9HJG6Vg028532 for ; Fri, 17 Oct 2014 19:16:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194425] New: mountd(8): feature enhancement: restrict exports to authorized hosts Date: Fri, 17 Oct 2014 19:16:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ldang@nahannisys.com X-Bugzilla-Status: Needs Triage 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, 17 Oct 2014 19:16:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194425 Bug ID: 194425 Summary: mountd(8): feature enhancement: restrict exports to authorized hosts Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: ldang@nahannisys.com Created attachment 148396 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=148396&action=edit new option to restrict exports in mountd Currently mountd will return all entries for exports and dump requests. In some cases it is desirable for these to be restricted to only authorized hosts or completely hidden. This feature is available in commercial products, such as EMC (https://community.emc.com/docs/DOC-7003) and HP-UX. The attached patch has three options to restrict exports results, using a new "-x" switch: * visible = default, all visible * host = only return results applicable to the host * hide = fully hidden -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 19:42:18 2014 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 6253A12D for ; Fri, 17 Oct 2014 19:42: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 F0C673B0 for ; Fri, 17 Oct 2014 19:42: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 s9HJgH9C085435 for ; Fri, 17 Oct 2014 19:42:17 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194420] unloading i915kms causes black screen and reboot. Date: Fri, 17 Oct 2014 19:42:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: i915 X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: In Discussion 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, 17 Oct 2014 19:42:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194420 --- Comment #3 from Ed Maste --- The change in code review is not in 10.1-RC3 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 23:42:54 2014 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 7226DDF3 for ; Fri, 17 Oct 2014 23:42: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 58ED8F12 for ; Fri, 17 Oct 2014 23:42: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 s9HNgs5S038487 for ; Fri, 17 Oct 2014 23:42:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194359] bsdinstall(8) should set active flag in GPT PMBR if not booting using EFI Date: Fri, 17 Oct 2014 23:42:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-BETA3 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component 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: Fri, 17 Oct 2014 23:42:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194359 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Component|misc |bin Summary|bsdinstall should set |bsdinstall(8) should set |active flag in GPT PMBR if |active flag in GPT PMBR if |not booting using EFI |not booting using EFI --- Comment #15 from Mark Linimon --- reclassify. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 23:44:44 2014 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 09DD1EE9 for ; Fri, 17 Oct 2014 23:44: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 E51C2F2D for ; Fri, 17 Oct 2014 23:44: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 s9HNihLx039372 for ; Fri, 17 Oct 2014 23:44:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194121] device.hints not honored when selecting UART for system console Date: Fri, 17 Oct 2014 23:44:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Needs Triage 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: Fri, 17 Oct 2014 23:44:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194121 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Component|misc |conf --- Comment #1 from Mark Linimon --- reclassify. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 23:46:43 2014 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 E97A6F51 for ; Fri, 17 Oct 2014 23:46: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 CF080F46 for ; Fri, 17 Oct 2014 23:46: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 s9HNkhXP040578 for ; Fri, 17 Oct 2014 23:46:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193944] pkg version -Rv reports wrong version when two repositories in use. Date: Fri, 17 Oct 2014 23:46:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component version assigned_to product 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, 17 Oct 2014 23:46:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193944 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Component|misc |Individual Port(s) Version|9.3-RELEASE |Latest Assignee|freebsd-bugs@FreeBSD.org |pkg@FreeBSD.org Product|Base System |Ports Tree --- Comment #1 from Mark Linimon --- reclassify. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 23:48:55 2014 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 04E91FFE for ; Fri, 17 Oct 2014 23: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 DF87AF5C for ; Fri, 17 Oct 2014 23: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 s9HNmsnS041547 for ; Fri, 17 Oct 2014 23:48:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192857] graphics/netpbm build fails and breaks releng/9.3 release build Date: Fri, 17 Oct 2014 23:48:55 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: dinoex@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component version assigned_to product 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: Fri, 17 Oct 2014 23:48:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192857 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Component|misc |Individual Port(s) Version|9.3-RELEASE |Latest Assignee|freebsd-bugs@FreeBSD.org |dinoex@FreeBSD.org Product|Base System |Ports Tree Summary|netpbm build fails and |graphics/netpbm build fails |breaks releng/9.3 release |and breaks releng/9.3 |build |release build --- Comment #1 from Mark Linimon --- reclassify and assign. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 17 23:49:02 2014 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 8D6B7D2 for ; Fri, 17 Oct 2014 23:49: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 75156F61 for ; Fri, 17 Oct 2014 23:49: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 s9HNn2Dg041592 for ; Fri, 17 Oct 2014 23:49:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194439] New: mld_v1_transmit_report corrupts memory Date: Fri, 17 Oct 2014 23:49: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 Some People X-Bugzilla-Who: Herbie.Robinson@stratus.com X-Bugzilla-Status: Needs Triage 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: Fri, 17 Oct 2014 23:49:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194439 Bug ID: 194439 Summary: mld_v1_transmit_report corrupts memory Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: Herbie.Robinson@stratus.com The "MH_ALIGN(mh, sizeof(struct ip6_hdr));" in mld_v1_transmit_report should be "MH_ALIGN(mh, sizeof(struct ip6_hdr)+sizeof(struct mld_hdr));". The current code will always walk off the end of the buffer and corrupt whatever memory follows. It's a good thing that mldv2 is widely supported :-) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 18 00:03:36 2014 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 51F9E291 for ; Sat, 18 Oct 2014 00:03: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 383F618E for ; Sat, 18 Oct 2014 00:03: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 s9I03aPY050476 for ; Sat, 18 Oct 2014 00:03:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194401] [src/include/Makefile] [patch] bsd.port.mk's OSVERSION change interferes with option WITHOUT_TOOLCHAIN in src.conf Date: Sat, 18 Oct 2014 00:03:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Needs Triage 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: Sat, 18 Oct 2014 00:03:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194401 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|bsd.port.mk's OSVERSION |[src/include/Makefile] |change interferes with |[patch] bsd.port.mk's |option WITHOUT_TOOLCHAIN in |OSVERSION change interferes |src.conf |with option | |WITHOUT_TOOLCHAIN in | |src.conf -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 18 01:02:53 2014 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 01E32912 for ; Sat, 18 Oct 2014 01:02: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 D97D28C7 for ; Sat, 18 Oct 2014 01:02:52 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s9I12qMC008954 for ; Sat, 18 Oct 2014 01:02:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194311] [ixgbe] DROP_EN needs to be set early to avoid RX queue hanging Date: Sat, 18 Oct 2014 01:02: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Needs MFC 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: Sat, 18 Oct 2014 01:02:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194311 --- Comment #2 from commit-hook@freebsd.org --- A commit references this bug: Author: adrian Date: Sat Oct 18 01:02:31 UTC 2014 New revision: 273244 URL: https://svnweb.freebsd.org/changeset/base/273244 Log: MFC r273112: Set the DROP_EN bit before the RX queue is brought up and active. He noticed issues setting this bit in SRRCTL after the queue was up, so doing it from the sysctl handler isn't enough and may not actually work correctly. This commit doesn't remove the sysctl path or try to change its behaviour. I'll talk with others about how to finish fixing that before I tackle that. PR: kern/194311 Submitted by: luigi MFC after: 3 days Sponsored by: Norse Corp, Inc Changes: _U stable/10/ stable/10/sys/dev/ixgbe/ixgbe.c -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 18 01:06:25 2014 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 37BEAA41 for ; Sat, 18 Oct 2014 01:06: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 1E8A38F3 for ; Sat, 18 Oct 2014 01:06: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 s9I16OxZ011088 for ; Sat, 18 Oct 2014 01:06:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194311] [ixgbe] DROP_EN needs to be set early to avoid RX queue hanging Date: Sat, 18 Oct 2014 01:06: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adrian@freebsd.org X-Bugzilla-Status: Issue Resolved 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: Sat, 18 Oct 2014 01:06:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194311 Adrian Chadd changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs MFC |Issue Resolved Resolution|--- |FIXED --- Comment #3 from Adrian Chadd --- all done! Thanks Luigi! -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 18 14:35:51 2014 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 CDCEF663 for ; Sat, 18 Oct 2014 14:35: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 B49C35FA for ; Sat, 18 Oct 2014 14:35: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 s9IEZpsa051370 for ; Sat, 18 Oct 2014 14:35:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 117711] [rpc] rpcbind binds to all interfaces on random ports even when using the -h flag Date: Sat, 18 Oct 2014 14:35: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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: slaytanic@gmail.com X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: version 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: Sat, 18 Oct 2014 14:35:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=117711 slaytanic@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Version|6.3-PRERELEASE |10.0-STABLE 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 Sat Oct 18 17:24:24 2014 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 A3A0CD9C for ; Sat, 18 Oct 2014 17:24: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 8ABC46C8 for ; Sat, 18 Oct 2014 17:24: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 s9IHOOxv078068 for ; Sat, 18 Oct 2014 17:24:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 117711] [rpc] rpcbind binds to all interfaces on random ports even when using the -h flag Date: Sat, 18 Oct 2014 17:24: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.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: hrs@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: hrs@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, 18 Oct 2014 17:24:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=117711 Hiroki Sato changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hrs@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |hrs@FreeBSD.org --- Comment #12 from Hiroki Sato --- I will look into this. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 18 17:48:13 2014 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 C15F4610 for ; Sat, 18 Oct 2014 17:48: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 A8AC68E8 for ; Sat, 18 Oct 2014 17:48: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 s9IHmDks030426 for ; Sat, 18 Oct 2014 17:48:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192539] Ports Query: wxgtk30 & wxgtk29 aren't found Date: Sat, 18 Oct 2014 17:48:13 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: antumdeluge@gmail.com X-Bugzilla-Status: Needs Triage 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: Sat, 18 Oct 2014 17:48:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192539 --- Comment #3 from Jordan Irwin --- Here's a little more clarification of what is affected. wxgtk29 is the only version that is found searching the ports collection. None of them are found using "pkg search" $ make quicksearch name=wxgtk28 $ make quicksearch name=wxgtk29 Port: x11-toolkits/wxgtk29 Moved: x11-toolkits/wxgtk30 Date: 2014-03-24 Reason: wxGTK 2.9 was a development version superseded by the 3.0 release $ make quicksearch name=wxgtk30 $ $ pkg search wxgtk28 $ pkg search wxgtk29 $ pkg search wxgtk30 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 18 19:15:10 2014 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 0D152B63 for ; Sat, 18 Oct 2014 19:15: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 E8C2761 for ; Sat, 18 Oct 2014 19:15: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 s9IJF9JQ051468 for ; Sat, 18 Oct 2014 19:15:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194453] New: [dummynet] pipe config bw parameter is limited to 2Gbits per second Date: Sat, 18 Oct 2014 19:15:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: boba@boba.name X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: Normal 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: Sat, 18 Oct 2014 19:15:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194453 Bug ID: 194453 Summary: [dummynet] pipe config bw parameter is limited to 2Gbits per second Product: Base System Version: 10.0-STABLE Hardware: Any OS: Any Status: Needs Triage Severity: Affects Many People Priority: Normal Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: boba@boba.name It's impossible to create "pipe" with bandwidth higher than 2Gbits per second. Possible due to "signed" type of variable. # ipfw pipe 1 config bw 2700mbit/s ipfw: bandwidth too large -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 18 20:45:20 2014 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 24D2B6F6 for ; Sat, 18 Oct 2014 20:45: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 0657E9E4 for ; Sat, 18 Oct 2014 20:45: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 s9IKjJtk099606 for ; Sat, 18 Oct 2014 20:45:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194455] New: [PATCH] Preserve lowmem for devices on large memory machines Date: Sat, 18 Oct 2014 20:45:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: conrad.meyer@isilon.com X-Bugzilla-Status: Needs Triage 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, 18 Oct 2014 20:45:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194455 Bug ID: 194455 Summary: [PATCH] Preserve lowmem for devices on large memory machines Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: conrad.meyer@isilon.com Created attachment 148440 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=148440&action=edit ( applies with -p1 on CURRENT ~r273263 ) Log: ==================================8<================================== Add an intermediate VM_FREELIST "DMA32" between DEFAULT and ISADMA on AMD64. Physical allocations try freelists ascending, so the effect is to prefer DEFAULT, then DMA32, then ISADMA. This leaves low memory available for things that need it (DMA) on large-memory systems which statically allocate a lot (e.g. bufs). Sponsored by: EMC / Isilon storage division ==================================8<================================== Historical note/context: So, we have 96-256 GB systems, and scale nbufs up with memory. On these systems we tune for much more than 4GB in bufs. It turns out the 'buf' static array is allocated from physmem fairly early (along with some other things that scale with memory), and without this change, devices starved for 32-bit DMA space. Internally, we had just bumped the ISADMA region from 16MB (24-bit) to 4GB. I think the attached patch with a seperate 32-bit DMA region is slightly cleaner (and avoids other devices starving out ISA BUS DMA devices, if those still exist). But, either approach fixes the problem for us. So, if people object to adding another freelist, a compromise might be renaming the ISADMA freelist to "DMA" and bumping the region up to 32 bits. Testing on an AMD64 VM: # sysctl vm.phys_free vm.phys_free: DOMAIN 0: FREE LIST 0: ORDER (SIZE) | NUMBER | POOL 0 | POOL 1 | POOL 2 -- -- -- -- -- -- -- -- 12 ( 16384K) | 257 | 0 | 0 11 ( 8192K) | 0 | 0 | 0 10 ( 4096K) | 2 | 1 | 0 9 ( 2048K) | 2 | 0 | 0 8 ( 1024K) | 1 | 0 | 0 7 ( 512K) | 1 | 0 | 0 6 ( 256K) | 1 | 0 | 0 5 ( 128K) | 0 | 2 | 0 4 ( 64K) | 0 | 1 | 0 3 ( 32K) | 4 | 1 | 0 2 ( 16K) | 3 | 3 | 0 1 ( 8K) | 0 | 9 | 0 0 ( 4K) | 1 | 1 | 0 FREE LIST 1: ORDER (SIZE) | NUMBER | POOL 0 | POOL 1 | POOL 2 -- -- -- -- -- -- -- -- 12 ( 16384K) | 221 | 0 | 0 11 ( 8192K) | 1 | 0 | 0 10 ( 4096K) | 0 | 0 | 0 9 ( 2048K) | 1 | 0 | 0 8 ( 1024K) | 0 | 0 | 0 7 ( 512K) | 1 | 0 | 0 6 ( 256K) | 1 | 0 | 0 5 ( 128K) | 1 | 0 | 0 4 ( 64K) | 1 | 0 | 0 3 ( 32K) | 0 | 0 | 0 2 ( 16K) | 0 | 0 | 0 1 ( 8K) | 0 | 0 | 0 0 ( 4K) | 1 | 0 | 0 FREE LIST 2: ORDER (SIZE) | NUMBER | POOL 0 | POOL 1 | POOL 2 -- -- -- -- -- -- -- -- 12 ( 16384K) | 0 | 0 | 0 11 ( 8192K) | 0 | 0 | 0 10 ( 4096K) | 0 | 0 | 0 9 ( 2048K) | 0 | 0 | 0 8 ( 1024K) | 1 | 0 | 0 7 ( 512K) | 0 | 0 | 0 6 ( 256K) | 1 | 0 | 0 5 ( 128K) | 1 | 0 | 0 4 ( 64K) | 2 | 0 | 0 3 ( 32K) | 2 | 0 | 0 2 ( 16K) | 1 | 0 | 0 1 ( 8K) | 0 | 0 | 0 0 ( 4K) | 1 | 0 | 0 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 18 20:47:59 2014 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 A4252750 for ; Sat, 18 Oct 2014 20:47: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 8B0219F3 for ; Sat, 18 Oct 2014 20:47: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 s9IKlxd9001257 for ; Sat, 18 Oct 2014 20:47:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194455] [PATCH] Preserve lowmem for devices on large memory machines Date: Sat, 18 Oct 2014 20:47: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: conrad.meyer@isilon.com X-Bugzilla-Status: Needs Triage 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: Sat, 18 Oct 2014 20:47:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194455 --- Comment #1 from Conrad Meyer --- For what it's worth, this is basically identical to the problem and patch in bug 185727. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 18 21:22:24 2014 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 D0F6AD96 for ; Sat, 18 Oct 2014 21:22: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 B8365CFD for ; Sat, 18 Oct 2014 21:22: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 s9ILMOjv053367 for ; Sat, 18 Oct 2014 21:22:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194416] Testing123 Date: Sat, 18 Oct 2014 21:22:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gavin@FreeBSD.org X-Bugzilla-Status: Issue Resolved 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: Sat, 18 Oct 2014 21:22:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194416 Gavin Atkinson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Issue Resolved Resolution|--- |Not A Bug -- You are receiving this mail because: You are the assignee for the bug.