From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 3 01:57: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ACCD9B46 for ; Sun, 3 Aug 2014 01:57:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D823290E for ; Sun, 3 Aug 2014 01:57:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s731v2GE089378 for ; Sun, 3 Aug 2014 01:57:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192350] New: [ipf] ipnat via kld doesn't work with INET6 kernel option Date: Sun, 03 Aug 2014 01:57: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: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: newnix.ua@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 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Aug 2014 01:57:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192350 Bug ID: 192350 Summary: [ipf] ipnat via kld doesn't work with INET6 kernel option Product: Base System Version: 10.0-STABLE Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: newnix.ua@gmail.com Created attachment 145286 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145286&action=edit ipv6 fix to ip_compat.h to work with ipf/ipnat Just boot into this livecd ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/amd64/amd64/ISO-IMAGES/10.0/FreeBSD-10.0-STABLE-amd64-20140725-r269083-disc1.iso or i386 one Then type kldload ipfilter && ipnat -l you'll get this: 70:ioctl(SIOCGNATS) object size mismatch for copying out ipfobj To fix this in installed system: cd /usr/src patch -p0 < /root/ipnat-ip6fix-ip_compat.diff cd sys/modules/ipfilter/ && make clean cd ../../../sbin/ipf && make all install clean Then: ipnat -l List of active MAP/Redirect filters: List of active sessions: Looks like Cy Schubert broke it with this fix https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190964 Here is what was changed in his fix that breaks ipnat when INET6 is enabled: root@amd64older:/usr/src/sys/contrib/ipfilter # diff -r /usr/src/sys/contrib/ipfilter /root/src/sys/contrib/ipfilter diff -r /usr/src/sys/contrib/ipfilter/netinet/ip_compat.h /root/src/sys/contrib/ipfilter/netinet/ip_compat.h 7c7 < * $FreeBSD: stable/10/sys/contrib/ipfilter/netinet/ip_compat.h 255754 2013-09-21 03:57:56Z cy $ --- > * $FreeBSD: stable/10/sys/contrib/ipfilter/netinet/ip_compat.h 268937 2014-07-21 06:45:19Z cy $ 36,39d35 < #if defined(__FreeBSD_version) && (__FreeBSD_version >= 400000) && \ < !defined(_KERNEL) && !defined(USE_INET6) && !defined(NOINET6) < # define USE_INET6 < #endif Sure this def utilizes an old way to pass kernel build options so NOINET6 does not work. But deleting this ifdef completely forces to compile userland ipf without -DUSE_INET6. So we should use MK_INET_SUPPORT in some way and it was made in this same file (ip_compat.h): # define HAS_SYS_MD5_H 1 # if defined(_KERNEL) # include "opt_bpf.h" # include "opt_inet6.h" # if defined(INET6) && !defined(USE_INET6) # define USE_INET6 # endif # endif As you can see for some reason it was made not to work with userland. Is there a strong reason for this? Is it safe to enable it here or this must be done in some other way? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 3 01:59:22 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECFB8BFB for ; Sun, 3 Aug 2014 01:59:22 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D46E9291E for ; Sun, 3 Aug 2014 01:59:22 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s731xMcp090219 for ; Sun, 3 Aug 2014 01:59:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192350] [ipf] ipnat doesn't work with INET6 kernel option Date: Sun, 03 Aug 2014 01:59:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: newnix.ua@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Aug 2014 01:59:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192350 Daniil Chubiy changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |newnix.ua@gmail.com Summary|[ipf] ipnat via kld doesn't |[ipf] ipnat doesn't work |work with INET6 kernel |with INET6 kernel option |option | -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 3 16:09: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DAE42CE for ; Sun, 3 Aug 2014 16:09:42 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C32062033 for ; Sun, 3 Aug 2014 16:09:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s73G9gaD004176 for ; Sun, 3 Aug 2014 16:09:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192315] high load average while idle, slow keyboard reaction Date: Sun, 03 Aug 2014 16:09:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me 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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Aug 2014 16:09:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192315 --- Comment #12 from Gavin Atkinson --- Can you attach a verbose dmesg please? Can you also try the patch attached to bug 192316 and see if that makes any difference? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 3 17:35:24 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC2F25E6 for ; Sun, 3 Aug 2014 17:35:24 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C3F26289D for ; Sun, 3 Aug 2014 17:35:24 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s73HZOJB012217 for ; Sun, 3 Aug 2014 17:35:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192303] C++11 std::list<>::remove_if() visits elements multiple times Date: Sun, 03 Aug 2014 17:35:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: tijl@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-toolchain@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Aug 2014 17:35:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192303 Tijl Coosemans changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tijl@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |freebsd-toolchain@FreeBSD.o | |rg -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73DABEE for ; Mon, 4 Aug 2014 08:00:03 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 612332FBC for ; Mon, 4 Aug 2014 08:00:03 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s74803I8092534 for ; Mon, 4 Aug 2014 08:00:03 GMT (envelope-from bugzilla-noreply@freebsd.org) Message-Id: <201408040800.s74803I8092534@kenobi.freebsd.org> From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [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, 04 Aug 2014 08:00:03 +0000 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 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. (9 bugs) Bug 57630: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=57630 Severity: Affects Only Me Priority: Normal Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: lptcontrol(8) gives "device busy" if device turned off 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 184507: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184507 Severity: Affects Some People Priority: Normal Hardware: Any Assignee: freebsd-bugs@FreeBSD.org Status: Needs MFC Resolution: Summary: [patch] [libfetch] allow hiding User-Agent with empty string 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 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 09:58:06 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 229D95DF for ; Mon, 4 Aug 2014 09:58:06 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0AC7A2069 for ; Mon, 4 Aug 2014 09:58:06 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s749w5Z5092932 for ; Mon, 4 Aug 2014 09:58:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192373] New: Add new fortune(6) FreeBSD tips Date: Mon, 04 Aug 2014 09:58:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: easy X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: lme@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 keywords 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 09:58:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192373 Bug ID: 192373 Summary: Add new fortune(6) FreeBSD tips Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Keywords: easy Severity: Affects Some People Priority: Normal Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: lme@FreeBSD.org Created attachment 145335 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145335&action=edit Diff for /usr/src//games/fortune/datfiles/freebsd-tips Attached are some new FreeBSD tips for fortune(6). They apply to FreeBSD >10 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 10:06:04 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2C8FC911 for ; Mon, 4 Aug 2014 10:06:04 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 14FF9215D for ; Mon, 4 Aug 2014 10:06:04 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s74A63LU008383 for ; Mon, 4 Aug 2014 10:06:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192374] New: Add new commands to rc(8): describe and extracommands Date: Mon, 04 Aug 2014 10:06:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: lme@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 bug_file_loc 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 10:06:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192374 Bug ID: 192374 Summary: Add new commands to rc(8): describe and extracommands Product: Base System Version: 11.0-CURRENT Hardware: Any URL: https://phabric.freebsd.org/D452 OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: lme@FreeBSD.org The patch adds to new commands to rc(8). This is what can be done with it: $ service sshd describe Secure Shell Daemon $ service sshd extracommands configtest keygen reload It also adds a "descr" variable to sshd's rc script and documents the additional rc options. See https://phabric.freebsd.org/D451 how to print them using service(8). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 10:22: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21D80A97 for ; Mon, 4 Aug 2014 10:22:22 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0982423EE for ; Mon, 4 Aug 2014 10:22:22 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s74AMLSL048112 for ; Mon, 4 Aug 2014 10:22:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 156768] [patch] sockstat(1): missing spaces between long fields in output Date: Mon, 04 Aug 2014 10:22: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: demon@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 10:22:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=156768 Dmitry Sivachenko changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |demon@FreeBSD.org --- Comment #3 from Dmitry Sivachenko --- Created attachment 145337 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145337&action=edit Always print space after procname I suggest at least the attached fix: limit username to 8 characters not to break formatting for long usernames and (more important) to always print at least one space after procname, otherwise for long procname sticks to PID and this makes mahines parsing impossible: transmission transmissi813 9 tcp4 *:9091 *:* -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 12:41:44 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5843463 for ; Mon, 4 Aug 2014 12:41:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CDFC62704 for ; Mon, 4 Aug 2014 12:41:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s74CfiFe030206 for ; Mon, 4 Aug 2014 12:41:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192379] New: mount_nfs -o vers= compatibility with Linux, Solaris, and OSX Date: Mon, 04 Aug 2014 12:41:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bz@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 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 12:41:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192379 Bug ID: 192379 Summary: mount_nfs -o vers= compatibility with Linux, Solaris, and OSX 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: bz@FreeBSD.org Created attachment 145339 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145339&action=edit Provide -o vers= compatibility for mount_nfs Our mount_nfs does use -o nfsv<2|3|4> or -2 or -3 to specify the version. OSX (these days), Solaris, and Linux use -o vers=<2,3,4>. With the upcoming autofs support we can make a lot of (entrerprisy) setups getting mount options from LDAP just work by providing -o vers= compatibility. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 12:45:50 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B4E850A for ; Mon, 4 Aug 2014 12:45:50 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 84547272E for ; Mon, 4 Aug 2014 12:45:50 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s74Cjo8h056861 for ; Mon, 4 Aug 2014 12:45:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192379] mount_nfs -o vers= compatibility with Linux, Solaris, and OSX Date: Mon, 04 Aug 2014 12:45:50 +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: bz@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: bz@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 12:45:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192379 Bjoern A. Zeeb changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bz@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |bz@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 14:58:08 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6D75A32C for ; Mon, 4 Aug 2014 14:58:08 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5563629F2 for ; Mon, 4 Aug 2014 14:58:08 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s74Ew8DU065096 for ; Mon, 4 Aug 2014 14:58:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192316] Invariant TSC gets misdetected on Intel Core 2 Duo processors, resulting in sluggish system behavior Date: Mon, 04 Aug 2014 14:58:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch 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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 14:58:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192316 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch CC| |emaste@freebsd.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 15:52: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 684C12EF for ; Mon, 4 Aug 2014 15:52:07 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 50222221D for ; Mon, 4 Aug 2014 15:52:07 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s74Fq728024132 for ; Mon, 4 Aug 2014 15:52:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192374] Add new commands to rc(8): describe and extracommands Date: Mon, 04 Aug 2014 15:52:07 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: lme@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 15:52:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192374 --- Comment #1 from Lars Engels --- Created attachment 145347 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145347&action=edit Patch to add descriptions to most rc scripts in /etc/rc.d A first draft of descriptions for most rc scripts in /etc/rc.d Some could be worded better, some have only "XXX" set. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 17:23: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF7485FF for ; Mon, 4 Aug 2014 17:23:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B6C592F9C for ; Mon, 4 Aug 2014 17:23:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s74HN2sB033882 for ; Mon, 4 Aug 2014 17:23:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191981] [patch][dtrace][libproc] demangle() fail to handle non-c++ function name Date: Mon, 04 Aug 2014 17:23:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: markj@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: markj@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 17:23:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191981 Mark Johnston changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |markj@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |markj@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 17:38:06 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5CE08EF6 for ; Mon, 4 Aug 2014 17:38:06 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 446DD2111 for ; Mon, 4 Aug 2014 17:38:06 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s74Hc60B068344 for ; Mon, 4 Aug 2014 17:38:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 186835] mfiutil(8) broke between 9.1-RELEASE and 9.2-RELEASE [regression] Date: Mon, 04 Aug 2014 17:38:06 +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.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: zurvan.akarana@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 17:38:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186835 zurvan.akarana@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |zurvan.akarana@gmail.com --- Comment #2 from zurvan.akarana@gmail.com --- The bug has been addressed here: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184405 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 17:43: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7CCA01DC for ; Mon, 4 Aug 2014 17:43:12 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 63D5321E7 for ; Mon, 4 Aug 2014 17:43:12 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s74HhCxC074804 for ; Mon, 4 Aug 2014 17:43:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 186835] mfiutil(8) broke between 9.1-RELEASE and 9.2-RELEASE [regression] Date: Mon, 04 Aug 2014 17:43: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: 9.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markj@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 17:43:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186835 Mark Johnston changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved CC| |markj@FreeBSD.org Resolution|--- |DUPLICATE --- Comment #3 from Mark Johnston --- *** This bug has been marked as a duplicate of bug 184405 *** -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 4 19:51: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9076E9A6 for ; Mon, 4 Aug 2014 19:51:57 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7646C2185 for ; Mon, 4 Aug 2014 19:51:57 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s74JpvBL094308 for ; Mon, 4 Aug 2014 19:51:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192281] [kern] nmdm with bhyve causes kernel panic Date: Mon, 04 Aug 2014 19:51:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: dsmith@johncompanies.com 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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 19:51:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192281 --- Comment #3 from Dave Smith --- (In reply to John Marino from comment #2) > Dave, you should put your "uname -a" information Here it is. FreeBSD jail5.johncompanies.com 10.0-RELEASE-p7 FreeBSD 10.0-RELEASE-p7 #0: Tue Jul 8 06:37:44 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 5 03:03:55 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABF0D357 for ; Tue, 5 Aug 2014 03:03:55 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 93D332175 for ; Tue, 5 Aug 2014 03:03:55 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s7533tla057824 for ; Tue, 5 Aug 2014 03:03:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 179996] [libcrypto] lib32/libcrypto.so.6 causes apache SSL to crash due to wrong opensslconf.h Date: Tue, 05 Aug 2014 03:03:55 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 9.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: john@feith.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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Aug 2014 03:03:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=179996 --- Comment #2 from john@feith.com --- I've upgraded the machines in question to FreeBSD 10 r269288 and am no longer experiencing the problem. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 5 03:32: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0A3395F5 for ; Tue, 5 Aug 2014 03:32:22 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E57F624E2 for ; Tue, 5 Aug 2014 03:32:21 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s753WL3c018520 for ; Tue, 5 Aug 2014 03:32:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 178091] [md/nfs/vfs] md filesystem layering not handled correctly when stacking on top of NFS; works with tmpfs Date: Tue, 05 Aug 2014 03:32:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yaneurabeya@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Aug 2014 03:32:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=178091 yaneurabeya@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[md/nfs/vfs] md filesystem |[md/nfs/vfs] md filesystem |layering not handled |layering not handled |correctly when stacking on |correctly when stacking on |top of NFS; works with |top of NFS; works with |tempfs |tmpfs -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 5 03:39: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D2C6284F for ; Tue, 5 Aug 2014 03:39:00 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB5022543 for ; Tue, 5 Aug 2014 03:39:00 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s753d0Ux034330 for ; Tue, 5 Aug 2014 03:39:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 133286] dd can fill system memory Date: Tue, 05 Aug 2014 03:39: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: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yaneurabeya@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Aug 2014 03:39:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=133286 yaneurabeya@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |yaneurabeya@gmail.com --- Comment #5 from yaneurabeya@gmail.com --- (Just a "drive-by" comment) It might be a good idea to do add iflags/oflags for Linux compatibility; they have an iflags=direct/oflags=direct option, as well as other interesting options for tweaking O_APPEND, O_NONBLOCK, and other O_* flags: https://www.gnu.org/software/coreutils/manual/html_node/dd-invocation.html -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 5 06:59: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67FF3392 for ; Tue, 5 Aug 2014 06:59:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4967C2853 for ; Tue, 5 Aug 2014 06:59:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s756x2WJ049322 for ; Tue, 5 Aug 2014 06:59:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192394] New: Base system bootstrapping broken with gcc; not clang Date: Tue, 05 Aug 2014 06:59:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yaneurabeya@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Aug 2014 06:59:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D192394 Bug ID: 192394 Summary: Base system bootstrapping broken with gcc; not clang Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: yaneurabeya@gmail.com I ran into this build failure after trying to build world @ r269562 with gcc instead of clang; some of the newly added SCTP constants are undefined in t= he header installed in /usr/include/netinet/sctp.h instead of the one installe= d to /usr/obj/...: % uname -a FreeBSD isilon-fuji-current.local 11.0-CURRENT FreeBSD 11.0-CURRENT #16 r268804+343692e(isilon-atf): Mon Jul 14 12:17:25 PDT 2014=20=20=20=20 root@isilon-fuji-current.local:/usr/obj/usr/src/sys/FUJI i386 % svn status ? bw.log M etc/mtree/BSD.tests.dist ? int.out M lib/libnv/Makefile A lib/libnv/tests A lib/libnv/tests/Makefile A + lib/libnv/tests/nvlist_add_test.c > moved from tools/regression/lib/libnv/nvlist_add.c A + lib/libnv/tests/nvlist_exists_test.c > moved from tools/regression/lib/libnv/nvlist_exists.c A + lib/libnv/tests/nvlist_free_test.c > moved from tools/regression/lib/libnv/nvlist_free.c A + lib/libnv/tests/nvlist_get_test.c > moved from tools/regression/lib/libnv/nvlist_get.c A + lib/libnv/tests/nvlist_move_test.c > moved from tools/regression/lib/libnv/nvlist_move.c A + lib/libnv/tests/nvlist_send_recv_test.c > moved from tools/regression/lib/libnv/nvlist_send_recv.c M libexec/rtld-elf/tests/Makefile M libexec/rtld-elf/tests/libpythagoras/Makefile ? nothing.out ? svn-commit.tmp D tools/regression/lib/libnv D tools/regression/lib/libnv/Makefile D tools/regression/lib/libnv/nvlist_add.c > moved to lib/libnv/tests/nvlist_add_test.c D tools/regression/lib/libnv/nvlist_exists.c > moved to lib/libnv/tests/nvlist_exists_test.c D tools/regression/lib/libnv/nvlist_free.c > moved to lib/libnv/tests/nvlist_free_test.c D tools/regression/lib/libnv/nvlist_get.c > moved to lib/libnv/tests/nvlist_get_test.c D tools/regression/lib/libnv/nvlist_move.c > moved to lib/libnv/tests/nvlist_move_test.c D tools/regression/lib/libnv/nvlist_send_recv.c > moved to lib/libnv/tests/nvlist_send_recv_test.c M tools/regression/pjdfstest/tests/misc.sh % cat /etc/src.conf=20 MALLOC_PRODUCTION=3D WITHOUT_ATM=3D WITHOUT_AUDIT=3D WITHOUT_BHYVE=3D WITHOUT_BIND_DNSSEC=3D WITHOUT_BIND_ETC=3D WITHOUT_BIND_LIBS_LWRES=3D WITHOUT_BIND_NAMED=3D WITHOUT_BLUETOOTH=3D #WITHOUT_BMAKE=3D WITHOUT_BSNMP=3D WITHOUT_CALENDAR=3D #WITHOUT_CLANG=3D #WITHOUT_CLANG_IS_CC=3D WITHOUT_CTM=3D #WITHOUT_DICT=3D #WITHOUT_EXAMPLES=3D WITHOUT_FORTRAN=3D WITHOUT_FREEBSD_UPDATE=3D WITHOUT_GAMES=3D #WITH_GCC=3D #WITH_GNUCXX=3D WITHOUT_GCOV=3D WITHOUT_GPIB=3D WITHOUT_GSSAPI=3D WITHOUT_HAST=3D WITHOUT_HESOID=3D WITHOUT_HTML=3D WITHOUT_I4B=3D #WITHOUT_ICONV=3D WITH_ICONV=3D WITHOUT_IPFILTER=3D WITHOUT_IPFW=3D WITHOUT_IPX=3D WITHOUT_KERBEROS=3D #WITH_LIBCPLUSPLUS=3D WITHOUT_LIBKSE=3D #WITHOUT_LOCALES=3D WITHOUT_LPR=3D WITHOUT_MAIL=3D #WITHOUT_MAN=3D WITHOUT_NCP=3D WITHOUT_NDIS=3D WITHOUT_NIS=3D #WITHOUT_NLS=3D WITH_NLS=3D #WITHOUT_NMTREE=3D WITHOUT_NS_CACHING=3D WITHOUT_OBJC=3D WITHOUT_PF=3D WITHOUT_PORTSNAP=3D WITHOUT_PPP=3D WITHOUT_PROFILE=3D WITHOUT_RADIUS=3D WITHOUT_RCMDS=3D WITH_SSP=3D WITHOUT_SVN=3D WITHOUT_SVNLITE=3D WITHOUT_SYSINSTALL=3D WITH_TESTS=3D WITHOUT_WIRELESS=3D WITHOUT_WPA_SUPPLICANT_EAPOL=3D #WITHOUT_ZFS=3D WITH_ZFS=3D DEFAULT_KERNCONF=3D FUJI DEFAULT_KERNCONFDIR=3D /root KERNCONF?=3D ${DEFAULT_KERNCONF} KERNCONFDIR?=3D ${DEFAULT_KERNCONFDIR} .if ${KERNCONFDIR} =3D=3D "${DEFAULT_KERNCONFDIR}" MODULES_OVERRIDE+=3D acl_nfs4 acl_posix1e MODULES_OVERRIDE+=3D aio cd9660 fdescfs mqueue msdosfs nullfs MODULES_OVERRIDE+=3D opensolaris zfs PORTS_MODULES+=3D .endif % env WITHOUT_CLANG=3Dyes WITHOUT_CLANG_BOOTSTRAP=3Dyes WITH_GCC=3Dyes WITH_GNUCXX=3Dyes script bw.log make buildworld -j12 --- sctp_sys_calls.So ---^M /usr/src.svn/lib/libc/net/sctp_sys_calls.c:353:7: error: use of undeclared identifier 'SCTP_ECN_SUPPORTED'^M case SCTP_ECN_SUPPORTED:^M ^^M /usr/src.svn/lib/libc/net/sctp_sys_calls.c:356:7: error: use of undeclared identifier 'SCTP_PR_SUPPORTED'^M case SCTP_PR_SUPPORTED:^M ^^M --- acl_from_text.So ---^M --- sctp_sys_calls.So ---^M /usr/src.svn/lib/libc/net/sctp_sys_calls.c:359:7: error: use of undeclared identifier 'SCTP_RECONFIG_SUPPORTED'^M case SCTP_RECONFIG_SUPPORTED:^M ^^M /usr/src.svn/lib/libc/net/sctp_sys_calls.c:362:7: error: use of undeclared identifier 'SCTP_NRSACK_SUPPORTED'^M case SCTP_NRSACK_SUPPORTED:^M ^^M /usr/src.svn/lib/libc/net/sctp_sys_calls.c:365:7: error: use of undeclared identifier 'SCTP_PKTDROP_SUPPORTED'^M case SCTP_PKTDROP_SUPPORTED:^M ^^M 5 errors generated.^M *** [sctp_sys_calls.So] Error code 1^M ^M make[4]: stopped in /usr/src.svn/lib/libc^M =E2=80=A6 % cat /usr/obj/usr/src.svn/lib/libc/.depend ... sctp_sys_calls.o sctp_sys_calls.po sctp_sys_calls.So: /usr/src.svn/lib/libc/net/sctp_sys_calls.c \ /usr/include/sys/cdefs.h /usr/src.svn/lib/libc/../../include/stdio.h \ /usr/include/sys/_null.h /usr/include/sys/_types.h \ /usr/include/machine/_types.h /usr/include/x86/_types.h \ /usr/src.svn/lib/libc/../../include/string.h \ /usr/src.svn/lib/libc/../../include/strings.h \ /usr/src.svn/lib/libc/../../include/xlocale/_strings.h \ /usr/src.svn/lib/libc/../../include/xlocale/_string.h \ /usr/include/errno.h /usr/src.svn/lib/libc/../../include/stdlib.h \ /usr/src.svn/lib/libc/../../include/unistd.h /usr/include/sys/types.h \ /usr/include/machine/endian.h /usr/include/x86/endian.h \ /usr/include/sys/_pthreadtypes.h /usr/include/sys/_stdint.h \ /usr/include/sys/select.h /usr/include/sys/_sigset.h \ /usr/include/sys/_timeval.h /usr/include/sys/timespec.h \ /usr/include/sys/_timespec.h /usr/include/sys/unistd.h \ /usr/include/sys/socket.h /usr/include/sys/_iovec.h \ /usr/include/machine/_align.h /usr/include/x86/_align.h \ /usr/include/sys/_sockaddr_storage.h /usr/include/sys/syscall.h \ /usr/include/sys/uio.h /usr/include/netinet/in.h \ /usr/include/netinet6/in6.h \ /usr/src.svn/lib/libc/../../include/arpa/inet.h \ /usr/include/netinet/sctp_uio.h /usr/include/stdint.h \ /usr/include/machine/_stdint.h /usr/include/x86/_stdint.h \ /usr/include/sys/endian.h /usr/include/netinet/sctp.h =E2=80=A6 I removed /usr/obj/usr/src.svn/lib/libc/, restarted the build, I ran into t= his issue again. I tried the same thing with my github forked branch as well (j= ust updated), and ran into the same issue. We aren=E2=80=99t using -nostdinc/-nostdinc++/-idirafter/-isysroot/-isystem= though and the headers aren=E2=80=99t included with -I, which is probably the underlyi= ng issue. If I use clang, the build =E2=80=9Cjust works=E2=80=9D =E2=80=94 it picks u= p the right headers in .depend and the libc compile goes through properly. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 5 17:20:49 2014 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA2256A5 for ; Tue, 5 Aug 2014 17:20:49 +0000 (UTC) Received: from eastrmfepo201.cox.net (eastrmfepo201.cox.net [68.230.241.216]) by mx1.freebsd.org (Postfix) with ESMTP id 743882A3E for ; Tue, 5 Aug 2014 17:20:49 +0000 (UTC) Received: from eastrmimpo306 ([68.230.241.238]) by eastrmfepo201.cox.net (InterMail vM.8.01.05.15 201-2260-151-145-20131218) with ESMTP id <20140805125940.FOIA31475.eastrmfepo201.cox.net@eastrmimpo306> for ; Tue, 5 Aug 2014 08:59:40 -0400 Received: from [192.168.3.22] ([72.219.202.186]) by eastrmimpo306 with cox id b0zf1o00C41obj4010zga3; Tue, 05 Aug 2014 08:59:40 -0400 X-CT-Class: Clean X-CT-Score: 0.00 X-CT-RefID: str=0001.0A020202.53E0D53C.006E,ss=1,re=0.000,fgs=0 X-CT-Spam: 0 X-Authority-Analysis: v=2.0 cv=Db7JXIRW c=1 sm=1 a=k40gPPfQ5QH6qv5U/EJc3Q==:17 a=9cW_t1CCXrUA:10 a=f5xKl4ys9bwA:10 a=98O8IpmG-6gA:10 a=Yy86YvJd6bwA:10 a=G8Uczd0VNMoA:10 a=Wajolswj7cQA:10 a=8nJEP1OIZ-IA:10 a=kviXuzpPAAAA:8 a=6I5d2MoRAAAA:8 a=pGLkceISAAAA:8 a=mDV3o1hIAAAA:8 a=GCFC3-G1j7RC8SBE_ygA:9 a=wPNLvfGTeEIA:10 a=fpCqmB3YoxIA:10 a=9IhqxEGarbwA:10 a=SV7veod9ZcQA:10 a=MSl-tDqOz04A:10 a=k40gPPfQ5QH6qv5U/EJc3Q==:117 X-CM-Score: 0.00 Authentication-Results: cox.net; none Message-ID: <53E0D60E.4030206@cox.net> Date: Tue, 05 Aug 2014 09:03:10 -0400 From: "John D. Hendrickson and Sara Darnell" Reply-To: johnandsara2@cox.net User-Agent: Thunderbird 2.0.0.24 (X11/20100228) MIME-Version: 1.0 CC: freebsd-bugs@FreeBSD.org Subject: Re: [Bug 133286] dd can fill system memory References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Aug 2014 17:20:49 -0000 bugzilla-noreply@freebsd.org wrote: > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=133286 > > yaneurabeya@gmail.com changed: > > What |Removed |Added > ---------------------------------------------------------------------------- > CC| |yaneurabeya@gmail.com > > --- Comment #5 from yaneurabeya@gmail.com --- > (Just a "drive-by" comment) > It might be a good idea to do add iflags/oflags for Linux compatibility; they > have an iflags=direct/oflags=direct option, as well as other interesting > options for tweaking O_APPEND, O_NONBLOCK, and other O_* flags: > https://www.gnu.org/software/coreutils/manual/html_node/dd-invocation.html > so will break software and scripts (or printed books) using dd(1) ? if such a binary is on a rescue disk that may float around, what will the hangups be of not being able to use dd(1) due to versional tweeks ? From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 5 22:01:34 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D414B4D9 for ; Tue, 5 Aug 2014 22:01:34 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB0DF2CD7 for ; Tue, 5 Aug 2014 22:01:34 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s75M1YHJ085350 for ; Tue, 5 Aug 2014 22:01:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191747] [tests] Build failure with MK_TESTS == no and either TARGET=arm/TARGET=armeb or CC=gcc* Date: Tue, 05 Aug 2014 22:01:34 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yaneurabeya@gmail.com 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Aug 2014 22:01:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191747 yaneurabeya@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Issue Resolved Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 6 06:26:27 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D279FA61 for ; Wed, 6 Aug 2014 06:26:27 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2BDA26D5 for ; Wed, 6 Aug 2014 06:26:27 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s766QRxu066049 for ; Wed, 6 Aug 2014 06:26:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192417] New: counter overflows in ping(8) Date: Wed, 06 Aug 2014 06:26:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: demon@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 06:26:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192417 Bug ID: 192417 Summary: counter overflows in ping(8) Product: Base System Version: 10.0-STABLE Hardware: amd64 OS: Any Status: Needs Triage Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: demon@FreeBSD.org After leaving ping(8) running for several hours, I get the following statistics: 50199 packets transmitted, 50194 packets received, +5 duplicates, 0.0% packet loss round-trip min/avg/max/stddev = -1120352444249.007/-111591111.331/237.479/11180738897.087 ms Looks like some variables overflow. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 6 10:01: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDE444D5 for ; Wed, 6 Aug 2014 10:01:58 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D67C82025 for ; Wed, 6 Aug 2014 10:01:58 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s76A1wMJ077097 for ; Wed, 6 Aug 2014 10:01:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192426] New: [panicKernel panic when using BPF Date: Wed, 06 Aug 2014 10:01:59 +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-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: robert@octarineparrot.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 10:01:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192426 Bug ID: 192426 Summary: [panicKernel panic when using BPF Product: Base System Version: 10.0-RELEASE Hardware: amd64 OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: robert@octarineparrot.com -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 6 10:04: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B985632 for ; Wed, 6 Aug 2014 10:04:12 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 337F2204A for ; Wed, 6 Aug 2014 10:04:12 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s76A4CQt078219 for ; Wed, 6 Aug 2014 10:04:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192426] [panic]: Kernel panic when using BPF Date: Wed, 06 Aug 2014 10:04: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: robert@octarineparrot.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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 10:04:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192426 Robert Clipsham changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[panicKernel panic when |[panic]: Kernel panic when |using BPF |using BPF --- Comment #1 from Robert Clipsham --- When using BPF, I consistently get a kernel panic. I have attached the core.txt.0 file that was generated. If there is anything more I can do to help track this down please ask. Sorry this was initially empty, I hit enter in the wrong place and ended up submitting it. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 6 10:05:51 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B746268B for ; Wed, 6 Aug 2014 10:05:51 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F18B2057 for ; Wed, 6 Aug 2014 10:05:51 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s76A5p2W078741 for ; Wed, 6 Aug 2014 10:05:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192426] [panic]: Kernel panic when using BPF Date: Wed, 06 Aug 2014 10:05: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-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: robert@octarineparrot.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 10:05:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192426 Robert Clipsham changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |robert@octarineparrot.com --- Comment #2 from Robert Clipsham --- Created attachment 145415 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145415&action=edit Core dump -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 6 10:06:22 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36A336EA for ; Wed, 6 Aug 2014 10:06:22 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17733206D for ; Wed, 6 Aug 2014 10:06:22 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s76A6LJs078937 for ; Wed, 6 Aug 2014 10:06:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192427] New: [patch]clean the formate of sys/conf/NOTES such as '^L' and missing '#' Date: Wed, 06 Aug 2014 10:06: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: amutu@amutu.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 10:06:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192427 Bug ID: 192427 Summary: [patch]clean the formate of sys/conf/NOTES such as '^L' and missing '#' Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: amutu@amutu.com Created attachment 145416 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145416&action=edit path file diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 6959425..bfa1320 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -190,7 +190,6 @@ options GEOM_ZERO # Performance testing helper. # options ROOTDEVNAME=\"ufs:da0s2e\" - ##################################################################### # Scheduler options: # @@ -213,7 +212,7 @@ options ROOTDEVNAME=\"ufs:da0s2e\" options SCHED_4BSD options SCHED_STATS #options SCHED_ULE - + ##################################################################### # SMP OPTIONS: # @@ -290,7 +289,7 @@ options SX_NOINLINE # TURNSTILE_PROFILING enables rudimentary profiling of the hash table # used to hold active lock queues. # UMTX_PROFILING enables rudimentary profiling of the hash table used - to hold active lock queues. +# to hold active lock queues. # WITNESS enables the witness code which detects deadlocks and cycles # during locking operations. # WITNESS_KDB causes the witness code to drop into the kernel debugger if @@ -319,7 +318,6 @@ options SLEEPQUEUE_PROFILING options TURNSTILE_PROFILING options UMTX_PROFILING - ##################################################################### # COMPATIBILITY OPTIONS @@ -360,7 +358,6 @@ options SYSVSHM options SYSVSEM options SYSVMSG - ##################################################################### # DEBUGGING OPTIONS @@ -556,7 +553,6 @@ options COMPILING_LINT # options STACK - ##################################################################### # PERFORMANCE MONITORING OPTIONS @@ -572,7 +568,6 @@ options STACK device hwpmc # Driver (also a loadable module) options HWPMC_HOOKS # Other necessary kernel hooks - ##################################################################### # NETWORKING OPTIONS @@ -1126,7 +1121,6 @@ options CD9660_ICONV options MSDOSFS_ICONV options UDF_ICONV - ##################################################################### # POSIX P1003.1B @@ -1140,7 +1134,7 @@ options P1003_1B_SEMAPHORES # POSIX message queue options P1003_1B_MQUEUE - + ##################################################################### # SECURITY POLICY PARAMETERS @@ -1165,7 +1159,6 @@ options MAC_TEST options CAPABILITIES # fine-grained rights on file descriptors options CAPABILITY_MODE # sandboxes with no global namespace access - ##################################################################### # CLOCK OPTIONS @@ -1194,7 +1187,6 @@ options PPS_SYNC options FFCLOCK - ##################################################################### # SCSI DEVICES @@ -1357,7 +1349,6 @@ options SCSI_PT_DEFAULT_TIMEOUT=60 # a topology with the SES device that's on the box these drives are in.... options SES_ENABLE_PASSTHROUGH - ##################################################################### # MISCELLANEOUS DEVICES AND OPTIONS @@ -1374,7 +1365,6 @@ options LIBICONV # Size of the kernel message buffer. Should be N * pagesize. options MSGBUF_SIZE=40960 - ##################################################################### # HARDWARE DEVICE CONFIGURATION @@ -2629,7 +2619,6 @@ options NSFBUFS=1024 # options DEBUG_LOCKS - ##################################################################### # USB support # UHCI controller @@ -2829,8 +2818,6 @@ options UBSEC_DEBUG # enable debugging support: hw.ubsec.debug options UBSEC_RNDTEST # enable rndtest support ##################################################################### - - # # Embedded system options: # -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 6 10:09: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4ADE47C0 for ; Wed, 6 Aug 2014 10:09:55 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3286E20A9 for ; Wed, 6 Aug 2014 10:09:55 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s76A9tAp080297 for ; Wed, 6 Aug 2014 10:09:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192427] [patch]clean the formate of sys/conf/NOTES such as '^L' and missing '#' Date: Wed, 06 Aug 2014 10:09:55 +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 Only Me X-Bugzilla-Who: amutu@amutu.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 10:09:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192427 --- Comment #1 from Jov --- '^L' can't be displayed on web page,so please use the attach patch file. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 6 10:22:09 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E667C48 for ; Wed, 6 Aug 2014 10:22:09 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 36BFB2262 for ; Wed, 6 Aug 2014 10:22:09 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s76AM9KG020407 for ; Wed, 6 Aug 2014 10:22:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192426] [panic]: Kernel panic when using BPF Date: Wed, 06 Aug 2014 10:22:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: robert@octarineparrot.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 10:22:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192426 --- Comment #3 from Robert Clipsham --- Running this binary is what reproduces the panic for me. Usage as follows: ---- $ sudo chmod g+rw /dev/bpf $ RUST_TEST_TASKS=1 ./pnet ---- Within seconds, the kernel will panic. All networking should be done on the loopback interface, but just in case it might be best to run this offline. Obviously it will panic the machine too. Binary can be found here (4.5meg, too large to upload as an attachment): http://octarineparrot.com/assets/pnet -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 6 12:36: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 860E6EB2 for ; Wed, 6 Aug 2014 12:36:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67A2122BB for ; Wed, 6 Aug 2014 12:36:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s76Ca2TJ024192 for ; Wed, 6 Aug 2014 12:36:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192431] New: Crypt(3) (-lcrypt) does not work as documented Date: Wed, 06 Aug 2014 12:36:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: papowell@astart.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 12:36:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192431 Bug ID: 192431 Summary: Crypt(3) (-lcrypt) does not work as documented Product: Base System Version: 9.3-RELEASE Hardware: Any OS: Any Status: Needs Triage Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: papowell@astart.com This has been reported as 189958 broken /usr/bin/crypt but this has a much more serisous impact than is incidated that bug report and the accompanying comments. For that reason, I am submitting a new bug report. On FreeBSD 9.3 Release, the crypt(3) function does not behave as documented and also not as on FreeBSD 8.4. The documented and expected default is tu generate the legacy DES encryption but this has been changed. The crypt() function is used directly by Perl and PHP and affects these as well. The crypt(3) C library routine is used by Perl/PHP. This change has broken a large number of other things. While there is no argument about the 'strength' of the hash/encryption, the documentation states that it will behave in a specific manner, and as far as I can tell with a quick scan of the FreeBSD archives, there has been no discussion of the impact of making this change. I am surprised that one of the core functions behavior (crypt) was modified and this was not put into the FreeBSD 9.3 release notes. I would strongly suggest that you publicize this and send out instructions on how to a) make the 'des' encryption the default b) recompile everything that uses crypt and is statically linked c) warn Perl and PHP users about this impact so they can update their Perl and PHP. (Note, I might be wrong about PHP, but I checked Perl and it uses the -lcrypt library). Details: NAME crypt -- Trapdoor encryption LIBRARY Crypt Library (libcrypt, -lcrypt) SYNOPSIS #include char * crypt(const char *key, const char *salt); const char * crypt_get_format(void); int crypt_set_format(const char *string); DESCRIPTION The crypt() function performs password hashing with additional code added to deter key search attempts. Different algorithms can be used to in the hash. Currently these include the NBS Data Encryption Standard (DES), MD5 hash, NT-Hash (compatible with Microsoft's NT scheme) and Blowfish. The algorithm used will depend upon the format of the Salt (following the Modular Crypt Format (MCF)), if DES and/or Blowfish is installed or not, and whether crypt_set_format() has been called to change the default. The first argument to crypt is the data to hash (usually a password), in a NUL-terminated string. The second is the salt, in one of three forms: Extended If it begins with an underscore (``_'') then the DES Extended Format is used in interpreting both the key and the salt, as outlined below. Modular If it begins with the string ``$digit$'' then the Mod- ular Crypt Format is used, as outlined below. Traditional If neither of the above is true, it assumes the Tradi- tional Format, using the entire string as the salt (or the first portion). ... Traditional crypt: The algorithm used will depend upon whether crypt_set_format() has been called and whether a global default format has been specified. Unless a global default has been specified or crypt_set_format() has set the for- mat to something else, the built-in default format is used. This is cur- rently DES if it is available, or MD5 if not. The crypt_get_format() function returns a constant string that represents the name of the algorithm currently used. Valid values are `des', `blf', `md5', `sha256', `sha512' and `nth'. The crypt_set_format() function sets the default encoding format accord- ing to the supplied string. Test Program: #include #include #include int main( int argc, char **argv, char **envp ) { const char *password = "testpassword"; const char *salt = "_testpassword"; const char *format = crypt_get_format(); const char *output = crypt(password,password); fprintf( stdout, "Password '%s', format '%s', output '%s'\n", password, format, output ); output = crypt(password,salt); fprintf( stdout, "Password '%s', salt '%s', output '%s'\n", password, salt, output ); int status = crypt_set_format("des"); format = crypt_get_format(); output = crypt(password,password); fprintf( stdout, "status %d, Password '%s', format '%s', output '%s'\n", status, password, format, output ); output = crypt(password,salt); fprintf( stdout, "Password '%s', salt '%s', output '%s'\n", password, salt, output ); exit( 0 ); }FreeBSD 9.3: Pssword 'testpassword', format 'sha512', output '$6$testpassword$QvM4M3dhSAaiMa6EthlRMq3g8efvl1GySUxAyuXAIN. DmgGZuDLqKqi.wZ/PzWadf7YYxAKVlXmjq9ajS1R7y0' Password 'testpassword', salt '_testpassword', output '_testpass6q8PHhqkDCA' status 1, Password 'testpassword', format 'des', output 'tek4edTZE898g' Password 'testpassword', salt '_testpassword', output '_testpass6q8PHhqkDCA' assword 'testpassword', salt '_testpassword', output '_testpass6q8PHhqkDCA' FreeBSD 8.4: Password 'testpassword', format 'des', output 'tek4edTZE898g' Password 'testpassword', salt '_testpassword', output '_testpass6q8PHhqkDCA' status 1, Password 'testpassword', format 'des', output 'tek4edTZE898g' Password 'testpassword', salt '_testpassword', output '_testpass6q8PHhqkDCA' >From the FreeBSD 8.4 source: /usr/src/lib/libcrypt/crypt.c: static const struct { const char *const name; char *(*const func)(const char *, const char *); const char *const magic; } crypt_types[] = { #ifdef HAS_DES { "des", crypt_des, NULL { "md5", crypt_md5, "$1$" }, >From the FreeBSD 9.3 source. Note that the default format is set to sha512, not des: /* * List of supported crypt(3) formats. The first element in the list will * be the default. */ static const struct crypt_format { const char *const name; char *(*const func)(const char *, const char *); const char *const magic; } crypt_formats[] = { /* default format */ { "sha512", crypt_sha512, "$6$" }, /* other supported formats */ { "md5", crypt_md5, "$1$" }, #ifdef HAS_BLOWFISH { "blf", crypt_blowfish, "$2" }, #endif { "nth", crypt_nthash, "$3$" }, { "sha256", crypt_sha256, "$5$" }, #ifdef HAS_DES { "des", crypt_des, "_" }, #endif }, #endif /* sentinel */ { NULL, NULL, NULL } }; Suggestion: static const struct crypt_format { const char *const name; char *(*const func)(const char *, const char *); const char *const magic; } crypt_formats[] = { /* default format */ #ifdef HAS_DES { "des", crypt_des, "_" }, #endif { "sha512", crypt_sha512, "$6$" }, /* other supported formats */ { "md5", crypt_md5, "$1$" }, #ifdef HAS_BLOWFISH { "blf", crypt_blowfish, "$2" }, #endif { "nth", crypt_nthash, "$3$" }, { "sha256", crypt_sha256, "$5$" }, /* sentinel */ { NULL, NULL, NULL } }; -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 6 20:38:33 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 493E19CC for ; Wed, 6 Aug 2014 20:38:33 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 31A022290 for ; Wed, 6 Aug 2014 20:38:33 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s76KcXLt063219 for ; Wed, 6 Aug 2014 20:38:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192452] New: vt_vga very slow since r269471 Date: Wed, 06 Aug 2014 20:38:33 +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: nwhitehorn@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 20:38:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192452 Bug ID: 192452 Summary: vt_vga very slow since r269471 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: nwhitehorn@FreeBSD.org The VGA driver has become unusably slow since r269471. I suspect that the support for non-8x8 fonts has dramatically increased the incidence of reads from VGA memory. It might be best if the driver could be refactored to avoid reads entirely, for example by passing some concept of write granularity up from the driver into the vt core so that vd_bitbltchr() is called only for operations of that width (redrawing partial characters). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 6 23:24:33 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0017802 for ; Wed, 6 Aug 2014 23:24:33 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A90D1297D for ; Wed, 6 Aug 2014 23:24:33 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s76NOXEA079397 for ; Wed, 6 Aug 2014 23:24:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192456] New: vt vt_vga graphical console very slow in XenServer, VirtualBox Date: Wed, 06 Aug 2014 23:24:33 +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: mcdouga9@egr.msu.edu 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 23:24:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192456 Bug ID: 192456 Summary: vt vt_vga graphical console very slow in XenServer, VirtualBox 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: mcdouga9@egr.msu.edu I tried booting with kern.vty=vt on Xen and VirtualBox to see what happens. XenServer console is extremely slow, about 4-5 seconds to redraw the whole screen each time a new line is printed, booting takes several minutes. VirtualBox is slow, but not as bad, takes approx 1 second to redraw screen (tolerable but not ideal). I tried FreeBSD-11.0-CURRENT-amd64-20140804-r269497-disc1.iso as well as snapshot isos of 10 and 11 from about a month ago (I didn't specifically check age). Setting hw.vga.textmode=1 restores normal speed like syscons. Would it be a good idea to make the kernel default to textmode if kern.vm_guest isn't "none"? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 6 23:25:49 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B80EA87A for ; Wed, 6 Aug 2014 23:25:49 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A0AE42997 for ; Wed, 6 Aug 2014 23:25:49 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s76NPnoF079762 for ; Wed, 6 Aug 2014 23:25:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191754] [headers] long math functions (powl, etc) are not declared properly in math.h Date: Wed, 06 Aug 2014 23:25: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: kargl@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 23:25:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191754 --- Comment #1 from Steve Kargl --- Created attachment 145432 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145432&action=edit patch for math.h.diff -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 00:03:30 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5976448 for ; Thu, 7 Aug 2014 00:03:30 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD3E02FBC for ; Thu, 7 Aug 2014 00:03:30 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s7703UbQ006050 for ; Thu, 7 Aug 2014 00:03:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191754] [headers] long math functions (powl, etc) are not declared properly in math.h Date: Thu, 07 Aug 2014 00:03:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: standards X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: kargl@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-standards@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status component 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 00:03:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191754 Steve Kargl changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |In Discussion Component|bin |standards Assignee|freebsd-bugs@FreeBSD.org |freebsd-standards@FreeBSD.o | |rg --- Comment #2 from Steve Kargl --- This appears to be a question about compliance to the C99 standard. Change the component accordingly. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 07:33: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E2B2979 for ; Thu, 7 Aug 2014 07:33:06 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D5672EDA for ; Thu, 7 Aug 2014 07:33:06 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s777X5hk088942 for ; Thu, 7 Aug 2014 07:33:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192462] New: vt has display issues when switching vty's Date: Thu, 07 Aug 2014 07:33:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jmg@h2.funkthat.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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 07:33:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192462 Bug ID: 192462 Summary: vt has display issues when switching vty's Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: Normal Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: jmg@h2.funkthat.com issues #2 and #4 from: https://www.freebsd.org/cgi/mid.cgi?20140801211845.GG50495@funkthat.com Second, once one vty has the gallant font loaded, if you switch vty's, it can occure that the new vty does not display ANY text.. The display is mostly blank... and: Fourth, when switching screens, there is a brief flash of vertical stripes before the new screen comes on... Can we do something to make sure that this transition is clean? Either a completely blank screen, or ideally, no blank screen, but the new text appearing? There are issues w/ font loading and display switching w/ the vt_vga display driver... Environment: System: FreeBSD carbon.funkthat.com 11.0-CURRENT FreeBSD 11.0-CURRENT #2: Tue Aug 5 16:40:10 PDT 2014 jmg@carbon.funkthat.com:/usr/home/jmg/freebsd.p4/opencrypto/sys/amd64/compile/GENERIC amd64 kern.vty=vt How-To-Repeat: load a font (for #2) and then just randomly switch between vty's... Very randomly (it may take 10 or 20 tries) the console will not display anything.. If you switch away and back again, there will be text... Also, looking closely when switching vty's, there is "junk", in my case, vertical lines, that is displayed between the text of the two vty's... Fix: unknown.. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 07:39: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67727A31 for ; Thu, 7 Aug 2014 07:39:07 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F9BF2F14 for ; Thu, 7 Aug 2014 07:39:07 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s777d7Ag095964 for ; Thu, 7 Aug 2014 07:39:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192463] New: vt and vt_vga, when two fonts are loaded, boarder not cleared Date: Thu, 07 Aug 2014 07:39:07 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jmg@h2.funkthat.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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 07:39:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192463 Bug ID: 192463 Summary: vt and vt_vga, when two fonts are loaded, boarder not cleared Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: Normal Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: jmg@h2.funkthat.com issue #3 from: https://www.freebsd.org/cgi/mid.cgi?20140801211845.GG50495@funkthat.com If you have a second font loaded, there is a boarder from where there is no text (as we don't do font scaling), and sometimes this border does not get cleared and there is garbage... Environment: System: FreeBSD carbon.funkthat.com 11.0-CURRENT FreeBSD 11.0-CURRENT #2: Tue Aug 5 16:40:10 PDT 2014 jmg@carbon.funkthat.com:/usr/home/jmg/freebsd.p4/opencrypto/sys/amd64/compile/GENERIC amd64 kern.vty=vt How-To-Repeat: Load a second font, like the provided gallant, and then switch between vty's.. You'll see where there is a slight border where the text doesn't reach to the bottom or the right side of the screen, and sometimes in this border, there will be junk.. Fix: unknown.. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 12:03:02 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 100C6494 for ; Thu, 7 Aug 2014 12:03:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC7E52EF4 for ; Thu, 7 Aug 2014 12:03:01 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77C31n8040109 for ; Thu, 7 Aug 2014 12:03:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192426] [panic]: Kernel panic when using BPF Date: Thu, 07 Aug 2014 12:03:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: robert@octarineparrot.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 12:03:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192426 --- Comment #4 from Robert Clipsham --- The panic only seems to occur when using the loopback interface. I will try and narrow this down further if possible. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 13:01:57 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5214F524 for ; Thu, 7 Aug 2014 13:01:57 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A2C025E1 for ; Thu, 7 Aug 2014 13:01:57 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77D1vLf069359 for ; Thu, 7 Aug 2014 13:01:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192426] [panic]: Kernel panic when using BPF Date: Thu, 07 Aug 2014 13:01:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: robert@octarineparrot.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.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 13:01:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192426 --- Comment #5 from Robert Clipsham --- Created attachment 145446 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145446&action=edit Minimal test case to reproduce the kernel panic This is a minimal test case which reproduces the kernel panic. It only happens when using the loopback interface, setting the pseudo header to AF_INET, and using BIOCFEEDBACK. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 13:44:48 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90699F29 for ; Thu, 7 Aug 2014 13:44:48 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 781E72A61 for ; Thu, 7 Aug 2014 13:44:48 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77DimwJ069163 for ; Thu, 7 Aug 2014 13:44:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192350] [ipf] ipnat doesn't work with INET6 kernel option Date: Thu, 07 Aug 2014 13:44:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: cy@FreeBSD.org 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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 13:44:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192350 Cy Schubert changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Patch Ready CC| |cy@FreeBSD.org --- Comment #1 from Cy Schubert --- Just committed a fix to -CURRENT two days ago. Will MFC shortly. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 15:43:21 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C11B5BE for ; Thu, 7 Aug 2014 15:43:21 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 243DA2C69 for ; Thu, 7 Aug 2014 15:43:21 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77FhL7L078234 for ; Thu, 7 Aug 2014 15:43:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192426] [panic]: Kernel panic when using BPF Date: Thu, 07 Aug 2014 15:43:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: robert@octarineparrot.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.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 15:43:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192426 --- Comment #6 from Robert Clipsham --- Created attachment 145448 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145448&action=edit Quick fix which prevents panic This patch prevents the kernel panic. It is probably not the correct solution, but it does work. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 15:43:32 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F612605 for ; Thu, 7 Aug 2014 15:43:32 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 478572C6D for ; Thu, 7 Aug 2014 15:43:32 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77FhWoP078351 for ; Thu, 7 Aug 2014 15:43:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192426] [panic]: Kernel panic when using BPF Date: Thu, 07 Aug 2014 15:43:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: robert@octarineparrot.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: keywords 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 15:43:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192426 Robert Clipsham changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 16:06:27 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1EF9716E for ; Thu, 7 Aug 2014 16:06:27 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 077AD2140 for ; Thu, 7 Aug 2014 16:06:27 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77G6Qk4031222 for ; Thu, 7 Aug 2014 16:06:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192470] New: [bhyve] can't boot FreeBSD in bhyve on CURRENT Date: Thu, 07 Aug 2014 16:06:27 +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: lifanov@mail.lifanov.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 16:06:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192470 Bug ID: 192470 Summary: [bhyve] can't boot FreeBSD in bhyve on CURRENT Product: Base System Version: 11.0-CURRENT Hardware: amd64 OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: lifanov@mail.lifanov.com Created attachment 145450 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145450&action=edit 9.3-RELEASE boot failure on 11.0-CURRENT r269644 When trying to boot FreeBSD 9.3-RELEASE or 10.0-RELEASE ISO in bhyve on 11.0-CURRENT r269644, I get "panic: CPU0 does not support X87 or SSE: 1". I tried the plainest possible configuration, using the sample vmrun.sh script. Booting Linux on my CURRENT machine works. Booting 9.3-RELEASE in bhyve on 10.0-RELEASE works. I'm not sure when this broke for me and it could have been months ago. I can help bisect or diagnose this if I'm pointed to some place to start. Full console log trying to boot 9.3-RELEASE on 11.0-CURRENT is attached. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 16:22:09 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1FDDB6BD for ; Thu, 7 Aug 2014 16:22:09 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 086902418 for ; Thu, 7 Aug 2014 16:22:09 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77GM8P6073782 for ; Thu, 7 Aug 2014 16:22:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192470] [bhyve] can't boot FreeBSD in bhyve on CURRENT Date: Thu, 07 Aug 2014 16:22:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: lifanov@mail.lifanov.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 16:22:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192470 --- Comment #1 from Nikolai Lifanov --- Host CPU info from dmesg: CPU: Intel(R) Xeon(R) CPU E31235 @ 3.20GHz (3200.09-MHz K8-class CPU) Origin="GenuineIntel" Id=0x206a7 Family=0x6 Model=0x2a Stepping=7 Features=0xbfebfbff Features2=0x1fbae3ff AMD Features=0x28100800 AMD Features2=0x1 VT-x: PAT,HLT,MTF,PAUSE,EPT,UG,VPID TSC: P-state invariant, performance statistics -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 19:07: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63AFABA6 for ; Thu, 7 Aug 2014 19:07:15 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4C2802819 for ; Thu, 7 Aug 2014 19:07:15 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77J7FiB078065 for ; Thu, 7 Aug 2014 19:07:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192487] New: cpucontrol uses unsafe procedure to detect current microcode version Date: Thu, 07 Aug 2014 19:07:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: hmh+freebsd@hmh.eng.br 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 19:07:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192487 Bug ID: 192487 Summary: cpucontrol uses unsafe procedure to detect current microcode version Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: hmh+freebsd@hmh.eng.br The Intel SDM, vol 3A, section 9.11.7.1, defines a procedure that should be followed to ensure a valid response from the System Processor when it is queried about the running microcode revision. The userspace cpucontrol utility fails to follow this procedure. cpucontrol fails to pre-init MSR 0x8B (MSR_BIOS_SIGN) with zero and issue a cpuid(1), before it can get valid data from that same MSR. Please refer to example 9-9 in the Intel SDM vol 3A page 9-36. I have no idea how important this procedure is on current Intel processors, but the impact of getting garbage from MSR_BIOS_SIGN includes either incorrectly downgrading, or incorrectly refusing to upgrade microcode. The bug is in file: usr.sbin/cpucontrol/intel.c -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 20:50:07 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 031D8FD2 for ; Thu, 7 Aug 2014 20:50:07 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C5324251E for ; Thu, 7 Aug 2014 20:50:06 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77Ko6om005699 for ; Thu, 7 Aug 2014 20:50:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192490] New: [build] race condition with multiple instances of cleandir in subdirectories; results in failure like "rm: fts_read: No such file or directory" Date: Thu, 07 Aug 2014 20:50:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: yaneurabeya@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 20:50:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192490 Bug ID: 192490 Summary: [build] race condition with multiple instances of cleandir in subdirectories; results in failure like "rm: fts_read: No such file or directory" Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: yaneurabeya@gmail.com I've seen issues with builds (mostly on my VMware Fusion VM running FreeBSD CURRENT) where it fails to build with a false positive like the following (from http://kyua3.nyi.freebsd.org/head/data/0-LATEST/output.log): ===> usr.sbin/lpr (cleandir) --- cleandir_subdir_lastlogin --- --- cleanobj --- --- usr.bin.cleandir__D --- --- cleandir_subdir_limits --- ===> usr.bin/limits (cleandir) --- cleandir_subdir_lex --- --- cleanobj --- --- usr.sbin.cleandir__D --- --- cleandir_subdir_lmcconfig --- --- cleanobj --- --- usr.bin.cleandir__D --- --- _sub.cleandir --- ===> usr.bin/lex/lib (cleandir) --- usr.sbin.cleandir__D --- --- cleandir_subdir_lpr --- --- _sub.cleandir --- ===> usr.sbin/lpr/common_source (cleandir) --- usr.bin.cleandir__D --- --- cleandir_subdir_limits --- --- cleanobj --- --- usr.sbin.cleandir__D --- --- cleandir_subdir_lptcontrol --- ===> usr.sbin/lptcontrol (cleandir) --- usr.bin.cleandir__D --- --- cleandir_subdir_lex --- --- cleanobj --- --- usr.sbin.cleandir__D --- --- cleandir_subdir_mailstats --- ===> usr.sbin/mailstats (cleandir) --- usr.bin.cleandir__D --- --- cleanobj --- rm: fts_read: No such file or directory *** [cleanobj] Error code 1 The error shown makes sense as there are 3 instances of usr.bin.cleandir__D being run in parallel instead of one instance. I've skated around this issue before in the past by serializing the removal of ${MAKEOBJDIRPREFIX} from Makefile.inc1 when NO_CLEAN is not set, which isn't necessarily optimal as rm -Rf /usr/obj is a O(n) process in a single process, but it works 100% of the time. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 20: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CDBD716D for ; Thu, 7 Aug 2014 20:53:56 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B470125C9 for ; Thu, 7 Aug 2014 20:53:56 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77KruvN035723 for ; Thu, 7 Aug 2014 20:53:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192490] [build] race condition with multiple instances of cleandir in subdirectories; results in failure like "rm: fts_read: No such file or directory" Date: Thu, 07 Aug 2014 20:53:56 +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: yaneurabeya@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 20:53:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192490 --- Comment #1 from yaneurabeya@gmail.com --- Created attachment 145486 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145486&action=edit Build log >From http://kyua3.nyi.freebsd.org/head/data/0-LATEST/output.log -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 7 23:28: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 827D43A6 for ; Thu, 7 Aug 2014 23:28:10 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AEBB26C5 for ; Thu, 7 Aug 2014 23:28:10 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77NSABW007113 for ; Thu, 7 Aug 2014 23:28:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192493] New: [Feature Request] add version command to loader(8) Date: Thu, 07 Aug 2014 23:28:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: yaneurabeya@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 23:28:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192493 Bug ID: 192493 Summary: [Feature Request] add version command to loader(8) 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: yaneurabeya@gmail.com One thing that would be extremely helpful when debugging issues with loader is to be able to dump the version text for boot0, boot1, and boot2 (mostly boot2 though) to verify that the bootloader is in synch with the kernel at boot. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 8 02:34:16 2014 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06F96A22 for ; Fri, 8 Aug 2014 02:34:16 +0000 (UTC) Received: from sender44.zcsend.net (sender44.zcsend.net [74.201.84.44]) by mx1.freebsd.org (Postfix) with ESMTP id DAA9A299A for ; Fri, 8 Aug 2014 02:34:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=zcp024; d=zcsend.net; h=Date:From:Reply-To:To:Message-ID:Subject:MIME-Version:Content-Type:List-Unsubscribe; bh=R5iUDSmrt1F9kGPIMN7XMOUMW6A=; b=XlFEnzqE8tZEeiCvXu4h18IyTckF61yjE5FA5mnLxvqROM7csGnG6wyd/U4hPAaPgbGISg91kE+z CxJ0/AonP4surA30Bf9/s3JLxdHG3V3GPqfp2wbL0+ZIEBXXW9xOEgm8hF8yEmkjhPACegL78luQ AMIk5pBCGfDJ5QyWR2U= Received: from [172.29.246.124] (172.29.246.124) by sender44.zcsend.net id hsgrie1m9a4a for ; Thu, 7 Aug 2014 19:34:09 -0700 (envelope-from ) Date: Thu, 7 Aug 2014 19:34:09 -0700 (PDT) From: "CampSalesAU" Reply-To: latest@campsalesau.com To: freebsd-bugs@freebsd.org Message-ID: Subject: Powerful 7Kva Portable Power Box MIME-Version: 1.0 X-JID: 11287eca4fd0fb.1bdb18f6390e594 X-campaignid: zohocampaigns.11287eca4fd0fb.zcb.1bdb18f6391d379.11699e4bef09fa9 X-Zoho-RID: zohocampaigns.11287eca4fd0fb.zcb.1bdb18f6391d379.11699e4bef09fa9 X-Mailer: Zoho Campaigns X-Report-Abuse: , Content-Type: text/plain;charset="UTF-8" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Aug 2014 02:34:16 -0000 http://www.campsalesau.com Silent 7kVA Pure Sine Wave Inverter =================================== Camping Generator - Electric Start + Remote =========================================== http://www.campsalesau.com/silent-electric-start-7kva-pure-sine-wave-inverter-generator.html ### Only $999.00 ------- Was $2799.00 http://www.campsalesau.com/silent-electric-start-7kva-pure-sine-wave-inverter-generator.html Buy Now This inverter generator unit is petrol powered and differs from cheaper units, in that the engine (which is built to the same design as the market leading... http://www.campsalesau.com/silent-electric-start-7kva-pure-sine-wave-inverter-generator.html [read more] [ http://www.campsalesau.com/silent-electric-start-7kva-pure-sine-wave-inverter-generator.html ] http://www.campsalesau.com http://www.campsalesau.com| Australia - Phone: (02) 8488 8111 ---------------------------------------------------------------------- This email was sent by latest@campsalesau.com to freebsd-bugs@freebsd.org Not interested?Unsubscribe - http://zc1.maillist-manage.com/ua/optout?od=11287eca4fd0fb&rd=1bdb18f6391d379&sd=1bdb18f6390d21b&n=11699e4bef09fa9 Update profile - http://zc1.maillist-manage.com/ua/upc?upd=1bdb18f63273b46&r=1bdb18f6391d379&n=11699e4bef09fa9&od=11287eca4fd0fb InterestedSubscribe- http://zc1.maillist-manage.com/ua/optin?od=11287eca4fd0fb&rd=1bdb18f6391d379&sd=1bdb18f6390d21b&n=11699e4bef09fa9 Impressed?Tell-A-Friend - http://zc1.tell-your-friend.com/ua/forward?od=11287eca4fd0fb&rd=1bdb18f6391d379&sd=1bdb18f6390d21b&n=11699e4bef09fa9&s=f CampSalesAU.com | Sydney, NSW Australia From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 8 07:50:12 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D0D9E5EF for ; Fri, 8 Aug 2014 07:50:12 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B99772A97 for ; Fri, 8 Aug 2014 07:50:12 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s787oCGU069069 for ; Fri, 8 Aug 2014 07:50:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192505] New: /etc/services updates for RFC 7194 Date: Fri, 08 Aug 2014 07:50:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: loic.blot@unix-experience.fr 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Aug 2014 07:50:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192505 Bug ID: 192505 Summary: /etc/services updates for RFC 7194 Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Many People Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: loic.blot@unix-experience.fr Hi, RFC 7194 standardize IRC over TLS/SSL on port 6697. Here is the diff: --- services.new 2014-08-08 09:44:19.144475673 +0200 +++ services 2014-08-08 09:47:08.687808728 +0200 @@ -2397,6 +2397,7 @@ sane-port 6566/tcp #Scanner Access Now Easy (SANE) Control Port sane-port 6566/udp #Scanner Access Now Easy (SANE) Control Port ircd 6667/tcp #Internet Relay Chat (unofficial) +ircs-u 6697/tcp #Internet Relay Chat over TLS/SSL (RFC 7194) frc-hp 6704/sctp #ForCES HP (High Priority) channel frc-mp 6705/sctp #ForCES MP (Medium Priority) channel frc-lp 6706/sctp #ForCES LP (Low priority) channel Have a nice day -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 8 11:46: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C6C72F6B for ; Fri, 8 Aug 2014 11:46:01 +0000 (UTC) Received: from m97106.qiye.163.com (m97106.qiye.163.com [220.181.97.106]) by mx1.freebsd.org (Postfix) with ESMTP id 3C42E264E for ; Fri, 8 Aug 2014 11:45:59 +0000 (UTC) Received: from localhost (unknown [127.0.0.1]) by wmsvr3 (Coremail) with SMTP id TSWEB_0000004800002A0453E4ADEE; Fri, 08 Aug 2014 19:01:02 +0800 (CST) Received: from info$it-traders.com ( [113.10.136.194] ) by ajax-webmail-wmsvr15 (Coremail) ; Thu, 7 Aug 2014 19:35:13 +0800 (CST) X-Originating-IP: [113.10.136.194] Date: Fri, 8 Aug 2014 19:00:00 +0800 (CST) From: info To: freebsd-bugs@freebsd.org Subject: Want to buy 1pcs x P740 &2pcs x 2076-124 X-Priority: 3 X-Mailer: Coremail Webmail Server Version SP_ntes V3.5 build 20140422(26738.6344) Copyright (c) 2002-2014 www.mailtech.cn 163-hosting MIME-Version: 1.0 Message-ID: <55beb237.e22c.147b0405b75.Coremail.info@it-traders.com> X-Coremail-Locale: zh_CN X-CM-TRANSID: auCowEAZW0H+reRTf4QQAA--.0W X-CM-SenderInfo: plqi0qdlwn32xdgh22oofrz/1tbiHAngyFE251VocQACsz X-Coremail-Antispam: 1U5529EdanIXcx71UUUUU7vcSsGvfC2KfnxnUU== Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Aug 2014 11:46:01 -0000 SGksCgpIb3cgYXJlIHlvdS4KCldlIGNhbiB0YWtlIHRoZSBmb2xsb3dpbmcgZ29vZHMsIGFuZCBQ TyBpbiBoYW5kOgoKcDc0MCA4MjA1LUU2Qi4gMTZDIHggMSAgIHVzZWQvcmVmdXJiaXNoL3JldGFp bCBhbGwgb2sKCjIwNzYtMTI0IHggMiAgICAgICAgICAgIHVzZWQvcmVmdXJiaXNoL3JldGFpbCBh bGwgb2sKClBsZWFzZSBsZXQgbWUga25vdyB5b3VyIHByaWNlLCBkZWxpdmVyeSB0aW1lLgoKTG9v a2luZyBmb3J3YXJkIHlvdXIgcmVwbHkgc29vbgoKQW1hbmRhIHwgU2FsZXMgYW5kIHNlcnZpY2UK CkVtYWlsOiBBbWFuZGFAaXQtdHJhZGVycy5jb20KQW9sL0FJTTogYW1hbmRhLmxlZTY2QGFpbS5j b20KU2t5cGU6IEFtYW5kYTgxMDk5ClBob25lOiArODUyIDUzNDEgODI2OQpXZWJzaXRlOiB3d3cu aXQtdHJhZGVycy5jb20KSVQgVFJBREVSUyBMSU1JVEVE From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 8 14:42:43 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA7B0E2E for ; Fri, 8 Aug 2014 14:42:43 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B22242B26 for ; Fri, 8 Aug 2014 14:42:43 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s78Eghdj059652 for ; Fri, 8 Aug 2014 14:42:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192285] sa(4) fails to correctly report current tape position after "mt fsf 32767" Date: Fri, 08 Aug 2014 14: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: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: commit-hook@freebsd.org 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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Aug 2014 14:42:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192285 --- Comment #2 from commit-hook@freebsd.org --- A commit references this bug: Author: joerg Date: Fri Aug 8 14:42:04 UTC 2014 New revision: 269717 URL: http://svnweb.freebsd.org/changeset/base/269717 Log: Merge r269353: Fix breakage introduced by r256843: removing the SA_CCB_WAITING bit left some of the decisions based on its counterpart, SA_CCB_BUFFER_IO being random. As a result, propagation of the residual information for the SPACE command was broken, so the number of filemarks encountered during a SPACE operation was miscalculated. Consequently, systems relying on properly tracked filemark counters (like Bacula) fell apart. The change also removes a switch/case in sadone() which r256843 degraded to a single remaining case label. PR: 192285 Changes: _U stable/10/ stable/10/sys/cam/scsi/scsi_sa.c -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 8 15:01:43 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF53294B for ; Fri, 8 Aug 2014 15:01:43 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A75432E5D for ; Fri, 8 Aug 2014 15:01:43 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s78F1hQS026504 for ; Fri, 8 Aug 2014 15:01:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192285] sa(4) fails to correctly report current tape position after "mt fsf 32767" Date: Fri, 08 Aug 2014 15:01:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: joerg@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Aug 2014 15:01:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192285 Joerg Wunsch changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch Ready |Issue Resolved Resolution|--- |FIXED --- Comment #3 from Joerg Wunsch --- Fixed in both, head and stable/10. Not affecting older stable branches. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 8 15:18:11 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D281BF18 for ; Fri, 8 Aug 2014 15:18:11 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BAB0E20A8 for ; Fri, 8 Aug 2014 15:18:11 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s78FIBim043142 for ; Fri, 8 Aug 2014 15:18:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 156767] Installation Media do not include current list of mirrors from Freebsd Handbook Date: Fri, 08 Aug 2014 15:18:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: joerg@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Aug 2014 15:18:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=156767 Joerg Wunsch changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|joerg@FreeBSD.org |freebsd-bugs@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 8 17:29:54 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA03FD73 for ; Fri, 8 Aug 2014 17:29:54 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 91C4120AD for ; Fri, 8 Aug 2014 17:29:54 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s78HTs9H074941 for ; Fri, 8 Aug 2014 17:29:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 160745] sed(1) appends '\n' at the end of binary data (unlike gsed(1)) Date: Fri, 08 Aug 2014 17:29: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: 8.2-STABLE 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Aug 2014 17:29:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=160745 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: dumbbell Date: Fri Aug 8 17:29:02 UTC 2014 New revision: 269729 URL: http://svnweb.freebsd.org/changeset/base/269729 Log: sed(1): Don't force a newline on last line, if input stream doesn't have one While here, change how we check if the current line is the last one. Before, we just checked if there were more files after the current one. Now, we check the actual content of those files: they files may not have a line at all. This matches the definition of the "last line" by the Open Group. The new behavior is closer to GNU sed. PR: 160745 Phabric: https://phabric.freebsd.org/D431 Reviewed by: jilles Approved by: jilles Exp-run by: antoine Changes: head/usr.bin/sed/defs.h head/usr.bin/sed/main.c head/usr.bin/sed/process.c head/usr.bin/sed/tests/regress.y.out -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 8 17:32:03 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B13ABE64 for ; Fri, 8 Aug 2014 17:32:03 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98ABA214E for ; Fri, 8 Aug 2014 17:32:03 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s78HW3Ps090471 for ; Fri, 8 Aug 2014 17:32:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 160745] sed(1) appends '\n' at the end of binary data (unlike gsed(1)) Date: Fri, 08 Aug 2014 17:32:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 8.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dumbbell@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Aug 2014 17:32:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=160745 Jean-Sebastien Pedron changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved CC| |dumbbell@FreeBSD.org Resolution|--- |FIXED --- Comment #2 from Jean-Sebastien Pedron --- Committed in 11-CURRENT. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 8 22:56:00 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90D52159 for ; Fri, 8 Aug 2014 22:56:00 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78D08291E for ; Fri, 8 Aug 2014 22:56:00 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s78Mu0v3058371 for ; Fri, 8 Aug 2014 22:56:00 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: Fri, 08 Aug 2014 22:56:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: slm@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Aug 2014 22:56:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191348 --- Comment #6 from Stephen McConnell --- Created attachment 145541 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145541&action=edit msleep patch to mps_sas_lsi.c (FreeBSD 10.0) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 8 22:59:50 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13EE11D3 for ; Fri, 8 Aug 2014 22:59:50 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F02B0296B for ; Fri, 8 Aug 2014 22:59:49 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s78MxnFt060238 for ; Fri, 8 Aug 2014 22:59:49 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: Fri, 08 Aug 2014 22:59:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: slm@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Aug 2014 22:59:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191348 --- Comment #7 from Stephen McConnell --- Can you apply the attached msleep patch (in a tar file)? This will cause the driver to sleep for 3 seconds if there is an IOC Status in the get_sata_identify function. You will probably need to rebuild the kernel so that the patched driver will be loaded when you boot. You should see a message that the driver is sleeping for 3 seconds and then finished sleeping. This only will happen if the IOC Status is non-zero, as happens in your system. If you need help with this, let me know. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 9 04:49: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7CADDF1 for ; Sat, 9 Aug 2014 04:49:12 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 64B0E2A90 for ; Sat, 9 Aug 2014 04:49:12 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s794nCCA086328 for ; Sat, 9 Aug 2014 04:49:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191506] [dtrace] [dtruss] dtruss doesn't seem to work on -HEAD Date: Sat, 09 Aug 2014 04:49: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: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rpaulo@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Aug 2014 04:49:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191506 Rui Paulo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Issue Resolved CC| |rpaulo@FreeBSD.org Resolution|--- |Works As Intended --- Comment #9 from Rui Paulo --- Adrian, isn't this a problem with your environment? Shall we close? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 9 16:14:56 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0FD61CAE for ; Sat, 9 Aug 2014 16:14:56 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EBC242B75 for ; Sat, 9 Aug 2014 16:14:55 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s79GEtCh089185 for ; Sat, 9 Aug 2014 16:14:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192528] New: pwd_mkdb fails if /etc/shells contains duplicates Date: Sat, 09 Aug 2014 16:14:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: david.r.bliss@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 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Aug 2014 16:14:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192528 Bug ID: 192528 Summary: pwd_mkdb fails if /etc/shells contains duplicates Product: Base System Version: 10.0-RELEASE Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: david.r.bliss@gmail.com Created attachment 145573 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145573&action=edit /etc/shells with duplicate entries My FreeBSD 10 system stopped being able to add new users. The 'adduser' command would fail with "User 'username' disappeared during update". This was causing me much grief because service users required by packages would not be created which would prevent the associated service from starting. The cause was that the command "pwd_mkdb -p /etc/master.passwd" was aborting. The abort is apparently caused by duplicate entries in /etc/shells. My /etc/shells file contained many duplicates (attached). I removed all duplicates, and then the "pwd_mkdb" command was able to complete without aborting. I guess there are two problems here: 1) /etc/shells is populated with duplicates. I don't know what process did this. 2) pwd_mkdb fails if there are duplicates. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 9 16:17:24 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E867CD28 for ; Sat, 9 Aug 2014 16:17:24 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D07C12B97 for ; Sat, 9 Aug 2014 16:17:24 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s79GHOU1090946 for ; Sat, 9 Aug 2014 16:17:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192528] pwd_mkdb fails if /etc/shells contains duplicates Date: Sat, 09 Aug 2014 16:17:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: david.r.bliss@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Aug 2014 16:17:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192528 --- Comment #1 from David --- Forum discussion: https://forums.freebsd.org/viewtopic.php?f=3&t=47546 Message list comment with solution: https://lists.freebsd.org/pipermail/freebsd-current/2010-November/021576.html -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 9 16:18:13 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B37C3DFC for ; Sat, 9 Aug 2014 16:18:13 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B9CE2BA9 for ; Sat, 9 Aug 2014 16:18:13 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s79GIDte091318 for ; Sat, 9 Aug 2014 16:18:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192529] New: Kernel panic fatal trap 9 general protection fault with Highpoing RocketRAID 2720SGL Date: Sat, 09 Aug 2014 16:18:13 +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-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jmtw000@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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Aug 2014 16:18:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192529 Bug ID: 192529 Summary: Kernel panic fatal trap 9 general protection fault with Highpoing RocketRAID 2720SGL Product: Base System Version: 10.0-RELEASE Hardware: amd64 OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: jmtw000@gmail.com Hello, I tried to install FreeBSD 10-RELEASE on an AMD64 system with a Highpoint RocketRAID 2720SGL card which has 4 3TB drives configured in a RAID 5 array. Any attempt to write to the array results in a kernel panic fatal trap 9. It happens while trying to create the partitions during the install. I've tried the manual partitioning and get the same thing. I've tried using MBR instead of GPT and it's the same. Even going to the shell and attempting to write to the array (da0) using dd results in the same. I've just tried the install with 9.3-RELEASE and have no such troubles. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 9 17:37:01 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D1BD99F8 for ; Sat, 9 Aug 2014 17:37:01 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B957E2480 for ; Sat, 9 Aug 2014 17:37:01 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s79Hb12d081108 for ; Sat, 9 Aug 2014 17:37:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192530] New: patch(1) reject format no longer fixed in context format but missing reject-format option Date: Sat, 09 Aug 2014 17:37:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: melvyn@magemana.nl 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Aug 2014 17:37:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192530 Bug ID: 192530 Summary: patch(1) reject format no longer fixed in context format but missing reject-format option Product: Base System Version: 10.0-STABLE Hardware: amd64 OS: Any Status: Needs Triage Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: melvyn@magemana.nl patch no longer creates reject files in the context format, contrary to what the manual page specifies. It's behavior is similar to Ubuntu's (http://manpages.ubuntu.com/manpages/trusty/man1/patch.1.html), but it's missing the option to select the reject format (through --reject-format or other ways). Personally I prefer the old behavior, since context diffs are much easier to read and to spot why the rejection occurred, but at least I'd like the option to select it. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 9 20:23:20 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64604867 for ; Sat, 9 Aug 2014 20:23:20 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4BD4724D3 for ; Sat, 9 Aug 2014 20:23:20 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s79KNK8N031379 for ; Sat, 9 Aug 2014 20:23:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192183] [zfs] ZFS on root fails to mount drive due to ENXIO between 9.2-RELEASE-p10 and 9.3-RELEASE Date: Sat, 09 Aug 2014 20:23: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: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yaneurabeya@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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Aug 2014 20:23:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192183 yaneurabeya@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[zfs] ZFS on root fails to |[zfs] ZFS on root fails to |mount drive due to ENXIO |mount drive due to ENXIO |between 9.2-RELEASE-p10 and |between 9.2-RELEASE-p10 and |9.3-RELEASE; ACPI driver |9.3-RELEASE |changes suspected | --- Comment #1 from yaneurabeya@gmail.com --- I posted a screenshot to https://people.freebsd.org/~ngie/bayonetta-mountroot-panic-PR-192183.jpg . The information I have suggests that ACPI isn't to blame (like jhb suggested). The real issue is somewhere between geom and ZFS probably: http://lists.freebsd.org/pipermail/freebsd-stable/2014-August/079582.html -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 9 22:36:41 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A4D0E5C for ; Sat, 9 Aug 2014 22:36:41 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A4682177 for ; Sat, 9 Aug 2014 22:36:41 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s79MafEF028284 for ; Sat, 9 Aug 2014 22:36:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192539] New: Ports Query: wxgtk30 & wxgtk29 isn't found Date: Sat, 09 Aug 2014 22:36:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Aug 2014 22:36:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192539 Bug ID: 192539 Summary: Ports Query: wxgtk30 & wxgtk29 isn't found Product: Base System Version: 10.0-STABLE Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: antumdeluge@gmail.com I'm sorry if I'm not posting this bug in the right section. I've been trying to search for wxWidgets in ports. It appears that it is known in FreeBSD by the common name wxgtk. However, I am unable to find it using search tools provided. I know that there are currently two versions in Ports: x11-toolkits/wxgtk30 & x11-toolkits/wxgtk29 (at least I thought that 2.9 was still being actively developed). But the search tools don't recognize them. I believe (though I'm not 100% sure) that 2.9 has already been built on my system even though 'pkg info wxgtk29' doesn't show it. [console] $ make quicksearch name=wxgtk30 $ 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 $ cd x11-toolkits/wxgtk30 $ ls Makefile distinfo files pkg-descr pkg-plist $ pkg info wxgtk30 pkg: No package(s) matching wxgtk30 $ pkg info wxgtk29 pkg: No package(s) matching wxgtk29 $ pkg_search -r wxgtk30 $ pkg_search -r wxgtk29 $ pkg search wxgtk30 $ pkg search wxgtk29 $ [/console] I hope this is enough information. I updated ports within the last hour. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 9 22:37:09 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2CD4BEA9 for ; Sat, 9 Aug 2014 22:37:09 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 158EB217E for ; Sat, 9 Aug 2014 22:37:09 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s79Mb8Kq028500 for ; Sat, 9 Aug 2014 22:37:08 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, 09 Aug 2014 22:37:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.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: 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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Aug 2014 22:37:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192539 Jordan Irwin changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Ports Query: wxgtk30 & |Ports Query: wxgtk30 & |wxgtk29 isn't found |wxgtk29 aren't found -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 9 22:40:03 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E84BF3B for ; Sat, 9 Aug 2014 22:40:03 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 675CD2194 for ; Sat, 9 Aug 2014 22:40:03 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s79Me3MC029517 for ; Sat, 9 Aug 2014 22:40:03 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, 09 Aug 2014 22:40:03 +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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Aug 2014 22:40:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192539 --- Comment #1 from Jordan Irwin --- Correction: It looks like 2.9 was replaced by 3.0 & 2.8 is still actively developed. Update: 3.0 & 2.8 appear to be installed: [console] $ wxgtk2u-3.0-config --version 3.0.1 $ wxgtk2u-2.8-config --version 2.8.12 $ make quicksearch name=wxgtk2.8 $ [/console] -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 9 22:40: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E8ACF8A for ; Sat, 9 Aug 2014 22:40:42 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7792C2215 for ; Sat, 9 Aug 2014 22:40:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s79MegGu031848 for ; Sat, 9 Aug 2014 22:40:42 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, 09 Aug 2014 22:40:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.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 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Aug 2014 22:40:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192539 --- Comment #2 from Jordan Irwin --- My system: FreeBSD 10.0 amd64 $ uname -a FreeBSD FreeBSD 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 -- You are receiving this mail because: You are the assignee for the bug.